* server.el (server-host, server-port, server-auth-dir): Autoload risky.
[bpt/emacs.git] / lisp / ChangeLog
1 2010-10-27 Glenn Morris <rgm@gnu.org>
2
3 * server.el (server-host, server-port, server-auth-dir): Autoload risky.
4
5 * term/ns-win.el: Restore require of cl when compiling.
6 (menu-bar-final-items): Remove non-existent `windows' menu.
7
8 2010-10-26 Glenn Morris <rgm@gnu.org>
9
10 * term/common-win.el (xw-defined-colors): Simplify the 'ns case.
11
12 2010-10-26 Adrian Robert <Adrian.B.Robert@gmail.com>
13
14 * term/ns-win.el (ns-new-frame, ns-show-prefs): Don't add to
15 global map.
16 * term/common-win.el (x-setup-function-keys): Remove most of the
17 keymappings. Comment on the remaining ones.
18
19 2010-10-26 Peter Oliver <p.d.oliver@mavit.org.uk> (tiny change)
20
21 * server.el (server-port): New option. (Bug#854)
22 (server-start): Use server-port.
23
24 2010-10-26 Glenn Morris <rgm@gnu.org>
25
26 * term/ns-win.el (ns-version-string): Remove unused declaration.
27 (ns-invocation-args): Change to x-invocation-args.
28 (ns-handle-switch, ns-handle-numeric-switch, ns-handle-iconic)
29 (ns-handle-name-switch, ns-ignore-2-arg): Remove.
30 (ns-handle-nxopen, ns-handle-nxopentemp, ns-ignore-1-arg):
31 Use x-invocation-args instead of ns-invocation-args.
32 (ns-initialize-window-system, handle-args-function-alist):
33 Use x-handle-args instead of ns-handle-args.
34 * term/common-win.el (x-handle-args): Also handle nextstep arguments.
35 * startup.el (command-line-ns-option-alist): Replace
36 ns-handle-name-switch, ns-handle-switch, ns-handle-numeric-switch,
37 ns-handle-iconic with the x- equivalents.
38
39 * term/common-win.el (x-select-enable-clipboard):
40 * term/pc-win.el (x-select-enable-clipboard): Doc fix.
41
42 * term/ns-win.el: No need to require cl when compiling.
43 (x-display-name, x-setup-function-keys, x-select-text, x-colors)
44 (xw-defined-colors): Use the common-win definitions.
45 (ns-alternatives-map): Make it an obsolete alias for x-alternatives-map.
46 (ns-handle-iconic): Make it an alias for x-handle-iconic.
47 * term/common-win.el (x-select-text, x-alternatives-map)
48 (x-setup-function-keys, x-colors, xw-defined-colors): Handle 'ns case.
49 * loadup.el [ns]: Load common-win.
50
51 2010-10-26 Daiki Ueno <ueno@unixuser.org>
52
53 * epa-mail.el (epa-mail-encrypt): Handle local-part only
54 recipients; expand mail aliases (Bug#7280).
55
56 2010-10-25 Glenn Morris <rgm@gnu.org>
57
58 * term/common-win.el (x-handle-switch): Simplify with pop.
59 Optionally handle numeric switches.
60 (x-handle-numeric-switch): Just call x-handle-switch.
61 (x-handle-initial-switch, x-handle-xrm-switch, x-handle-geometry)
62 (x-handle-name-switch, x-handle-display, x-handle-args):
63 Simplify with pop.
64
65 * term/ns-win.el: Do not require easymenu.
66 (menu-bar-edit-menu) <copy, paste, paste-from-menu, separator-undo>:
67 <spell>: Move adjustments to menu-bar.el.
68 * menu-bar.el (menu-bar-edit-menu) <copy, paste, paste-from-menu>:
69 <separator-undo, spell>: Move ns-win's adjustments here.
70 * loadup.el [ns]: Do not load easymenu.
71
72 2010-10-24 Chong Yidong <cyd@stupidchicken.com>
73
74 * image.el (image-checkbox-checked, image-checkbox-unchecked):
75 Delete (Bug#7222).
76
77 * startup.el (fancy-startup-tail): Instead of using inline images,
78 refer to image files from etc/.
79
80 * wid-edit.el (checkbox): Likewise.
81 (widget-image-find): Center image specs.
82
83 2010-10-24 Glenn Morris <rgm@gnu.org>
84
85 * term/ns-win.el (x-select-text): Doc fix.
86 * w32-fns.el (x-alternatives-map, x-setup-function-keys)
87 (x-select-text): Move to term/common-win.
88 * term/w32-win.el (xw-defined-colors): Move to common-win.
89 * term/x-win.el (xw-defined-colors, x-alternatives-map)
90 (x-setup-function-keys, x-select-text): Move to common-win.
91 * term/common-win.el (x-select-text, x-alternatives-map)
92 (x-setup-function-keys, xw-defined-colors): Merge x- and w32-
93 definitions here.
94
95 2010-10-24 T.V. Raman <tv.raman.tv@gmail.com> (tiny change)
96
97 * net/mairix.el (mairix-searches-mode-map):
98 * mail/mspools.el (mspools-mode-map): Fix 2010-10-10 change.
99
100 2010-10-24 Michael McNamara <mac@mail.brushroad.com>
101
102 * verilog-mode.el (verilog-directive-re): Make this variable
103 auto-built for efficiency of execution and updating.
104 (verilog-extended-complete-re): Support 'pure' fucntion & task
105 declarations (these have no bodies).
106 (verilog-beg-of-statement): general cleanup to enable support of
107 'pure' fucntion & task declarations (these have no bodies). These
108 efforts together fix Verilog bug210 from veripool; which was also
109 noticed by Steve Pearlmutter.
110 (verilog-directive-re, verilog-directive-begin, verilog-indent-re)
111 (verilog-directive-nest-re, verilog-set-auto-endcomments): Support
112 `elsif. Reported by Shankar Giri.
113 (verilog-forward-ws&directives, verilog-in-attribute-p): Fixes for
114 attribute handling for lining up declarations and assignments.
115 (verilog-beg-of-statement-1): Fix issue where continued declaration
116 is indented differently if it is after a begin..end clock.
117 (verilog-in-attribute-p, verilog-skip-backward-comments)
118 (verilog-skip-forward-comment-p): Support proper treatment of
119 attributes by indent code. Reported by Jeff Steele.
120 (verilog-in-directive-p): Fix comment to correctly describe
121 function.
122 (verilog-backward-up-list, verilog-in-struct-region-p)
123 (verilog-backward-token, verilog-in-struct-p)
124 (verilog-in-coverage-p, verilog-do-indent)
125 (verilog-pretty-declarations): Use verilog-backward-up-list as
126 wrapper around backward-up-list inorder to properly skip comments.
127 Reported by David Rogoff.
128 (verilog-property-re, verilog-endcomment-reason-re)
129 (verilog-beg-of-statement, verilog-set-auto-endcomments)
130 (verilog-calc-1 ): Fix for assert a; else b; indentation (new form
131 of if). Reported by Max Bjurling and
132 (verilog-calc-1): Fix for clocking block in modport
133 declaration. Reported by Brian Hunter.
134
135 2010-10-24 Wilson Snyder <wsnyder@wsnyder.org>
136
137 * verilog-mode.el (verilog-auto-inst, verilog-gate-ios)
138 (verilog-gate-keywords, verilog-read-sub-decls)
139 (verilog-read-sub-decls-gate, verilog-read-sub-decls-gate-ios)
140 (verilog-read-sub-decls-line, verilog-read-sub-decls-sig): Support
141 AUTOINST for gate primitives, bug284. Reported by Mark Johnson.
142 (verilog-read-decls): Fix spaces in V2K module parameters causing
143 mis-identification as interfaces, bug287.
144 (verilog-read-decls): Fix not treating "parameter string" as a
145 parameter in AUTOINSTPARAM.
146 (verilog-read-always-signals-recurse, verilog-read-decls): Fix not
147 treating `elsif similar to `endif inside AUTOSENSE.
148 (verilog-do-indent): Implement correct automatic or static task or
149 function end comment highlight. Reported by Steve Pearlmutter.
150 (verilog-font-lock-keywords-2): Fix highlighting of single
151 character pins, bug264. Reported by Michael Laajanen.
152 (verilog-auto-inst, verilog-read-decls, verilog-read-sub-decls)
153 (verilog-read-sub-decls-in-interfaced, verilog-read-sub-decls-sig)
154 (verilog-subdecls-get-interfaced, verilog-subdecls-new): Support
155 interfaces with AUTOINST, bug270. Reported by Luis Gutierrez.
156 (verilog-pretty-expr): Fix interactive arguments, bug272. Reported
157 by Mark Johnson.
158 (verilog-auto-tieoff, verilog-auto-tieoff-ignore-regexp): Add
159 'verilog-auto-tieoff-ignore-regexp' for AUTOTIEOFF,
160 bug269. Suggested by Gary Delp.
161 (verilog-mode-map, verilog-preprocess, verilog-preprocess-history)
162 (verilog-preprocessor, verilog-set-compile-command): Create
163 verilog-preprocess and verilog-preprocessor to show preprocessed
164 output.
165 (verilog-get-beg-of-line, verilog-get-end-of-line)
166 (verilog-modi-file-or-buffer, verilog-modi-name)
167 (verilog-modi-point, verilog-within-string): Move defmacro's
168 before first use to avoid warning. Reported by Steve Pearlmutter.
169 (verilog-colorize-buffer, verilog-colorize-include-files-buffer)
170 (verilog-colorize-region, verilog-highlight-buffer)
171 (verilog-highlight-includes, verilog-highlight-modules)
172 (verilog-highlight-region, verilog-mode): Rename colorize to
173 highlight to match other packages. Disable module highlighting,
174 as received speed complaints, reenable for experimentation only
175 using new verilog-highlight-modules.
176 (verilog-read-decls): Fix regexp stack overflow in very large
177 AUTO_TEMPLATEs, bug250.
178 (verilog-auto, verilog-delete-auto, verilog-save-buffer-state)
179 (verilog-scan): Create verilog-save-buffer-state to standardize
180 making insignificant changes that shouldn't call hooks.
181 (verilog-save-no-change-functions, verilog-save-scan-cache)
182 (verilog-scan, verilog-scan-cache-ok-p, verilog-scan-region):
183 Create verilog-save-no-change-functions to wrap verilog-scan
184 preservation, and fix to work with nested preserved calls.
185 (verilog-auto-inst, verilog-auto-inst-dot-name): Support .name
186 port syntax for AUTOWIRE, and with new verilog-auto-inst-dot-name
187 generate .name with AUTOINST, bug245. Suggested by David Rogoff.
188 (verilog-submit-bug-report): Update variable list to be complete.
189 (verilog-auto, verilog-colorize-region): Fix AUTO expansion
190 breaking on-the-fly font-locking.
191 (verilog-colorize-buffer, verilog-colorize-include-files)
192 (verilog-colorize-include-files-buffer, verilog-colorize-region)
193 (verilog-load-file-at-mouse, verilog-load-file-at-point)
194 (verilog-mode, verilog-read-inst-module-matcher): With point on a
195 AUTOINST cell instance name, middle mouse button now finds-file on
196 it. Suggested by Brad Dobbie.
197 (verilog-alw-get-temps, verilog-auto-reset)
198 (verilog-auto-sense-sigs, verilog-read-always-signals)
199 (verilog-read-always-signals-recurse): Fix loop indexes being
200 AUTORESET. AUTORESET now assumes any variables in the
201 initialization section of a for() should be ignored. Reported by
202 Dan Dever.
203 (verilog-error-font-lock-keywords)
204 (verilog-error-regexp-emacs-alist)
205 (verilog-error-regexp-xemacs-alist): Fix error detection of
206 Cadence HAL, reported by David Asher. Repair drift between the
207 three similar error variables.
208 (verilog-modi-lookup, verilog-modi-lookup-cache)
209 (verilog-modi-lookup-last-current, verilog-modi-lookup-last-mod)
210 (verilog-modi-lookup-last-modi, verilog-modi-lookup-last-tick):
211 Fix slow verilog-auto expansion on very large files.
212 (verilog-read-sub-decls-expr, verilog-read-sub-decls-line): Fix
213 AUTOOUTPUT treating "1*2" as a signal name in submodule connection
214 "{1*2{...". Broke in last revision.
215 (verilog-read-sub-decls-expr): Fix AUTOOUTPUT not detecting
216 submodule connections with replications "{#{a},#{b}}".
217
218 2010-10-24 Juanma Barranquero <lekktu@gmail.com>
219
220 * progmodes/dcl-mode.el (dcl-electric-reindent-regexps):
221 Fix typo in docstring.
222
223 2010-10-24 Kenichi Handa <handa@m17n.org>
224
225 * face-remap.el (text-scale-adjust): Call read-event with a proper
226 prompt.
227
228 2010-10-24 Chong Yidong <cyd@stupidchicken.com>
229
230 * emacs-lisp/unsafep.el: Don't mark functions that display
231 messages as safe. Suggested by Johan Bockgård.
232
233 2010-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
234
235 * emacs-lisp/regexp-opt.el (regexp-opt-group, regexp-opt-charset):
236 Turn comments into docstrings.
237
238 * minibuffer.el (completion--replace): Move point where it belongs
239 when there's a common suffix (bug#7215).
240
241 2010-10-24 Chong Yidong <cyd@stupidchicken.com>
242
243 Merge read-color and facemenu-read-color (Bug#7242).
244
245 * faces.el (read-color): Use the completion code from
246 facemenu-read-color. Require match in completion. Doc fix.
247
248 * facemenu.el (facemenu-read-color): Alias for read-color.
249 (facemenu-set-foreground, facemenu-set-background): Use
250 read-color.
251
252 * frame.el (set-background-color, set-foreground-color)
253 (set-cursor-color, set-mouse-color, set-border-color): Use
254 read-color.
255
256 2010-10-24 Leo <sdl.web@gmail.com>
257
258 * eshell/em-unix.el (eshell-remove-entries): Use the TRASH
259 argument of delete-file and delete-directory (Bug#7011).
260
261 2010-10-24 Chong Yidong <cyd@stupidchicken.com>
262
263 * emacs-lisp/package.el (package-menu-mode-map): Inherit from
264 button-buffer-map.
265
266 2010-10-24 Ralf Angeli <angeli@caeruleus.net>
267
268 * emacs-lisp/package.el (package--generate-package-list): Make the
269 *Packages* buffer read-only.
270
271 2010-10-24 Alan Mackenzie <acm@muc.de>
272
273 * progmodes/cc-fonts.el (c-font-lock-declarations): Cache the
274 result of `c-beginning-of-decl-1' between invocations of a lambda
275 function (Bug #7265).
276
277 2010-10-24 Daiki Ueno <ueno@unixuser.org>
278
279 * epg-config.el (epg-gpg-program): Try to use "gpg2" if "gpg"
280 executable is not available on the system (Bug#7268).
281
282 2010-10-24 Glenn Morris <rgm@gnu.org>
283
284 * select.el (selection-coding-system, next-selection-coding-system):
285 Sync doc with C versions.
286
287 * w32-vars.el (x-select-enable-clipboard):
288 * term/x-win.el (x-select-enable-clipboard): Move to common-win.
289 * term/common-win.el (x-select-enable-clipboard): Move here.
290
291 * term/tty-colors.el (tty-defined-color-alist): Remove duplicate
292 definition of C variable.
293
294 * frame.el (show-trailing-whitespace, auto-hscroll-mode)
295 (display-hourglass, hourglass-delay, cursor-in-non-selected-windows):
296 Don't redefine things that are defined in C.
297 * cus-start.el: Also handle :risky, :safe, :set, and :tag.
298 (show-trailing-whitespace, auto-hscroll-mode)
299 (display-hourglass, hourglass-delay, cursor-in-non-selected-windows):
300 Set up the appropriate custom properties.
301
302 2010-10-24 Chong Yidong <cyd@stupidchicken.com>
303
304 Bind "C-c ]" to ...
305 * progmodes/f90.el (f90-mode-map): ... f90-insert-end.
306 * nxml/nxml-mode.el (nxml-mode-map): ... nxml-finish-element.
307 * textmodes/tex-mode.el (tex-mode-map): ... latex-close-block.
308 * textmodes/sgml-mode.el (sgml-mode-map): ... sgml-close-tag.
309
310 2010-10-23 Glenn Morris <rgm@gnu.org>
311
312 * textmodes/flyspell.el (flyspell-mode): If there was an error,
313 say what it was.
314
315 * frame.el (auto-hscroll-mode, cursor-in-non-selected-windows):
316 Sync docs with C version.
317
318 * term/ns-win.el (xw-defined-colors):
319 * term/x-win.el (xw-defined-colors): Make docs identical to w32-win.
320
321 * term/pc-win.el (x-select-enable-clipboard):
322 * term/x-win.el (x-select-enable-clipboard):
323 * w32-vars.el (x-select-enable-clipboard): Make doc-strings identical.
324
325 * comint.el (comint-password-prompt-regexp): Make it less vague.
326 Bump version.
327
328 * help-fns.el (doc-file-to-man, doc-file-to-info): New commands.
329
330 * help.el (finder-by-keyword): Remove unnecessary autoload.
331
332 2010-10-22 Glenn Morris <rgm@gnu.org>
333
334 * loadup.el: Unconditionally load float-sup.
335 * paren.el (show-paren-delay):
336 * emacs-lisp/float-sup.el:
337 * emulation/cua-base.el (cua-prefix-override-inhibit-delay):
338 * obsolete/lazy-lock.el (lazy-lock-defer-time, lazy-lock-stealth-nice)
339 (lazy-lock-stealth-verbose): Assume float support.
340 * ps-print.el: Assume float support on Emacs.
341 * emacs-lisp/timer.el (timer-next-integral-multiple-of-time):
342 Remove non-float branch.
343
344 * emacs-lisp/autoload.el (batch-update-autoloads): Update for
345 src/Makefile no longer being pre-processed.
346
347 2010-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
348
349 * emacs-lisp/find-func.el (find-library): Use test-completion.
350
351 2010-10-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
352
353 * newcomment.el (comment-dwim): Fix the intentation in the doc string.
354
355 010-10-21 Michael Albinus <michael.albinus@gmx.de>
356
357 * net/tramp-sh.el (tramp-do-file-attributes-with-stat): Do not use
358 space in stat format string.
359 (tramp-send-command): Unset $PS1 when using here documents, in
360 order not to get several prompts.
361 (tramp-get-inline-coding): Return `nil' in case of errors.
362
363 2010-10-21 Daiki Ueno <ueno@unixuser.org>
364
365 * hexl.el (hexl-mode, hexl-mode-exit):
366 Tweak revert-buffer-function to inhibit auto-mode-alist (Bug#7252).
367 (hexl-revert-buffer-function): New function.
368 (hexl-before-revert-hook, hexl-after-revert-hook): Abolish.
369
370 2010-10-19 Alan Mackenzie <acm@muc.de>
371
372 * progmodes/cc-langs.el (c-type-decl-prefix-key): C++ bit:
373 Move "\(const\|throw\|volatile\)\>" nearer the start of the regexp, so
374 that these keywords aren't wrongly matched as identifiers.
375
376 * progmodes/cc-mode.el (c-before-change, c-after-change): Move the
377 setting of c-new-BEG and c-new-END from c-before-change to
378 c-after-change. (Bug#7181)
379
380 2010-10-19 Chong Yidong <cyd@stupidchicken.com>
381
382 * cus-face.el (custom-theme-set-faces): Revert 2010-10-18 change.
383 Don't mark as safe.
384
385 * custom.el (custom-theme-set-variables): Likewise.
386 (load-theme): Add custom-theme-set-faces and
387 custom-theme-set-variables to safe-functions while loading.
388 (custom-enabled-themes): Mark as risky.
389
390 2010-10-18 Julien Danjou <julien@danjou.info>
391
392 * bindings.el: Remove end dashes in default mode-line-format.
393
394 2010-10-19 Chong Yidong <cyd@stupidchicken.com>
395
396 * bindings.el (global-map): Bind C-d to delete-char and deletechar
397 to delete-forward-char.
398
399 * simple.el (normal-erase-is-backspace-mode): Remap delete to
400 deletechar, and hence delete-forward-char.
401
402 2010-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
403
404 * repeat.el (repeat): Use read-key (bug#6256).
405
406 2010-10-19 Chong Yidong <cyd@stupidchicken.com>
407
408 * emacs-lisp/unsafep.el: Don't mark functions that display
409 messages as safe. Suggested by Johan Bockgård.
410
411 2010-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
412
413 * minibuffer.el (completion--replace): Move point where it belongs
414 when there's a common suffix (bug#7215).
415
416 2010-10-19 Kenichi Handa <handa@m17n.org>
417
418 * international/characters.el: Add category '|' (word breakable)
419 to fullwidth characters.
420
421 2010-10-19 Michael Albinus <michael.albinus@gmx.de>
422
423 * net/tramp-sh.el (tramp-do-file-attributes-with-stat)
424 (tramp-do-directory-files-and-attributes-with-stat): Use "e0" in
425 order to make stat results a float. Patch by Andreas Schwab
426 <schwab@linux-m68k.org>.
427
428 2010-10-18 Julien Danjou <julien@danjou.info>
429
430 * avoid.el (mouse-avoidance-ignore-p): Ignore mouse when it is
431 hidden by `make-pointer-invisible'.
432
433 2010-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
434
435 * files.el (locate-file-completion-table): Strip non-matching elements
436 before checking length of list (bug#7238).
437
438 2010-10-18 Chong Yidong <cyd@stupidchicken.com>
439
440 * custom.el (custom-theme-set-variables): Mark as a safe function.
441 (load-theme): Check forms using unsafep.
442
443 * cus-face.el (custom-theme-set-faces): Mark as a safe function.
444
445 2010-10-17 Agustín Martín <agustin.martin@hispalinux.es>
446
447 * textmodes/ispell.el (ispell-aspell-find-dictionary):
448 Fix aspell data file searching (bug#7230).
449
450 2010-10-16 Chong Yidong <cyd@stupidchicken.com>
451
452 * cus-theme.el (custom-theme--migrate-settings): New var.
453 (customize-create-theme): Allow editing the `user' theme.
454 (custom-theme-add-variable, custom-theme-add-var-1)
455 (custom-theme-add-face, custom-theme-add-face-1): Add a checkbox
456 to the front of each variable or face widget.
457 (custom-theme-write): Save theme settings in the correct order.
458 Optionally, remove saved settings from user customizations.
459 (custom-theme-write-variables, custom-theme-write-faces):
460 Save only the checked widgets.
461 (customize-themes): Add a link for migrating custom settings.
462
463 * custom.el (custom-declare-theme, provide-theme):
464 Use custom-theme-name-valid-p.
465 (custom-theme-name-valid-p): Remove checks that are now
466 unnecessary since themes no longer obey load-path.
467
468 * cus-edit.el (custom-variable-value-create): For the simple
469 style, hide documentation string when hidden.
470
471 2010-10-16 Chong Yidong <cyd@stupidchicken.com>
472
473 * cus-edit.el (custom-variable, custom-face): Combine the
474 :inhibit-magic and :display-style properties into a single
475 :custom-style property.
476 (custom-toggle-hide-variable, custom-toggle-hide-face):
477 New functions. If hiding an edited value, save it to :shown-value.
478 (custom-variable-value-create, custom-face-value-create): Use them.
479 (custom-magic-reset): Allow magic property to be unset.
480
481 * custom.el: Custom themes no longer use load-path.
482 (custom-theme-load-path): New option. Change built-in theme
483 directory to etc/.
484 (custom-enabled-themes): Add custom-theme-load-path dependency.
485 (custom-theme--load-path): New function.
486 (load-theme, custom-available-themes): Use it.
487
488 * cus-theme.el (describe-theme-1): Use custom-theme--load-path.
489 (customize-themes): Link to custom-theme-load-path variable.
490 (custom-theme-add-var-1, custom-theme-add-face-1): Use the
491 :custom-style property.
492
493 * themes/*.el: Moved to etc/.
494
495 2010-10-16 Ralf Angeli <angeli@caeruleus.net>
496
497 * textmodes/reftex-cite.el
498 (reftex-extract-bib-entries-from-thebibliography): Do not move
499 point when searching for \bibitem entries. Match entries with
500 spaces or tabs in front of arguments.
501
502 2010-10-16 Chong Yidong <cyd@stupidchicken.com>
503
504 * cus-theme.el (customize-create-theme): Delete overlays after
505 erasing. If given a THEME arg, display only the faces of that arg
506 instead of custom-theme--listed-faces.
507 (custom-theme-variable-menu, custom-theme-variable-action)
508 (custom-variable-reset-theme, custom-theme-delete-variable): Delete.
509 (custom-theme-add-variable, custom-theme-add-face): Apply value
510 from the theme settings, instead of the current value.
511 (custom-theme-add-var-1, custom-theme-add-face-1): New functions.
512 (custom-theme-visit-theme): Allow calling outside theme buffers.
513 (custom-theme-merge-theme): Don't enable the theme when merging.
514 (custom-theme-write-variables, custom-theme-write-faces): Use the
515 :shown-value properties to save buffer values, not global ones.
516 (customize-themes): Display a warning about user customizations.
517
518 * cus-edit.el (custom-variable-value-create)
519 (custom-face-value-create): Obey new special properties
520 :shown-value and :inhibit-magic.
521
522 2010-10-15 Michael Albinus <michael.albinus@gmx.de>
523
524 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell):
525 Suppress expansion of tabs to spaces. Reported by Dale Sedivec
526 <dale@codefu.org>.
527
528 2010-10-14 Kenichi Handa <handa@m17n.org>
529
530 * mail/rmail.el (rmail-show-message-1): Catch an error of
531 base64-decode-region and just show an error message (bug#7165).
532
533 * ps-mule.el (ps-mule-font-spec-list): Delete it. Not used anymore.
534 (ps-mule-begin-job): Fix for the case that only ENCODING is set in
535 a font-spec (bug#7197).
536
537 2010-10-14 Glenn Morris <rgm@gnu.org>
538
539 * mail/emacsbug.el (report-emacs-bug): Mention debbugs.gnu.org.
540
541 2010-10-14 Juanma Barranquero <lekktu@gmail.com>
542
543 * international/mule.el (define-coding-system):
544 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
545 * composite.el (compose-region): Fix typo in docstring.
546
547 2010-10-14 Chong Yidong <cyd@stupidchicken.com>
548
549 * cus-face.el (custom-theme-set-faces): Call custom-push-theme
550 only after checking the theme-face property.
551
552 * faces.el (face-spec-reset-face): Reset all attributes in one
553 single call to set-face-attribute.
554 (face-spec-match-p): Make it a defsubst.
555 (frame-set-background-mode): New arg KEEP-FACE-SPECS.
556 (x-create-frame-with-faces, tty-create-frame-with-faces)
557 (tty-set-up-initial-frame-faces): Don't recompute face specs in
558 frame-set-background-mode, since they are recomputed immediately
559 afterwards in face-set-after-frame-default.
560 (face-set-after-frame-default): Minor optimization.
561 (cursor): Provide non-trivial defface spec.
562
563 * custom.el (custom-theme-recalc-face): Simplify.
564
565 2010-10-14 Jay Belanger <jay.p.belanger@gmail.com>
566
567 * calc/calc-alg.el (math-var): Rename from `var'.
568 (math-is-polynomial, math-is-poly-rec): Replace `var'
569 with `math-var'.
570
571 * calc/calcalg2.el (math-var): Rename from `var'.
572 (calcFunc-table, math-scan-for-limits): Replace `var'
573 with `math-var'.
574
575 2010-10-13 Glenn Morris <rgm@gnu.org>
576
577 * subr.el (last): Deal with dotted lists (reported in bug#7174).
578
579 2010-10-13 Stephen Berman <stephen.berman@gmx.net>
580
581 * subr.el (last): Use `safe-length' instead of `length' (bug#7206).
582
583 2010-10-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
584
585 * net/tls.el (tls-program): Remove spurious %s from openssl.
586 (tls-starttls-switches): Remove starttls hack.
587 (open-tls-stream): Ditto.
588 (tls-find-starttls-argument): Ditto.
589
590 2010-10-13 Juanma Barranquero <lekktu@gmail.com>
591
592 * image.el (image-library-alist): Declare as obsolete alias.
593 (image-type-available-p): Use `dynamic-library-alist'.
594
595 * term/w32-win.el (dynamic-library-alist):
596 Use instead of `image-library-alist'.
597
598 2010-10-13 IRIE Shinsuke <irieshinsuke@yahoo.co.jp> (tiny change)
599
600 * subr.el (last): Make it faster. (Bug#7174)
601
602 2010-10-13 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> (tiny change)
603
604 * Makefile.in (compile-clean): Use `` instead of $(). (Bug#7178)
605
606 2010-10-12 Chong Yidong <cyd@stupidchicken.com>
607
608 * cus-theme.el (custom-theme--listed-faces): Add cursor face.
609 (describe-theme-1): Extract doc from unloaded themes.
610
611 * custom.el (custom-theme-name-valid-p): Don't list color-themes.
612
613 * themes/tango-theme.el:
614 * themes/tango-dark-theme.el:
615 * themes/wheatgrass-theme.el: New files.
616
617 2010-10-12 Chong Yidong <cyd@stupidchicken.com>
618
619 * cus-theme.el (describe-theme, customize-themes)
620 (custom-theme-save): New commands.
621 (custom-new-theme-mode-map): Bind C-x C-s.
622 (custom-new-theme-mode): Use custom--initialize-widget-variables.
623 (customize-create-theme): New optional arg THEME.
624 (custom-theme-revert): Use it.
625 (custom-theme-visit-theme): Remove dead code.
626 (custom-theme-merge-theme): Use custom-available-themes.
627 (custom-theme-write): Make interactive.
628 (custom-theme-write): Use custom-theme-name-valid-p.
629 (describe-theme-1, custom-theme-choose-revert)
630 (custom-theme-checkbox-toggle, custom-theme-selections-toggle):
631 New funs.
632 (custom-theme-allow-multiple-selections): New option.
633 (custom-theme-choose-mode): New major mode.
634
635 * custom.el (custom-theme-set-variables): Remove dead code.
636 Obey custom--inhibit-theme-enable.
637 (custom--inhibit-theme-enable): New var.
638 (provide-theme): Obey it.
639 (load-theme): Replace load with manual read/eval, in order to
640 check for correctness. Use custom-theme-name-valid-p.
641 (custom-theme-name-valid-p): New function.
642 (custom-available-themes): Use it.
643
644 * cus-edit.el (custom--initialize-widget-variables): New function.
645 (Custom-mode): Use it.
646
647 * cus-face.el (custom-theme-set-faces): Remove dead code.
648 Obey custom--inhibit-theme-enable.
649
650 * help-mode.el (help-theme-def, help-theme-edit): New buttons.
651
652 2010-10-12 Juanma Barranquero <lekktu@gmail.com>
653
654 * net/telnet.el (telnet-mode-map): Fix previous change (bug#7193).
655
656 2010-10-12 Jan Djärv <jan.h.d@swipnet.se>
657
658 * term/ns-win.el (ns-right-alternate-modifier): New defvar.
659 (ns-right-option-modifier): New alias for ns-right-alternate-modifier.
660 (mac-right-option-modifier): New alias for ns-right-option-modifier.
661
662 * cus-start.el (all): ns-right-alternate-modifier is new.
663
664 2010-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
665
666 * emacs-lisp/lisp.el (lisp-completion-at-point):
667 Use emacs-lisp-mode-syntax-table for the whole function.
668
669 2010-10-12 David Koppelman <koppel@ece.lsu.edu>
670
671 * hi-lock.el (hi-lock-font-lock-hook): Check font-lock-fontified
672 instead of font-lock-mode before adding keywords.
673 Remove hi-lock-mode off code. Remove inhibit hack.
674 (hi-lock-set-pattern): Only add keywords if font-lock-fontified
675 non-nil; removed hook inhibit hack.
676
677 2010-10-12 Glenn Morris <rgm@gnu.org>
678
679 * emacs-lisp/shadow.el (find-emacs-lisp-shadows): Rename it...
680 (load-path-shadows-find): ... to this.
681 (list-load-path-shadows): Update for above change.
682
683 * mail/mail-utils.el (mail-mbox-from): Also try return-path.
684
685 2010-10-11 Katsumi Yamaoka <yamaoka@jpl.org>
686
687 * mail/hashcash.el, net/imap.el, pgg-parse.el, pgg.el:
688 Fix comment for declare-function.
689
690 2010-10-11 Chong Yidong <cyd@stupidchicken.com>
691
692 * custom.el (custom-fix-face-spec): New function; code moved from
693 custom-face-edit-fix-value.
694 (custom-push-theme): Use it when checking if a face has been
695 changed outside customize.
696 (custom-available-themes): New function.
697 (load-theme): Use it.
698
699 * cus-edit.el (custom-face-edit-fix-value): Use custom-fix-face-spec.
700
701 * custom.el (custom-push-theme): Cleanup (use cond).
702 (disable-theme): Recompute the saved-face property.
703 (custom-theme-recalc-face): Follow face alias before setting prop.
704
705 * image.el (image-checkbox-checked, image-checkbox-unchecked):
706 New variables, containing checkbox images.
707
708 * startup.el (fancy-startup-tail):
709 * wid-edit.el (checkbox): Use them.
710
711 2010-10-10 Dan Nicolaescu <dann@ics.uci.edu>
712
713 * shell.el (shell-mode-map):
714 * progmodes/modula2.el (m2-mode-map):
715 * progmodes/inf-lisp.el (inferior-lisp-mode-map):
716 * play/mpuz.el (mpuz-mode-map):
717 * play/landmark.el (lm-mode-map):
718 * play/decipher.el (decipher-mode-map):
719 * play/5x5.el (5x5-mode-map):
720 * net/telnet.el (telnet-mode-map):
721 * net/quickurl.el (quickurl-list-mode-map):
722 * net/mairix.el (mairix-searches-mode-map):
723 * net/eudc-hotlist.el (eudc-hotlist-mode-map):
724 * net/dig.el (dig-mode-map):
725 * mail/mspools.el (mspools-mode-map):
726 * hexl.el (hexl-mode-map):
727 * emulation/ws-mode.el (wordstar-C-k-map, wordstar-mode-map)
728 (wordstar-C-o-map, wordstar-C-q-map):
729 * emacs-lisp/edebug.el (edebug-eval-mode-map):
730 * emacs-lisp/chart.el (chart-map):
731 * edmacro.el (edmacro-mode-map):
732 * erc/erc-list.el (erc-list-menu-mode-map):
733 * array.el (array-mode-map): Declare and define in one step.
734
735 * vc/log-view.el (log-view-mode-map): Bind revert-buffer.
736
737 2010-10-10 Daiki Ueno <ueno@unixuser.org>
738
739 * epa.el (epa-passphrase-callback-function): Display filename
740 passed as the 3rd arg.
741 * epa-file.el (epa-file-passphrase-callback-function):
742 Pass filename to epa-passphrase-callback-function.
743
744 2010-10-09 Chong Yidong <cyd@stupidchicken.com>
745
746 * cus-edit.el (custom-face-widget-to-spec)
747 (custom-face-get-current-spec, custom-face-state): New functions.
748 (custom-face-set, custom-face-mark-to-save)
749 (custom-face-value-create, custom-face-state-set): Use them.
750
751 * cus-theme.el (custom-theme--listed-faces): New var.
752 (customize-create-theme): Use *Custom Theme* as the buffer name.
753 Set revert-buffer-function. Optional arg BUFFER. Insert all
754 faces listed in custom-theme--listed-faces.
755 (custom-theme-revert): New function.
756 (custom-theme-add-variable, custom-theme-add-face): Insert at the
757 bottom of the list.
758 (custom-theme-write): Prompt for theme name if empty.
759 (custom-theme-write-variables): Use dolist.
760 (custom-theme-write-faces): Handle hidden (collapsed) widgets.
761
762 2010-10-09 Alan Mackenzie <acm@muc.de>
763
764 Enhance fontification of declarators to take account of the
765 presence/absence of "typedef".
766
767 * cc-engine.el (c-forward-type): New &optional param
768 "brace-block-too".
769 (c-forward-decl-or-cast-1): cdr of return value now indicates the
770 presence of either or both of a "struct"-like keyword and "typedef".
771
772 * cc-fonts.el (c-complex-decl-matchers): Remove the heuristic
773 fontification of declarators which follow a "}".
774 (c-font-lock-declarations): Fontify declarators according to the
775 presence/absence of "typedef".
776
777 * cc-langs.el (c-typedef-kwds c-typedef-key): New lang variable
778 for "typedef".
779 (c-typedef-decl-key): New lang variable built from
780 c-typedef-decl-kwds.
781
782 2010-10-09 Lars Magne Ingebrigtsen <larsi@gnus.org>
783
784 * ibuffer.el (ibuffer-mode-map): Don't redefine the cursor keys,
785 since that's too annoying. Move the filter groups commands to
786 TAB/backtab.
787
788 * epa.el (epa-passphrase-callback-function): Say what we're
789 querying the password for.
790
791 * ibuffer.el (ibuffer-visit-buffer): To mimick list-buffers
792 behaviour, don't bury the ibuffer buffer when visiting other buffers.
793
794 2010-10-08 Chong Yidong <cyd@stupidchicken.com>
795
796 * cus-edit.el (custom-commands, custom-buffer-create-internal)
797 (custom-magic-value-create): Pad button tags with spaces.
798 (custom-face-edit): New variable.
799 (custom-face-value-create): Determine whether to use the usual
800 face editor here, instead of using custom-face-selected.
801 Pass face defaults to custom-face-edit widget.
802 (custom-face-selected, custom-display-unselected): Delete widgets.
803 (custom-display-unselected-match): Function removed.
804 (custom-face-set, custom-face-mark-to-save):
805 Accept custom-face-edit widgets as the direct widget child.
806
807 * wid-edit.el (widget--completing-widget): New var.
808 (widget-default-complete): Bind it when doing completion.
809 (widget-string-complete, widget-file-complete): Use it.
810
811 2010-10-09 Glenn Morris <rgm@gnu.org>
812
813 * calendar/cal-hebrew.el (holiday-hebrew-rosh-hashanah)
814 (holiday-hebrew-passover, holiday-hebrew-tisha-b-av)
815 (holiday-hebrew-misc): Small simplifications.
816
817 * emacs-lisp/authors.el (authors-valid-file-names): Add b2m.c.
818
819 * net/browse-url.el: Don't require thingatpt, term, dired,
820 executable, or w3-auto when compiling.
821 (dired-get-filename, term-char-mode, term-send-down, term-send-string):
822 Declare.
823 (browse-url-text-emacs): Require term.
824
825 2010-10-08 Andreas Schwab <schwab@linux-m68k.org>
826
827 * net/browse-url.el (browse-url-xdg-open): Remove use of /bin/sh.
828
829 2010-10-08 Glenn Morris <rgm@gnu.org>
830
831 * emacs-lisp/cl-compat.el, emacs-lisp/lmenu.el: Move to obsolete/.
832
833 * emacs-lisp/shadow.el (lisp-shadow): Change prefix.
834 (shadows-compare-text-p): Make it an obsolete alias for...
835 (load-path-shadows-compare-text): ... new name.
836 (find-emacs-lisp-shadows): Update for above name change.
837 (load-path-shadows-same-file-or-nonexistent): New name for the old
838 shadow-same-file-or-nonexistent.
839
840 2010-10-08 Chong Yidong <cyd@stupidchicken.com>
841
842 * minibuffer.el (completion--some, completion--do-completion)
843 (minibuffer-complete-and-exit, minibuffer-completion-help)
844 (completion-basic-try-completion)
845 (completion-basic-all-completions)
846 (completion-pcm--find-all-completions): Use lexical-let to
847 avoid some false matches in variable completion (Bug#7056)
848
849 2010-10-08 Olof Ohlsson Sax <olof.ohlsson.sax@gmail.com> (tiny change)
850
851 * vc-svn.el (vc-svn-merge-news): Use --non-interactive. (Bug#7152)
852
853 2010-10-08 Leo <sdl.web@gmail.com>
854
855 * dnd.el (dnd-get-local-file-name): If MUST-EXIST is non-nil, only
856 return non-nil if the file exists (Bug#7090).
857
858 2010-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
859
860 * minibuffer.el (completion--replace):
861 Better preserve markers (bug#7138).
862
863 2010-10-08 Juanma Barranquero <lekktu@gmail.com>
864
865 * server.el (server-process-filter): Doc fix.
866
867 2010-10-08 Drew Adams <drew.adams@oracle.com>
868
869 * dired.el (dired-save-positions): Doc fix. (Bug#7119)
870
871 2010-10-08 Andreas Schwab <schwab@linux-m68k.org>
872
873 * Makefile.in (ELCFILES): Update.
874
875 2010-10-08 Glenn Morris <rgm@gnu.org>
876
877 * vc/ediff-wind.el (ediff-setup-control-frame):
878 * vc/ediff-ptch.el (ediff-default-backup-extension):
879 * vc/ediff-diff.el (ediff-shell, ediff-diff-options)
880 (ediff-exec-process): Remove system-types emx, windows-95.
881
882 * net/browse-url.el (browse-url-xdg-open): Shell-quote url. (Bug#7166)
883
884 2010-10-07 Chong Yidong <cyd@stupidchicken.com>
885
886 * cus-edit.el (custom-variable, custom-face): Doc fix.
887 (custom-face-edit): Add value-create attribute.
888 (custom-face-edit-value-create)
889 (custom-face-edit-value-visibility-action): New functions.
890 Hide unused face attributes by default, and add a visibility toggle.
891 (custom-face-edit-deactivate): Show empty values with shadow face.
892 (custom-face-selected): Only use this for face specs with default
893 attributes.
894 (custom-face-value-create): Cleanup.
895
896 * wid-edit.el (widget-checklist-value-create): Use dolist.
897 (widget-checklist-match-find): Make second arg optional.
898
899 2010-10-07 Glenn Morris <rgm@gnu.org>
900
901 * hilit-chg.el (hilit-chg-get-diff-info, hilit-chg-get-diff-list-hk):
902 Prefix things.
903
904 * emacs-lisp/shadow.el (shadow-font-lock-keywords)
905 (load-path-shadows-mode, list-load-path-shadows): Rename shadow-mode to
906 load-path-shadows-mode, update references.
907 (load-path-shadows-font-lock-keywords, load-path-shadows-find-file):
908 Rename variable and button.
909 (list-load-path-shadows): Update button caller.
910
911 2010-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
912
913 * emacs-lisp/smie.el (smie-bnf-classify): New function.
914 (smie-bnf-precedence-table): Use it to remember the closers/openers.
915 (smie-merge-prec2s): Handle those new entries.
916 (smie-prec2-levels): Only set precedence to nil for actual
917 openers/closers.
918 * progmodes/octave-mod.el (octave-smie-op-levels): Remove dummy entry
919 that is now unnecessary.
920
921 2010-10-07 Miles Bader <miles@gnu.org>
922
923 * emacs-lisp/regexp-opt.el (regexp-opt): Add `symbols' mode.
924
925 2010-10-07 Glenn Morris <rgm@gnu.org>
926
927 * mail/rmail.el (mail-sendmail-delimit-header, mail-header-end)
928 (mail-position-on-field): Remove declarations.
929 (mail-position-on-field): Autoload it.
930 (rmail-retry-failure): Replace use of mail-sendmail-delimit-header
931 and mail-header-end. Don't require sendmail.
932
933 * emacs-lisp/shadow.el (shadow-font-lock-keywords): New variable.
934 (shadow-mode): New mode.
935 (shadow-find-file): New button.
936 (list-load-path-shadows): Use shadow-mode and buttons.
937
938 * iimage.el (iimage-version): Remove.
939 (iimage-mode-image-search-path, iimage-mode-image-regex-alist):
940 Turn into defcustoms.
941 (iimage-mode-map): Give it a doc string.
942
943 * calendar/appt.el (appt-activate): Give a warning rather than an error
944 if there is no diary-file.
945
946 2010-10-06 Michael Albinus <michael.albinus@gmx.de>
947
948 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
949 Use `tramp-handle-find-backup-file-name'.
950
951 2010-10-06 Glenn Morris <rgm@gnu.org>
952
953 * font-core.el (font-lock-defaults-alist): Remove variable.
954 (font-lock-mode): Doc fix.
955 (font-lock-default-function): Do not consult font-lock-defaults-alist.
956 * font-lock.el (font-lock-refresh-defaults): Doc fix.
957 (font-lock-set-defaults): Doc fix.
958 Do not consult font-lock-defaults-alist.
959
960 * hilit-chg.el (hilit-chg-get-diff-list-hk): Declare `e' for compiler.
961
962 * emacs-lisp/cl.el: No longer provide cl-19.
963
964 2010-10-05 Michael Albinus <michael.albinus@gmx.de>
965
966 * net/tramp.el (tramp-handle-directory-files-and-attributes)
967 (tramp-handle-file-exists-p, tramp-handle-file-newer-than-file-p):
968 New defuns, taken from tramp-smb.el.
969 (tramp-coding-system-change-eol-conversion)
970 (tramp-set-process-query-on-exit-flag): Remove.
971
972 * net/tramp-compat.el (top): Do not check for byte-compiler objects.
973 (tramp-compat-coding-system-change-eol-conversion)
974 (tramp-compat-set-process-query-on-exit-flag): New defuns, taken
975 from tramp.el.
976
977 * net/tramp-gvfs.el:
978 * net/tramp-gw.el: Replace `tramp-set-process-query-on-exit-flag'
979 by `tramp-compat-set-process-query-on-exit-flag'.
980
981 * net/tramp-imap.el (tramp-imap-file-name-handler-alist):
982 Use `tramp-handle-directory-files-and-attributes',
983 `tramp-handle-file-exists-p' and
984 `tramp-handle-file-newer-than-file-p'.
985 (tramp-imap-handle-file-exists-p)
986 (tramp-imap-handle-file-executable-p)
987 (tramp-imap-handle-file-readable-p)
988 (tramp-imap-handle-directory-files-and-attributes)
989 (tramp-imap-handle-file-newer-than-file-p): Remove.
990
991 * net/tramp-sh.el: Replace `tramp-set-process-query-on-exit-flag'
992 by `tramp-compat-set-process-query-on-exit-flag' and
993 `tramp-coding-system-change-eol-conversion' by
994 `tramp-compat-coding-system-change-eol-conversion'.
995
996 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
997 Use `tramp-handle-directory-files-and-attributes',
998 `tramp-handle-file-exists-p' and
999 `tramp-handle-file-newer-than-file-p'.
1000 (tramp-smb-handle-directory-files-and-attributes)
1001 (tramp-smb-handle-file-exists-p)
1002 (tramp-smb-handle-file-newer-than-file-p): Remove.
1003 (tramp-smb-maybe-open-connection):
1004 Replace `tramp-set-process-query-on-exit-flag' by
1005 `tramp-compat-set-process-query-on-exit-flag'.
1006
1007 2010-10-05 Glenn Morris <rgm@gnu.org>
1008
1009 * obsolete/rnews.el, obsolete/rnewspost.el: Remove files.
1010
1011 2010-10-04 Michael Albinus <michael.albinus@gmx.de>
1012
1013 Continue reorganization of load dependencies. (Bug#7156)
1014
1015 * net/tramp.el (tramp-handle-file-local-copy-hook)
1016 (tramp-delete-temp-file-function): Move down.
1017 (tramp-exists-file-name-handler): Move up.
1018 (tramp-register-file-name-handlers): Simplify autoload.
1019 (tramp-handle-write-region-hook, tramp-handle-directory-file-name)
1020 (tramp-handle-directory-files, tramp-handle-dired-uncache)
1021 (tramp-handle-file-modes, tramp-handle-file-name-as-directory)
1022 (tramp-handle-file-name-completion)
1023 (tramp-handle-file-name-directory)
1024 (tramp-handle-file-name-nondirectory, tramp-handle-file-regular-p)
1025 (tramp-handle-file-remote-p, tramp-handle-file-symlink-p)
1026 (tramp-handle-find-backup-file-name)
1027 (tramp-handle-insert-file-contents, tramp-handle-load)
1028 (tramp-handle-substitute-in-file-name)
1029 (tramp-handle-unhandled-file-name-directory)
1030 (tramp-mode-string-to-int, tramp-local-host-p)
1031 (tramp-make-tramp-temp-file): Move from tramp-sh.el.
1032
1033 * net/tramp-gvfs.el (top):
1034 * net/tramp-smb.el (top): Do not require 'tramp-sh.
1035
1036 * net/tramp-sh.el (all): Move several objects to tramp.el, see
1037 there. Rename `tramp-handle-*' to `tramp-sh-handle-*'.
1038
1039 2010-10-04 Glenn Morris <rgm@gnu.org>
1040
1041 * calendar/appt.el (appt-add): Ensure reminders are enabled.
1042 (appt-activate): Give status messages.
1043
1044 2010-10-03 Teodor Zlatanov <tzz@lifelogs.com>
1045
1046 * net/gnutls.el: Improve docs. Remove starttls and ssl emulation.
1047 Provide only `open-gnutls-stream' (formerly `open-ssl-stream') and
1048 `gnutls-negotiate' (formerly `starttls-negotiate').
1049 Remove trivial wrapper `starttls-open-stream'.
1050
1051 2010-10-03 Dan Nicolaescu <dann@ics.uci.edu>
1052
1053 Make 'g' (AKA revert-buffer) rerun the VC log, log-incoming and
1054 log-outgoing commands.
1055 * vc/vc.el (vc-log-internal-common): Add a new argument and use it
1056 to create a buffer local revert-buffer-function variable.
1057 (vc-print-log-internal, vc-log-incoming, vc-log-outgoing): Pass a
1058 revert-buffer-function lambda.
1059
1060 2010-10-03 Teodor Zlatanov <tzz@lifelogs.com>
1061
1062 * net/gnutls.el (starttls-negotiate): Use the plist interface to
1063 `gnutls-boot'. Make TYPE the only required parameter.
1064 Allow TRUSTFILES and KEYFILES to be lists.
1065 (open-ssl-stream): Use it.
1066
1067 2010-10-03 Glenn Morris <rgm@gnu.org>
1068
1069 * subr.el (directory-sep-char): Remove obsolete variable.
1070 * net/tramp-compat.el: Don't mess about with the byte-compiler unless
1071 it is "necessary".
1072
1073 * vc/vc-hooks.el (vc-header-alist): Remove obsolete variable.
1074 * vc/vc.el (vc-static-header-alist): Doc fix.
1075 * vc/vc-cvs.el (vc-cvs-header):
1076 * vc/vc-rcs.el (vc-rcs-header):
1077 * vc/vc-sccs.el (vc-sccs-header):
1078 * vc/vc-svn.el (vc-svn-header): Do not consult vc-header-alist.
1079 * obsolete/vc-mcvs.el (vc-mcvs-header):
1080 * progmodes/cperl-mode.el (cperl-mode): Only set vc-header-alist
1081 on XEmacs.
1082
1083 2010-10-03 Chong Yidong <cyd@stupidchicken.com>
1084
1085 * emacs-lisp/bytecomp.el (byte-compile-from-buffer):
1086 Remove obsolete use of binary-overwrite-mode (Bug#7001).
1087
1088 2010-10-03 Glenn Morris <rgm@gnu.org>
1089
1090 * obsolete/x-menu.el: Remove file, obsolete since 21.1
1091
1092 * textmodes/rst.el (rst-font-lock-keywords-function):
1093 Drop Emacs 20 code.
1094
1095 * textmodes/artist.el (artist-replace-char): Drop Emacs 20 code.
1096
1097 * printing.el: Drop Emacs 20 code.
1098
1099 * calendar/appt.el (appt-delete): Don't autoload it (you can't use it
1100 without having used appt.el already).
1101
1102 * subr.el (make-local-hook): Remove function obsolete since 21.1.
1103 * progmodes/cc-mode.el (make-local-hook): Don't do cc-bytecomp stuff.
1104 (c-basic-common-init, c-font-lock-init): Only call make-local-hook on
1105 XEmacs.
1106 * progmodes/cc-styles.el (make-local-hook): Don't do cc-bytecomp stuff.
1107 (c-make-styles-buffer-local): Only call make-local-hook on XEmacs.
1108
1109 * ps-def.el (leading-code-private-22, charset-bytes, charset-id)
1110 (charset-width, find-charset-region, chars-in-region, forward-point)
1111 (encode-coding-string, coding-system-p, ccl-execute-on-string)
1112 (define-ccl-program, multibyte-string-p, string-make-multibyte):
1113 Remove compatibility cruft (none of these are used by ps*.el).
1114
1115 2010-10-03 Kevin Rodgers <kevin.d.rodgers@gmail.com>
1116
1117 * subr.el (booleanp): Return t instead of a list (Bug#7086).
1118
1119 2010-10-03 Chong Yidong <cyd@stupidchicken.com>
1120
1121 * server.el (server-process-filter, server-return-error):
1122 Give emacsclient time to shut down after receiving an error string.
1123
1124 2010-10-02 Michael Albinus <michael.albinus@gmx.de>
1125
1126 * files.el (remote-file-name-inhibit-cache): New defcustom.
1127
1128 * time.el (display-time-file-nonempty-p):
1129 Use `remote-file-name-inhibit-cache'.
1130
1131 * net/tramp.el (tramp-completion-reread-directory-timeout):
1132 Fix docstring.
1133
1134 * net/tramp-cache.el (tramp-cache-inhibit-cache): Remove.
1135 (tramp-get-file-property): Replace `tramp-cache-inhibit-cache' by
1136 `remote-file-name-inhibit-cache'. Check also for an integer
1137 value. Add/increase counter when `tramp-verbose' >= 10.
1138 (tramp-set-file-property): Add/increase counter when
1139 `tramp-verbose' >= 10.
1140
1141 * net/tramp-cmds.el (tramp-cleanup-all-connections)
1142 (tramp-cleanup-all-buffers): Set tramp-autoload cookie.
1143 (tramp-bug): Set tramp-autoload cookie. Report all interned
1144 tramp-* variables. Report also `remote-file-name-inhibit-cache'.
1145 (tramp-reporter-dump-variable): Fix docstring. Mask non-7bit
1146 characters only in strings.
1147
1148 * net/tramp-compat.el (remote-file-name-inhibit-cache): Define due
1149 to backward compatibility.
1150
1151 * net/tramp-sh.el (tramp-handle-verify-visited-file-modtime)
1152 (tramp-handle-file-name-all-completions)
1153 (tramp-handle-vc-registered): Use `remote-file-name-inhibit-cache'.
1154 (tramp-open-connection-setup-interactive-shell):
1155 Call `tramp-cleanup-connection' directly.
1156
1157 2010-10-02 Glenn Morris <rgm@gnu.org>
1158
1159 * emacs-lisp/checkdoc.el (checkdoc-minor-keymap): Remove obsolete alias.
1160
1161 * subr.el (char-bytes): Remove obsolete function.
1162
1163 * isearch.el (isearch-return-char): Remove obsolete function.
1164
1165 * mouse.el: No longer provide mldrag.
1166 (mldrag-drag-mode-line, mldrag-drag-vertical-line):
1167 Remove obsolete aliases.
1168
1169 * comint.el (comint-kill-output): Remove obsolete alias.
1170
1171 * composite.el (decompose-composite-char): Remove obsolete function.
1172 * ps-def.el (decompose-composite-char): Remove unused function.
1173
1174 * iswitchb.el (iswitchb-default-keybindings): Remove obsolete function.
1175
1176 * outline.el (outline-visible): Remove obsolete function.
1177
1178 * term/pc-win.el (x-frob-font-slant, x-frob-font-weight):
1179 * faces.el (internal-find-face, internal-get-face)
1180 (frame-update-faces, frame-update-face-colors)
1181 (x-frob-font-weight, x-frob-font-slant)
1182 (internal-frob-font-weight, internal-frob-font-slant)
1183 (x-make-font-bold, x-make-font-demibold, x-make-font-unbold)
1184 (x-make-font-italic, x-make-font-oblique, x-make-font-unitalic)
1185 (x-make-font-bold-italic): Remove functions and aliases, obsolete
1186 since Emacs 21.1.
1187 * emulation/viper-util.el (viper-get-face):
1188 * obsolete/lucid.el (find-face, get-face): Use facep.
1189 * vc/ediff-init.el (ediff-valid-color-p, ediff-get-face):
1190 Remove unused functions.
1191 * vc/ediff-util.el (ediff-submit-report): Doc fix.
1192
1193 * emacs-lisp/bytecomp.el (byte-compile-file): Use kill-emacs-hook to
1194 delete tempfile if interrupted during compilation.
1195
1196 2010-10-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
1197
1198 * net/tls.el (tls-starttls-switches): Give up on using starttls with
1199 gnutls-cli.
1200 (tls-program): Add --insecure to be consistent with the defaults from
1201 openssl s_client. Now all three commands are insecure.
1202
1203 2010-10-01 Eli Zaretskii <eliz@gnu.org>
1204
1205 * makefile.w32-in (DEST, TAGS, TAGS-LISP, TAGS-nmake)
1206 (TAGS-LISP-nmake, TAGS-gmake, TAGS-LISP-gmake, TAGS-SH)
1207 (TAGS-LISP-SH, TAGS-CMD, TAGS-LISP-CMD): New targets.
1208
1209 2010-10-01 Glenn Morris <rgm@gnu.org>
1210
1211 * obsolete/sc.el: Remove file.
1212
1213 * files.el (temporary-file-directory): On darwin, also try
1214 DARWIN_USER_TEMP_DIR (see discussion in bug#7135).
1215
1216 2010-10-01 Juanma Barranquero <lekktu@gmail.com>
1217
1218 * server.el (server-start): Revert part of 2010-09-30T02:53:26Z!lekktu@gmail.com.
1219 Let's not break compatibility gratuitously, shall we?
1220
1221 2010-09-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
1222
1223 * net/tls.el (tls-starttls-switches): New variable.
1224 (tls-find-starttls-argument): Use it.
1225 (open-tls-stream): Ditto.
1226
1227 * net/netrc.el (netrc-credentials): Return the value of the "default"
1228 entry.
1229 (netrc-machine): Ditto.
1230
1231 2010-09-30 Eli Zaretskii <eliz@gnu.org>
1232
1233 * vc/vc-hooks.el (vc-default-mode-line-string): Doc fix.
1234
1235 2010-09-30 Juanma Barranquero <lekktu@gmail.com>
1236
1237 * server.el (server-start): Don't write pid to the authentication file.
1238 (server-create-tty-frame): Don't send pid.
1239 (server-process-filter): Send pid at the start of every connection.
1240
1241 2010-09-30 Glenn Morris <rgm@gnu.org>
1242
1243 * calendar/diary-lib.el (view-diary-entries, list-diary-entries)
1244 (show-all-diary-entries): Remove obsolete function aliases.
1245
1246 * calendar/appt.el (appt-issue-message, appt-visible, appt-msg-window):
1247 Remove options, obsolete since 22.1.
1248 (appt-display-format, appt-display-message): Remove
1249 backwards-compatibility code.
1250 (appt-check): No longer check appt-issue-message.
1251 (appt-make-list): No longer autoload it. Doc fix. No longer
1252 activate the package.
1253
1254 2010-09-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
1255
1256 * net/gnutls.el (starttls-negotiate): Loop a lot longer.
1257 (starttls-negotiate): Just call boot, and let the handshake be
1258 triggered from the read loop.
1259
1260 2010-09-29 Glenn Morris <rgm@gnu.org>
1261
1262 * calendar/diary-lib.el (diary-list-entries): Use temp buffers when
1263 not displaying the diary.
1264 (diary-add-to-list): If no buffer-file-name, fall back to diary-file.
1265 * calendar/appt.el (appt-check): No longer need to kill diary.
1266
1267 * calendar/diary-lib.el (diary-list-entries): Move the
1268 "Preparing..." message entirely here.
1269 (diary-simple-display, diary-fancy-display): Move "Preparing..."
1270 messages to diary-list-entries.
1271 (diary-include-other-diary-files): Use LIST-ONLY rather than setting
1272 diary-display-function.
1273
1274 * calendar/diary-lib.el (diary-include-other-diary-files):
1275 Trap some recursive includes.
1276
1277 * calendar/appt.el (appt-activate): Check diary file.
1278
1279 2010-09-29 Katsumi Yamaoka <yamaoka@jpl.org>
1280
1281 * pgg.el (pgg-run-at-time-1): Define it for XEmacs only; fix if/else
1282 construction.
1283
1284 * calendar/time-date.el: No need to require cl for Emacs 21.
1285
1286 2010-09-28 Glenn Morris <rgm@gnu.org>
1287
1288 * calendar/appt.el (appt-check): Minor simplification.
1289
1290 2010-09-28 Katsumi Yamaoka <yamaoka@jpl.org>
1291
1292 * mail/sendmail.el (mail-citation-prefix-regexp): Remove "}" from
1293 citation prefix.
1294
1295 2010-09-27 Andreas Schwab <schwab@linux-m68k.org>
1296
1297 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
1298 Avoid infinite recursion on erroneous lambda form. (Bug#7114)
1299
1300 2010-09-27 Kenichi Handa <handa@m17n.org>
1301
1302 * tar-mode.el (tar-header-block-tokenize): Decode filenames in
1303 "ustar" format.
1304
1305 2010-09-27 Kenichi Handa <handa@m17n.org>
1306
1307 * international/mule.el (define-coding-system): Docstring fixed.
1308
1309 * international/mule-diag.el (describe-character-set): Use princ
1310 with proper print-length and print-level instead of insert.
1311
1312 2010-09-27 Juanma Barranquero <lekktu@gmail.com>
1313
1314 * window.el (walk-windows): Doc fix (bug#7105).
1315
1316 2010-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
1317
1318 * emacs-lisp/float-sup.el (e): Remove.
1319
1320 2010-09-27 Teodor Zlatanov <tzz@lifelogs.com>
1321
1322 * net/gnutls.el (gnutls, gnutls-log-level): Add group and custom
1323 variable.
1324 (starttls-negotiate): Use it.
1325
1326 2010-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
1327
1328 * net/gnutls.el (starttls-negotiate): Stop looping when we get a t
1329 back.
1330
1331 2010-09-26 Stefan Monnier <monnier@iro.umontreal.ca>
1332
1333 * emacs-lisp/pcase.el (pcase-let*, pcase-let): plet -> pcase-let.
1334
1335 2010-09-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
1336
1337 * net/gnutls.el (starttls-negotiate): Avoid the cl.el decf function.
1338
1339 * net/netrc.el (netrc-store-data): New function.
1340
1341 2010-09-26 Teodor Zlatanov <tzz@lifelogs.com>
1342
1343 * net/gnutls.el: GnuTLS glue code to set up a connection.
1344
1345 2010-09-25 Julien Danjou <julien@danjou.info>
1346
1347 * notifications.el: Call dbus-register-signal only if it is bound.
1348
1349 2010-09-25 Glenn Morris <rgm@gnu.org>
1350
1351 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
1352 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
1353 * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
1354 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
1355 * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
1356 * eshell/esh-cmd.el, eshell/esh-ext.el, eshell/esh-io.el:
1357 * eshell/esh-mode.el, eshell/esh-proc.el, eshell/esh-test.el:
1358 * eshell/esh-util.el, eshell/esh-var.el:
1359 Remove leading `*' from docs of faces and defcustoms.
1360
1361 2010-09-25 Ulrich Mueller <ulm@gentoo.org>
1362
1363 * eshell/em-ls.el (eshell-ls-archive-regexp):
1364 * eshell/esh-util.el (eshell-tar-regexp):
1365 * ibuffer.el (ibuffer-compressed-file-name-regexp):
1366 * info.el (Info-suffix-list):
1367 * international/mule.el (auto-coding-alist):
1368 * woman.el (woman-file-regexp, woman-file-compression-regexp):
1369 * progmodes/etags.el (tags-compression-info-list):
1370 Support xz compression.
1371
1372 2010-09-25 Chong Yidong <cyd@stupidchicken.com>
1373
1374 * files.el (get-free-disk-space): Don't assume the "df" output
1375 columns line up (Bug#6995).
1376
1377 2010-09-25 Juanma Barranquero <lekktu@gmail.com>
1378
1379 * finder.el (finder-unknown-keywords):
1380 * progmodes/gdb-mi.el (gdb-jsonify-buffer, gdb-running-threads-count):
1381 * progmodes/etags.el (tags-table-including): Fix typos in docstrings.
1382
1383 2010-09-25 Juanma Barranquero <lekktu@gmail.com>
1384
1385 * server.el (server-start): Revert part of 2010-08-08 change. Using
1386 address 127.0.0.1 for local host is now done in Fmake_network_process.
1387
1388 2010-09-24 Glenn Morris <rgm@gnu.org>
1389
1390 * image-mode.el, progmodes/compile.el, progmodes/gud.el:
1391 * progmodes/mixal-mode.el, textmodes/bibtex-style.el:
1392 * textmodes/css-mode.el, textmodes/dns-mode.el:
1393 Move autoloaded auto-mode-alist entries to files.el.
1394 * files.el (auto-mode-alist): Move entries here.
1395
1396 2010-09-23 Glenn Morris <rgm@gnu.org>
1397
1398 * isearch.el (isearch-lazy-highlight-cleanup)
1399 (isearch-lazy-highlight-initial-delay)
1400 (isearch-lazy-highlight-interval)
1401 (isearch-lazy-highlight-max-at-a-time, isearch-lazy-highlight-face):
1402 * net/net-utils.el (ipconfig-program-options):
1403 Move aliases to options before the associated definitions.
1404
1405 2010-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
1406
1407 * newcomment.el (comment-normalize-vars): Better test validity of
1408 comment-end-skip.
1409
1410 2010-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
1411
1412 * emacs-lisp/float-sup.el (float-pi): New name for `pi'.
1413 (float-e): New name for `e'.
1414 (degrees-to-radians, radians-to-degrees):
1415 * calendar/solar.el (solar-longitude):
1416 * calculator.el (calculator-registers, calculator-funcall):
1417 * textmodes/artist.el (artist-spray-random-points):
1418 * play/bubbles.el (bubbles--initialize-images): Use new names.
1419
1420 2010-09-23 Eric M. Ludlam <zappo@gnu.org>
1421
1422 Update to CEDET 1.0's version of EIEIO.
1423
1424 * emacs-lisp/eieio.el (eieio-specialized-key-to-generic-key):
1425 New function.
1426 (eieio-defmethod, eieio-generic-form, eieio-generic-call): Use it.
1427 (eieio-default-eval-maybe): Eval val instead of unquoting only.
1428 (class-precedence-list): If class is nil, return nil.
1429 (eieio-generic-call): If class of first input arg is nil, don't
1430 look up static methods, and do check for primary methods.
1431 (initialize-instance): See if the default needs to be evaluated
1432 during the constructor.
1433 (eieio-perform-slot-validation-for-default): Don't do the check
1434 for values that will eventually be evaluated.
1435 (eieio-eval-default-p): New function.
1436 (eieio-default-eval-maybe): Use it.
1437
1438 2010-09-23 Jan Moringen <jan.moringen@uni-bielefeld.de>
1439
1440 * emacs-lisp/eieio.el (eieio-defclass): Allow :c3
1441 method-invocation-order.
1442 (eieio-c3-candidate, eieio-c3-merge-lists): New functions.
1443 (eieio-class-precedence-dfs): Compute class precedence list using
1444 dfs algorithm.
1445 (eieio-class-precedence-bfs): Compute class precedence list using
1446 bfs algorithm.
1447 (eieio-class-precedence-c3): Compute class precedence list using
1448 c3 algorithm.
1449 (class-precedence-list): New function.
1450 (eieiomt-method-list, eieiomt-sym-optimize): Use it.
1451 (inconsistent-class-hierarchy): New error symbol.
1452 (call-next-method): Stow the replacement argument list for future
1453 call-next-method invocations.
1454
1455 2010-09-23 Glenn Morris <rgm@gnu.org>
1456
1457 * calendar/appt.el (appt-check): If not displaying the diary,
1458 use (diary 1) to only get the entries we need.
1459 (appt-make-list): Sort diary-list-entries, if we cannot guarantee
1460 that it is in day order. (Bug#7019)
1461
1462 * calendar/appt.el (appt-check): Rather than showing the diary,
1463 just turn off invisible display, and only if needed.
1464
1465 * calendar/diary-lib.el (diary-list-entries): Doc fix. (Bug#7019)
1466
1467 2010-09-23 Glenn Morris <rgm@gnu.org>
1468
1469 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
1470 (byte-compile-defvar, byte-compile-cl-warn):
1471 Start warnings with lower-case, like the majority.
1472
1473 * files.el (auto-mode-alist): Add .xa, .xw, .xsw for ld-script-mode.
1474
1475 * files.el (auto-mode-alist): Prefer C-mode for .xs. (Bug#7071)
1476
1477 * progmodes/ld-script.el (auto-mode-alist): Move to files.el.
1478 * files.el (auto-mode-alist): Move ld-script entries here, further down
1479 the list.
1480
1481 * vc/add-log.el: Don't require timezone when compiling.
1482 (timezone-make-date-sortable): Autoload it.
1483 (change-log-sortable-date-at): Don't require timezone.
1484 Use `ignore-errors'.
1485
1486 * comint.el (comint-use-prompt-regexp-instead-of-fields):
1487 Move alias before definition, so it does not need autoloading.
1488
1489 * emulation/crisp.el, emulation/cua-base.el, emulation/edt.el:
1490 * emulation/pc-select.el, emulation/vip.el, international/iso-ascii.el:
1491 * international/kkc.el, international/ogonek.el, mail/feedmail.el:
1492 * net/browse-url.el, net/eudc-vars.el, net/net-utils.el:
1493 * net/rcompile.el, net/rlogin.el, textmodes/enriched.el:
1494 * textmodes/makeinfo.el, textmodes/page-ext.el, textmodes/picture.el:
1495 * textmodes/refer.el, textmodes/spell.el, textmodes/table.el:
1496 * textmodes/tex-mode.el, textmodes/two-column.el:
1497 Remove leading `*' from docs of defcustoms etc.
1498
1499 2010-09-23 Teodor Zlatanov <tzz@lifelogs.com>
1500
1501 * net/netrc.el (netrc-parse): Remove encrypt.el mentions.
1502
1503 2010-09-22 Dan Christensen <jdc@uwo.ca>
1504
1505 * calendar/time-date.el (date-to-time): Try using parse-time-string
1506 first before using the slower timezone-make-date-arpa-standard.
1507
1508 2010-09-22 Katsumi Yamaoka <yamaoka@jpl.org>
1509
1510 * calendar/time-date.el (format-seconds): Comment fix.
1511
1512 2010-09-22 Glenn Morris <rgm@gnu.org>
1513
1514 * emacs-lisp/package.el (package-menu-mode): `revert-buffer-function'
1515 is not automatically buffer-local.
1516
1517 2010-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
1518
1519 * emacs-lisp/smie.el (smie-debug--describe-cycle): Fix typo.
1520 (smie-indent-comment): Be more careful with comment-start-skip.
1521 (smie-indent-comment-close, smie-indent-comment-inside): New funs.
1522 (smie-indent-functions): Use them.
1523
1524 2010-09-21 Michael Albinus <michael.albinus@gmx.de>
1525
1526 * net/ange-ftp.el (ange-ftp-skip-msgs): Add "^504 ..." message.
1527
1528 2010-09-21 Jan Djärv <jan.h.d@swipnet.se>
1529
1530 * menu-bar.el (menu-bar-set-tool-bar-position): customize-set-variable
1531 tool-bar-position. Don't modify frame parameters here.
1532 (menu-bar-options-save): Add tool-bar-position.
1533
1534 * tool-bar.el (tool-bar-position): New defcustom (Bug#7049).
1535
1536 2010-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
1537
1538 * textmodes/reftex-parse.el (reftex-what-macro)
1539 (reftex-context-substring): Let-bind forward-sexp-function to nil
1540 since we don't need/want to treat \begin...\end as a block (bug#7053).
1541
1542 * emacs-lisp/lisp.el (up-list): Don't do nothing silently.
1543
1544 * simple.el (blink-matching-open): Use syntax-class.
1545
1546 * progmodes/pascal.el (pascal-mode): Use define-derived-mode.
1547 Set invisibility spec for pascal's outline mode.
1548 (pascal-outline-change): Clean up calling convention.
1549 (pascal-show-all, pascal-hide-other-defuns): Update callers.
1550
1551 * progmodes/prolog.el (prolog-smie-forward-token)
1552 (prolog-smie-backward-token): New functions.
1553 (prolog-mode-variables): Use them to parse "!," correctly.
1554 Set up smie-blink-matching for ".".
1555
1556 * textmodes/ispell.el (ispell-start, ispell-end): Rename from `start'
1557 and `end'.
1558 (ispell-region, ispell-process-line): Update users.
1559
1560 * textmodes/reftex-parse.el (reftex-what-macro): Don't hardcode
1561 point-min==1.
1562
1563 * textmodes/ispell.el: Fix commenting convention.
1564 (ispell-parse-output): Simplify, use push.
1565 (ispell-region): Use match-string-no-properties.
1566 (ispell-begin-skip-region-regexp): Use mapconcat to simplify.
1567 (ispell-minor-mode): Use define-minor-mode.
1568 (ispell-message): Remove unused var `skip-regexp'.
1569 (ispell-add-per-file-word-list): Use dynamic let-binding.
1570 Try and use the proper comment marker.
1571
1572 * mail/sendmail.el: Fix commenting convention.
1573 (sendmail-send-it): Use line-beginning-position.
1574
1575 * help-fns.el (describe-variable): Add original value, if applicable.
1576
1577 2010-09-20 Juanma Barranquero <lekktu@gmail.com>
1578
1579 * subr.el (y-or-n-p): Remove leftover code from 2010-09-17T13:30:30Z!monnier@iro.umontreal.ca.
1580
1581 * emacs-lisp/smie.el (smie-indent--hanging-p): Use `smie-indent--bolp'.
1582
1583 2010-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
1584
1585 * emacs-lisp/smie.el (smie-bnf-precedence-table): Improve error message.
1586 (smie-debug--prec2-cycle, smie-debug--describe-cycle): New functions.
1587 (smie-prec2-levels): Use them to better diagnose precedence cycles.
1588 (smie-blink-matching-check): Don't signal a mismatch if car is t.
1589 (smie-blink-matching-open): Rewrite to remove assumptions, so that
1590 something like "." can also be a closer.
1591 (smie--associative-p, smie-indent--hanging-p, smie-indent--bolp)
1592 (smie-indent--offset, smie-indent--offset-rule, smie-indent--column):
1593 Rename internal functions to use "--". Update callers.
1594
1595 * frame.el (make-frame-names-alist): Don't list frames on other displays.
1596
1597 * fringe.el (fringe-styles): New var.
1598 (fringe-mode, fringe-query-style): Use it.
1599
1600 2010-09-18 Michael R. Mauger <mmaug@yahoo.com>
1601
1602 * progmodes/sql.el: Version 2.8
1603 (sql-login-params): Update widget structure; changes still needed.
1604 (sql-product-alist): Add :list-all and :list-table features for
1605 SQLite, Postgres and MySQL products.
1606 (sql-redirect): Handle default value.
1607 (sql-execute, sql-execute-feature): New functions.
1608 (sql-read-table-name): New function.
1609 (sql-list-all, sql-list-table): New functions. User API.
1610 (sql-mode-map, sql-interactive-mode-map): Add key definitions
1611 for above functions.
1612 (sql-mode-menu, sql-interactive-mode-menu): Add menu definitions
1613 for above functions.
1614 (sql-postgres-login-params): Add user and database defaults.
1615 (sql-buffer-live-p): Bug fix.
1616 (sql-product-history): New variable.
1617 (sql-read-product): New function. Use it.
1618 (sql-set-product, sql-product-interactive): Use it.
1619 (sql-connection-history): New variable.
1620 (sql-read-connection): New function. Use it.
1621 (sql-connect): New function.
1622 (sql-for-each-login): Redesign function interface.
1623 (sql-make-alternate-buffer-name, sql-save-connection): Use it.
1624 (sql-get-login-ext, sql-get-login): Use it. Handle default values.
1625 (sql-comint): Check for program. Existing live buffer.
1626 (sql-comint-postgres): Add port parameter.
1627
1628 2010-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
1629
1630 * emacs-lisp/warnings.el: Fix commenting convention.
1631 (display-warning): Use special mode and make the buffer read-only.
1632
1633 2010-09-18 Jay Belanger <jay.p.belanger@gmail.com>
1634
1635 * calc/calc-prog.el (calc-read-parse-table-part): Don't "fix" the
1636 empty string when it follows a repeated or optional pattern.
1637
1638 2010-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
1639
1640 * indent.el (indent-according-to-mode): Apply syntax-propertize.
1641 (indent-region): Use indent-according-to-mode.
1642
1643 2010-09-18 Eli Zaretskii <eliz@gnu.org>
1644
1645 * fringe.el (fringe-mode): Doc fix.
1646
1647 2010-09-14 Kan-Ru Chen <kanru@kanru.info> (tiny change)
1648
1649 * textmodes/nroff-mode.el (nroff-view): Kill old buffer before
1650 refreshing the preview buffer.
1651
1652 2010-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
1653
1654 * textmodes/tex-mode.el (tex-syntax-propertize-rules)
1655 (latex-syntax-propertize-rules): New consts; replace
1656 tex-font-lock-syntactic-keywords.
1657 (tex-env-mark, latex-env-before-change): New functions.
1658 (latex-electric-env-pair-mode): New minor mode.
1659 (tex-font-lock-verb): Change arguments; do move point.
1660 (tex-font-lock-syntactic-face-function): Adjust to new verbatim
1661 representation as a form of comment.
1662 (tex-font-lock-keywords-1): Remove workaround, now unneeded.
1663 (doctex-syntax-propertize-rules): New const; replaces
1664 doctex-font-lock-syntactic-keywords.
1665 (tex-common-initialization, doctex-mode): Use syntax-propertize-rules.
1666
1667 * progmodes/fortran.el (fortran--font-lock-syntactic-keywords): Remove.
1668 (fortran-make-syntax-propertize-function): New function; replaces
1669 fortran-font-lock-syntactic-keywords.
1670 (fortran-mode): Use it.
1671 (fortran-line-length): Use it. Improve interactive spec.
1672
1673 * emacs-lisp/syntax.el (syntax-propertize-precompile-rules): New macro.
1674 (syntax-propertize-rules): Add var-ref case. Fix offset computation
1675 when adding surrounding \(..\).
1676
1677 * progmodes/js.el (js-mode): Fix last change (bug#7054).
1678
1679 2010-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
1680
1681 * obsolete/old-whitespace.el (whitespace-rescan-files-in-buffers):
1682 Use with-current-buffer.
1683
1684 * isearch.el (isearch-face): Rename from `isearch'.
1685 (isearch-highlight): Use new name.
1686
1687 2010-09-17 Eli Zaretskii <eliz@gnu.org>
1688
1689 * fringe.el (fringe-mode, fringe-query-style): Use 4 pixels, not
1690 5, for `half' width fringes. (Bug#6933)
1691
1692 2010-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
1693
1694 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar)
1695 (byte-compile-defvar): "foo/bar" does not lack a prefix.
1696
1697 * subr.el (y-or-n-p): Add the "(y or n)" that was lost somehow.
1698
1699 2010-09-17 Stephen Berman <stephen.berman@gmx.net>
1700
1701 * dframe.el (dframe-reposition-frame-emacs): Use tool-bar-pixel-width
1702 in calculating new frame position. Add more space between new and
1703 parent on the left (Bug#7048).
1704
1705 2010-09-17 Michael Albinus <michael.albinus@gmx.de>
1706
1707 * net/tramp-compat.el (tramp-compat-with-temp-message): Make it a
1708 defmacro.
1709
1710 2010-09-16 Chong Yidong <cyd@stupidchicken.com>
1711
1712 * mail/sendmail.el: Add "*unsent mail*" to same-window-buffer-names.
1713
1714 * term/x-win.el (x-cut-buffer-or-selection-value): Define as
1715 obsolete alias for x-selection-value.
1716
1717 * ido.el (ido-make-buffer-list): Fix error in 2010-08-22 merge.
1718
1719 2010-09-16 Michael Albinus <michael.albinus@gmx.de>
1720
1721 * net/tramp-cmds.el (tramp-cleanup-connection): Set tramp-autoload
1722 cookie.
1723
1724 2010-09-15 Michael Albinus <michael.albinus@gmx.de>
1725
1726 * net/tramp-compat.el (tramp-compat-with-temp-message)
1727 (tramp-compat-font-lock-add-keywords, tramp-compat-process-get)
1728 (tramp-compat-process-put): New defuns.
1729
1730 * net/tramp.el (top):
1731 * net/tramp-gvfs.el (top):
1732 * net/tramp-cache.el (top): Use `tramp-compat-font-lock-add-keywords'.
1733
1734 * net/tramp.el (tramp-progress-reporter-update):
1735 Use `tramp-compat-funcall'.
1736
1737 * net/tramp.el (tramp-process-actions):
1738 * net/tramp-gvfs.el (tramp-handle-vc-registered):
1739 * net/tramp-sh.el (tramp-gvfs-handler-askquestion)
1740 (tramp-get-remote-stat, tramp-get-remote-readlink):
1741 Use `tramp-compat-with-temp-message'.
1742
1743 * net/tramp-sh.el (top): Require 'cl.
1744 (tramp-handle-start-file-process): Use `tramp-compat-process-get'.
1745 (tramp-open-connection-setup-interactive-shell):
1746 Use `tramp-compat-process-put'.
1747
1748 2010-09-15 Alan Mackenzie <acm@muc.de>
1749
1750 * progmodes/cc-engine.el (c-forward-<>-arglist-recur): Correct the
1751 indentation.
1752 (c-forward-<>-arglist-recur): Fix an infinite recursion.
1753
1754 2010-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
1755
1756 * emacs-lisp/bytecomp.el (byte-compile-warning-types): New type
1757 `lexical' for warnings related to lexical scoping.
1758 (byte-compile-file-form-defvar, byte-compile-defvar): Warn about
1759 global vars which don't have a prefix and could hence affect lexical
1760 scoping in unrelated files.
1761
1762 2010-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
1763
1764 * net/imap.el: Revert back to version
1765 cb950ed8ff3e0f40dac437a51b269166f9ffb60d, since some of the changes
1766 seem problematic.
1767
1768 2010-09-14 Juanma Barranquero <lekktu@gmail.com>
1769
1770 * obsolete/old-whitespace.el (whitespace-unload-function):
1771 Explicitly pass `obarray' to `unintern' to avoid a warning.
1772
1773 2010-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
1774
1775 * emacs-lisp/byte-run.el (set-advertised-calling-convention):
1776 Add `when' argument. Update callers.
1777
1778 * subr.el (unintern): Declare the obarray arg mandatory.
1779
1780 2010-09-14 Glenn Morris <rgm@gnu.org>
1781
1782 * calendar/diary-lib.el (diary-list-entries-hook, diary-sort-entries):
1783 Doc fixes.
1784
1785 * calendar/diary-lib.el (diary-included-files): New variable.
1786 (diary-list-entries): Maybe initialize diary-included-files.
1787 (diary-include-other-diary-files): Append to diary-included-files.
1788 * calendar/appt.el (appt-update-list): Also check the members of
1789 diary-included-files. (Bug#6999)
1790 (appt-check): Doc fix.
1791
1792 2010-09-14 David Reitter <david.reitter@gmail.com>
1793
1794 * simple.el (line-move-visual): Do not truncate goal column to
1795 integer size. (Bug#7020)
1796
1797 2010-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
1798
1799 * repeat.el (repeat): Allow repeating when the last event is a click.
1800 Suggested by Drew Adams (bug#6256).
1801
1802 2010-09-14 Sascha Wilde <wilde@sha-bang.de>
1803
1804 * vc/vc-hg.el (vc-hg-state,vc-hg-working-revision):
1805 Replace setting HGRCPATH to "" by some less invasive --config options.
1806
1807 2010-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
1808
1809 * font-lock.el (font-lock-beginning-of-syntax-function):
1810 Mark as obsolete.
1811
1812 2010-09-14 Glenn Morris <rgm@gnu.org>
1813
1814 * menu-bar.el (menu-bar-options-save): Fix handling of menu-bar
1815 and tool-bar modes. (Bug#6211)
1816 (menu-bar-mode): Move setting of standard-value after the
1817 minor-mode definition, otherwise it seems to have no effect.
1818
1819 2010-09-14 Masatake YAMATO <yamato@redhat.com>
1820
1821 * progmodes/antlr-mode.el (antlr-font-lock-additional-keywords):
1822 Fix typo. (Bug#6976)
1823
1824 2010-09-14 Vinicius Jose Latorre <viniciusjl@ig.com.br>
1825
1826 * whitespace.el: Allow cleaning up blanks without blank
1827 visualization (Bug#6651). Adjust help window for
1828 whitespace-toggle-options (Bug#6479). Allow to use fill-column
1829 instead of whitespace-line-column (from EmacsWiki). New version 13.1.
1830 (whitespace-style): Add new value 'face. Adjust docstring.
1831 (whitespace-space, whitespace-hspace, whitespace-tab):
1832 Adjust foreground property face.
1833 (whitespace-line-column): Adjust docstring and type declaration.
1834 (whitespace-style-value-list, whitespace-toggle-option-alist)
1835 (whitespace-help-text): Adjust const initialization.
1836 (whitespace-toggle-options, global-whitespace-toggle-options):
1837 Adjust docstring.
1838 (whitespace-display-window, whitespace-interactive-char)
1839 (whitespace-style-face-p, whitespace-color-on): Adjust code.
1840 (whitespace-help-scroll): New fun.
1841
1842 2010-09-14 Katsumi Yamaoka <yamaoka@jpl.org>
1843
1844 * calendar/time-date.el (format-seconds): Comment fix.
1845
1846 2010-09-13 Michael R. Mauger <mmaug@yahoo.com>
1847
1848 * progmodes/sql.el: Version 2.7.
1849 (sql-buffer-live-p): Improve detection.
1850 (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
1851 (sql-set-sqli-buffer): Use it.
1852 (sql-product-interactive): Run `sql-set-sqli-hook'.
1853 (sql-rename-buffer): Code cleanup.
1854 (sql-redirect, sql-redirect-value): New functions. More to come.
1855
1856 2010-09-13 Juanma Barranquero <lekktu@gmail.com>
1857
1858 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.
1859 * makefile.w32-in (LOADDEFS): Add $(lisp)/net/tramp-loaddefs.el.
1860 (TRAMP_SRC): New macro.
1861 ($(lisp)/net/tramp-loaddefs.el): New target.
1862
1863 2010-09-13 Michael Albinus <michael.albinus@gmx.de>
1864
1865 Major code cleanup. Split tramp.el into tramp.el and tramp-sh.el.
1866
1867 * Makefile.in (TRAMP_SRC): Remove tramp-fish.el. Add tramp-sh.el.
1868
1869 * net/tramp.el (top): Don't show loading message. Require just
1870 'tramp-compat, everything else is required there.
1871 Use `ignore-errors' where appropriate.
1872 (tramp-inline-compress-start-size, tramp-copy-size-limit)
1873 (tramp-terminal-type, tramp-end-of-output)
1874 (tramp-initial-end-of-output, tramp-completion-function-alist-rsh)
1875 (tramp-completion-function-alist-ssh)
1876 (tramp-completion-function-alist-telnet)
1877 (tramp-completion-function-alist-su)
1878 (tramp-completion-function-alist-putty, tramp-remote-path)
1879 (tramp-remote-process-environment, tramp-sh-extra-args)
1880 (tramp-actions-before-shell, tramp-uudecode)
1881 (tramp-perl-file-truename, tramp-perl-file-name-all-completions)
1882 (tramp-perl-file-attributes)
1883 (tramp-perl-directory-files-and-attributes)
1884 (tramp-perl-encode-with-module, tramp-perl-decode-with-module)
1885 (tramp-perl-encode, tramp-perl-decode)
1886 (tramp-vc-registered-read-file-names, tramp-file-mode-type-map)
1887 (tramp-file-name-handler-alist, tramp-make-tramp-temp-file)
1888 (tramp-handle-make-symbolic-link, tramp-handle-load)
1889 (tramp-handle-file-name-as-directory)
1890 (tramp-handle-file-name-directory)
1891 (tramp-handle-file-name-nondirectory, tramp-handle-file-truename)
1892 (tramp-handle-file-exists-p, tramp-handle-file-attributes)
1893 (tramp-do-file-attributes-with-ls)
1894 (tramp-do-file-attributes-with-perl)
1895 (tramp-do-file-attributes-with-stat)
1896 (tramp-handle-set-visited-file-modtime)
1897 (tramp-handle-verify-visited-file-modtime)
1898 (tramp-handle-set-file-modes, tramp-handle-set-file-times)
1899 (tramp-set-file-uid-gid, tramp-remote-selinux-p)
1900 (tramp-handle-file-selinux-context)
1901 (tramp-handle-set-file-selinux-context)
1902 (tramp-handle-file-executable-p, tramp-handle-file-readable-p)
1903 (tramp-handle-file-newer-than-file-p, tramp-handle-file-modes)
1904 (tramp-handle-file-directory-p, tramp-handle-file-regular-p)
1905 (tramp-handle-file-symlink-p, tramp-handle-file-writable-p)
1906 (tramp-handle-file-ownership-preserved-p)
1907 (tramp-handle-directory-file-name, tramp-handle-directory-files)
1908 (tramp-handle-directory-files-and-attributes)
1909 (tramp-do-directory-files-and-attributes-with-perl)
1910 (tramp-do-directory-files-and-attributes-with-stat)
1911 (tramp-handle-file-name-all-completions)
1912 (tramp-handle-file-name-completion, tramp-handle-add-name-to-file)
1913 (tramp-handle-copy-file, tramp-handle-copy-directory)
1914 (tramp-handle-rename-file, tramp-do-copy-or-rename-file)
1915 (tramp-do-copy-or-rename-file-via-buffer)
1916 (tramp-do-copy-or-rename-file-directly)
1917 (tramp-do-copy-or-rename-file-out-of-band)
1918 (tramp-handle-make-directory, tramp-handle-delete-directory)
1919 (tramp-handle-delete-file)
1920 (tramp-handle-dired-recursive-delete-directory)
1921 (tramp-handle-dired-compress-file, tramp-handle-dired-uncache)
1922 (tramp-handle-insert-directory)
1923 (tramp-handle-unhandled-file-name-directory)
1924 (tramp-handle-expand-file-name)
1925 (tramp-handle-substitute-in-file-name)
1926 (tramp-handle-executable-find, tramp-process-sentinel)
1927 (tramp-handle-start-file-process, tramp-handle-process-file)
1928 (tramp-handle-call-process-region, tramp-handle-shell-command)
1929 (tramp-handle-file-local-copy, tramp-handle-file-remote-p)
1930 (tramp-handle-insert-file-contents)
1931 (tramp-handle-insert-file-contents-literally)
1932 (tramp-handle-find-backup-file-name)
1933 (tramp-handle-make-auto-save-file-name, tramp-handle-write-region)
1934 (tramp-vc-registered-file-names, tramp-handle-vc-registered)
1935 (tramp-sh-file-name-handler, tramp-vc-file-name-handler)
1936 (tramp-maybe-send-script, tramp-set-auto-save, tramp-run-test)
1937 (tramp-run-test2, tramp-find-executable, tramp-set-remote-path)
1938 (tramp-find-file-exists-command, tramp-open-shell)
1939 (tramp-find-shell, tramp-barf-if-no-shell-prompt)
1940 (tramp-open-connection-setup-interactive-shell)
1941 (tramp-local-coding-commands, tramp-remote-coding-commands)
1942 (tramp-find-inline-encoding, tramp-call-local-coding-command)
1943 (tramp-inline-compress-commands, tramp-find-inline-compress)
1944 (tramp-compute-multi-hops, tramp-maybe-open-connection)
1945 (tramp-send-command, tramp-wait-for-output)
1946 (tramp-send-command-and-check, tramp-barf-unless-okay)
1947 (tramp-send-command-and-read, tramp-mode-string-to-int)
1948 (tramp-convert-file-attributes, tramp-check-cached-permissions)
1949 (tramp-file-mode-from-int, tramp-file-mode-permissions)
1950 (tramp-shell-case-fold, tramp-make-copy-program-file-name)
1951 (tramp-method-out-of-band-p, tramp-local-host-p)
1952 (tramp-get-remote-path, tramp-get-remote-tmpdir)
1953 (tramp-get-ls-command, tramp-get-ls-command-with-dired)
1954 (tramp-get-test-command, tramp-get-test-nt-command)
1955 (tramp-get-file-exists-command, tramp-get-remote-ln)
1956 (tramp-get-remote-perl, tramp-get-remote-stat)
1957 (tramp-get-remote-readlink, tramp-get-remote-trash)
1958 (tramp-get-remote-id, tramp-get-remote-uid, tramp-get-remote-gid)
1959 (tramp-get-local-uid, tramp-get-local-gid)
1960 (tramp-get-inline-compress, tramp-get-inline-coding): Move to
1961 tramp-sh.el.
1962 (tramp-methods, tramp-default-method-alist)
1963 (tramp-default-user-alist, tramp-foreign-file-name-handler-alist):
1964 Move initialization to tramp-sh.el.
1965 (tramp-temp-name-prefix): Make it a defconst.
1966 (tramp-dissect-file-name): Don't check anymore for multi-hop
1967 methods.
1968 (tramp-debug-outline-regexp): Add a docstring.
1969 (tramp-debug-outline-level): Rename from `tramp-outline-level'.
1970 (tramp-get-debug-buffer): Use it.
1971
1972 * net/tramp-cache.el (top): Set tramp-autoload cookie for
1973 initialization forms.
1974 (tramp-set-connection-property): Don't protect `tramp-message'
1975 call, it isn't necessary any longer.
1976 (tramp-dump-connection-properties): Use `ignore-errors'.
1977
1978 * net/tramp-compat.el (top): Require 'advice, 'format-spec,
1979 'password-cache and 'auth-source.
1980
1981 * net/tramp-gvfs.el (top):
1982 * net/tramp-smb.el (top): Require 'tramp-sh.
1983
1984 * net/tramp-gw.el (tramp-gw-open-network-stream): Use `ignore-errors'.
1985
1986 * net/tramp-sh.el: New file, derived from tramp.el.
1987 (top): Initialize `tramp-methods', `tramp-default-method-alist',
1988 `tramp-default-user-alist', `tramp-foreign-file-name-handler-alist'.
1989 Remove "scp1_old", "scp2_old", "ssh1_old", "ssh2_old".
1990 Use `ignore-errors' where appropriate.
1991 (tramp-sh-file-name-handler-alist): Rename from
1992 `tramp-file-name-handler-alist'.
1993 (tramp-send-command-and-check): Return t or nil. Remove all
1994 `zerop' checks, where called.
1995 (tramp-handle-set-file-modes)
1996 (tramp-do-copy-or-rename-file-directly)
1997 (tramp-handle-delete-directory, tramp-handle-delete-file)
1998 (tramp-maybe-send-script): Use `tramp-barf-unless-okay'.
1999 (tramp-sh-file-name-handler, tramp-send-command-and-check)
2000 (tramp-get-remote-ln): Set tramp-autoload cookie.
2001
2002 * net/tramp-fish.el: Remove file.
2003
2004 2010-09-13 Daiki Ueno <ueno@unixuser.org>
2005
2006 * epa-file.el (epa-file-insert-file-contents): If visiting, bind
2007 buffer-file-name to avoid file-locking. (Bug#7026)
2008
2009 2010-09-13 Julien Danjou <julien@danjou.info>
2010
2011 * notifications.el (notifications-notify): Add support for
2012 image-path and sound-name.
2013 (notifications-specification-version): Add this variable.
2014
2015 2010-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
2016
2017 * subr.el (y-or-n-p): New function, moved from src/fns.c; use read-key.
2018
2019 2010-09-12 Leo <sdl.web@gmail.com>
2020
2021 * net/rcirc.el (rcirc-server-commands, rcirc-client-commands)
2022 (rcirc-completion-start): New variables.
2023 (rcirc-nick-completions): Rename to rcirc-completions.
2024 (rcirc-nick-completion-start-offset): Delete.
2025 (rcirc-completion-at-point): New function for constructing
2026 completion data for both nicks and irc commands. Add to
2027 completion-at-point-functions in rcirc mode.
2028 (rcirc-complete): Rename from rcirc-nick-complete; use
2029 rcirc-completion-at-point.
2030 (defun-rcirc-command): Update rcirc-client-commands.
2031
2032 2010-09-11 Glenn Morris <rgm@gnu.org>
2033
2034 * emacs-lisp/bytecomp.el (byte-compile-file): Create .elc files
2035 atomically, to avoid parallel build errors. (Bug#4196)
2036
2037 2010-09-11 Michael R. Mauger <mmaug@yahoo.com>
2038
2039 * progmodes/sql.el: Version 2.6
2040 (sql-dialect): Synonym for "sql-product".
2041 (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
2042 (sql-set-sqli-buffer, sql-show-sqli-buffer, sql-interactive-mode):
2043 Set "sql-buffer" to buffer name not buffer object so multiple sql
2044 interactive buffers work properly. Reverts misguided changes in
2045 earlier work.
2046 (sql-comint): Make sure different buffer name is used if "*SQL*"
2047 buffer is for a different product.
2048 (sql-make-alternate-buffer-name): Fix bug with "sql-database"
2049 login param.
2050 (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql)
2051 (sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase)
2052 (sql-db2, sql-linter, sql-product-interactive, sql-rename-buffer):
2053 Accept new buffer name or prompt for one.
2054 (sql-port): Default to zero.
2055 (sql-comint-mysql): Handle "sql-port" as a numeric.
2056 (sql-port-history): Delete unused variable.
2057 (sql-get-login): Default "sql-port" to a number.
2058 (sql-product-alist): Correct Postgres prompt and terminator regexp.
2059 (sql-sqlite-program): Dynamically detect presence of "sqlite" or
2060 "sqlite3" executables.
2061 (sql-sqlite-login-params): Add "*.sqlite[23]?" database name pattern.
2062 (sql-buffer-live-p): New function.
2063 (sql-mode-menu, sql-send-string): Use it.
2064 (sql-mode-oracle-font-lock-keywords): Improve SQL*Plus REMARK
2065 syntax pattern.
2066 (sql-mode-postgres-font-lock-keywords): Support Postgres V9.
2067 (sql-mode-sqlite-font-lock-keywords): Hilight sqlite commands.
2068
2069 2010-09-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
2070
2071 * net/netrc.el (netrc-credentials): New convenience function.
2072
2073 2010-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
2074
2075 * textmodes/texinfo.el (texinfo-syntax-propertize-function): New fun
2076 to replace texinfo-font-lock-syntactic-keywords.
2077 (texinfo-mode): Use it.
2078
2079 * textmodes/tex-mode.el (tex-common-initialization, doctex-mode):
2080 Use syntax-propertize-function.
2081
2082 * textmodes/sgml-mode.el (sgml-syntax-propertize-function): New var to
2083 replace sgml-font-lock-syntactic-keywords.
2084 (sgml-mode): Use it.
2085
2086 * textmodes/reftex.el (font-lock-syntactic-keywords): Don't declare
2087 since we don't use it.
2088
2089 * textmodes/bibtex.el (bibtex-mode): Use syntax-propertize-function.
2090
2091 * progmodes/vhdl-mode.el (vhdl-mode): Use syntax-propertize-function
2092 if available.
2093 (vhdl-fontify-buffer): Adjust.
2094
2095 * progmodes/tcl.el (tcl-syntax-propertize-function): New var to
2096 replace tcl-font-lock-syntactic-keywords.
2097 (tcl-mode): Use it.
2098
2099 * progmodes/simula.el (simula-syntax-propertize-function): New var to
2100 replace simula-font-lock-syntactic-keywords.
2101 (simula-mode): Use it.
2102
2103 * progmodes/sh-script.el (sh-st-symbol): Remove.
2104 (sh-font-lock-close-heredoc, sh-font-lock-open-heredoc): Add eol arg.
2105 (sh-font-lock-flush-syntax-ppss-cache, sh-font-lock-here-doc): Remove.
2106 (sh-font-lock-quoted-subshell): Assume we've already matched $(.
2107 (sh-font-lock-paren): Set syntax-multiline.
2108 (sh-font-lock-syntactic-keywords): Remove.
2109 (sh-syntax-propertize-function): New function to replace it.
2110 (sh-mode): Use it.
2111
2112 * progmodes/ruby-mode.el (ruby-here-doc-beg-re):
2113 Define while compiling.
2114 (ruby-here-doc-end-re, ruby-here-doc-beg-match)
2115 (ruby-font-lock-syntactic-keywords, ruby-comment-beg-syntax)
2116 (syntax-ppss, ruby-in-ppss-context-p, ruby-in-here-doc-p)
2117 (ruby-here-doc-find-end, ruby-here-doc-beg-syntax)
2118 (ruby-here-doc-end-syntax): Only define when
2119 syntax-propertize is not available.
2120 (ruby-syntax-propertize-function, ruby-syntax-propertize-heredoc):
2121 New functions.
2122 (ruby-in-ppss-context-p): Update to new syntax of heredocs.
2123 (electric-indent-chars): Silence bytecompiler.
2124 (ruby-mode): Use prog-mode, syntax-propertize-function, and
2125 electric-indent-chars.
2126
2127 * progmodes/python.el (python-syntax-propertize-function): New var to
2128 replace python-font-lock-syntactic-keywords.
2129 (python-mode): Use it.
2130 (python-quote-syntax): Simplify and adjust to new use.
2131
2132 * progmodes/perl-mode.el (perl-syntax-propertize-function): New fun to
2133 replace perl-font-lock-syntactic-keywords.
2134 (perl-syntax-propertize-special-constructs): New fun to replace
2135 perl-font-lock-special-syntactic-constructs.
2136 (perl-font-lock-syntactic-face-function): New fun.
2137 (perl-mode): Use it.
2138
2139 * progmodes/octave-mod.el (octave-syntax-propertize-sqs): New function
2140 to replace octave-font-lock-close-quotes.
2141 (octave-syntax-propertize-function): New function to replace
2142 octave-font-lock-syntactic-keywords.
2143 (octave-mode): Use it.
2144
2145 * progmodes/mixal-mode.el (mixal-syntax-propertize-function): New var;
2146 replaces mixal-font-lock-syntactic-keywords.
2147 (mixal-mode): Use it.
2148
2149 * progmodes/make-mode.el (makefile-syntax-propertize-function):
2150 New var; replaces makefile-font-lock-syntactic-keywords.
2151 (makefile-mode): Use it.
2152 (makefile-imake-mode): Adjust.
2153
2154 * progmodes/js.el (js--regexp-literal): Define while compiling.
2155 (js-syntax-propertize-function): New var; replaces
2156 js-font-lock-syntactic-keywords.
2157 (js-mode): Use it.
2158
2159 * progmodes/gud.el (gdb-script-syntax-propertize-function): New var;
2160 replaces gdb-script-font-lock-syntactic-keywords.
2161 (gdb-script-mode): Use it.
2162
2163 * progmodes/fortran.el (fortran-mode): Use syntax-propertize-function.
2164 (fortran--font-lock-syntactic-keywords): New var.
2165 (fortran-line-length): Update syntax-propertize-function and
2166 fortran--font-lock-syntactic-keywords.
2167
2168 * progmodes/cperl-mode.el (cperl-mode): Use syntax-propertize-function.
2169
2170 * progmodes/cfengine.el (cfengine-mode):
2171 Use syntax-propertize-function.
2172 (cfengine-font-lock-syntactic-keywords): Remove.
2173
2174 * progmodes/autoconf.el (autoconf-mode):
2175 Use syntax-propertize-function.
2176 (autoconf-font-lock-syntactic-keywords): Remove.
2177
2178 * progmodes/ada-mode.el (ada-set-syntax-table-properties)
2179 (ada-after-change-function, ada-initialize-syntax-table-properties)
2180 (ada-handle-syntax-table-properties): Only define when
2181 syntax-propertize is not available.
2182 (ada-mode): Use syntax-propertize-function.
2183
2184 * font-lock.el (font-lock-syntactic-keywords): Make obsolete.
2185 (font-lock-fontify-syntactic-keywords-region): Move handling of
2186 font-lock-syntactically-fontified to...
2187 (font-lock-default-fontify-region): ...here.
2188 Let syntax-propertize-function take precedence.
2189 (font-lock-fontify-syntactically-region): Cal syntax-propertize.
2190
2191 * emacs-lisp/syntax.el (syntax-propertize-function)
2192 (syntax-propertize-chunk-size, syntax-propertize--done)
2193 (syntax-propertize-extend-region-functions): New vars.
2194 (syntax-propertize-wholelines, syntax-propertize-multiline)
2195 (syntax-propertize--shift-groups, syntax-propertize-via-font-lock)
2196 (syntax-propertize): New functions.
2197 (syntax-propertize-rules): New macro.
2198 (syntax-ppss-flush-cache): Set syntax-propertize--done.
2199 (syntax-ppss): Call syntax-propertize.
2200
2201 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Skip named groups.
2202
2203 2010-09-10 Agustín Martín <agustin.martin@hispalinux.es>
2204
2205 * textmodes/ispell.el (ispell-init-process): Improve comments.
2206 XEmacs compatibility changes regarding (add-hook) 'local option
2207 and (set-process-query-on-exit-flag).
2208
2209 2010-09-09 Michael Albinus <michael.albinus@gmx.de>
2210
2211 * net/tramp-cache.el (tramp-parse-connection-properties):
2212 Set tramp-autoload cookie.
2213
2214 2010-09-09 Glenn Morris <rgm@gnu.org>
2215
2216 * image.el (imagemagick-types-inhibit): Add :type, :version, :group.
2217 (imagemagick-register-types): Doc fix.
2218
2219 2010-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
2220
2221 * progmodes/octave-mod.el (electric-indent-chars): Silence bytecomp.
2222
2223 * progmodes/js.el (require): Require is already "eval-and-compile".
2224 (js--re-search-forward): Avoid `eval'. Preserve the error data.
2225 (js--re-search-backward): Use js--re-search-forward.
2226
2227 * progmodes/fortran.el (fortran-line-length): Don't recompute
2228 syntactic keywords redundantly a second time.
2229
2230 * progmodes/ada-mode.el: Replace "(set '" with setq.
2231 (ada-mode): Simplify.
2232 (ada-create-case-exception, ada-adjust-case-interactive)
2233 (ada-adjust-case-region, ada-format-paramlist, ada-indent-current)
2234 (ada-search-ignore-string-comment, ada-move-to-start)
2235 (ada-move-to-end): Use with-syntax-table.
2236
2237 * font-lock.el (save-buffer-state): Remove `varlist' arg.
2238 (font-lock-unfontify-region, font-lock-default-fontify-region):
2239 Update usage correspondingly.
2240 (font-lock-fontify-syntactic-keywords-region):
2241 Set parse-sexp-lookup-properties buffer-locally here.
2242 (font-lock-fontify-syntactically-region): Remove unused `ppss' arg.
2243
2244 * simple.el (blink-matching-open): Don't burp if we can't find a match.
2245
2246 2010-09-08 Glenn Morris <rgm@gnu.org>
2247
2248 * emacs-lisp/bytecomp.el (byte-compile-report-ops):
2249 Error if not compiled with -DBYTE_CODE_METER.
2250
2251 * emacs-lisp/bytecomp.el (byte-recompile-directory):
2252 Ignore dir-locals-file.
2253
2254 2010-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
2255
2256 * progmodes/compile.el (compilation-error-regexp-alist-alist):
2257 Not a const.
2258 (compilation-error-regexp-alist-alist): Rule out ": " in file names
2259 for the `gnu' messages.
2260 (compilation-set-skip-threshold): New command.
2261 (compilation-start): Use \' rather than $.
2262 (compilation-forget-errors): Use clrhash.
2263
2264 2010-09-08 Agustín Martín <agustin.martin@hispalinux.es>
2265
2266 * textmodes/ispell.el (ispell-valid-dictionary-list):
2267 Simplify logic.
2268
2269 2010-09-08 Michael Albinus <michael.albinus@gmx.de>
2270
2271 Migrate to Tramp 2.2. Rearrange load dependencies.
2272 (Bug#1529, Bug#5448, Bug#5705)
2273
2274 * Makefile.in (TRAMP_DIR, TRAMP_SRC): New variables.
2275 ($(TRAMP_DIR)/tramp-loaddefs.el): New target.
2276 (LOADDEFS): Add $(lisp)/net/tramp-loaddefs.el.
2277
2278 * net/tramp.el (top): Remove all other tramp-* loads except
2279 tramp-compat.el. Remove all changes to tramp-unload-hook for
2280 other tramp-* packages. Rearrange defun order. Change calls of
2281 `tramp-compat-call-process', `tramp-compat-decimal-to-octal',
2282 `tramp-compat-octal-to-decimal' to new function names.
2283 (tramp-terminal-type, tramp-initial-end-of-output)
2284 (tramp-methods, tramp-foreign-file-name-handler-alist)
2285 (tramp-tramp-file-p, tramp-completion-mode-p)
2286 (tramp-send-command-and-check, tramp-get-remote-path)
2287 (tramp-get-remote-tmpdir, tramp-get-remote-ln)
2288 (tramp-shell-quote-argument): Set tramp-autoload cookie.
2289 (with-file-property, with-connection-property): Move to
2290 tramp-cache.el.
2291 (tramp-local-call-process, tramp-decimal-to-octal)
2292 (tramp-octal-to-decimal): Move to tramp-compat.el.
2293 (tramp-handle-shell-command): Do not require 'shell.
2294 (tramp-compute-multi-hops): No special handling for tramp-gw-*
2295 symbols.
2296 (tramp-unload-tramp): Do not call `tramp-unload-file-name-handlers'.
2297
2298 * net/tramp-cache.el (top): Require 'tramp. Add to
2299 `tramp-unload-hook'.
2300 (tramp-cache-data, tramp-get-file-property)
2301 (tramp-set-file-property, tramp-flush-file-property)
2302 (tramp-flush-directory-property, tramp-get-connection-property)
2303 (tramp-set-connection-property, tramp-flush-connection-property)
2304 (tramp-cache-print, tramp-list-connections): Set tramp-autoload
2305 cookie.
2306 (with-file-property, with-connection-property): New defuns, moved
2307 from tramp.el.
2308 (tramp-flush-file-function): Use `with-parsed-tramp-file-name'
2309 macro.
2310
2311 * net/tramp-cmds.el (top): Add to `tramp-unload-hook'.
2312 (tramp-version): Set tramp-autoload cookie.
2313
2314 * net/tramp-compat.el (top): Require 'tramp-loaddefs. Remove all
2315 changes to tramp-unload-hook for other tramp-* packages. Add to
2316 `tramp-unload-hook'.
2317 (tramp-compat-decimal-to-octal, tramp-compat-octal-to-decimal)
2318 (tramp-compat-call-process): New defuns, moved from tramp.el.
2319
2320 * net/tramp-fish.el (top) Require just 'tramp. Add objects to
2321 `tramp-methods' and `tramp-foreign-file-name-handler-alist'. Add
2322 to `tramp-unload-hook'. Change call of
2323 `tramp-compat-decimal-to-octal' to new function name.
2324 (tramp-fish-method): Make it a defconst.
2325 (tramp-fish-file-name-p): Make it a defsubst.
2326 (tramp-fish-method, tramp-fish-file-name-handler)
2327 (tramp-fish-file-name-p): Set tramp-autoload cookie.
2328
2329 * net/tramp-ftp.el (top) Add objects to `tramp-methods' and
2330 `tramp-foreign-file-name-handler-alist'. Add to
2331 `tramp-unload-hook'.
2332 (tramp-ftp-method): Make it a defconst.
2333 (tramp-ftp-file-name-p): Make it a defsubst.
2334 (tramp-ftp-method, tramp-ftp-file-name-handler)
2335 (tramp-ftp-file-name-p): Set tramp-autoload cookie.
2336
2337 * net/tramp-gvfs.el (top) Add objects to `tramp-methods' and
2338 `tramp-foreign-file-name-handler-alist'. Add to
2339 `tramp-unload-hook'. Change checks, whether package can be
2340 loaded.
2341 (tramp-gvfs-file-name-p): Make it a defsubst.
2342 (tramp-gvfs-methods, tramp-gvfs-file-name-handler)
2343 (tramp-gvfs-file-name-p): Set tramp-autoload cookie.
2344 (tramp-gvfs-handle-file-directory-p): New defun.
2345 (tramp-gvfs-file-name-handler-alist): Use it.
2346
2347 * net/tramp-gw.el (top) Add objects to `tramp-methods' and
2348 `tramp-foreign-file-name-handler-alist'. Add to
2349 `tramp-unload-hook'.
2350 (tramp-gw-tunnel-method, tramp-gw-default-tunnel-port)
2351 (tramp-gw-socks-method, tramp-gw-default-socks-port): Make it a
2352 defconst.
2353 (tramp-gw-tunnel-method, tramp-gw-socks-method)
2354 (tramp-gw-open-connection): Set tramp-autoload cookie.
2355
2356 * net/tramp-imap.el (top) Require just 'tramp. Add objects to
2357 `tramp-methods' and `tramp-foreign-file-name-handler-alist'. Add
2358 to `tramp-unload-hook'. Change checks, whether package can be
2359 loaded.
2360 (tramp-imap-file-name-p): Make it a defsubst.
2361 (tramp-imap-method, tramp-imaps-method)
2362 (tramp-imap-file-name-handler)
2363 (tramp-imap-file-name-p): Set tramp-autoload cookie.
2364
2365 * net/tramp-smb.el (top) Require just 'tramp. Add objects to
2366 `tramp-methods' and `tramp-foreign-file-name-handler-alist'. Add
2367 to `tramp-unload-hook'. Change checks, whether package can be
2368 loaded. Change call of `tramp-compat-decimal-to-octal' to new
2369 function name.
2370 (tramp-smb-tunnel-method): Make it a defconst.
2371 (tramp-smb-file-name-p): Make it a defsubst.
2372 (tramp-smb-method, tramp-smb-file-name-handler)
2373 (tramp-smb-file-name-p): Set tramp-autoload cookie.
2374
2375 * net/tramp-uu.el (top) Add to `tramp-unload-hook'.
2376 (tramp-uuencode-region): Set tramp-autoload cookie.
2377
2378 * net/trampver.el (top) Add to `tramp-unload-hook'.
2379 (tramp-version, tramp-bug-report-address): Set tramp-autoload
2380 cookie. Update release number.
2381
2382 2010-09-07 Agustín Martín <agustin.martin@hispalinux.es>
2383
2384 * textmodes/ispell.el (ispell-start-process): Make sure original
2385 arg list is properly initialized (Bug#6993, Bug#6994).
2386
2387 2010-09-06 Alexander Klimov <alserkli@inbox.ru> (tiny change)
2388
2389 * files.el (directory-abbrev-alist): Use \` as default regexp.
2390
2391 * emacs-lisp/rx.el (rx-any): Don't explode ranges that end in special
2392 chars like - or ] (bug#6984).
2393 (rx-any-condense-range): Explode 2-char ranges.
2394
2395 2010-09-06 Glenn Morris <rgm@gnu.org>
2396
2397 * desktop.el (desktop-path): Bump :version after 2009-09-15 change.
2398
2399 2010-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
2400
2401 * textmodes/bibtex.el:
2402 * proced.el: Update to new email for Roland Winkler <winkler@gnu.org>.
2403
2404 2010-09-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
2405
2406 * net/imap.el (imap-message-map): Remove optional buffer parameter,
2407 since no callers use it.
2408 (imap-message-get): Ditto.
2409 (imap-message-put): Ditto.
2410 (imap-mailbox-map): Ditto.
2411 (imap-mailbox-put): Ditto.
2412 (imap-mailbox-get): Ditto.
2413 (imap-mailbox-get): Revert last change for this function.
2414
2415 2010-09-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
2416
2417 * net/imap.el (imap-fetch-safe): Remove function, and alter all
2418 callers to use `imap-fetch' instead. According to the comments, this
2419 should be safe, since all other IMAP clients use the 1:* syntax.
2420 (imap-enable-exchange-bug-workaround): Remove.
2421 (imap-debug): Remove -- doesn't seem very useful.
2422
2423 2010-09-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
2424
2425 * net/imap.el (imap-log): New convenience function used throughout
2426 instead of repeating the same code all over the place.
2427
2428 2010-09-05 David De La Harpe Golden <david@harpegolden.net>
2429
2430 * mouse.el (mouse-save-then-kill): Save region to kill-ring
2431 when mouse-drag-copy-region is non-nil (Bug#6956).
2432
2433 2010-09-05 Chong Yidong <cyd@stupidchicken.com>
2434
2435 * dired.el (dired-ls-sorting-switches, dired-sort-by-name-regexp):
2436 Improve regexps (Bug#6987).
2437 (dired-sort-toggle): Search more robustly for -t flag.
2438
2439 * files.el (get-free-disk-space): Search more robustly for
2440 "available" column. Suggested by Ehud Karni
2441 <ehud@unix.mvs.co.il>.
2442
2443 2010-09-05 Juanma Barranquero <lekktu@gmail.com>
2444
2445 * international/uni-bidi.el:
2446 * international/uni-category.el:
2447 * international/uni-combining.el:
2448 * international/uni-decimal.el:
2449 * international/uni-mirrored.el:
2450 * international/uni-name.el: Regenerate.
2451
2452 2010-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
2453
2454 * electric.el (electric-indent-post-self-insert-function):
2455 Don't reindent with a sloppy indentation function.
2456
2457 * emacs-lisp/syntax.el (syntax-ppss): More sanity check to catch
2458 border case in change-log-mode.
2459
2460 2010-09-04 Chong Yidong <cyd@stupidchicken.com>
2461
2462 * progmodes/compile.el (compilation-error-regexp-alist-alist):
2463 Remove ruby regexp; handle Ruby errors with gcc-include and gnu.
2464 Recognize leading tab in gcc-include regexp. Ignore names with
2465 leading "from" or "in" in gnu regexp (Bug#6937).
2466
2467 2010-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
2468
2469 Avoid global recursive calls to kill-buffer-hooks; fit into 80 cols.
2470 * textmodes/ispell.el (ispell-process-buffer-name): Remove.
2471 (ispell-start-process): Avoid setq and simplify logic.
2472 (ispell-init-process): Setup kill-buffer-hook locally when needed.
2473 (kill-buffer-hook): Don't use it globally with code that uses
2474 expand-file-name since that may call kill-buffer via
2475 code_conversion_restore.
2476
2477 2010-09-04 Noorul Islam K M <noorul@noorul.com> (tiny change)
2478
2479 * emacs-lisp/package.el (package-directory-list): Only call
2480 file-name-nondirectory on a string.
2481
2482 2010-09-02 Chong Yidong <cyd@stupidchicken.com>
2483
2484 * emacs-lisp/package.el (package--download-one-archive):
2485 Ensure that archive-contents is valid before saving it.
2486 (package-activate-1, package-mark-obsolete, define-package)
2487 (package-compute-transaction, package-list-maybe-add): Use push.
2488
2489 2010-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
2490
2491 Use SMIE's blink-paren for octave-mode.
2492 * progmodes/octave-mod.el (octave-font-lock-close-quotes):
2493 Backslashes do not escape single-quotes, single-quotes do.
2494 (octave-block-else-regexp, octave-block-end-regexp)
2495 (octave-block-match-alist): Remove.
2496 (octave-smie-bnf-table): New var, with old content.
2497 (octave-smie-op-levels): Use it.
2498 (octave-smie-closer-alist): New var.
2499 (octave-mode): Use it. Setup smie-blink-matching and electric-indent.
2500 (octave-blink-matching-block-open): Remove.
2501 (octave-reindent-then-newline-and-indent, octave-electric-semi)
2502 (octave-electric-space): Let self-insert-command run expand-abbrev and
2503 blink parens.
2504
2505 * electric.el (electricity): New group.
2506 (electric-indent-chars): New var.
2507 (electric-indent-post-self-insert-function): New fun.
2508 (electric-indent-mode): New minor mode.
2509 (electric-pair-skip-self): New custom.
2510 (electric-pair-post-self-insert-function): New function.
2511 (electric-pair-mode): New minor mode.
2512
2513 * calc/calc-aent.el (calcAlg-blink-matching-check): New fun, to replace
2514 calcAlg-blink-matching-open.
2515 (calc-alg-ent-map, calc-alg-ent-esc-map): Initialize in the declaration.
2516 (calc-do-alg-entry): Only touch the part of the keymap that varies.
2517 Use the new blink-matching-check-function.
2518
2519 Provide blink-matching support to SMIE.
2520 * emacs-lisp/smie.el (smie-bnf-closer-alist): New function.
2521 (smie-blink-matching-triggers, smie-blink-matching-inners): New vars.
2522 (smie-blink-matching-check, smie-blink-matching-open): New functions.
2523
2524 * simple.el (newline): Fix last change to properly remove itself from
2525 the hook.
2526
2527 2010-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
2528
2529 * simple.el (newline): Eliminate optimization.
2530 Use post-self-insert-hook to set hard-newline and things before
2531 running post-self-insert-hook.
2532 (blink-matching-check-mismatch): New function.
2533 (blink-matching-check-function): New variable.
2534 (blink-matching-open): Use them.
2535 Skip back forward over prefix chars skipped by forward-sexp.
2536 Don't check if the parens are backslash escaped.
2537 (blink-paren-post-self-insert-function): Check backslash escaping here.
2538
2539 2010-09-02 Chong Yidong <cyd@stupidchicken.com>
2540
2541 * emacs-lisp/package.el (package-menu-mode-map):
2542 Change package-menu-revert bindings to revert-buffer.
2543 (package-menu-mode): Set revert-buffer-function.
2544 (package-menu-revert): Doc fix.
2545
2546 2010-09-02 Agustín Martín <agustin.martin@hispalinux.es>
2547
2548 * textmodes/ispell.el (ispell-init-process): Use "~/" as
2549 `default-directory' unless using Ispell per-directory personal
2550 dictionaries and not in a mini-buffer under XEmacs.
2551 (kill-buffer-hook): Do not kill ispell process on exit when
2552 `ispell-process-directory' is "~/". (Bug#6143)
2553
2554 2010-09-02 Jan Djärv <jan.h.d@swipnet.se>
2555
2556 * simple.el (kill-new): Call interprogram-cut-function with only
2557 one argument.
2558
2559 * term.el (term-mouse-paste): Don't call x-get-cutbuffer.
2560 Remove cut buffer from error message.
2561
2562 * term/x-win.el (x-select-text):
2563 * term/pc-win.el (x-selection-value):
2564 * term/ns-win.el (x-selection-value):
2565 * eshell/em-term.el:
2566 * w32-fns.el (x-get-selection-value):
2567 * mouse-sel.el (mouse-sel-set-selection-function):
2568 * frame.el (display-selections-p): Remove cut-buffer in documentation.
2569
2570 * term/x-win.el: Update documentation for x-last-selected-text-*.
2571 (x-last-selected-text-cut, x-last-selected-text-cut-encoded)
2572 (x-last-cut-buffer-coding, x-cut-buffer-max): Remove.
2573 (x-select-text): Remove argument PUSH, update documentation. Remove
2574 cut-buffer code.
2575 (x-selection-value-internal): Was previously x-selection-value.
2576 (x-selection-value): Rename from x-cut-buffer-or-selection-value.
2577 Update documentation, remove cut-buffer code. Call
2578 x-selection-value-internal.
2579 (x-clipboard-yank): Call x-selection-value-internal.
2580 (x-initialize-window-system): Remove setting of x-cut-buffer-max.
2581
2582 * term/pc-win.el (x-last-selected-text):
2583 x-cut-buffer-or-selection-value renamed to x-selection-value
2584 (x-select-text): Remove argument PUSH, update documentation.
2585
2586 * term/ns-win.el (x-setup-function-keys, ns-last-selected-text):
2587 x-cut-buffer-or-selection-value renamed to x-selection-value
2588 (x-selection-value): Renamed from x-cut-buffer-or-selection-value.
2589 (x-select-text): Remove argument PUSH, update documentation.
2590
2591 * emacs-lisp/cl-macs.el (x-get-cutbuffer, x-get-cut-buffer): Remove.
2592
2593 * w32-fns.el (x-last-selected-text):
2594 x-cut-buffer-or-selection-value renamed to x-selection-value.
2595 (x-cut-buffer-max): Remove.
2596 (x-select-text): Remove argument PUSH, update documentation.
2597
2598 * simple.el (interprogram-cut-function): Remove mention of PUSH.
2599
2600 * select.el (x-get-cut-buffer, x-set-cut-buffer): Remove.
2601
2602 * mouse-sel.el (mouse-sel-get-selection-function):
2603 x-cut-buffer-or-selection-value renamed to x-selection-value.
2604 (x-select-text): Remove optional push.
2605
2606 2010-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
2607
2608 * simple.el (blink-paren-function): Move from C to here.
2609 (blink-paren-post-self-insert-function): New function.
2610 (post-self-insert-hook): Use it.
2611
2612 * emacs-lisp/pcase.el (pcase-split-memq):
2613 Fix overenthusiastic optimisation.
2614 (pcase-u1): Handle the case of a lambda pred.
2615
2616 2010-08-31 Kenichi Handa <handa@m17n.org>
2617
2618 * international/mule-cmds.el (standard-display-european-internal):
2619 Setup standard-display-table for 8-bit characters by storing 8-bit
2620 characters in the element vector.
2621
2622 * disp-table.el (standard-display-8bit):
2623 Setup standard-display-table for 8-bit characters by storing 8-bit
2624 characters in the element vector.
2625 (standard-display-european): Likewise.
2626
2627 2010-08-31 Masatake YAMATO <yamato@redhat.com>
2628
2629 * textmodes/nroff-mode.el (nroff-view): New command.
2630 (nroff-mode-map): Bind it to C-c C-c.
2631
2632 2010-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
2633
2634 * emacs-lisp/smie.el (smie-down-list): New command.
2635
2636 Remove old indentation and navigation code on octave-mode.
2637 * progmodes/octave-mod.el (octave-mode-map): Remap down-list to
2638 smie-down-list rather than add a binding for octave-down-block.
2639 (octave-mark-block, octave-blink-matching-block-open):
2640 Rely on forward-sexp-function.
2641 (octave-fill-paragraph): Don't narrow, so you can use
2642 indent-according-to-mode.
2643 (octave-block-begin-regexp, octave-block-begin-or-end-regexp): Remove.
2644 (octave-in-block-p, octave-re-search-forward-kw)
2645 (octave-re-search-backward-kw, octave-indent-calculate)
2646 (octave-end-as-array-index-p, octave-block-end-offset)
2647 (octave-scan-blocks, octave-forward-block, octave-backward-block)
2648 (octave-down-block, octave-backward-up-block, octave-up-block)
2649 (octave-before-magic-comment-p, octave-indent-line): Remove.
2650
2651 2010-08-31 Chong Yidong <cyd@stupidchicken.com>
2652
2653 * emacs-lisp/package.el (package--read-archive-file): Just use
2654 `read', to avoid copying an additional string.
2655 (package-menu-mode): Set header-line-format here.
2656 (package-menu-refresh, package-menu-revert): Signal an error if
2657 not in the Package Menu.
2658 (package-menu-package-list): New var.
2659 (package--generate-package-list): Operate on the current buffer;
2660 don't assume that it is *Packages*, since the user may rename it.
2661 Allow persistent package listings and sort keys using
2662 package-menu-package-list and package-menu-package-sort-key.
2663 (package-menu--version-predicate): Fix version calculation.
2664 (package-menu-sort-by-column): Don't select the window.
2665 (package--list-packages): Create the *Packages* buffer.
2666 Set package-menu-package-list-key.
2667 (list-packages): Sorting by status is now the default.
2668 (package-buffer-info): Use match-string-no-properties.
2669 (define-package): Add a &rest argument for future proofing, but
2670 don't use it yet.
2671 (package-install-from-buffer, package-install-buffer-internal):
2672 Merge into a single function, package-install-from-buffer.
2673 (package-install-file): Change caller.
2674
2675 * finder.el: Load finder-inf using `require'.
2676 (finder-list-matches): Sorting by status is now the default.
2677 (finder-compile-keywords): Simpify printing.
2678
2679 2010-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
2680
2681 * progmodes/octave-mod.el (octave-font-lock-keywords): Use regexp-opt.
2682 (octave-mode-map): Remove special bindings for forward/backward-block
2683 and octave-backward-up-block. Use smie-close-block.
2684 (octave-continuation-marker-regexp): New var.
2685 (octave-continuation-regexp): Use it.
2686 (octave-operator-table, octave-smie-op-levels)
2687 (octave-operator-regexp, octave-smie-indent-rules): New vars.
2688 (octave-smie-backward-token, octave-smie-forward-token): New funs.
2689 (octave-mode): Use SMIE.
2690 (octave-close-block): Delete.
2691
2692 2010-08-30 Eli Zaretskii <eliz@gnu.org>
2693
2694 * menu-bar.el (menu-bar-edit-menu) <"Paste">: Check selection in
2695 CLIPBOARD, not in PRIMARY. (Bug#6944)
2696
2697 2010-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
2698
2699 * emacs-lisp/smie.el (smie-indent-offset-rule): Let :parent take
2700 a list of parents.
2701 (smie-indent-column): Allow indirection through variables.
2702
2703 * composite.el (save-buffer-state): Delete, unused.
2704 * font-lock.el (save-buffer-state): Use with-silent-modifications.
2705 (font-lock-default-fontify-region): Use with-syntax-table.
2706 * jit-lock.el (with-buffer-unmodified): Remove.
2707 (with-buffer-prepared-for-jit-lock): Use with-silent-modifications.
2708
2709 Use `declare' in defmacros.
2710 * window.el (save-selected-window):
2711 * subr.el (with-temp-file, with-temp-message, with-syntax-table):
2712 * progmodes/python.el (def-python-skeleton):
2713 * net/dbus.el (dbus-ignore-errors):
2714 * jka-cmpr-hook.el (with-auto-compression-mode):
2715 * international/mule.el (with-category-table):
2716 * emacs-lisp/timer.el (with-timeout):
2717 * emacs-lisp/lisp-mnt.el (lm-with-file):
2718 * emacs-lisp/eieio.el (with-slots):
2719 * emacs-lisp/easymenu.el (easy-menu-define):
2720 * emacs-lisp/debug.el (debugger-env-macro):
2721 * emacs-lisp/cl-compat.el (Multiple-value-bind, Multiple-value-setq)
2722 (Multiple-value-call, Multiple-value-prog1):
2723 * emacs-lisp/cl-seq.el (cl-parsing-keywords, cl-check-key)
2724 (cl-check-test-nokey, cl-check-test, cl-check-match): Move indent and
2725 edebug rule to definition.
2726 * emacs-lisp/lisp-mode.el (save-selected-window)
2727 (with-current-buffer, combine-after-change-calls)
2728 (with-output-to-string, with-temp-file, with-temp-buffer)
2729 (with-temp-message, with-syntax-table, read-if, eval-after-load)
2730 (dolist, dotimes, when, unless):
2731 * emacs-lisp/byte-run.el (inline): Remove indent rule, redundant.
2732
2733 2010-08-29 Chong Yidong <cyd@stupidchicken.com>
2734
2735 * finder.el: Require `package'.
2736 (finder-known-keywords): Tweak descriptions. Retire `oop' keyword.
2737 (finder-package-info): Var deleted.
2738 (finder-keywords-hash, finder--builtins-alist): New vars.
2739 (finder-compile-keywords): Compute package--builtins and
2740 finder-keywords-hash instead of finder-keywords-hash, respecting
2741 the "Package" header.
2742 (finder-unknown-keywords, finder-list-matches):
2743 Use finder-keywords-hash and package--list-packages.
2744 (finder-mode): Don't set font-lock-defaults.
2745 (finder-exit): We don't use "*Finder-package*" and "*Finder
2746 Category*" buffers anymore.
2747
2748 * emacs-lisp/package.el (package--builtins-base): Var deleted.
2749 (package--builtins): Set default value to nil.
2750 (package-initialize): Load precomputed value of package--builtins
2751 from finder-inf.el.
2752 (package-alist, package-compute-transaction)
2753 (package-download-transaction): Improve docstring.
2754 (package-read-all-archive-contents): Do not change
2755 package--builtins here.
2756 (list-packages): Make package-list-packages an alias for this.
2757 Sort by status by default.
2758 (package--list-packages): Add optional PACKAGES arg.
2759 (describe-package-1): Use font-lock-face property. For built-in
2760 packages, insert file commentary.
2761 (package--generate-package-list): Rename from
2762 package-list-packages-internal; all callers changed. Add optional
2763 PACKAGES arg. Add alphabetical sort fallbacks.
2764 (package-menu--version-predicate, package-menu--status-predicate)
2765 (package-menu--description-predicate)
2766 (package-menu--name-predicate): New functions.
2767
2768 * info.el (Info-finder-find-node): Search package-alist instead of
2769 finder-package-info.
2770
2771 2010-08-29 Chong Yidong <cyd@stupidchicken.com>
2772
2773 * subr.el (version-regexp-alist): Don't use "a" and "b" for
2774 "alpha" and "beta".
2775 (version-to-list): Handle versions like "10.3d".
2776
2777 2010-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
2778
2779 * emacs-lisp/macroexp.el (macroexpand-all-1): Use pcase.
2780 (macroexp-accumulate): Use `declare'.
2781
2782 2010-08-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
2783
2784 * whitespace.el (whitespace-style): Adjust type declaration.
2785
2786 2010-08-26 Magnus Henoch <magnus.henoch@gmail.com>
2787
2788 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Do not pass
2789 empty argument to gvfs-copy.
2790
2791 2010-08-26 Chong Yidong <cyd@stupidchicken.com>
2792
2793 * net/tramp-compat.el (tramp-compat-delete-file): Rewrite to
2794 handle new TRASH arg of `delete-file'.
2795
2796 2010-08-26 Christian Lynbech <christian.lynbech@tieto.com> (tiny change)
2797
2798 * net/tramp.el (tramp-handle-insert-directory): Don't use
2799 `forward-word', its default syntax could be changed.
2800
2801 2010-08-26 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
2802 Michael Albinus <michael.albinus@gmx.de>
2803
2804 Implement compression for inline methods.
2805
2806 * net/tramp.el (tramp-inline-compress-start-size): New defcustom.
2807 (tramp-copy-size-limit): Allow also nil.
2808 (tramp-inline-compress-commands): New defconst.
2809 (tramp-find-inline-compress, tramp-get-inline-compress)
2810 (tramp-get-inline-coding): New defuns.
2811 (tramp-get-remote-coding, tramp-get-local-coding): Remove,
2812 replaced by `tramp-get-inline-coding'.
2813 (tramp-handle-file-local-copy, tramp-handle-write-region)
2814 (tramp-method-out-of-band-p): Use `tramp-get-inline-coding'.
2815
2816 2010-08-26 Noah Lavine <noah549@gmail.com> (tiny change)
2817
2818 Detect ssh 'ControlMaster' argument automatically in some cases.
2819
2820 * net/tramp.el (tramp-detect-ssh-controlmaster): New defun.
2821 (tramp-default-method): Use it.
2822
2823 2010-08-26 Karel Klíč <kklic@redhat.com>
2824
2825 * net/tramp.el (tramp-file-name-for-operation):
2826 Add file-selinux-context.
2827
2828 2010-08-26 Łukasz Stelmach <lukasz.stelmach@iem.pw.edu.pl> (tiny change)
2829
2830 * play/cookie1.el (read-cookie): Fix off-by-one error (bug#6921).
2831
2832 2010-08-26 Chong Yidong <cyd@stupidchicken.com>
2833
2834 * simple.el (beginning-of-buffer, end-of-buffer): Doc fix
2835 (Bug#6907).
2836
2837 2010-08-26 Nathan Weizenbaum <nweiz@cressida.sea.corp.google.com> (tiny change)
2838
2839 * progmodes/js.el: Make indentation more customizable (Bug#6914).
2840 (js-paren-indent-offset, js-square-indent-offset)
2841 (js-curly-indent-offset): New options.
2842 (js--proper-indentation): Use them.
2843
2844 2010-08-26 Daniel Colascione <dan.colascione@gmail.com>
2845
2846 * progmodes/sh-script.el (sh-get-indent-info): Use syntax-ppss
2847 instead of inspecting font-lock properties (Bug#6916).
2848
2849 2010-08-26 David Reitter <david.reitter@gmail.com>
2850
2851 * server.el (server-visit-files): Run pre-command-hook and
2852 post-command-hook for each buffer while it is current (Bug#6910).
2853 (server-execute): Do not run hooks here.
2854
2855 2010-08-26 Michael Albinus <michael.albinus@gmx.de>
2856
2857 Sync with Tramp 2.1.19.
2858
2859 * net/tramp-cmds.el (tramp-cleanup-all-connections)
2860 (tramp-reporter-dump-variable, tramp-load-report-modules)
2861 (tramp-append-tramp-buffers): Use `tramp-compat-funcall'.
2862 (tramp-bug): Recommend setting of `tramp-verbose' to 9.
2863
2864 * net/tramp-compat.el (top): Do not autoload
2865 `tramp-handle-file-remote-p'. Load tramp-util.el and tramp-vc.el
2866 only when `start-file-process' is not bound.
2867 (byte-compile-not-obsolete-vars): Define if not bound.
2868 (tramp-compat-funcall): New defmacro.
2869 (tramp-compat-line-beginning-position)
2870 (tramp-compat-line-end-position)
2871 (tramp-compat-temporary-file-directory)
2872 (tramp-compat-make-temp-file, tramp-compat-file-attributes)
2873 (tramp-compat-copy-file, tramp-compat-copy-directory)
2874 (tramp-compat-delete-file, tramp-compat-delete-directory)
2875 (tramp-compat-number-sequence, tramp-compat-process-running-p):
2876 Use it.
2877 (tramp-advice-file-expand-wildcards): Do not use
2878 `tramp-handle-file-remote-p'.
2879 (tramp-compat-make-temp-file): Simplify fallback implementation.
2880 (tramp-compat-copy-file): Add PRESERVE-SELINUX-CONTEXT.
2881 (tramp-compat-copy-tree): Remove function.
2882 (tramp-compat-delete-file): New defun.
2883 (tramp-compat-delete-directory): Provide implementation for older
2884 Emacsen.
2885 (tramp-compat-file-attributes): Handle only
2886 `wrong-number-of-arguments' error.
2887
2888 * net/tramp-fish.el (tramp-fish-handle-copy-file):
2889 Add PRESERVE_SELINUX_CONTEXT.
2890 (tramp-fish-handle-delete-file): Add TRASH arg.
2891 (tramp-fish-handle-directory-files-and-attributes):
2892 Do not use `tramp-fish-handle-file-attributes.
2893 (tramp-fish-handle-file-local-copy)
2894 (tramp-fish-handle-insert-file-contents)
2895 (tramp-fish-maybe-open-connection): Use `with-progress-reporter'.
2896
2897 * net/tramp-gvfs.el (top): Require url-util.
2898 (tramp-gvfs-mount-point): Remove.
2899 (tramp-gvfs-file-name-handler-alist): Add `file-selinux-context'
2900 and `set-file-selinux-context'.
2901 (tramp-gvfs-stringify-dbus-message, tramp-gvfs-send-command)
2902 (tramp-gvfs-handle-file-selinux-context)
2903 (tramp-gvfs-handle-set-file-selinux-context): New defuns.
2904 (with-tramp-dbus-call-method): Format trace message.
2905 (tramp-gvfs-handle-copy-file): Handle PRESERVE-SELINUX-CONTEXT.
2906 (tramp-gvfs-handle-copy-file, tramp-gvfs-handle-rename-file):
2907 Implement backup call, when operation on local files fails.
2908 Use progress reporter. Flush properties of changed files.
2909 (tramp-gvfs-handle-delete-file): Add TRASH arg. Use
2910 `tramp-compat-delete-file'.
2911 (tramp-gvfs-handle-expand-file-name): Expand "~/".
2912 (tramp-gvfs-handle-make-directory): Make more traces.
2913 (tramp-gvfs-handle-write-region): Protect deleting tmpfile.
2914 (tramp-gvfs-url-file-name): Hexify file name in url.
2915 (tramp-gvfs-fuse-file-name): Take also prefix (like dav shares)
2916 into account for the resulting file name.
2917 (tramp-gvfs-handler-askquestion): Preserve current message, in
2918 order to let progress reporter continue afterwards. (Bug#6257)
2919 Return dummy mountpoint, when the answer is "no".
2920 See `tramp-gvfs-maybe-open-connection'.
2921 (tramp-gvfs-handler-mounted-unmounted)
2922 (tramp-gvfs-connection-mounted-p): Test also for new mountspec
2923 attribute "default_location". Set "prefix" property.
2924 Handle default-location.
2925 (tramp-gvfs-mount-spec): Return both prefix and mountspec.
2926 (tramp-gvfs-maybe-open-connection): Test, whether mountpoint
2927 exists. Raise an error, if not (due to a corresponding answer
2928 "no" in interactive questions, for example).
2929 Use `tramp-compat-funcall'.
2930
2931 * net/tramp-imap.el (top): Autoload `epg-make-context'.
2932 (tramp-imap-handle-copy-file): Add PRESERVE-SELINUX-CONTEXT.
2933 (tramp-imap-do-copy-or-rename-file)
2934 (tramp-imap-handle-insert-file-contents)
2935 (tramp-imap-handle-file-local-copy): Use `with-progress-reporter'.
2936 (tramp-imap-handle-delete-file): Add TRASH arg.
2937
2938 * net/tramp-smb.el (tramp-smb-handle-copy-file):
2939 Add PRESERVE-SELINUX-CONTEXT.
2940 (tramp-smb-handle-copy-file)
2941 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
2942 (tramp-smb-handle-write-region, tramp-smb-maybe-open-connection):
2943 Use `with-progress-reporter'.
2944 (tramp-smb-handle-delete-file): Add TRASH arg.
2945
2946 * net/tramp.el (tramp-methods): Move hostname to the end in all
2947 ssh `tramp-login-args'. Add `tramp-async-args' attribute where
2948 appropriate.
2949 (tramp-verbose): Describe verbose level 9.
2950 (tramp-completion-function-alist)
2951 (tramp-file-name-regexp, tramp-chunksize)
2952 (tramp-local-coding-commands, tramp-remote-coding-commands)
2953 (with-connection-property, tramp-completion-mode-p)
2954 (tramp-action-process-alive, tramp-action-out-of-band)
2955 (tramp-check-for-regexp, tramp-file-name-p, tramp-equal-remote)
2956 (tramp-exists-file-name-handler): Fix docstring.
2957 (tramp-remote-process-environment): Use `format' instead of
2958 `concat'. Protect version string by apostroph.
2959 (tramp-shell-prompt-pattern): Do not use a shy group in case of
2960 XEmacs.
2961 (tramp-file-name-regexp-unified)
2962 (tramp-completion-file-name-regexp-unified): On W32 systems, do
2963 not regard the volume letter as remote filename. (Bug#5447)
2964 (tramp-perl-file-attributes)
2965 (tramp-perl-directory-files-and-attributes): Don't pass "$3".
2966 (tramp-vc-registered-read-file-names): Read input as
2967 here-document, otherwise the command could exceed maximum length
2968 of command line.
2969 (tramp-file-name-handler-alist): Add `file-selinux-context' and
2970 `set-file-selinux-context'.
2971 (tramp-debug-message): Add `tramp-compat-funcall' to ignored
2972 backtrace functions.
2973 (tramp-error-with-buffer): Don't show the connection buffer when
2974 we are in completion mode.
2975 (tramp-progress-reporter-update, tramp-remote-selinux-p)
2976 (tramp-handle-file-selinux-context)
2977 (tramp-handle-set-file-selinux-context, tramp-process-sentinel)
2978 (tramp-connectable-p, tramp-open-shell, tramp-get-remote-trash):
2979 New defuns.
2980 (with-progress-reporter): New defmacro.
2981 (tramp-debug-outline-regexp): New defconst.
2982 (top, tramp-rfn-eshadow-setup-minibuffer)
2983 (tramp-rfn-eshadow-update-overlay, tramp-handle-set-file-times)
2984 (tramp-handle-dired-compress-file, tramp-handle-shell-command)
2985 (tramp-completion-mode-p, tramp-check-for-regexp)
2986 (tramp-open-connection-setup-interactive-shell)
2987 (tramp-compute-multi-hops, tramp-read-passwd, tramp-clear-passwd)
2988 (tramp-time-diff, tramp-coding-system-change-eol-conversion)
2989 (tramp-set-process-query-on-exit-flag, tramp-unload-tramp):
2990 Use `tramp-compat-funcall'.
2991 (tramp-handle-make-symbolic-link): Flush file properties.
2992 (tramp-handle-load, tramp-handle-file-local-copy)
2993 (tramp-handle-insert-file-contents, tramp-handle-write-region)
2994 (tramp-handle-vc-registered, tramp-maybe-send-script)
2995 (tramp-find-shell): Use `with-progress-reporter'.
2996 (tramp-do-file-attributes-with-stat): Add space in format string,
2997 in order to work around a bug in pdksh. Reported by Gilles Pion
2998 <gpion@lfdj.com>.
2999 (tramp-handle-verify-visited-file-modtime): Do not send a command
3000 when the connection is not established.
3001 (tramp-handle-set-file-times): Simplify the check for utc.
3002 (tramp-handle-directory-files-and-attributes)
3003 (tramp-get-remote-path): Use `copy-tree'.
3004 (tramp-completion-handle-file-name-all-completions): Ensure, that
3005 non remote files are still checked. Oops.
3006 (tramp-handle-copy-file, tramp-do-copy-or-rename-file):
3007 Handle PRESERVE-SELINUX-CONTEXT.
3008 (tramp-do-copy-or-rename-file): Add progress reporter.
3009 (tramp-do-copy-or-rename-file-directly): Do not use
3010 `tramp-handle-file-remote-p'.
3011 (tramp-do-copy-or-rename-file-out-of-band):
3012 Use `tramp-compat-delete-directory'.
3013 (tramp-do-copy-or-rename-file-out-of-band)
3014 (tramp-compute-multi-hops, tramp-maybe-open-connection):
3015 Use `format-spec-make'.
3016 (tramp-handle-delete-file): Add TRASH arg.
3017 (tramp-handle-dired-uncache): Flush directory cache, not only file
3018 cache.
3019 (tramp-handle-expand-file-name)
3020 (tramp-completion-handle-file-name-all-completions)
3021 (tramp-completion-handle-file-name-completion):
3022 Use `tramp-connectable-p'.
3023 (tramp-handle-start-file-process): Set connection property "vec".
3024 Use it, in order to invalidate file caches. Check only for
3025 `remote-tty' process property.
3026 Implement tty setting. (Bug#4604, Bug#6360)
3027 (tramp-file-name-for-operation): Add `call-process-region' and
3028 `set-file-selinux-context'.
3029 (tramp-find-foreign-file-name-handler)
3030 (tramp-advice-make-auto-save-file-name)
3031 (tramp-set-auto-save-file-modes): Remove superfluous check for
3032 `stringp'. This is done inside `tramp-tramp-file-p'.
3033 (tramp-file-name-handler): Trace 'quit. Catch the error for some
3034 operations when we are in completion mode. This gives the user
3035 the chance to correct the file name in the minibuffer.
3036 (tramp-completion-mode-p): Use `non-essential'.
3037 (tramp-handle-file-name-all-completions): Backward/ XEmacs
3038 compatibility: Use `completion-ignore-case' if
3039 `read-file-name-completion-ignore-case' does not exist.
3040 (tramp-get-debug-buffer): Use `tramp-debug-outline-regexp'.
3041 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
3042 `tramp-open-shell'.
3043 (tramp-action-password): Hide password prompt before next run.
3044 (tramp-process-actions): Widen connection buffer for the trace.
3045 (tramp-open-connection-setup-interactive-shell): Set `remote-tty'
3046 process property. Trace stty settings if `tramp-verbose' >= 9.
3047 Apply workaround for IRIX64 bug. Move argument of last
3048 `tramp-send-command' where it belongs to.
3049 (tramp-maybe-open-connection): Use `async-args' and `gw-args' in
3050 front of `login-args'.
3051 (tramp-get-ls-command, tramp-get-ls-command-with-dired): Run tests
3052 on "/dev/null" instead of "/".
3053 (tramp-get-ls-command-with-dired): Make test for "--dired"
3054 stronger.
3055 (tramp-set-auto-save-file-modes): Adapt version check.
3056 (tramp-set-process-query-on-exit-flag): Fix wrong parentheses.
3057 (tramp-handle-process-file): Call the program in a subshell, in
3058 order to preserve working directory.
3059 (tramp-handle-shell-command): Don't use hard-wired "/bin/sh" but
3060 `tramp-remote-sh' from `tramp-methods'.
3061 (tramp-get-ls-command): Make test for "--color=never" stronger.
3062 (tramp-check-for-regexp): Use (forward-line 1).
3063
3064 * net/trampver.el: Update release number.
3065
3066 2010-08-26 Chong Yidong <cyd@stupidchicken.com>
3067
3068 * help.el (help-map): Bind `C-h P' to describe-package.
3069
3070 * menu-bar.el (menu-bar-describe-menu): Add describe-package.
3071
3072 * emacs-lisp/package.el (package-refresh-contents): Catch errors
3073 when downloading archives.
3074 (describe-package-1): Add package commentary.
3075 (package-install-button-action): New function.
3076 (package-menu-mode-map): Bind ? to package-menu-describe-package.
3077 (package-menu-view-commentary): Function removed.
3078 (package-list-packages-internal): Hide the `package' package too.
3079
3080 2010-08-25 Kenichi Handa <handa@m17n.org>
3081
3082 * language/misc-lang.el ("Arabic"): New language environment.
3083 Setup composition-function-table for Arabic characters.
3084
3085 * international/fontset.el (setup-default-fontset): Fix typo for
3086 arabic OTF spec (fini->fina).
3087
3088 2010-08-25 Jan Djärv <jan.h.d@swipnet.se>
3089
3090 * menu-bar.el (menu-bar-set-tool-bar-position): Set frame parameter
3091 on all frames.
3092
3093 2010-08-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
3094
3095 * whitespace.el: Allow cleaning up blanks without blank
3096 visualization (Bug#6651). Adjust help window for
3097 whitespace-toggle-options (Bug#6479). Allow to use fill-column
3098 instead of whitespace-line-column (from EmacsWiki). New version
3099 13.1.
3100 (whitespace-style): Added new value 'face. Adjust docstring.
3101 (whitespace-space, whitespace-hspace, whitespace-tab): Adjust
3102 foreground property face.
3103 (whitespace-line-column): Adjust docstring and type declaration.
3104 (whitespace-style-value-list, whitespace-toggle-option-alist)
3105 (whitespace-help-text): Adjust const initialization.
3106 (whitespace-toggle-options, global-whitespace-toggle-options):
3107 Adjust docstring.
3108 (whitespace-display-window, whitespace-interactive-char)
3109 (whitespace-style-face-p, whitespace-color-on): Adjust code.
3110 (whitespace-help-scroll): New fun.
3111
3112 2010-08-24 Chong Yidong <cyd@stupidchicken.com>
3113
3114 * emacs-lisp/package.el (list-packages): Alias for
3115 package-list-packages.
3116
3117 2010-08-24 Kevin Ryde <user42@zip.com.au>
3118
3119 * textmodes/flyspell.el (flyspell-check-tex-math-command): Doc fix
3120 (Bug#5651).
3121
3122 * progmodes/ruby-mode.el (ruby): Add defgroup.
3123
3124 2010-08-24 Chong Yidong <cyd@stupidchicken.com>
3125
3126 * progmodes/python.el: Add Ipython support (Bug#5390).
3127 (python-shell-prompt-alist)
3128 (python-shell-continuation-prompt-alist): New options.
3129 (python--set-prompt-regexp): New function.
3130 (inferior-python-mode, run-python, python-shell): Require
3131 ansi-color. Use python--set-prompt-regexp to set the comint
3132 prompt based on the Python interpreter.
3133 (python--prompt-regexp): New var.
3134 (python-check-comint-prompt)
3135 (python-comint-output-filter-function): Use it.
3136 (run-python): Use a pipe (Bug#5694).
3137
3138 2010-08-24 Fabian Ezequiel Gallina <galli.87@gmail.com> (tiny change)
3139
3140 * progmodes/python.el (python-send-region): Send a different
3141 Python command if Ipython is in use.
3142 (python-check-version): Use a Python command to find the version.
3143
3144 2010-08-24 Chong Yidong <cyd@stupidchicken.com>
3145
3146 * mouse.el (mouse-yank-primary): Avoid setting primary when
3147 deactivating the mark (Bug#6872).
3148
3149 2010-08-23 Chris Foote <chris@foote.com.au> (tiny change)
3150
3151 * progmodes/python.el (python-block-pairs): Allow use of "finally"
3152 with "else" (Bug#3991).
3153
3154 2010-08-23 Michael Albinus <michael.albinus@gmx.de>
3155
3156 * net/dbus.el: Accept UNIX domain sockets as bus address.
3157 (top): Don't initialize `dbus-registered-objects-table' anymore,
3158 this is done in dbusbind,c.
3159 (dbus-check-event): Adapt test for bus.
3160 (dbus-return-values-table, dbus-unregister-service)
3161 (dbus-event-bus-name, dbus-introspect, dbus-register-property):
3162 Adapt doc string.
3163
3164 2010-08-23 Juanma Barranquero <lekktu@gmail.com>
3165
3166 * ido.el (ido-use-virtual-buffers): Fix typo in docstring.
3167
3168 2010-08-22 Juri Linkov <juri@jurta.org>
3169
3170 * simple.el (read-extended-command): New function with the logic
3171 for `completing-read' moved to Elisp from `execute-extended-command'.
3172 Use `function-called-at-point' in `minibuffer-default-add-function'
3173 to get a command name for M-n (bug#5364, bug#5214).
3174
3175 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
3176
3177 * startup.el (command-line-1): Issue warning for ignored arguments
3178 --unibyte, etc (Bug#6886).
3179
3180 2010-08-22 Leo <sdl.web@gmail.com>
3181
3182 * net/rcirc.el (rcirc-add-or-remove): Accept a list of elements.
3183 (ignore, bright, dim, keyword): Split list of nicknames before
3184 passing to rcirc-add-or-remove (Bug#6894).
3185
3186 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
3187
3188 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix (Bug#6880).
3189
3190 2010-08-22 Leo <sdl.web@gmail.com>
3191
3192 Fix buffer-list rename&refresh after killing a buffer in ido.
3193 * ido.el: Revert Óscar's.
3194 (ido-kill-buffer-at-head): Exit the minibuffer with ido-exit=refresh.
3195 Remember the buffers at head, rather than their name.
3196 * iswitchb.el (iswitchb-kill-buffer): Re-make the list.
3197
3198 2010-08-22 Kirk Kelsey <kirk.kelsey@0x4b.net> (tiny change)
3199 Stefan Monnier <monnier@iro.umontreal.ca>
3200
3201 * progmodes/make-mode.el (makefile-fill-paragraph): Account for the
3202 extra backslash added to each line (bug#6890).
3203
3204 2010-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
3205
3206 * subr.el (read-key): Don't echo keystrokes (bug#6883).
3207
3208 2010-08-22 Glenn Morris <rgm@gnu.org>
3209
3210 * menu-bar.el (menu-bar-games-menu): Add landmark.
3211
3212 2010-08-22 Glenn Morris <rgm@gnu.org>
3213
3214 * align.el (align-regexp): Make group and spacing arguments
3215 use the interactive defaults when non-interactive. (Bug#6698)
3216
3217 * mail/rmail.el (rmail-forward): Replace mail-text-start with its
3218 expansion, so as not to need sendmail.
3219 (mail-text-start): Remove declaration.
3220 (rmail-retry-failure): Require sendmail.
3221
3222 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
3223
3224 * subr.el (read-key): Don't hide the menu-bar entries (bug#6881).
3225
3226 2010-08-22 Michael Albinus <michael.albinus@gmx.de>
3227
3228 * progmodes/flymake.el (flymake-start-syntax-check-process):
3229 Use `start-file-process' in order to let it run also on remote hosts.
3230
3231 2010-08-22 Kenichi Handa <handa@m17n.org>
3232
3233 * files.el: Add `word-wrap' as safe local variable.
3234
3235 2010-08-22 Glenn Morris <rgm@gnu.org>
3236
3237 * woman.el (woman-translate): Case matters. (Bug#6849)
3238
3239 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
3240
3241 * simple.el (kill-region): Doc fix (Bug#6787).
3242
3243 2010-08-22 Glenn Morris <rgm@gnu.org>
3244
3245 * calendar/diary-lib.el (diary-header-line-format):
3246 Fit it to the window, not the frame.
3247
3248 2010-08-22 Andreas Schwab <schwab@linux-m68k.org>
3249
3250 * subr.el (ignore-errors): Add debug declaration.
3251
3252 2010-08-22 Geoff Gole <geoffgole@gmail.com> (tiny change)
3253
3254 * whitespace.el (whitespace-color-off): Remove post-command-hook
3255 locally.
3256
3257 2010-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
3258
3259 * vc/add-log.el (add-log-file-name): Don't get confused by symlinks.
3260
3261 2010-08-21 Chong Yidong <cyd@stupidchicken.com>
3262
3263 * cus-edit.el (custom-group-value-create): Add extra newline
3264 before end line (Bug#6876).
3265
3266 2010-08-21 Chong Yidong <cyd@stupidchicken.com>
3267
3268 * mouse.el (mouse-save-then-kill): Don't save region to kill ring
3269 when extending it. Before killing on the second click, check if
3270 the buffer is the correct one. Doc fix.
3271 (mouse-secondary-save-then-kill): Allow usage without first
3272 calling mouse-start-secondary, by defaulting to point. Don't save
3273 an empty secondary selection. Doc fix.
3274
3275 2010-08-21 Vinicius Jose Latorre <viniciusjl@ig.com.br>
3276
3277 * whitespace.el: Fix slow cursor movement (Bug#6172). Reported by
3278 Christoph Groth <cwg@falma.de> and Liu Xin <x_liu@neusoft.com>.
3279 New version 13.0.
3280 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
3281 Adjust initialization.
3282 (whitespace-bob-marker, whitespace-eob-marker)
3283 (whitespace-buffer-changed): New vars.
3284 (whitespace-cleanup, whitespace-color-on, whitespace-color-off)
3285 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp)
3286 (whitespace-post-command-hook, whitespace-display-char-on):
3287 Adjust code.
3288 (whitespace-looking-back, whitespace-buffer-changed): New funs.
3289 (whitespace-space-regexp, whitespace-tab-regexp): Fun eliminated.
3290
3291 2010-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
3292
3293 * files.el (locate-file-completion-table): Only list the .el and .elc
3294 extensions if there's no other choice (bug#5955).
3295
3296 * facemenu.el (facemenu-self-insert-data): New var.
3297 (facemenu-post-self-insert-function, facemenu-set-self-insert-face):
3298 New functions.
3299 (facemenu-add-face): Use them.
3300
3301 * simple.el (blink-matching-open): Obey forward-sexp-function.
3302
3303 2010-08-18 Stefan Monnier <monnier@iro.umontreal.ca>
3304
3305 * simple.el (prog-mode-map): New var.
3306 (prog-indent-sexp): New command.
3307
3308 * progmodes/octave-mod.el (octave-mode-menu): Make toggle buttons.
3309
3310 * progmodes/prolog.el (smie): Require.
3311
3312 * emacs-lisp/smie.el (smie-default-backward-token)
3313 (smie-default-forward-token): Strip properties.
3314 (smie-next-sexp): Be more careful with associative operators.
3315 (smie-forward-sexp-command): Generalize.
3316 (smie-backward-sexp-command): Simplify.
3317 (smie-closer-alist): New var.
3318 (smie-close-block): New command.
3319 (smie-indent-debug-log): New var.
3320 (smie-indent-offset-rule): Add a few more cases.
3321 (smie-indent-column): New function.
3322 (smie-indent-after-keyword): Use it.
3323 (smie-indent-keyword): Use it.
3324 Fix up the opener code's point position.
3325 (smie-indent-comment): Only applies at BOL.
3326 (smie-indent-debug): New command.
3327
3328 * emacs-lisp/autoload.el (make-autoload): Preload the macros's
3329 declarations that are useful before running the macro.
3330
3331 2010-08-18 Joakim Verona <joakim@verona.se>
3332
3333 * image.el (imagemagick-types-inhibit): New variable.
3334 (imagemagick-register-types): New function.
3335 * image-mode.el (image-transform-properties): New function.
3336 (image-transform-set-scale, image-transform-fit-to-height)
3337 (image-transform-set-rotation, image-transform-set-resize)
3338 (image-transform-fit-to-width, image-transform-fit-to-height):
3339 New functions.
3340 (image-toggle-display-image): Support image transforms.
3341
3342 2010-08-18 Katsumi Yamaoka <yamaoka@jpl.org>
3343
3344 * image.el (create-animated-image): Don't add heuristic mask to image
3345 (Bug#6839).
3346
3347 2010-08-18 Jan Djärv <jan.h.d@swipnet.se>
3348
3349 * term/ns-win.el (ns-get-pasteboard, ns-set-pasteboard):
3350 Use QCLIPBOARD instead of QPRIMARY (Bug#6677).
3351
3352 2010-08-17 Stefan Monnier <monnier@iro.umontreal.ca>
3353
3354 * emacs-lisp/lisp.el (up-list): Obey forward-sexp-function if set.
3355
3356 Font-lock '...' strings, plus various simplifications and fixes.
3357 * progmodes/octave-mod.el (octave-font-lock-keywords): Use regexp-opt.
3358 (octave-font-lock-close-quotes): New function.
3359 (octave-font-lock-syntactic-keywords): New var.
3360 (octave-mode): Use it. Set beginning-of-defun-function.
3361 (octave-mode-map): Don't override the <foo>-defun commands.
3362 (octave-mode-menu): Pass it directly to easy-menu-define;
3363 remove (now generic) <foo>-defun commands; use info-lookup-symbol.
3364 (octave-block-match-alist): Fix up last change so that
3365 octave-close-block uses the more specific keyword.
3366 (info-lookup-mode): Silence byte-compiler.
3367 (octave-beginning-of-defun): Not interactive any more.
3368 Optimize slightly.
3369 (octave-end-of-defun, octave-mark-defun, octave-in-defun-p): Remove.
3370 (octave-indent-defun, octave-send-defun): Use mark-defun instead.
3371 (octave-completion-at-point-function): Make sure point is within
3372 beg..end.
3373 (octave-reindent-then-newline-and-indent):
3374 Use reindent-then-newline-and-indent.
3375 (octave-add-octave-menu): Remove.
3376
3377 2010-08-17 Jan Djärv <jan.h.d@swipnet.se>
3378
3379 * mail/emacsbug.el (report-emacs-bug-insert-to-mailer)
3380 (report-emacs-bug-can-use-xdg-email): New functions.
3381 (report-emacs-bug): Set can-xdg-email to result of
3382 report-emacs-bug-can-use-xdg-email. If can-xdg-email bind
3383 \C-cm to report-emacs-bug-insert-to-mailer and add help text
3384 about it.
3385
3386 * net/browse-url.el (browse-url-default-browser): Add cond
3387 for browse-url-xdg-open.
3388 (browse-url-can-use-xdg-open, browse-url-xdg-open): New functions.
3389
3390 2010-08-17 Glenn Morris <rgm@gnu.org>
3391
3392 * progmodes/cc-engine.el (c-new-BEG, c-new-END)
3393 (c-fontify-recorded-types-and-refs): Define for compiler.
3394 * progmodes/cc-mode.el (c-new-BEG, c-new-END): Move definitions
3395 before use.
3396
3397 * calendar/icalendar.el (icalendar--convert-recurring-to-diary):
3398 Fix format call.
3399
3400 2010-08-17 Michael Albinus <michael.albinus@gmx.de>
3401
3402 * net/tramp.el (tramp-handle-make-symbolic-link): Flush file
3403 properties.
3404 (tramp-handle-process-file): Call the program in a subshell, in
3405 order to preserve working directory.
3406 (tramp-action-password): Hide password prompt before next run.
3407 (tramp-process-actions): Widen connection buffer for the trace.
3408
3409 2010-08-16 Deniz Dogan <deniz.a.m.dogan@gmail.com>
3410
3411 * net/rcirc.el (rcirc-log-process-buffers): New option.
3412 (rcirc-print): Use it.
3413 (rcirc-generate-log-filename): New function.
3414 (rcirc-log-filename-function): Change default to
3415 rcirc-generate-log-filename (Bug#6828).
3416
3417 2010-08-16 Chong Yidong <cyd@stupidchicken.com>
3418
3419 * simple.el (deactivate-mark): If select-active-regions is `only',
3420 only set selection for temporarily active regions.
3421
3422 * cus-start.el: Change defcustom for select-active-regions.
3423
3424 2010-08-15 Chong Yidong <cyd@stupidchicken.com>
3425
3426 * mouse.el (mouse--drag-set-mark-and-point): New function.
3427 (mouse-drag-track): Use LOCATION arg to push-mark.
3428 Use mouse--drag-set-mark-and-point to take click-count into
3429 consideration when updating point and mark (Bug#6840).
3430
3431 2010-08-15 Chong Yidong <cyd@stupidchicken.com>
3432
3433 * progmodes/compile.el (compilation-error-regexp-alist-alist):
3434 Give the Ruby rule a lower priority than Gnu (Bug#6778).
3435
3436 2010-08-14 Štěpán Němec <stepnem@gmail.com> (tiny change)
3437
3438 * font-lock.el (lisp-font-lock-keywords-2):
3439 Add combine-after-change-calls, condition-case-no-debug,
3440 with-demoted-errors, and with-silent-modifications (Bug#6025).
3441
3442 2010-08-14 Kevin Ryde <user42@zip.com.au>
3443
3444 * emacs-lisp/copyright.el (copyright-update-year)
3445 (copyright-update): Temporary switch-to-buffer to ensure the
3446 buffer change being queried is visible (Bug#5394).
3447
3448 2010-08-14 Tom Tromey <tromey@redhat.com>
3449
3450 * progmodes/etags.el (tags-file-name): Mark safe if stringp
3451 (Bug#6733).
3452
3453 2010-08-14 Eli Zaretskii <eliz@gnu.org>
3454
3455 * mouse.el (mouse-yank-primary): Fix mouse-2 on MS-Windows and
3456 MS-DOS. (Bug#6689)
3457
3458 2010-08-13 Jan Djärv <jan.h.d@swipnet.se>
3459
3460 * menu-bar.el (menu-bar-set-tool-bar-position): New function.
3461 (menu-bar-showhide-tool-bar-menu-customize-enable-left)
3462 (menu-bar-showhide-tool-bar-menu-customize-enable-right)
3463 (menu-bar-showhide-tool-bar-menu-customize-enable-top)
3464 (menu-bar-showhide-tool-bar-menu-customize-enable-bottom):
3465 Call menu-bar-set-tool-bar-position.
3466
3467 2010-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
3468
3469 * progmodes/octave-mod.el (octave-mode-syntax-table): Use the new "c"
3470 comment style (bug#6834).
3471 * progmodes/scheme.el (scheme-mode-syntax-table):
3472 * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Remove spurious
3473 "b" flag in "' 14b" syntax.
3474
3475 * progmodes/octave-mod.el (octave-mode-map): Remove special bindings
3476 for (un)commenting the region and performing completion.
3477 (octave-mode-menu): Use standard commands for help and completion.
3478 (octave-mode-syntax-table): Support %{..%} comments (sort of).
3479 (octave-mode): Use define-derived-mode.
3480 Set completion-at-point-functions and don't set columns.
3481 Don't disable adaptive-fill-regexp.
3482 (octave-describe-major-mode, octave-comment-region)
3483 (octave-uncomment-region, octave-comment-indent)
3484 (octave-indent-for-comment): Remove.
3485 (octave-indent-calculate): Rename from calculate-octave-indent.
3486 (octave-indent-line, octave-fill-paragraph): Update caller.
3487 (octave-initialize-completions): No need to make an alist.
3488 (octave-completion-at-point-function): New function.
3489 (octave-complete-symbol): Use it.
3490 (octave-insert-defun): Use define-skeleton.
3491
3492 * progmodes/octave-mod.el (octave-mode): Set comment-add.
3493 (octave-mode-map): Use comment-dwim (bug#6829).
3494
3495 2010-08-12 Antoine Levitt <antoine.levitt@gmail.com> (tiny change)
3496
3497 * cus-edit.el (custom-save-variables, custom-save-faces): Fix up
3498 indentation of inserted comment.
3499
3500 2010-08-11 Jan Djärv <jan.h.d@swipnet.se>
3501
3502 * faces.el (region): Add type gtk that uses gtk colors.
3503
3504 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
3505 Handle theme-name change.
3506
3507 2010-08-10 Michael R. Mauger <mmaug@yahoo.com>
3508
3509 * progmodes/sql.el: Version 2.5
3510 (sql-product-alist): Add :prompt-cont-regexp property for several
3511 database products.
3512 (sql-prompt-cont-regexp): New variable.
3513 (sql-output-newline-count, sql-output-by-send):
3514 New variables. Record number of newlines in input text.
3515 (sql-send-string): Handle multiple filters and count newlines.
3516 (sql-send-magic-terminator): Count terminator newline.
3517 (sql-interactive-remove-continuation-prompt): Filters output to
3518 remove continuation prompts; one for each newline.
3519 (sql-interactive-mode): Set up new variables, prompt regexp and
3520 output filter.
3521 (sql-mode-sqlite-font-lock-keywords): Correct some keywords.
3522 (sql-make-alternate-buffer-name): Correct buffer name in edge cases.
3523
3524 2010-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
3525
3526 * emacs-lisp/pcase.el: New file.
3527
3528 2010-08-10 Michael Albinus <michael.albinus@gmx.de>
3529
3530 * net/tramp.el (tramp-vc-registered-read-file-names): Read input
3531 as here-document, otherwise the command could exceed maximum
3532 length of command line.
3533 (tramp-handle-vc-registered): Call script accordingly.
3534 Reported by Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>.
3535
3536 2010-08-10 Kenichi Handa <handa@m17n.org>
3537
3538 * language/hebrew.el: Exclude U+05C3 (Hebrew SOF PASUQ) from the
3539 composable pattern.
3540
3541 2010-08-09 Chong Yidong <cyd@stupidchicken.com>
3542
3543 * emacs-lisp/package.el (package-version-split)
3544 (package--version-first-nonzero, package-version-compare):
3545 Functions removed.
3546 (package-directory-list, package-load-all-descriptors)
3547 (package--built-in, package-activate, define-package)
3548 (package-installed-p, package-compute-transaction)
3549 (package-read-all-archive-contents)
3550 (package--add-to-archive-contents, package-buffer-info)
3551 (package-tar-file-info, package-list-packages-internal):
3552 Use version-to-list and version-list-*.
3553
3554 * emacs-lisp/package-x.el (package-upload-buffer-internal):
3555 Use version-to-list.
3556 (package-upload-buffer-internal): Use version-list-<=.
3557
3558 2010-08-09 Kenichi Handa <handa@m17n.org>
3559
3560 * language/hebrew.el: Exclude U+05BD (Hebrew MAQAF) from the
3561 composable pattern.
3562
3563 2010-08-08 Chong Yidong <cyd@stupidchicken.com>
3564
3565 * tutorial.el (tutorial--default-keys): C-d is now bound to
3566 delete-forward-char (Bug#6826).
3567
3568 * mouse.el (mouse-drag-track): Remove accidentally-removed check
3569 for `double' value of mouse-1-click-follows-link (Bug#6807).
3570
3571 2010-08-08 Johan Bockgård <bojohan@gnu.org>
3572
3573 * replace.el (replace-highlight): Bind isearch-forward and
3574 isearch-error, ensuring that highlighting is updated if the user
3575 switches the search direction (Bug#6808).
3576
3577 * isearch.el (isearch-lazy-highlight-forward): New var.
3578 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
3579 (isearch-lazy-highlight-update): Use it.
3580
3581 2010-08-08 Kenichi Handa <handa@m17n.org>
3582
3583 * international/mule.el (define-charset): Store NAME as :base property.
3584 (ctext-non-standard-encodings-table): Pay attention to charset aliases.
3585 (ctext-pre-write-conversion): Sort ctext-standard-encodings by the
3586 current priority. Force using the designation of the specific
3587 charset by adding `charset' text property. Improve the whole algorithm.
3588
3589 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
3590
3591 * emulation/pc-select.el (pc-selection-mode-hook)
3592 (copy-region-as-kill-nomark, beginning-of-buffer-mark)
3593 (pc-selection-mode): Fix typos in docstrings.
3594
3595 2010-08-08 Kenichi Handa <handa@m17n.org>
3596
3597 * language/cyrillic.el: Don't add "microsoft-cp1251" to
3598 ctext-non-standard-encodings-alist here.
3599
3600 * international/mule.el (ctext-non-standard-encodings-alist):
3601 Add "koi8-r" and "microsoft-cp1251".
3602 (ctext-standard-encodings): New variable.
3603 (ctext-non-standard-encodings-table): List only elements for
3604 non-standard encodings.
3605 (ctext-pre-write-conversion): Adjust for the above change.
3606 Check ctext-standard-encodings.
3607
3608 * international/mule-conf.el (compound-text): Doc fix.
3609 (ctext-no-compositions): Doc fix.
3610 (compound-text-with-extensions): Doc fix.
3611
3612 2010-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
3613
3614 * simple.el (exchange-dot-and-mark): Mark obsolete, finally.
3615
3616 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
3617
3618 * progmodes/which-func.el (which-func-format): Split help-echo text
3619 into lines, like other mode-line tooltips.
3620
3621 * server.el (server-start): When using TCP sockets, force IPv4
3622 and use a literal 127.0.0.1 for localhost. (Related to bug#6781.)
3623
3624 2010-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
3625
3626 * bindings.el (complete-symbol): Run completion-at-point as a fallback.
3627
3628 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
3629
3630 * term.el (term-delimiter-argument-list): Reflow docstring.
3631 (term-read-input-ring, term-write-input-ring, term-send-input)
3632 (term-bol, term-erase-in-display, serial-supported-or-barf):
3633 Fix typos in docstrings.
3634
3635 2010-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
3636
3637 * bindings.el (function-key-map): Add a S-tab => backtab fallback.
3638
3639 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
3640
3641 * dabbrev.el (dabbrev-completion): Fix typo in docstring.
3642
3643 2010-08-08 MON KEY <monkey@sandpframing.com> (tiny change)
3644
3645 * emacs-lisp/syntax.el (syntax-ppss-toplevel-pos):
3646 Fix typo in docstring (bug#6747).
3647
3648 2010-08-08 Leo <sdl.web@gmail.com>
3649
3650 * eshell/esh-io.el (eshell-get-target): Better detection of
3651 read-only file (Bug#6762).
3652
3653 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
3654
3655 * align.el (align-default-spacing): Doc fix.
3656 (align-region-heuristic, align-regexp): Fix typos in docstrings.
3657
3658 2010-08-08 Stephen Peters <speters@itasoftware.com>
3659
3660 * calendar/icalendar.el
3661 (icalendar--split-value): Fix splitting regexp. (Bug#6766)
3662 (icalendar--get-weekday-numbers): New.
3663 (icalendar--convert-recurring-to-diary): Handle multiple byday
3664 values in weekly rules. (Bug#6766)
3665
3666 2010-08-08 Ulf Jasper <ulf.jasper@web.de>
3667
3668 * calendar/icalendar.el (icalendar-uid-format): Doc fix.
3669 (icalendar--create-uid, icalendar-export-region)
3670 (icalendar--parse-summary-and-rest): Code formatting.
3671
3672 2010-08-08 Jay Belanger <jay.p.belanger@gmail.com>
3673
3674 * calc/calc.el (calc-trail-mode,calc-refresh): Use `face' property
3675 to italicize headers.
3676 (calc-highlight-selections-with-faces): New variable.
3677 (calc-selected-face, calc-nonselected-face): New faces.
3678
3679 * calc/calccomp.el (math-comp-highlight-string): Use
3680 `calc-highlight-selections-with-faces' to determine how to highlight
3681 sub-formulas.
3682
3683 * calc/calc-sel.el (calc-show-selections): Change message to when
3684 using faces to highlight selections.
3685
3686 2010-08-07 Michael R. Mauger <mmaug@yahoo.com>
3687
3688 * progmodes/sql.el (sql-mode-sqlite-font-lock-keywords):
3689 Add SQLite 3 keywords, functions and datatypes.
3690 (sql-interactive-mode): Remove `comint-process-echoes' set to t
3691 (Bug#6686).
3692
3693 2010-08-07 Chong Yidong <cyd@stupidchicken.com>
3694
3695 * simple.el (select-active-regions): Move to keyboard.c.
3696 (deactivate-mark): Used saved-region-selection.
3697 (select-active-region): Function removed.
3698 (activate-mark, set-mark, push-mark-command)
3699 (handle-shift-selection): Don't call it.
3700 (keyboard-quit): Avoid adding the region to the window selection.
3701
3702 * mouse.el (mouse-drag-track): Remove hacks to deal with old
3703 select-active-regions implementation.
3704 (mouse-yank-at-click): Doc fix.
3705
3706 * cus-start.el: Add custom declaration for select-active-regions.
3707
3708 2010-08-07 Eli Zaretskii <eliz@gnu.org>
3709
3710 * simple.el (delete-forward-char): Doc fix.
3711
3712 * tutorial.el (help-with-tutorial): Hack safe file-local variables
3713 after reading the tutorial.
3714
3715 2010-08-06 Alan Mackenzie <bug-cc-mode@gnu.org>
3716
3717 * progmodes/cc-cmds.el (c-mask-paragraph, c-fill-paragraph): Fix
3718 for the case that a C style comment has its delimiters alone on
3719 their respective lines.
3720
3721 2010-08-06 Michael Albinus <michael.albinus@gmx.de>
3722
3723 * net/tramp.el (tramp-handle-start-file-process): Set connection
3724 property "vec".
3725 (tramp-process-sentinel): Use it for flushing the cache. We
3726 cannot do it via the process buffer, the buffer could be deleted
3727 already when running the sentinel.
3728
3729 2010-08-06 Jürgen Hötzel <juergen@archlinux.org> (tiny change)
3730
3731 * comint.el (comint-mode): Make directory tracking functions
3732 functional on remote files. (Bug#6764)
3733
3734 2010-08-06 Dan Nicolaescu <dann@ics.uci.edu>
3735
3736 * vc/diff-mode.el (diff-mode-shared-map): Bind g to revert-buffer.
3737
3738 2010-08-05 Eli Zaretskii <eliz@gnu.org>
3739
3740 * emacs-lisp/find-gc.el (find-gc-source-files): Rename
3741 unexec.c => unexcoff.c.
3742
3743 * emacs-lisp/authors.el (authors-fixed-entries): Rename
3744 unexec.c => unexcoff.c.
3745
3746 2010-08-05 Michael Albinus <michael.albinus@gmx.de>
3747
3748 * net/tramp.el (tramp-handle-dired-uncache): Flush directory
3749 cache, not only file cache.
3750 (tramp-process-sentinel): New defun.
3751 (tramp-handle-start-file-process): Use it, in order to invalidate
3752 file caches.
3753
3754 2010-08-03 Leo <sdl.web@gmail.com>
3755
3756 * server.el (server-start): Simplify loop.
3757
3758 2010-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
3759
3760 * frame.el (screen-height, screen-width, set-screen-width)
3761 (set-screen-height): Remove ancient compatibility aliases.
3762
3763 * textmodes/fill.el (justify-current-line): Don't add 1 to nspaces
3764 when justifying. It seems useless and harmful for ncols=1 (bug#6738).
3765
3766 * emacs-lisp/timer.el (timer-event-handler): Protect against timers
3767 that change current buffer.
3768
3769 2010-08-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3770
3771 * mouse.el (mouse-fixup-help-message): Match "mouse-2" only at the
3772 beginning of the string. Use `string-match-p'. (Bug#6765)
3773
3774 2010-08-01 Jan Djärv <jan.h.d@swipnet.se>
3775
3776 * cus-start.el (x-gtk-use-system-tooltips): New variable.
3777
3778 2010-08-01 Chong Yidong <cyd@stupidchicken.com>
3779
3780 * emacs-lisp/package.el (package--list-packages): Fix column alignment.
3781 (package--builtins): Tweak descriptions.
3782 (package-print-package): Upcase descriptions if necessary.
3783 Show all built-in packages in font-lock-builtin-face.
3784 (package-list-packages-internal): Omit "emacs" package.
3785 Show status of built-in packages as "built-in".
3786
3787 2010-07-31 Chong Yidong <cyd@stupidchicken.com>
3788
3789 * mouse.el (mouse-save-then-kill): Doc fix. Deactivate mark
3790 before killing to preserve the primary selection (Bug#6701).
3791
3792 * term/x-win.el (x-select-text): Doc fix.
3793
3794 2010-07-31 Nathaniel Flath <flat0103@gmail.com>
3795
3796 Enhance Java Mode to handle Java 5.0 (Tiger) and Java 6 (Mustang).
3797 The following functions were modified or created:
3798
3799 * progmodes/cc-vars.el (c-offsets-alist, c-inside-block-syms)
3800 (objc-font-lock-extra-types):
3801 * progmodes/cc-mode.el (c-basic-common-init):
3802 * progmodes/cc-langs.el (c-make-mode-syntax-table)
3803 (c++-make-template-syntax-table)
3804 (c-identifier-syntax-modifications, c-symbol-start, c-operators)
3805 (c-<-op-cont-regexp, c->-op-cont-regexp, c-class-decl-kwds)
3806 (c-brace-list-decl-kwds, c-modifier-kwds, c-prefix-spec-kwds-re)
3807 (c-type-list-kwds, c-decl-prefix-re, c-opt-type-suffix-key):
3808 * progmodes/cc-fonts.el (c-make-inverse-face)
3809 (c-basic-matchers-after):
3810 * progmodes/cc-engine.el (c-forward-keyword-clause)
3811 (c-forward-<>-arglist, c-forward-<>-arglist-recur)
3812 (c-forward-name, c-forward-type, c-forward-decl-or-cast-1)
3813 (c-guess-continued-construct, c-guess-basic-syntax):
3814
3815 2010-07-31 Jan Djärv <jan.h.d@swipnet.se>
3816
3817 * faces.el (face-all-attributes): Improve documentation (Bug#6767).
3818
3819 2010-07-31 Eli Zaretskii <eliz@gnu.org>
3820
3821 * files.el (bidi-paragraph-direction): Define safe local values.
3822
3823 * language/hebrew.el ("Hebrew"): Add TUTORIAL.he to
3824 language-info-alist. Remove outdated FIXME in a comment.
3825
3826 2010-07-31 Alan Mackenzie <acm@muc.de>
3827
3828 * progmodes/cc-cmds.el (c-mask-paragraph): Fix bug #6688:
3829 Auto-fill broken in C/C++ modes.
3830
3831 2010-07-29 Jan Djärv <jan.h.d@swipnet.se>
3832
3833 * menu-bar.el (menu-bar-showhide-tool-bar-menu-customize-enable-left)
3834 (menu-bar-showhide-tool-bar-menu-customize-disable)
3835 (menu-bar-showhide-tool-bar-menu-customize-enable-right)
3836 (menu-bar-showhide-tool-bar-menu-customize-enable-bottom)
3837 (menu-bar-showhide-tool-bar-menu-customize-enable-top): New functions
3838 (menu-bar-showhide-tool-bar-menu): If tool bar is moveable,
3839 make a menu for Options => toolbar that can move it.
3840
3841 2010-07-29 Chong Yidong <cyd@stupidchicken.com>
3842
3843 * emacs-lisp/package-x.el (package--make-rss-entry):
3844 (package-maint-add-news-item, package--update-news)
3845 (package-upload-buffer-internal): New arg ARCHIVE-URL.
3846
3847 * emacs-lisp/package.el (package-archive-url): Rename from
3848 package-archive-id.
3849 (package-install): Doc fix.
3850 (package-download-single, package-download-tar, package-install)
3851 (package-menu-view-commentary): Callers changed.
3852
3853 2010-07-29 Michael Albinus <michael.albinus@gmx.de>
3854
3855 * net/tramp.el (tramp-handle-start-file-process): Check only for
3856 `remote-tty' process property.
3857 (tramp-open-shell): Don't check for tty.
3858 (tramp-open-connection-setup-interactive-shell): Set `remote-tty'
3859 process property.
3860
3861 * progmodes/gdb-mi.el (gdb-init-1): Check also for tty on a remote
3862 host.
3863
3864 2010-07-28 Chong Yidong <cyd@stupidchicken.com>
3865
3866 * emacs-lisp/package.el (package-load-list, package-archives)
3867 (package-archive-contents, package-user-dir)
3868 (package-directory-list, package--builtins, package-alist)
3869 (package-activated-list, package-obsolete-alist): Mark as risky.
3870
3871 2010-07-28 Phil Hagelberg <phil@evri.com>
3872
3873 Add support for non-default package repositories.
3874 * emacs-lisp/package.el (package-archive-base): Var deleted.
3875 (package-archives): New variable.
3876 (package-archive-contents): Doc fix.
3877 (package-load-descriptor): Do nothing if descriptor file is missing.
3878 (package--write-file-no-coding): New function.
3879 (package-unpack-single): Use it.
3880 (package-archive-id): New function.
3881 (package-download-single, package-download-tar)
3882 (package-menu-view-commentary): Use it.
3883 (package-installed-p): Make second argument optional.
3884 (package-read-all-archive-contents): New function.
3885 (package-initialize): Use it.
3886 (package-read-archive-contents): Add ARCHIVE argument.
3887 (package--add-to-archive-contents): New function.
3888 (package-install): Don't call package-read-archive-contents.
3889 (package--download-one-archive): Store archive file in a
3890 subdirectory of package-user-dir.
3891 (package-menu-execute): Remove spurious line movement.
3892
3893 2010-07-28 Jan Djärv <jan.h.d@swipnet.se>
3894
3895 * cus-start.el (tool-bar-style): Add text-image-horiz.
3896
3897 2010-07-28 Michael Albinus <michael.albinus@gmx.de>
3898
3899 * progmodes/gud.el (gud-common-init): Check for remoteness of
3900 `file', and not of `default-directory'.
3901
3902 2010-07-28 Michael Albinus <michael.albinus@gmx.de>
3903
3904 * net/tramp.el (tramp-methods): Move hostname to the end in all
3905 ssh `tramp-login-args'.
3906 (tramp-verbose): Describe verbose level 9.
3907 (tramp-open-shell): Check for tty if `tramp-verbose' >= 9.
3908 (tramp-open-connection-setup-interactive-shell): Trace stty
3909 settings if `tramp-verbose' >= 9.
3910 (tramp-handle-start-file-process): Implement tty setting.
3911 (Bug#4604, Bug#6360)
3912
3913 * net/tramp-cmds.el (tramp-bug): Recommend setting of
3914 `tramp-verbose' to 9.
3915
3916 2010-07-27 Aaron S. Hawley <ashawley@burlingtontelecom.net>
3917
3918 * emacs-lisp/re-builder.el (reb-re-syntax, reb-lisp-mode)
3919 (reb-lisp-syntax-p, reb-change-syntax, reb-cook-regexp):
3920 Remove references to package `lisp-re' (bug#4369).
3921
3922 2010-07-27 Tom Tromey <tromey@redhat.com>
3923
3924 * progmodes/js.el (js-mode):
3925 * progmodes/make-mode.el (makefile-mode):
3926 * progmodes/simula.el (simula-mode):
3927 * progmodes/tcl.el (tcl-mode): Derive from prog-mode.
3928
3929 2010-07-27 Juanma Barranquero <lekktu@gmail.com>
3930
3931 * help-fns.el (find-lisp-object-file-name): Doc fix (bug#6494).
3932
3933 * time.el (display-time-day-and-date): Remove spurious * in docstring.
3934 (display-time-world-buffer-name, display-time-world-mode-map):
3935 Fix typos in docstrings.
3936
3937 2010-07-27 Shyam Karanatt <shyam@swathanthran.in> (tiny change)
3938
3939 * image-mode.el (image-display-size): New function.
3940 (image-forward-hscroll, image-next-line, image-eol, image-eob)
3941 (image-mode-fit-frame): Use it (Bug#6639).
3942
3943 2010-07-27 Chong Yidong <cyd@stupidchicken.com>
3944
3945 * dired.el (dired-buffers-for-dir): Handle list values of
3946 dired-directory (Bug#6636).
3947
3948 2010-07-26 Sam Steingold <sds@gnu.org>
3949
3950 * mouse.el (mouse-yank-primary, mouse-yank-secondary):
3951 Do not call `x-get-selection' the second time, reuse the value.
3952
3953 2010-07-26 Daiki Ueno <ueno@unixuser.org>
3954
3955 * epa-mail.el (epa-mail-mode-map): Add alternative key bindings
3956 which consist of control chars only. Suggested by Richard Stallman.
3957
3958 2010-07-25 Daiki Ueno <ueno@unixuser.org>
3959
3960 * epa-file.el (epa-file-insert-file-contents): Check if LOCAL-FILE
3961 exists before passing an error to find-file-not-found-functions
3962 (bug#6723).
3963
3964 2010-07-23 Lukas Huonker <l.huonker@gmail.com>
3965
3966 * play/tetris.el (tetris-tty-colors, tetris-x-colors, tetris-blank):
3967 Remove leading nil element, adjust values.
3968 (tetris-shapes, tetris-shape-scores):
3969 Change representation of shapes and remove some redundancy.
3970 (tetris-get-shape-cell, tetris-shape-width, tetris-draw-next-shape)
3971 (tetris-draw-shape, tetris-erase-shape, tetris-test-shape):
3972 Adjust for working with new representation of shapes.
3973 (tetris-shape-rotations): New function.
3974 (tetris-move-bottom, tetris-move-left, tetris-move-right)
3975 (tetris-rotate-prev, tetris-rotate-next):
3976 Adjust for working with the new version of tetris-test-shape.
3977
3978 2010-07-23 Markus Triska <markus.triska@gmx.at>
3979
3980 * progmodes/ps-mode.el: Use comint (bug#5954).
3981 (ps-run-mode-map): Adapt for comint-mode; omit "\r", [return]..
3982 (ps-mode-other-newline): Simplify.
3983 (ps-run-mode): Derive from comint-mode instead of
3984 fundamental-mode, yielding input history etc.
3985 (ps-run-start, ps-run-quit, ps-run-clear, ps-run-region)
3986 (ps-run-send-string): Adapt for comint-mode.
3987 (ps-run-newline): Remove now unneeded function.
3988
3989 2010-07-23 Michael Albinus <michael.albinus@gmx.de>
3990
3991 * net/tramp.el (tramp-methods): Move hostname to the end in all
3992 plink `tramp-login-args'.
3993
3994 2010-07-23 Michael Albinus <michael.albinus@gmx.de>
3995
3996 * net/tramp.el (tramp-open-shell): New defun.
3997 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
3998 Use it.
3999
4000 2010-07-23 Michael Albinus <michael.albinus@gmx.de>
4001
4002 * net/tramp.el (tramp-file-name-regexp-unified)
4003 (tramp-completion-file-name-regexp-unified): On W32 systems, do
4004 not regard the volume letter as remote filename. (Bug#5447)
4005
4006 2010-07-23 Juanma Barranquero <lekktu@gmail.com>
4007
4008 * custom.el (custom-declare-variable): Give a clearer error message
4009 when the docstring is missing (bug#6476).
4010
4011 2010-07-22 Michael R. Mauger <mmaug@yahoo.com>
4012
4013 * progmodes/sql.el: Version 2.4. Improved Login prompting.
4014 (sql-login-params): New widget definition.
4015 (sql-oracle-login-params, sql-mysql-login-params)
4016 (sql-solid-login-params, sql-sybase-login-params)
4017 (sql-informix-login-params, sql-ingres-login-params)
4018 (sql-ms-login-params, sql-postgres-login-params)
4019 (sql-interbase-login-params, sql-db2-login-params)
4020 (sql-linter-login-params): Use it.
4021 (sql-sqlite-login-params): Use it; Define "database" parameter as
4022 a file name.
4023 (sql-sqlite-program): Change to "sqlite3".
4024 (sql-comint-sqlite): Make sure database name is complete.
4025 (sql-for-each-login): New function.
4026 (sql-connect, sql-save-connection): Use it.
4027 (sql-get-login-ext): New function.
4028 (sql-get-login): Use it.
4029 (sql-make-alternate-buffer-name): Handle :file parameters.
4030
4031 2010-07-22 Juanma Barranquero <lekktu@gmail.com>
4032
4033 * dired.el (dired-no-confirm): Document value t and fix defcustom to
4034 accept it (bug#6597). Suggested by Drew Adams <drew.adams@oracle.com>.
4035
4036 2010-07-22 Teemu Likonen <tlikonen@iki.fi> (tiny change)
4037
4038 * dired.el (dired-mode-map): Use command remapping (bug#6632).
4039
4040 2010-07-22 Lawrence Mitchell <wence@gmx.li>
4041
4042 * term/vt100.el (vt100-wide-mode): Fix :init-value keyword (bug#6620).
4043
4044 2010-07-21 Michael Albinus <michael.albinus@gmx.de>
4045
4046 * net/tramp.el (tramp-get-ls-command)
4047 (tramp-get-ls-command-with-dired): Run tests on "/dev/null"
4048 instead of "/".
4049
4050 2010-07-20 Michael R. Mauger <mmaug@yahoo.com>
4051
4052 * progmodes/sql.el: Version 2.3.
4053 (sql-connection-alist): Changed keys from symbols to strings;
4054 enhanced the widget definition.
4055 (sql-mode-menu): Added submenu to select connections.
4056 (sql-interactive-mode-menu): Added "Save Connection" item.
4057 (sql-add-product): Fixed menu item.
4058 (sql-get-product-feature): Improved error handling.
4059 (sql--alt-buffer-part, sql--alt-if-not-empty): Removed.
4060 (sql-make-alternate-buffer-name): Simplified.
4061 (sql-product-interactive): Handle missing product.
4062 (sql-connect): Support string keys, minor improvements.
4063 (sql-save-connection): New function.
4064 (sql-connection-menu-filter): New function.
4065
4066 2010-07-20 Michael Albinus <michael.albinus@gmx.de>
4067
4068 * net/tramp.el (tramp-file-name-handler): Trace 'quit.
4069 (tramp-open-connection-setup-interactive-shell): Apply
4070 workaround for IRIX64 bug. Move argument of last
4071 `tramp-send-command' where it belongs to.
4072
4073 2010-07-20 Michael Albinus <michael.albinus@gmx.de>
4074
4075 * net/tramp.el (tramp-perl-file-attributes)
4076 (tramp-perl-directory-files-and-attributes): Don't pass "$3".
4077 (tramp-maybe-open-connection): Use `async-args' and `gw-args' in
4078 front of `login-args'.
4079
4080 2010-07-19 Juanma Barranquero <lekktu@gmail.com>
4081
4082 * time.el (display-time-world-mode): Define with `define-derived-mode'.
4083 Set `show-trailing-whitespace' to nil.
4084 (display-time-world-display): Simplify.
4085
4086 2010-07-18 Alan Mackenzie <acm@muc.de>
4087
4088 Enhance `c-file-style' in file/directory local variables.
4089 * progmodes/cc-mode.el (c-count-cfss): New function.
4090 (c-before-hack-hook): Call `c-set-style' differently according to
4091 whether c-file-style was set in file or directory local
4092 variables.
4093
4094 2010-07-18 Michael R. Mauger <mmaug@yahoo.com>
4095
4096 * progmodes/sql.el: Version 2.2.
4097 (sql-product, sql-user, sql-database, sql-server, sql-port): Use
4098 defcustom :safe keyword rather than putting safe-local-variable
4099 property.
4100 (sql-password): Use defcustom :risky keyword rather than putting
4101 risky-local-variable property.
4102 (sql-oracle-login-params, sql-sqlite-login-params)
4103 (sql-solid-login-params, sql-sybase-login-params)
4104 (sql-informix-login-params, sql-ingres-login-params)
4105 (sql-ms-login-params, sql-postgres-login-params)
4106 (sql-interbase-login-params, sql-db2-login-params)
4107 (sql-linter-login-params): Add `port' option.
4108 (sql-get-product-feature): Added NO-INDIRECT parameter.
4109 (sql-comint-oracle, sql-comint-sybase)
4110 (sql-comint-informix, sql-comint-sqlite, sql-comint-mysql)
4111 (sql-comint-solid, sql-comint-ingres, sql-comint-ms)
4112 (sql-comint-postgres, sql-comint-interbase, sql-comint-db2)
4113 (sql-comint-linter): Renamed sql-connect-* functions to
4114 sql-comint-*.
4115 (sql-product-alist, sql-mode-menu): Renamed as above and
4116 :sqli-connect-func to :sqli-comint-func.
4117 (sql-connection): New variable.
4118 (sql-interactive-mode): Set it.
4119 (sql-connection-alist): New variable.
4120 (sql-connect): New function.
4121 (sql--alt-buffer-part, sql--alt-if-not-empty)
4122 (sql-make-alternate-buffer-name): Improved alternative buffer name.
4123
4124 2010-07-17 Thierry Volpiatto <thierry.volpiatto@gmail.com>
4125
4126 * image-mode.el (image-bookmark-make-record): Do not set context
4127 in an image (Bug#6650).
4128
4129 2010-07-17 Chong Yidong <cyd@stupidchicken.com>
4130
4131 * simple.el (select-active-region): New function.
4132 (push-mark-command, set-mark, activate-mark)
4133 (handle-shift-selection): Use it.
4134 (deactivate-mark): Don't check for size of region.
4135
4136 * mouse.el (mouse-drag-track): Use select-active-region.
4137
4138 2010-07-17 Michael Albinus <michael.albinus@gmx.de>
4139
4140 * net/tramp.el (tramp-get-ls-command-with-dired): Make test for
4141 "--dired" stronger.
4142
4143 2010-07-17 Chong Yidong <cyd@stupidchicken.com>
4144
4145 * term/x-win.el (x-select-enable-primary): Change default to nil.
4146 (x-select-enable-clipboard): Add :version keyword.
4147
4148 * mouse.el (mouse-drag-copy-region):
4149 * simple.el (select-active-regions): Likewise.
4150
4151 2010-07-16 Reiner Steib <Reiner.Steib@gmx.de>
4152
4153 * vc/vc.el (vc-coding-system-inherit-eol): New defvar.
4154 (vc-coding-system-for-diff): Use it to decide whether to inherit
4155 from the file the EOL format for reading the diffs of that file.
4156 (Bug#4451)
4157
4158 2010-07-16 Eli Zaretskii <eliz@gnu.org>
4159
4160 * mail/rmailmm.el (rmail-mime-save): Make the temp buffer
4161 unibyte, so compressed attachments are not compressed again.
4162
4163 2010-07-16 Michael Albinus <michael.albinus@gmx.de>
4164
4165 * net/tramp.el (tramp-handle-shell-command): Don't use hard-wired
4166 "/bin/sh" but `tramp-remote-sh' from `tramp-methods'.
4167 (tramp-find-shell): Simplify setting connection property.
4168 (tramp-get-ls-command): Make test for "--color=never" stronger.
4169
4170 2010-07-15 Simon South <ssouth@member.fsf.org>
4171
4172 * progmodes/delphi.el (delphi-previous-indent-of): Indent case
4173 blocks within record declarations (i.e. variant parts) correctly.
4174
4175 2010-07-15 Simon South <ssouth@member.fsf.org>
4176
4177 * progmodes/delphi.el (delphi-token-at): Give newlines precedence
4178 over literal tokens when parsing so newlines aren't "absorbed" by
4179 single-line comments. Corrects the indentation of case blocks
4180 that have a comment on the first line.
4181
4182 2010-07-14 Karl Fogel <kfogel@red-bean.com>
4183
4184 * bookmark.el (bookmark-load-hook): Fix doc string as suggested
4185 by Drew Adams (Bug#5504).
4186
4187 2010-07-14 Jan Djärv <jan.h.d@swipnet.se>
4188
4189 * xt-mouse.el (xterm-mouse-event-read): Fix for characters > 127
4190 now that Unicode is used (Bug#6594).
4191
4192 2010-07-14 Chong Yidong <cyd@stupidchicken.com>
4193
4194 * term/x-win.el (x-select-enable-clipboard): Default to t.
4195 (x-initialize-window-system): Don't overwrite Paste menu item.
4196
4197 * simple.el (select-active-regions): Default to t.
4198 (push-mark-command): Don't overwrite primary with empty string.
4199
4200 * mouse.el: Bind mouse-2 to mouse-yank-primary.
4201 (mouse-drag-copy-region): Default to nil.
4202
4203 * menu-bar.el (menu-bar-enable-clipboard): Don't overwrite
4204 Cut/Copy/Paste menu bar items.
4205
4206 2010-07-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
4207
4208 Allow C-w when setting a bookmark in a Gnus Article buffer (Bug#5975).
4209 Patch applied by Karl Fogel.
4210
4211 * bookmark.el (bookmark-set): Don't set `bookmark-yank-point'
4212 and `bookmark-current-buffer' if they have been already set in
4213 another buffer (e.g gnus-art).
4214
4215 2010-07-13 Karl Fogel <kfogel@red-bean.com>
4216 Thierry Volpiatto <thierry.volpiatto@gmail.com>
4217
4218 Preparation for setting bookmarks in Gnus article buffers (Bug#5975).
4219
4220 * bookmark.el (bookmark-make-record-default): Allow unneeded
4221 information to be omitted from the record.
4222
4223 Adjust declarations and calls:
4224
4225 * info.el (bookmark-make-record-default): Adjust declaration.
4226 (Info-bookmark-make-record): Adjust call.
4227
4228 * woman.el (bookmark-make-record-default): Adjust declaration.
4229 (woman-bookmark-make-record): Adjust call.
4230
4231 * man.el (bookmark-make-record-default): Adjust declaration.
4232 (Man-bookmark-make-record): Adjust call.
4233
4234 * image-mode.el (bookmark-make-record-default): Adjust declaration.
4235
4236 * doc-view.el (bookmark-make-record-default): Adjust declaration.
4237
4238 2010-07-13 Karl Fogel <kfogel@red-bean.com>
4239
4240 * bookmark.el (bookmark-show-annotation): Use `when' instead of `if'.
4241 This is also from Thierry Volpiatto's patch in bug #6444. However,
4242 because it was extraneous to the functional change in that patch,
4243 and causes a re-indendation, I am committing it separately.
4244
4245 2010-07-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
4246
4247 * bookmark.el (bookmark-show-annotation): Ensure annotations show,
4248 e.g. in Info bookmarks, by using `switch-to-buffer-other-window'.
4249 Patch applied by Karl Fogel (Bug#6444).
4250
4251 2010-07-13 Chong Yidong <cyd@stupidchicken.com>
4252
4253 * frame.el (make-frame): Fix typo in 2010-06-30 change (Bug#6625).
4254
4255 2010-07-13 Adrian Robert <Adrian.B.Robert@gmail.com>
4256
4257 * term/ns-win.el: Bind M-~ to 'ns-prev-frame (due to Matthew
4258 Dempsky; bug#5084). Remove incorrect binding for S-tab.
4259 (ns-alternatives-map): Change S-tab binding to backtab
4260 (bug#6616).
4261
4262 * simple.el (normal-erase-is-backspace-setup-frame): Set mode on
4263 under ns.
4264
4265 2010-07-12 Andreas Schwab <schwab@linux-m68k.org>
4266
4267 * language/tai-viet.el ("TaiViet"): Try to fix re-encoding bugs.
4268 (Bug#5806)
4269
4270 * language/tv-util.el (tai-viet-re): Remove format.
4271
4272 2010-07-12 Kenichi Handa <handa@m17n.org>
4273
4274 * language/hebrew.el: Remove no-byte-compile declaration.
4275 Change coding: tag to utf-8. Register hebrew-shape-gstring in
4276 composition-function-table for 3-character looking back.
4277 (hebrew-font-get-precomposed): New function.
4278 (hebrew-shape-gstring): Utilize precomposed glyphs if available.
4279
4280 2010-07-11 Chong Yidong <cyd@stupidchicken.com>
4281
4282 * mouse.el (mouse-drag-track): Handle select-active-regions
4283 (Bug#6612).
4284
4285 2010-07-11 Magnus Henoch <magnus.henoch@gmail.com>
4286
4287 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Do not pass
4288 empty argument to gvfs-copy.
4289
4290 2010-07-10 Glenn Morris <rgm@gnu.org>
4291
4292 * calendar/calendar.el (calendar-week-end-day): New function.
4293 * calendar/cal-tex.el (cal-tex-cursor-month): Remove unused vars.
4294 Respect calendar-week-start-day. (Bug#6606)
4295 (cal-tex-insert-day-names, cal-tex-insert-blank-days)
4296 (cal-tex-insert-blank-days-at-end): Respect calendar-week-start-day.
4297 (cal-tex-first-blank-p, cal-tex-last-blank-p): Simplify, and
4298 respect calendar-week-start-day.
4299
4300 2010-07-10 Chong Yidong <cyd@stupidchicken.com>
4301
4302 * simple.el (use-region-p): Doc fix (Bug#6607).
4303
4304 2010-07-10 Aleksei Gusev <aleksei.gusev@gmail.com> (tiny change)
4305
4306 * progmodes/compile.el (compilation-error-regexp-alist-alist): Add
4307 regexps for cucumber and ruby.
4308
4309 2010-07-08 Daiki Ueno <ueno@unixuser.org>
4310
4311 * epa-file.el (epa-file-error, epa-file--find-file-not-found-function)
4312 (epa-file-insert-file-contents): Hack to prevent
4313 find-file from opening empty buffer when decryption failed
4314 (bug#6568).
4315
4316 2010-07-07 Agustín Martín <agustin.martin@hispalinux.es>
4317
4318 * textmodes/ispell.el (ispell-alternate-dictionary):
4319 Use file-readable-p.
4320 Return nil if no word-list is found at default locations.
4321 (ispell-complete-word-dict): Default to nil.
4322 (ispell-command-loop): Use 'word-list' when using lookup-words.
4323 (lookup-words): Use ispell-complete-word-dict or
4324 ispell-alternate-dictionary. Check for word-list availability
4325 and handle errors if needed with better messages (Bug#6539).
4326 (ispell-complete-word): Use ispell-complete-word-dict or
4327 ispell-alternate-dictionary.
4328
4329 2010-07-07 Christoph Scholtes <cschol2112@gmail.com>
4330
4331 * progmodes/python.el (python-font-lock-keywords): Add Python 2.7
4332 builtins (BufferError, BytesWarning, WindowsError; callables
4333 bin, bytearray, bytes, format, memoryview, next, print; __package__).
4334
4335 2010-07-07 Glenn Morris <rgm@gnu.org>
4336
4337 * play/zone.el (top-level): Do not require timer, tabify, or cl.
4338 (zone-shift-left): Ignore intangibility, and any errors from
4339 forward-char.
4340 (zone-shift-right): Remove no-op end-of-line. Ignore intangibility.
4341 (zone-pgm-putz-with-case): Use upcase-region rather than inserting,
4342 deleting, and copying text properties.
4343 (zone-line-specs, zone-pgm-stress): Check forward-line exit status.
4344 (zone-pgm-rotate): Handle odd buffers like that of gomoku, where getting
4345 to point-max is hard.
4346 (zone-fret, zone-fill-out-screen): Replace cl's do with dotimes.
4347 (zone-fill-out-screen): Ignore intangibility.
4348
4349 2010-07-05 Chong Yidong <cyd@stupidchicken.com>
4350
4351 * menu-bar.el (menu-bar-mode):
4352 * tool-bar.el (tool-bar-mode): Replace default-frame-alist element
4353 if it has been set.
4354
4355 * mouse.el (mouse-drag-track): Call mouse-start-end to handle
4356 word/line selection (Bug#6565).
4357
4358 2010-07-04 Juanma Barranquero <lekktu@gmail.com>
4359
4360 * net/dbus.el (dbus-send-signal): Declare function.
4361
4362 2010-07-04 Michael Albinus <michael.albinus@gmx.de>
4363
4364 * net/dbus.el: Implement signal "PropertiesChanged" (from D-Bus 1.3.1).
4365 (dbus-register-property): New optional argument EMITS-SIGNAL.
4366 (dbus-property-handler): Send signal "PropertiesChanged" if requested.
4367
4368 2010-07-03 Chong Yidong <cyd@stupidchicken.com>
4369
4370 * mouse.el (mouse-drag-overlay): Variable deleted.
4371 (mouse-move-drag-overlay, mouse-show-mark): Functions deleted.
4372 (mouse--remap-link-click-p): New function.
4373 (mouse-drag-track): Handle dragging by using temporary Transient
4374 Mark mode, instead of a special overlay.
4375 (mouse-kill-ring-save, mouse-save-then-kill): Don't call
4376 mouse-show-mark.
4377
4378 * mouse-sel.el (mouse-sel-selection-alist): mouse-drag-overlay
4379 deleted.
4380
4381 2010-07-02 Juri Linkov <juri@jurta.org>
4382
4383 * autoinsert.el (auto-insert-alist): Fix readability
4384 by using dotted pair notation for lambda.
4385
4386 2010-07-02 Juri Linkov <juri@jurta.org>
4387
4388 * faces.el (read-face-name): Rename arg `string-describing-default'
4389 to `default'. Doc fix. Display the default value in quotes
4390 in the prompt. With empty input, return the `default' arg,
4391 unless the default value is a string (in which case return nil).
4392 (describe-face): Replace the string `default' arg of `read-face-name'
4393 with the symbol `default'.
4394
4395 2010-07-02 Chong Yidong <cyd@stupidchicken.com>
4396
4397 * emulation/viper-cmd.el (viper-delete-backward-char)
4398 (viper-del-backward-char-in-insert)
4399 (viper-del-backward-char-in-replace, viper-change)
4400 (viper-backward-indent): Replace delete-backward-char with
4401 delete-char (Bug#6552).
4402
4403 2010-07-01 Chong Yidong <cyd@stupidchicken.com>
4404
4405 * ruler-mode.el (ruler--save-header-line-format): Fix typos.
4406
4407 2010-06-30 Chong Yidong <cyd@stupidchicken.com>
4408
4409 * frame.el (make-frame): Add default-frame-alist to the PARAMETERS
4410 argument passed to frame-creation-function (Bug#5378).
4411
4412 * faces.el (x-handle-named-frame-geometry)
4413 (x-handle-reverse-video, x-create-frame-with-faces)
4414 (face-set-after-frame-default, tty-create-frame-with-faces): Don't
4415 separately consult default-frame-alist. It is now passed as the
4416 PARAMETER argument.
4417
4418 2010-06-30 Andreas Schwab <schwab@linux-m68k.org>
4419
4420 * startup.el (command-line): Don't call tool-bar-setup in a
4421 tty-only build.
4422
4423 2010-06-30 Chong Yidong <cyd@stupidchicken.com>
4424
4425 * ruler-mode.el (ruler--save-header-line-format): New fun.
4426 (ruler-mode): Use it as a setter function, so as not to overwrite
4427 ruler-mode-header-line-format-old if Ruler mode is on (Bug#5370).
4428
4429 2010-06-29 Chong Yidong <cyd@stupidchicken.com>
4430
4431 * vc/vc.el (vc-deduce-backend): New fun. Handle diff buffers.
4432 (vc-root-diff, vc-print-root-log, vc-log-incoming)
4433 (vc-log-outgoing): Use it.
4434 (vc-diff-internal): Set diff-vc-backend.
4435
4436 * vc/diff-mode.el (diff-vc-backend): New var.
4437
4438 2010-06-28 Jan Djärv <jan.h.d@swipnet.se>
4439
4440 * dynamic-setting.el (font-setting-change-default-font): Remove
4441 call to message.
4442
4443 2010-06-28 Kenichi Handa <handa@m17n.org>
4444
4445 * international/quail.el (quail-insert-kbd-layout): Fix the
4446 showing of untranslated characters.
4447
4448 2010-06-28 Chong Yidong <cyd@stupidchicken.com>
4449
4450 * simple.el (delete-active-region): New option.
4451 (delete-backward-char): Implement in Lisp.
4452 (delete-forward-char): New command.
4453
4454 * mouse.el (mouse-region-delete-keys): Deleted.
4455 (mouse-show-mark): Simplify.
4456
4457 * bindings.el (global-map): Bind delete and DEL, the former to
4458 delete-forward-char.
4459
4460 2010-06-27 Lennart Borgman <lennart.borgman@gmail.com>
4461
4462 * progmodes/ruby-mode.el (ruby-mode-map): Don't bind TAB.
4463 (ruby-mode): Bind indent-line-function (Bug#5119).
4464
4465 2010-06-27 Chong Yidong <cyd@stupidchicken.com>
4466
4467 * startup.el (command-line): Recognize "0" X resource value.
4468
4469 2010-06-27 Chong Yidong <cyd@stupidchicken.com>
4470
4471 * startup.el (command-line): Use X resources to set the value of
4472 menu-bar-mode and tool-bar-mode, before calling frame-initialize.
4473
4474 * menu-bar.el (menu-bar-mode):
4475 * tool-bar.el (tool-bar-mode): Don't change default-frame-alist.
4476 Set init-value to t.
4477
4478 * frame.el (frame-notice-user-settings): Don't change
4479 default-frame-alist based on menu-bar-mode and tool-bar-mode, or
4480 vice versa (Bug#2249).
4481
4482 2010-06-26 Eli Zaretskii <eliz@gnu.org>
4483
4484 * w32-fns.el (w32-convert-standard-filename): Doc fix.
4485
4486 2010-06-25 Agustín Martín <agustin.martin@hispalinux.es>
4487
4488 * textmodes/flyspell.el (flyspell-check-previous-highlighted-word):
4489 Make sure `flyspell-word' re-checks word after function run (Bug#6504).
4490
4491 * textmodes/ispell.el (ispell-init-process): Make sure ispell and
4492 default directories are expanded (Bug#6143).
4493
4494 2010-06-24 Juri Linkov <juri@jurta.org>
4495
4496 * minibuffer.el (completions-format): Change default from nil to
4497 `horizontal'. Remove `nil' value from :type. Doc fix. (Bug#6459)
4498
4499 2010-06-24 Juri Linkov <juri@jurta.org>
4500
4501 * vc/vc.el (vc-diff-internal): Set `revert-buffer-function'
4502 buffer-locally to lambda that re-runs the vc diff command.
4503 (Bug#6447)
4504
4505 2010-06-24 Chong Yidong <cyd@stupidchicken.com>
4506
4507 * kmacro.el (kmacro-call-macro): Don't issue hint message if the
4508 echo area is in use (Bug#3412).
4509
4510 2010-06-22 Glenn Morris <rgm@gnu.org>
4511
4512 * textmodes/texinfmt.el (texinfo-format-region)
4513 (texinfo-raise-lower-sections, texinfo-format-separate-node)
4514 (texinfo-itemize-item, texinfo-multitable-item, texinfo-alias)
4515 (texinfo-format-option, texinfo-noindent):
4516 Use line-beginning-position and line-end-position.
4517
4518 * calc/calc-aent.el, calc/calc-ext.el, calc/calc-lang.el:
4519 * calc/calc-store.el, calc/calc-units.el, calc/calc.el:
4520 * calc/calccomp.el: Add explicit utf-8 coding cookies to files with
4521 utf-8 characters.
4522
4523 2010-06-21 Karl Fogel <kfogel@red-bean.com>
4524
4525 * play/zone.el (zone-fall-through-ws): Fix next-line ->
4526 forward-line fallout.
4527
4528 2010-07-06 Chong Yidong <cyd@stupidchicken.com>
4529
4530 * mouse.el (mouse-appearance-menu): Add docstring.
4531
4532 * help.el (describe-key): Print up-event using key-description.
4533
4534 2010-07-03 Michael Albinus <michael.albinus@gmx.de>
4535
4536 * net/zeroconf.el (zeroconf-resolve-service)
4537 (zeroconf-service-resolver-handler): Use `dbus-byte-array-to-string'.
4538 (zeroconf-publish-service): Use `dbus-string-to-byte-array'.
4539
4540 2010-07-03 Jan Moringen <jan.moringen@uni-bielefeld.de>
4541
4542 * net/zeroconf.el (zeroconf-service-remove-hook): New defun.
4543
4544 2010-06-30 Dan Nicolaescu <dann@ics.uci.edu>
4545
4546 Avoid displaying files with a nil state in vc-dir.
4547 * vc/vc-dir.el (vc-dir-update): Obey the noinsert argument in all
4548 cases that cause insertion.
4549 (vc-dir-resynch-file): Tell vc-dir-update to avoid inserting files
4550 with a nil state.
4551
4552 2010-06-30 Chong Yidong <cyd@stupidchicken.com>
4553
4554 * xml.el (xml-parse-region): Avoid infloop (Bug#5281).
4555
4556 2010-06-29 Leo <sdl.web@gmail.com>
4557
4558 * emacs-lisp/rx.el (rx): Doc fix. (Bug#6537)
4559
4560 2010-06-27 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
4561
4562 * generic-x.el (bat-generic-mode): Fix regexp for command line
4563 switches (Bug#5719).
4564
4565 2010-06-27 Masatake YAMATO <yamato@redhat.com>
4566
4567 * htmlfontify.el (hfy-face-attr-for-class): Use append instead
4568 of nconc to avoid pure storage error (Bug#6239).
4569
4570 2010-06-27 Christoph <cschol2112@googlemail.com> (tiny change)
4571
4572 * bookmark.el (bookmark-bmenu-2-window, bookmark-bmenu-other-window)
4573 (bookmark-bmenu-other-window-with-mouse): Remove unnecessary
4574 bindings of bookmark-automatically-show-annotations (Bug#6515).
4575
4576 2010-06-25 Eli Zaretskii <eliz@gnu.org>
4577
4578 * arc-mode.el (archive-zip-extract): Don't quote the file name on
4579 MS-Windows and MS-DOS. (Bug#6467, Bug#6144)
4580
4581 2010-06-24 Štěpán Němec <stepnem@gmail.com> (tiny change)
4582
4583 * comint.el (make-comint, make-comint-in-buffer): Mention return
4584 value in the docstrings. (Bug#6498)
4585
4586 2010-06-24 Yoni Rabkin <yoni@rabkins.net>
4587
4588 * bs.el (bs-mode-font-lock-keywords): Remove "by" from Dired pattern,
4589 since it is not present when using some non-default switches.
4590
4591 2010-06-23 Karl Fogel <kfogel@red-bean.com>
4592
4593 * simple.el (compose-mail): Fix doc string to refer to
4594 `compose-mail-user-agent-warnings', instead of to the
4595 nonexistent `compose-mail-check-user-agent'.
4596
4597 2010-06-21 Alan Mackenzie <bug-cc-mode@gnu.org>
4598
4599 Fix an indentation bug:
4600
4601 * progmodes/cc-mode.el (c-common-init): Initialise c-new-BEG/END.
4602 (c-neutralize-syntax-in-and-mark-CPP): c-new-BEG/END: Take account
4603 of existing values.
4604
4605 * progmodes/cc-engine.el (c-clear-<-pair-props-if-match-after)
4606 (c-clear->-pair-props-if-match-before): now return t when they've
4607 cleared properties, nil otherwise.
4608 (c-before-change-check-<>-operators): Set c-new-beg/end correctly
4609 by taking account of the existing value.
4610
4611 * progmodes/cc-defs.el
4612 (c-clear-char-property-with-value-function): Fix this to clear the
4613 property rather than overwriting it with nil.
4614
4615 2010-06-20 Chong Yidong <cyd@stupidchicken.com>
4616
4617 * emacs-lisp/package.el (package-print-package): Add link to
4618 package description via describe-package.
4619 (describe-package-1): List package requirements. Add button to
4620 perform installation.
4621 (package-menu-describe-package): New command.
4622
4623 * help-mode.el (help-package): New button type.
4624
4625 2010-06-19 Chong Yidong <cyd@stupidchicken.com>
4626
4627 * emacs-lisp/package.el: Move package-list-packages binding to
4628 menu-bar.el.
4629 (describe-package, describe-package-1, package--dir): New funs.
4630 (package-activate-1): Use package--dir.
4631
4632 * emacs-lisp/package-x.el (gnus-article-buffer): Require package.
4633
4634 * help-mode.el (help-package-def): New button type.
4635
4636 * menu-bar.el: Move package-list-packages binding here from
4637 package.el.
4638
4639 2010-06-19 Gustav Hållberg <gustav@gmail.com> (tiny change)
4640
4641 * descr-text.el (describe-char): Avoid trailing whitespace. (Bug#6423)
4642
4643 2010-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
4644
4645 * emacs-lisp/edebug.el (edebug-read-list):
4646 Phase out old-style backquotes.
4647
4648 2010-06-17 Juri Linkov <juri@jurta.org>
4649
4650 * help-mode.el (help-mode): Set buffer-local variable
4651 revert-buffer-function to help-mode-revert-buffer.
4652 (help-mode-revert-buffer): New function.
4653
4654 * info.el (Info-revert-find-node): Check for major-mode Info-mode
4655 before popping to "*info*" (like in other Info functions).
4656 Keep buffer-name in old-buffer-name. Keep Info-history-forward in
4657 old-history-forward. Pop to old-buffer-name or "*info*" to
4658 recreate the killed buffer. Set Info-history-forward from
4659 old-history-forward.
4660 (Info-breadcrumbs-depth): Add :group and :version.
4661
4662 2010-06-17 Dan Nicolaescu <dann@ics.uci.edu>
4663
4664 * emacs-lisp/package.el (package-menu-mode-map): Add a menu.
4665
4666 2010-06-17 Agustín Martín <agustin.martin@hispalinux.es>
4667
4668 * textmodes/ispell.el (ispell-aspell-find-dictionary): Fix regexp
4669 for languages like Portuguese with pt_{BR,PT} and no plain pt.
4670
4671 2010-06-17 Juanma Barranquero <lekktu@gmail.com>
4672
4673 * emacs-lisp/package.el (package-menu-mode-map):
4674 Move initialization into declaration.
4675
4676 * menu-bar.el (menu-bar-options-menu): Fix typo in menu entry.
4677
4678 2010-06-17 Chong Yidong <cyd@stupidchicken.com>
4679
4680 * emacs-lisp/package.el (package-archive-base): Point to
4681 elpa.gnu.org.
4682 (package-enable, package-load-list): New defcustoms.
4683 (package-user-dir, package-directory-list): Turn into defcustoms.
4684 Don't include package-user-dir in package-directory-list.
4685 (package--builtins-base): Don't include Emacs as a "package".
4686 (package-subdirectory-regexp): New var.
4687 (package-load-all-descriptors, package-compute-transaction)
4688 (package-download-transaction): Obey package-load-list.
4689 (package-activate-1): Rename from package-do-activate.
4690 (package-list-packages-internal): Check package-load-list.
4691 (package-load-descriptor, package-generate-autoloads)
4692 (package-unpack, package-unpack-single)
4693 (package--read-archive-file, package-delete): Use
4694 expand-file-name.
4695
4696 * emacs-lisp/package-x.el: New file. Package uploading
4697 functionality split out from package.el.
4698
4699 * startup.el (command-line): Load packages after reading init file.
4700
4701 2010-06-17 Tom Tromey <tromey@redhat.com>
4702
4703 * emacs-lisp/package.el: New file.
4704
4705 2010-06-22 Dan Nicolaescu <dann@ics.uci.edu>
4706
4707 Fix vc-annotate for renamed files when using Git.
4708 * vc/vc-git.el (vc-git-find-revision): Deal with empty results from
4709 ls-files. Doe not pass the object as a file name to cat-file, it
4710 is not a file name.
4711 (vc-git-annotate-command): Pass the file name using -- to avoid
4712 ambiguity with the revision.
4713 (vc-git-previous-revision): Pass a relative file name.
4714
4715 2010-06-22 Glenn Morris <rgm@gnu.org>
4716
4717 * progmodes/js.el (js-mode-map): Use standard capitalization and
4718 ellipses for menu entries.
4719
4720 * wid-edit.el (widget-complete): Doc fix.
4721
4722 2010-06-22 Jürgen Hötzel <juergen@hoetzel.info> (tiny change)
4723
4724 * wid-edit.el (widget-complete): Fix typo in 2009-12-02 change.
4725
4726 2010-06-22 Dan Nicolaescu <dann@ics.uci.edu>
4727
4728 Fix annotating other revisions for renamed files in vc-annotate.
4729 * vc/vc-annotate.el (vc-annotate): Add an optional argument for the
4730 VC backend. Use it when non-nil.
4731 (vc-annotate-warp-revision): Pass the VC backend to vc-annotate.
4732 (Bug#6487)
4733
4734 Fix vc-annotate-show-changeset-diff-revision-at-line for git.
4735 * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
4736 Do not pass the file name to the 'previous-revision call when we
4737 don't want a file diff. (Bug#6489)
4738
4739 2010-06-21 Dan Nicolaescu <dann@ics.uci.edu>
4740
4741 Fix finding revisions for renamed files in vc-annotate.
4742 * vc/vc.el (vc-find-revision): Add an optional argument for
4743 the VC backend. Use it when non-nil.
4744 * vc/vc-annotate.el (vc-annotate-find-revision-at-line): Pass the VC
4745 backend to vc-find-revision. (Bug#6487)
4746
4747 2010-06-21 Dan Nicolaescu <dann@ics.uci.edu>
4748
4749 Fix reading file names in Git annotate buffers.
4750 * vc/vc-git.el (vc-git-annotate-extract-revision-at-line):
4751 Remove trailing whitespace. Suggested by Eric Hanchrow. (Bug#6481)
4752
4753 2010-06-20 Alan Mackenzie <acm@muc.de>
4754
4755 * progmodes/cc-mode.el (c-before-hack-hook): When the mode is set
4756 in file local variables, set it first.
4757
4758 2010-06-19 Glenn Morris <rgm@gnu.org>
4759
4760 * descr-text.el (describe-char-unicode-data): Insert separating
4761 space when needed. (Bug#6422)
4762
4763 * progmodes/idlwave.el (idlwave-action-and-binding):
4764 Fix typo in 2009-12-03 change. (Bug#6450)
4765
4766 2010-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
4767
4768 * emacs-lisp/macroexp.el (macroexpand-all-1): Put back special
4769 handling for `lambda' (misunderstanding).
4770
4771 2010-06-16 Jay Belanger <jay.p.belanger@gmail.com>
4772
4773 * calc/calc-poly.el (math-accum-factors): Make sure that
4774 constants aren't distributed after they are factored out.
4775
4776 2010-06-16 Juri Linkov <juri@jurta.org>
4777
4778 * facemenu.el (list-colors-display): Call `pop-to-buffer' before
4779 `list-colors-print'. (Bug#6332)
4780
4781 * subr.el (read-quoted-char): Fix up last change (bug#6290).
4782
4783 2010-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
4784
4785 * emacs-lisp/macroexp.el (macroexpand-all-1): Don't handle `lambda'
4786 specially, since it's a macro. Fix up wrong hint passed to maybe-cons.
4787
4788 * font-lock.el (font-lock-major-mode): Rename from
4789 font-lock-mode-major-mode to distinguish it from
4790 global-font-lock-mode's own font-lock-mode-major-mode (bug#6135).
4791 (font-lock-set-defaults):
4792 * font-core.el (font-lock-default-function): Adjust users.
4793 (font-lock-mode): Don't set it at all.
4794
4795 2010-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
4796
4797 * vc/vc-annotate.el (vc-annotate): Use vc-read-revision.
4798
4799 2010-06-16 Glenn Morris <rgm@gnu.org>
4800
4801 * calendar/appt.el (appt-time-msg-list): Doc fix.
4802 (appt-check): Let-bind appt-warn-time.
4803 (appt-add): Make the 3rd argument optional.
4804 Simplify argument names. Doc fix. Check for integer WARNTIME.
4805 Only add WARNTIME to the output list if non-nil.
4806
4807 2010-06-16 Ivan Kanis <apple@kanis.eu>
4808
4809 * calendar/appt.el (appt-check): Let the 3rd element of
4810 appt-time-msg-list specify the warning time.
4811 (appt-add): Add new argument with the warning time. (Bug#5176)
4812
4813 2010-06-16 Bob Rogers <rogers-emacs@rgrjr.dyndns.org> (tiny change)
4814
4815 * vc/vc-svn.el (vc-svn-after-dir-status): Fix regexp for Subversions
4816 older than version 1.6. (Bug#6361)
4817
4818 2010-06-16 Helmut Eller <eller.helmut@gmail.com>
4819
4820 * emacs-lisp/cl-macs.el (destructuring-bind): Bind `bind-enquote',
4821 used by cl-do-arglist. (Bug#6408)
4822
4823 2010-06-16 Agustín Martín <agustin.martin@hispalinux.es>
4824
4825 * textmodes/ispell.el (ispell-dictionary-base-alist): Fix
4826 portuguese casechars/not-casechars for missing 'çÇ'.
4827 Suggested by Rolando Pereira (bug#6434).
4828
4829 2010-06-15 Juanma Barranquero <lekktu@gmail.com>
4830
4831 * facemenu.el (list-colors-sort): Doc fix.
4832
4833 2010-06-15 Bob Rogers <rogers-emacs@rgrjr.dyndns.org> (tiny change)
4834
4835 * progmodes/sql.el (sql-connect-mysql): Fix typo.
4836
4837 2010-06-14 Juri Linkov <juri@jurta.org>
4838
4839 Add sort option `list-colors-sort'. (Bug#6332)
4840 * facemenu.el (color-rgb-to-hsv): New function.
4841 (list-colors-sort): New defcustom.
4842 (list-colors-sort-key): New function.
4843 (list-colors-display): Doc fix. Sort list according to the option
4844 `list-colors-sort'.
4845 (list-colors-print): Add HSV values to `help-echo' property of
4846 RGB strings.
4847
4848 2010-06-14 Juri Linkov <juri@jurta.org>
4849
4850 * compare-w.el: Move to the "vc" subdirectory.
4851
4852 2010-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
4853
4854 * image-mode.el (image-mode-map): Remap left-char and right-char.
4855
4856 * nxml/nxml-mode.el (nxml-indent-line): Standardize indent behavior.
4857
4858 2010-06-12 Chong Yidong <cyd@stupidchicken.com>
4859
4860 * term/common-win.el (x-colors): Add all the color names defined
4861 in rgb.txt (Bug#6332).
4862
4863 * facemenu.el (list-colors-print): Don't print extra names if it
4864 will overflow the window width.
4865
4866 * vc/log-edit.el (log-edit-font-lock-keywords): Revert 2010-06-02
4867 change (Bug#6343).
4868
4869 2010-06-12 Eli Zaretskii <eliz@gnu.org>
4870
4871 * files.el (make-directory): Doc fix (bug#6396).
4872
4873 2010-06-12 Michael Albinus <michael.albinus@gmx.de>
4874
4875 * net/tramp.el (tramp-remote-process-environment): Protect version
4876 string by apostroph.
4877 (tramp-shell-prompt-pattern): Do not use a shy group in case of
4878 XEmacs.
4879 (tramp-file-name-for-operation): Add `call-process-region'.
4880 (tramp-set-process-query-on-exit-flag): Fix wrong parentheses.
4881
4882 * net/tramp-compat.el (top): Do not autoload
4883 `tramp-handle-file-remote-p'. Load tramp-util.el and tramp-vc.el
4884 only when `start-file-process' is not bound.
4885 (tramp-advice-file-expand-wildcards): Do not use
4886 `tramp-handle-file-remote-p'.
4887 (tramp-compat-make-temp-file): Handle the case, that
4888 `make-temp-file' has no third argument EXTENSION.
4889
4890 2010-06-11 Juanma Barranquero <lekktu@gmail.com>
4891
4892 * makefile.w32-in (WINS_BASIC): Include new directory vc.
4893
4894 * loadup.el ("vc-hooks", "ediff-hook"): Load from lisp/vc/.
4895
4896 2010-06-11 Juri Linkov <juri@jurta.org>
4897
4898 * finder.el (finder-known-keywords): Add keyword "vc"
4899 for version control.
4900
4901 * add-log.el, cvs-status.el, diff.el, diff-mode.el, ediff.el,
4902 * emerge.el, log-edit.el, log-view.el, pcvs.el, smerge-mode.el,
4903 * vc-annotate.el, vc-bzr.el, vc-dir.el, vc-dispatcher.el, vc-git.el,
4904 * vc-hg.el, vc-mtn.el, vc.el: Add keyword "vc".
4905
4906 2010-06-11 Juri Linkov <juri@jurta.org>
4907
4908 Move version control related files to the "vc" subdirectory.
4909 * add-log.el, cvs-status.el, diff.el, diff-mode.el, ediff-diff.el,
4910 * ediff.el, ediff-help.el, ediff-hook.el, ediff-init.el,
4911 * ediff-merg.el, ediff-mult.el, ediff-ptch.el, ediff-util.el,
4912 * ediff-vers.el, ediff-wind.el, emerge.el, log-edit.el, log-view.el,
4913 * pcvs-defs.el, pcvs.el, pcvs-info.el, pcvs-parse.el, pcvs-util.el,
4914 * smerge-mode.el, vc-annotate.el, vc-arch.el, vc-bzr.el, vc-cvs.el,
4915 * vc-dav.el, vc-dir.el, vc-dispatcher.el, vc.el, vc-git.el,
4916 * vc-hg.el, vc-hooks.el, vc-mtn.el, vc-rcs.el, vc-sccs.el, vc-svn.el:
4917 Move files to the "vc" subdirectory.
4918
4919 2010-06-11 Chong Yidong <cyd@stupidchicken.com>
4920
4921 * comint.el (comint-password-prompt-regexp): Fix 2010-04-10 change
4922 (Bug#6367).
4923
4924 2010-06-11 Stephen Eglen <stephen@gnu.org>
4925
4926 * shell.el: Bind `shell-resync-dirs' to M-RET.
4927
4928 2010-06-10 Michael Albinus <michael.albinus@gmx.de>
4929
4930 * notifications.el: Move file from lisp/net, because it is
4931 supposed to talk locally to the user.
4932
4933 2010-06-10 Julien Danjou <julien@danjou.info>
4934
4935 * net/notifications.el (notifications-on-action-signal)
4936 (notifications-on-closed-signal): Pass notification id as first
4937 argument to the callback functions. Add docstrings.
4938 (notifications-notify): Fix docstring.
4939
4940 2010-06-10 Glenn Morris <rgm@gnu.org>
4941
4942 * emacs-lisp/authors.el (authors-ignored-files)
4943 (authors-valid-file-names): Add some files.
4944
4945 2010-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
4946
4947 * net/rcirc.el (rcirc-server-alist, rcirc, rcirc-connect): Resolve
4948 merge conflict, giving preference to the emacs-23 version of the code.
4949
4950 2010-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
4951
4952 * emacs-lisp/advice.el (ad-compile-function):
4953 Define warning-suppress-types before we let-bind it (bug#6275).
4954
4955 * vc-dispatcher.el: Rename mode-line-hook to vc-mode-line-hook;
4956 declare it, make it buffer-local and permanent-local (bug#6324).
4957 (vc-resynch-window): Adjust name.
4958 * vc-hooks.el (vc-find-file-hook): Adjust name.
4959
4960 2010-06-09 Michael Albinus <michael.albinus@gmx.de>
4961
4962 * net/notifications.el (notifications-notify): Fix docstring.
4963
4964 2010-06-09 Juanma Barranquero <lekktu@gmail.com>
4965
4966 Update to Unicode 6.0.0 beta.
4967 * international/charprop.el: Update copyright.
4968 * international/mule-cmds.el (ucs-names): Update character ranges.
4969 * international/uni-bidi.el:
4970 * international/uni-category.el:
4971 * international/uni-combining.el:
4972 * international/uni-comment.el:
4973 * international/uni-decimal.el:
4974 * international/uni-decomposition.el:
4975 * international/uni-digit.el:
4976 * international/uni-lowercase.el:
4977 * international/uni-mirrored.el:
4978 * international/uni-name.el:
4979 * international/uni-numeric.el:
4980 * international/uni-old-name.el:
4981 * international/uni-titlecase.el:
4982 * international/uni-uppercase.el: Regenerate.
4983
4984 2010-06-09 Juanma Barranquero <lekktu@gmail.com>
4985
4986 * emacs-lisp/smie.el (comment-string-strip): Declare function.
4987 (smie-precs-precedence-table): Fix typo in docstring.
4988
4989 * vc-mtn.el (log-edit-extract-headers): Declare function.
4990
4991 * vc-hg.el (log-edit-extract-headers): Remove duplicate declaration.
4992
4993 * net/notifications.el (dbus-register-signal): Declare function.
4994 (notifications-notify): Fix typos and reflow docstring.
4995
4996 2010-06-09 Dan Nicolaescu <dann@ics.uci.edu>
4997
4998 Improve VC create/retrieve tag/branch.
4999 * vc.el (vc-create-tag): Do not read the directory name for VCs
5000 with repository revision granularity. Adjust the tag/branch
5001 prompt. Reset VC properties.
5002 (vc-retrieve-tag): Do not read the directory name for VCs
5003 with repository revision granularity. Reset VC properties.
5004
5005 2010-06-09 Julien Danjou <julien@danjou.info>
5006
5007 * net/notifications.el: New file.
5008
5009 2010-06-09 Dan Nicolaescu <dann@ics.uci.edu>
5010
5011 Add optional support for resetting VC properties.
5012 * vc-dispatcher.el (vc-resynch-window): Add new optional argument,
5013 call vc-file-clearprops when true.
5014 (vc-resynch-buffer): Add new optional argument, pass it down.
5015 (vc-resynch-buffers-in-directory): Likewise.
5016
5017 Improve support for special markup in the VC commit message.
5018 * vc-mtn.el (vc-mtn-checkin): Add support for Author: and Date: markup.
5019 * vc-hg.el (vc-hg-checkin): Add support for Date:.
5020 * vc-git.el (vc-git-checkin):
5021 * vc-bzr.el (vc-bzr-checkin): Likewise.
5022
5023 2010-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
5024
5025 * emacs-lisp/smie.el (smie-indent-keyword): Remove special case that
5026 can be handled with a ((:before "fn") (:prev "=>" parent)) rule.
5027
5028 2010-06-07 Martin Pohlack <mp26@os.inf.tu-dresden.de>
5029
5030 * iimage.el: Remove images as soon as the underlying text is modified.
5031 (iimage-modification-hook): New function.
5032 (iimage-mode-buffer): Use it.
5033
5034 2010-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
5035
5036 * emacs-lisp/smie.el (smie-indent-offset-rule): Rename from
5037 smie-indent-offset-after. Add :prev case. Make a bit more generic.
5038 (smie-indent-virtual): Remove `virtual' arg. Update callers.
5039 (smie-indent-keyword): Add handling of open-paren keywords.
5040 (smie-indent-comment-continue): Don't assume comment-continue.
5041
5042 2010-06-07 Martin Rudalics <rudalics@gmx.at>
5043
5044 * window.el (pop-to-buffer): Remove the conditional that
5045 compares new-window and old-window, so it will reselect
5046 the selected window unconditionally.
5047 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00078.html
5048
5049 2010-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
5050
5051 * emacs-lisp/smie.el (smie-indent-offset-after)
5052 (smie-indent-forward-token, smie-indent-backward-token): New functions.
5053 (smie-indent-after-keyword): Use them.
5054 (smie-indent-fixindent): Only applies to the indentation of the BOL.
5055 (smie-indent-keyword): Tweak the black magic.
5056 (smie-indent-comment-continue): Strip comment-continue before use.
5057 (smie-indent-functions): Indent comments before keywords.
5058
5059 2010-06-06 Juri Linkov <juri@jurta.org>
5060
5061 * isearch.el (isearch-lazy-highlight-search): Fix looping
5062 by checking for empty match. This syncs this loop with the
5063 similar loop in `isearch-search'. (Bug#6362)
5064
5065 2010-06-05 Juanma Barranquero <lekktu@gmail.com>
5066
5067 * net/dbus.el (dbus-register-method): Declare function.
5068 (dbus-handle-event, dbus-property-handler): Fix typos in docstrings.
5069 (dbus-introspect): Doc fix.
5070 (dbus-event-bus-name, dbus-introspect-get-interface)
5071 (dbus-introspect-get-argument): Reflow docstrings.
5072
5073 2010-06-05 Dan Nicolaescu <dann@ics.uci.edu>
5074
5075 vc-log-incoming/vc-log-outgoing fixes for Git.
5076 * vc-git.el (vc-git-log-view-mode): Fix font lock for
5077 incoming/outgoing logs.
5078 (vc-git-log-outgoing, vc-git-log-incoming): Use @{upstream}
5079 instead of vc-git-compute-remote.
5080 (vc-git-compute-remote): Remove.
5081
5082 2010-06-04 Chong Yidong <cyd@stupidchicken.com>
5083
5084 * term/common-win.el (x-colors): Add "dark green" and "dark
5085 turquoise" (Bug#6332).
5086
5087 2010-06-04 Juri Linkov <juri@jurta.org>
5088
5089 * simple.el (kill-new): Fix logic of kill-do-not-save-duplicates.
5090 Instead of setting `replace' to t and replacing the same string
5091 with itself, don't do certain actions when
5092 kill-do-not-save-duplicates is non-nil and string is equal to car
5093 of kill-ring: don't call menu-bar-update-yank-menu, don't push
5094 interprogram-paste strings to kill-ring, and don't push the input
5095 argument `string' to kill-ring.
5096 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00072.html
5097
5098 2010-06-04 Juanma Barranquero <lekktu@gmail.com>
5099
5100 * subr.el (directory-sep-char): Move from fileio.c and make a defconst.
5101
5102 2010-06-04 Michael Albinus <michael.albinus@gmx.de>
5103
5104 * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name): Expand "~/".
5105 (tramp-gvfs-handler-mounted-unmounted)
5106 (tramp-gvfs-connection-mounted-p): Handle default-location.
5107
5108 * net/tramp-smb.el (tramp-smb-handle-delete-directory): Don't try to
5109 move files to trash.
5110
5111 2010-06-04 Juanma Barranquero <lekktu@gmail.com>
5112
5113 * international/mule-cmds.el (nonascii-insert-offset)
5114 (nonascii-translation-table): Add obsolescence information.
5115
5116 * international/mule.el (make-translation-table-from-vector): Doc fix.
5117
5118 2010-06-03 Glenn Morris <rgm@gnu.org>
5119
5120 * desktop.el (desktop-clear-preserve-buffers):
5121 Add "*Warnings*" buffer. (Bug#6336)
5122
5123 2010-06-03 Dan Nicolaescu <dann@ics.uci.edu>
5124
5125 vc-log-incoming/vc-log-outgoing improvements for Git.
5126 * vc-git.el (vc-git-log-outgoing): Use the same format as the
5127 short log.
5128 (vc-git-log-incoming): Likewise. Run "git fetch" before the log command.
5129
5130 Add bindings for vc-log-incoming and vc-log-outgoing.
5131 * vc-hooks.el (vc-prefix-map): Add bindings for vc-log-incoming
5132 and vc-log-outgoing.
5133 * vc-dir.el (vc-dir-menu-map): Add menu bindings for vc-log-incoming
5134 and vc-log-outgoing.
5135
5136 2010-06-03 Chong Yidong <cyd@stupidchicken.com>
5137
5138 * net/rcirc.el (rcirc-sort-nicknames): Remove.
5139 (rcirc-handler-366): Always sort nicknames.
5140
5141 2010-06-03 Juanma Barranquero <lekktu@gmail.com>
5142
5143 * emacs-lisp/smie.el (comment-continue): Declare for byte-compiler.
5144
5145 2010-06-03 Chong Yidong <cyd@stupidchicken.com>
5146
5147 * net/rcirc.el (rcirc-nickname<, rcirc-sort-nicknames-join): Doc fix.
5148
5149 2010-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
5150
5151 * net/rcirc.el (rcirc-sort-nicknames): Change default.
5152 (rcirc-sort-nicknames-join): Avoid setq.
5153
5154 2010-06-03 Deniz Dogan <deniz.a.m.dogan@gmail.com>
5155
5156 * net/rcirc.el (rcirc-sort-nicknames): New custom.
5157 (rcirc-nickname<, rcirc-sort-nicknames-join): New funs.
5158 (rcirc-handler-366): Use them.
5159
5160 2010-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
5161
5162 Split smie-indent-calculate into more manageable chunks.
5163 * emacs-lisp/smie.el (smie-indent-virtual, smie-indent-fixindent)
5164 (smie-indent-comment, smie-indent-after-keyword, smie-indent-keyword)
5165 (smie-indent-close, smie-indent-comment-continue, smie-indent-bob)
5166 (smie-indent-exps): Extract from smie-indent-calculate.
5167 (smie-indent-functions): New var.
5168 (smie-indent-functions): Use them.
5169
5170 2010-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
5171
5172 * emacs-lisp/smie.el (smie-indent-hanging-p): Use smie-bolp.
5173 (smie-indent-calculate): Simplify and cleanup.
5174
5175 2010-06-02 Michael Albinus <michael.albinus@gmx.de>
5176
5177 * net/tramp-gvfs.el (top): Require url-util.
5178 (tramp-gvfs-mount-point): Remove.
5179 (tramp-gvfs-stringify-dbus-message, tramp-gvfs-send-command):
5180 New defuns.
5181 (with-tramp-dbus-call-method): Format trace message.
5182 (tramp-gvfs-handle-copy-file, tramp-gvfs-handle-rename-file):
5183 Implement backup call, when operation on local files fails.
5184 Use progress reporter. Flush properties of changed files.
5185 (tramp-gvfs-handle-make-directory): Make more traces.
5186 (tramp-gvfs-url-file-name): Hexify file name in url.
5187 (tramp-gvfs-fuse-file-name): Take also prefix (like dav shares)
5188 into account for the resulting file name.
5189 (tramp-gvfs-handler-askquestion): Return dummy mountpoint, when
5190 the answer is "no". See `tramp-gvfs-maybe-open-connection'.
5191 (tramp-gvfs-handler-mounted-unmounted)
5192 (tramp-gvfs-connection-mounted-p): Test also for new mountspec
5193 attribute "default_location". Set "prefix" property.
5194 (tramp-gvfs-mount-spec): Return both prefix and mountspec.
5195 (tramp-gvfs-maybe-open-connection): Test, whether mountpoint
5196 exists. Raise an error, if not (due to a corresponding answer
5197 "no" in interactive questions, for example).
5198
5199 2010-06-02 Dan Nicolaescu <dann@ics.uci.edu>
5200
5201 * log-edit.el (log-edit-font-lock-keywords): Make group 4 match lax.
5202
5203 2010-06-01 Juanma Barranquero <lekktu@gmail.com>
5204
5205 * emacs-lisp/eldoc.el: Add completions for new commands left-* and
5206 right-*. (Bug#6265)
5207
5208 2010-06-01 Dan Nicolaescu <dann@ics.uci.edu>
5209
5210 Add support for vc-log-incoming, improve vc-log-outgoing for Git.
5211 * vc-git.el (vc-git-compute-remote): New function.
5212 (vc-git-log-outgoing): Use it instead of hard coding a value.
5213 (vc-git-log-incoming): New function.
5214
5215 Improve state updating for VC tag commands.
5216 * vc.el (vc-create-tag, vc-retrieve-tag): Call vc-resynch-buffer
5217 to update the state of all buffers in the directory.
5218
5219 * vc-dir.el (vc-dir-update): Remove entries with a nil state (bug#5539).
5220
5221 2010-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
5222
5223 * vc-bzr.el (vc-bzr-revision-completion-table): Apply
5224 `file-directory-p' to the filename part rather than to the whole text.
5225
5226 2010-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
5227
5228 * man.el (Man-completion-table): Let the user type "-k " (bug#6319).
5229
5230 2010-05-31 Drew Adams <drew.adams@oracle.com>
5231
5232 * files.el (directory-files-no-dot-files-regexp): Doc fix (bug#6298).
5233
5234 2010-05-31 Juanma Barranquero <lekktu@gmail.com>
5235
5236 * subr.el (momentary-string-display): Just use read-event to read
5237 the exit event (Bug#6238).
5238
5239 2010-05-30 Eli Zaretskii <eliz@gnu.org>
5240
5241 * international/mule.el (define-coding-system): Doc fix (bug#6313).
5242
5243 2010-05-30 Juanma Barranquero <lekktu@gmail.com>
5244
5245 * emulation/cua-base.el: Recognize also `right-word' and `left-word'.
5246 Suggested by Eli Zaretskii <eliz@gnu.org>.
5247
5248 2010-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
5249
5250 * minibuffer.el (completion-file-name-table): Don't return a boundary
5251 past the end of `string' (bug#6299).
5252 (completion--file-name-table): Delegate to completion-file-name-table
5253 for the `boundaries' case.
5254
5255 2010-05-30 Juanma Barranquero <lekktu@gmail.com>
5256
5257 * emulation/cua-base.el: Recognize `right-char' and `left-char' as
5258 movement commands.
5259
5260 * progmodes/ada-xref.el (ada-prj-ada-project-path-sep): Set from
5261 `path-separator', but maintain compatibility with Emacs 20.2.
5262
5263 2010-05-29 Chong Yidong <cyd@stupidchicken.com>
5264
5265 * server.el (server-process-filter): Receive parent-id argument
5266 from emacsclient.
5267 (server-create-window-system-frame): New arg. Pass parent-id as
5268 frame parameter.
5269
5270 2010-05-29 Eli Zaretskii <eliz@gnu.org>
5271
5272 Bidi-sensitive word movement with arrow keys.
5273 * subr.el (right-arrow-command, left-arrow-command): Move to
5274 bindings.el.
5275
5276 * bindings.el (right-char, left-char): Move from subr.el and
5277 rename from right-arrow-command and left-arrow-command.
5278 (right-word, left-word): New functions.
5279 (global-map) <right>: Bind to right-char.
5280 (global-map) <left>: Bind to left-char.
5281 (global-map) <C-right>: Bind to right-word.
5282 (global-map) <C-left>: Bind to left-word.
5283
5284 * ls-lisp.el (ls-lisp-classify-file): New function.
5285 (ls-lisp-insert-directory): Call it if switches include -F (bug#6294).
5286 (ls-lisp-classify): Call ls-lisp-classify-file.
5287 (insert-directory): Remove blanks from switches.
5288
5289 2010-05-29 Chong Yidong <cyd@stupidchicken.com>
5290
5291 * ansi-color.el: Delete unused escape sequences (Bug#6085).
5292 (ansi-color-drop-regexp): New constant.
5293 (ansi-color-apply, ansi-color-filter-region)
5294 (ansi-color-apply-on-region): Delete unrecognized control sequences.
5295 (ansi-color-apply): Build string list before calling concat.
5296
5297 2010-05-28 Juri Linkov <juri@jurta.org>
5298
5299 * image-dired.el (image-dired-dired-toggle-marked-thumbs):
5300 Replace LOCALP arg of `dired-get-filename' 'no-dir with nil.
5301 (Bug#5270)
5302
5303 2010-05-28 Michael Albinus <michael.albinus@gmx.de>
5304
5305 * net/tramp.el (tramp-debug-message): Add `tramp-compat-funcall'
5306 to ignored backtrace functions.
5307 (with-progress-reporter): Expand docstring.
5308 (tramp-handle-delete-file): Implement TRASH argument.
5309 (tramp-get-remote-trash): New defun.
5310
5311 2010-05-28 Michael Albinus <michael.albinus@gmx.de>
5312
5313 * net/tramp-compat.el (tramp-compat-delete-file): Use
5314 `symbol-value' for backward compatibility.
5315
5316 * net/tramp.el (tramp-handle-make-symbolic-link)
5317 (tramp-handle-load)
5318 (tramp-do-copy-or-rename-file-via-buffer)
5319 (tramp-do-copy-or-rename-file-directly)
5320 (tramp-do-copy-or-rename-file-out-of-band)
5321 (tramp-handle-process-file, tramp-handle-call-process-region)
5322 (tramp-handle-shell-command, tramp-handle-file-local-copy)
5323 (tramp-handle-insert-file-contents, tramp-handle-write-region)
5324 (tramp-delete-temp-file-function): Use `delete-file' instead
5325 of `tramp-compat-delete-file'.
5326
5327 * net/tramp-fish.el (tramp-fish-handle-delete-directory)
5328 (tramp-fish-handle-make-symbolic-link)
5329 (tramp-fish-handle-process-file): Use `delete-file' instead
5330 of `tramp-compat-delete-file'.
5331
5332 * net/tramp-ftp.el (tramp-ftp-file-name-handler): Use
5333 `delete-file' instead of `tramp-compat-delete-file'.
5334
5335 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Rename arg.
5336 (tramp-gvfs-handle-write-region): Use `delete-file' instead of
5337 `tramp-compat-delete-file'.
5338
5339 * net/tramp-imap.el (tramp-imap-do-copy-or-rename-file): Use
5340 `delete-file' instead of `tramp-compat-delete-file'.
5341
5342 * net/tramp-smb.el (tramp-smb-handle-copy-file)
5343 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
5344 (tramp-smb-handle-write-region): Use `delete-file' instead of
5345 `tramp-compat-delete-file'.
5346 (tramp-smb-handle-delete-directory): Use 'trash as arg.
5347
5348 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
5349
5350 * dired.el (dired-delete-file): New arg TRASH.
5351 (dired-internal-do-deletions): New arg TRASH. Use progress reporter.
5352 (dired-do-flagged-delete, dired-do-delete): Use trash.
5353
5354 * speedbar.el (speedbar-item-delete): Allow trashing.
5355
5356 * files.el (delete-directory): New arg TRASH.
5357
5358 * net/ange-ftp.el (ange-ftp-del-tmp-name, ange-ftp-delete-file)
5359 (ange-ftp-rename-remote-to-remote)
5360 (ange-ftp-rename-local-to-remote)
5361 (ange-ftp-rename-remote-to-local, ange-ftp-load)
5362 (ange-ftp-compress, ange-ftp-uncompress): Remove optional arg from
5363 `delete-file'.
5364 (ange-ftp-delete-directory): Add optional arg to `delete-file', to
5365 allow trashing.
5366
5367 * net/tramp-compat.el (tramp-compat-delete-file): Rewrite to
5368 handle new TRASH arg of `delete-file'.
5369
5370 * net/tramp.el (tramp-handle-delete-file): Change FORCE arg to TRASH.
5371 (tramp-handle-make-symbolic-link, tramp-handle-load)
5372 (tramp-do-copy-or-rename-file-via-buffer)
5373 (tramp-do-copy-or-rename-file-directly)
5374 (tramp-do-copy-or-rename-file-out-of-band)
5375 (tramp-handle-process-file, tramp-handle-call-process-region)
5376 (tramp-handle-shell-command, tramp-handle-file-local-copy)
5377 (tramp-handle-insert-file-contents, tramp-handle-write-region)
5378 (tramp-delete-temp-file-function): Use null TRASH arg in
5379 tramp-compat-delete-file call.
5380
5381 * net/tramp-fish.el (tramp-fish-handle-delete-directory)
5382 (tramp-fish-handle-delete-file)
5383 (tramp-fish-handle-make-symbolic-link)
5384 (tramp-fish-handle-process-file): Use null TRASH arg in
5385 `tramp-compat-delete-file' call.
5386
5387 * net/tramp-ftp.el (tramp-ftp-file-name-handler): Use null TRASH
5388 arg in `tramp-compat-delete-file' call.
5389
5390 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Rename arg.
5391 (tramp-gvfs-handle-write-region): Use null TRASH arg in
5392 `tramp-compat-delete-file' call.
5393
5394 * net/tramp-imap.el (tramp-imap-handle-delete-file): Rename arg.
5395 (tramp-imap-do-copy-or-rename-file): Use null TRASH arg in
5396 `tramp-compat-delete-file' call.
5397
5398 * net/tramp-smb.el (tramp-smb-handle-copy-file)
5399 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
5400 (tramp-smb-handle-write-region): Use null TRASH arg in
5401 tramp-compat-delete-file call.
5402 (tramp-smb-handle-delete-directory): Use tramp-compat-delete-file.
5403 (tramp-smb-handle-delete-file): Rename arg.
5404
5405 * diff.el (diff-sentinel):
5406 * epg.el (epg--make-temp-file, epg-decrypt-string)
5407 (epg-verify-string, epg-sign-string, epg-encrypt-string):
5408 * jka-compr.el (jka-compr-partial-uncompress)
5409 (jka-compr-call-process, jka-compr-write-region):
5410 * server.el (server-sentinel): Remove optional arg from
5411 delete-file, reverting 2010-05-03 change.
5412
5413 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
5414
5415 * progmodes/verilog-mode.el (verilog-type-font-keywords): Use
5416 font-lock-constant-face, not obsolete font-lock-reference-face.
5417
5418 2010-05-27 Kenichi Handa <handa@m17n.org>
5419
5420 * language/hebrew.el (hebrew-shape-gstring): Check if a glyph
5421 element of GSTRING is nil.
5422
5423 2010-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
5424
5425 * emacs-lisp/smie.el (smie-forward-token-function)
5426 (smie-backward-token-function): New vars.
5427 (smie-backward-sexp, smie-forward-sexp)
5428 (smie-indent-hanging-p, smie-indent-calculate): Use them.
5429 (smie-default-backward-token): Rename from smie-backward-token and
5430 skip comments.
5431 (smie-default-forward-token): Rename from smie-forward-token and
5432 skip comments.
5433 (smie-next-sexp): Handle nil results from next-token.
5434 (smie-indent-calculate): Add a new case for special `fixindent' comments.
5435
5436 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
5437
5438 * progmodes/verilog-mode.el (verilog-type-font-keywords):
5439 Use font-lock-constant-face, not obsolete font-lock-reference-face.
5440
5441 2010-05-27 Masatake YAMATO <yamato@redhat.com>
5442
5443 * htmlfontify.el (hfy-face-resolve-face): New function.
5444 (hfy-face-to-style): Use it (Bug#6279).
5445
5446 2010-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
5447
5448 * progmodes/ada-xref.el (ada-gnat-parse-gpr):
5449 * emulation/edt.el (edt-load-keys): Avoid (expand-file-name ".").
5450
5451 2010-05-26 Glenn Morris <rgm@gnu.org>
5452
5453 * emulation/edt.el (edt-load-keys): Use locate-library.
5454
5455 2010-05-25 Chong Yidong <cyd@stupidchicken.com>
5456
5457 * log-edit.el (log-edit-strip-single-file-name): Default to nil.
5458 (log-edit-changelog-entries): Doc fix.
5459 (log-edit-changelog-insert-entries): Args changed.
5460 Rename relative filenames in ChangeLog entries. Delete tabs.
5461 (log-edit-insert-changelog-entries): Reorganize return value of
5462 `log-edit-changelog-entries' to pass filenames to
5463 log-edit-changelog-insert-entries.
5464
5465 2010-05-25 Thierry Volpiatto <thierry.volpiatto@gmail.com>
5466
5467 * dired.el (dired-mode-map): Rebind "\C-t\C-t" from
5468 `image-dired-dired-insert-marked-thumbs' to
5469 `image-dired-dired-toggle-marked-thumbs'.
5470
5471 * image-dired.el: Require cl when compiling.
5472 (image-dired-dired-toggle-marked-thumbs): Rename from
5473 `image-dired-dired-insert-marked-thumbs'. Add ARG. Doc fix.
5474 Use interactive spec "P". Set LOCALP arg of `dired-get-filename'
5475 to 'no-dir. Skip files whose names don't match
5476 `image-file-name-regexp'. When file has a thumbnail overlay,
5477 delete it. (Bug#5270)
5478
5479 2010-05-25 Juri Linkov <juri@jurta.org>
5480
5481 * image-mode.el (image-mode): Add image-after-revert-hook to
5482 after-revert-hook.
5483 (image-after-revert-hook): New function. (Bug#5669)
5484
5485 2010-05-25 Juri Linkov <juri@jurta.org>
5486
5487 * image.el (image-animated-p): When delay between animated images
5488 is 0, set it to 10 (0.1 sec). (Bug#6258)
5489
5490 2010-05-25 Christian Lynbech <christian.lynbech@tieto.com> (tiny change)
5491
5492 * net/tramp.el (tramp-handle-insert-directory): Don't use
5493 `forward-word', its default syntax could be changed.
5494
5495 2010-05-25 Michael Albinus <michael.albinus@gmx.de>
5496
5497 * net/tramp.el (tramp-progress-reporter-update): New defun.
5498 (with-progress-reporter): Use it.
5499 (tramp-process-actions):
5500 * net/tramp-gvfs.el (tramp-gvfs-handler-askquestion): Preserve
5501 current message, in order to let progress reporter continue
5502 afterwards. (Bug#6257)
5503
5504 2010-05-25 Glenn Morris <rgm@gnu.org>
5505
5506 * net/rcirc.el (rcirc-default-user-name, rcirc-default-full-name):
5507 Add :version.
5508
5509 2010-05-25 Ryan Yeske <rcyeske@gmail.com>
5510
5511 * net/rcirc.el (rcirc-default-user-name): Change to "user".
5512 (rcirc-default-full-name): Change to "unknown".
5513 (rcirc-user-name-history): Add variable.
5514
5515 2010-05-25 Ryan Yeske <rcyeske@gmail.com>
5516 Jonathan Rockway <jon@jrock.us>
5517
5518 * net/rcirc.el (rcirc-server-alist): Add :pass.
5519 (rcirc): When prompting for connection parameters, also prompt for
5520 username and password.
5521 (rcirc-connect): Take a PASS argument. If PASS is non-nil, send
5522 value to server when connecting.
5523
5524 2010-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
5525
5526 * emacs-lisp/smie.el (smie-set-prec2tab): Check override before use.
5527 (smie-merge-prec2s): Pass the tables as separate args.
5528 (smie-bnf-precedence-table): Adjust call accordingly.
5529 (smie-prec2-levels): Set levels at the end.
5530
5531 Replace Lisp calls to delete-backward-char by delete-char.
5532 * bs.el, expand.el, ido.el, image-dired.el, lpr.el, pcomplete.el,
5533 * skeleton.el, term.el, time.el, wid-edit.el, woman.el,
5534 * calc/calc-graph.el, calc/calc-help.el, calc/calc-incom.el,
5535 * calc/calc.el, emacs-lisp/cl-extra.el, emacs-lips/cl-loaddefs.el,
5536 * emulation/cua-rect.el, emulation/viper-ex.el, eshell/esh-test.el,
5537 * eshell/eshell.el, gnus/gnus-uu.el, gnus/nndoc.el, gnus/nnrss.el,
5538 * gnus/rfc2047.el, gnus/utf7.el, international/utf-7.el,
5539 * language/ethio-util.el, mh-e/mh-alias.el, mh-e/mh-search.el,
5540 * net/imap.el, net/rcirc.el, obsolete/complete.el, play/decipher.el,
5541 * progmodes/ada-mode.el, progmodes/cc-awk.el, progmodes/dcl-mode.el,
5542 * progmodes/ps-mode.el, progmodes/verilog-mode.el,
5543 * progmodes/vhdl-mode.el, textmodes/bibtex.el, textmodes/fill.el,
5544 * textmodes/reftex-auc.el, textmodes/rst.el, textmodes/sgml-mode.el,
5545 * textmodes/table.el, textmodes/texinfmt.el: Replace Lisp calls to
5546 delete-backward-char by calls to delete-char.
5547
5548 2010-05-25 Kenichi Handa <handa@m17n.org>
5549
5550 * language/hebrew.el (hebrew-shape-gstring): New function.
5551 Register it in composition-function-table for all Hebrew combining
5552 characters.
5553
5554 2010-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
5555
5556 * epa.el (epa--select-keys): Don't explicitly delete the window since
5557 that can fail (e.g. sole window in frame). Use dedication instead.
5558
5559 2010-05-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
5560
5561 * textmodes/fill.el (fill-region): Don't fill past the end (bug#6201).
5562
5563 2010-05-22 Chong Yidong <cyd@stupidchicken.com>
5564
5565 * image.el (image-refresh): Define as an alias for image-flush.
5566
5567 * image-mode.el (image-toggle-display-image): Caller changed.
5568
5569 2010-05-21 Juri Linkov <juri@jurta.org>
5570
5571 * progmodes/grep.el (grep-read-files): Fix multi-pattern aliases.
5572 Remove "all" from grep-files-aliases. Split grep-files-aliases by
5573 whitespace, call wildcard-to-regexp on substrings and concat them
5574 with "\\|". (Bug#6114)
5575
5576 2010-05-21 Alan Mackenzie <acm@muc.de>
5577
5578 * progmodes/cc-engine.el (c-parse-state-get-strategy):
5579 Replace parameter `here' with `here-' and `here-plus', which sandwich
5580 any pertinent CPP construct.
5581 (c-remove-stale-state-cache-backwards): Fix a bug which happens
5582 when doing (c-parse-state) in a CPP construct: Exclude any "new"
5583 CPP construct from taking part in the scanning.
5584
5585 2010-05-21 Michael Albinus <michael.albinus@gmx.de>
5586
5587 * net/tramp.el (tramp-do-copy-or-rename-file)
5588 (tramp-handle-file-local-copy, tramp-maybe-open-connection):
5589 Tune `with-progress-reporter' messages.
5590 (tramp-handle-vc-registered):
5591 * net/tramp-fish.el (tramp-fish-handle-file-local-copy)
5592 (tramp-fish-handle-insert-file-contents)
5593 (tramp-fish-maybe-open-connection):
5594 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
5595 * net/tramp-imap.el (tramp-imap-do-copy-or-rename-file)
5596 (tramp-imap-handle-insert-file-contents)
5597 (tramp-imap-handle-file-local-copy): Use `with-progress-reporter'.
5598
5599 2010-05-21 Juanma Barranquero <lekktu@gmail.com>
5600
5601 * add-log.el (change-log-font-lock-keywords):
5602 Highlight all authors in multi-author entries.
5603
5604 * smerge-mode.el (smerge-refine-ignore-whitespace)
5605 (smerge-refine-weight-hack, smerge-refine, smerge-makeup-conflict):
5606 Fix typos in docstrings.
5607 (smerge-resolve, smerge-refine-subst): Reflow docstrings.
5608
5609 2010-05-21 Glenn Morris <rgm@gnu.org>
5610
5611 * progmodes/fortran.el (fortran-mode):
5612 * progmodes/f90.el (f90-mode): Derive from prog-mode.
5613
5614 * loadup.el [CANNOT_DUMP]: Update for bootstrap-emacs no longer
5615 having a relative path in src/Makefile.in.
5616
5617 2010-05-20 Kevin Ryde <user42@zip.com.au>
5618
5619 * help-mode.el (help-make-xrefs): For Info node links turn
5620 newlines into spaces. Link node names with newlines are matched
5621 by help-xref-info-regexp and buttonized, this change ensures they
5622 can be followed successfully with RET. (Bug#6206)
5623
5624 2010-05-20 Juri Linkov <juri@jurta.org>
5625
5626 * locate.el (locate): Use pop-to-buffer instead of
5627 switch-to-buffer-other-window. (Bug#6204)
5628
5629 2010-05-20 Juri Linkov <juri@jurta.org>
5630
5631 * replace.el (replace-highlight): Fix lazy-highlighting
5632 for `M-s w str M-% str RET'.
5633
5634 2009-12-15 Masatake YAMATO <yamato@redhat.com>
5635
5636 * isearch.el (isearch-yank-word-or-char): Pull next subword
5637 when `subword-mode' is activated. (Bug#6220)
5638
5639 2010-05-20 Mark A. Hershberger <mah@everybody.org>
5640
5641 * isearch.el (isearch-update-post-hook): New hook.
5642 (isearch-update): Use the new hook. (Bug#6225)
5643
5644 2010-05-20 Juri Linkov <juri@jurta.org>
5645
5646 * isearch.el (isearch-mode-map): Bind more keys to isearch-help-map:
5647 [f1], [help], and (char-to-string help-char) instead of "\C-h".
5648 (Bug#6222)
5649
5650 2010-05-20 Juri Linkov <juri@jurta.org>
5651
5652 * isearch.el (isearch-yank-string): Use isearch-process-search-string.
5653 (Bug#6223)
5654
5655 2010-05-20 Juri Linkov <juri@jurta.org>
5656
5657 * dired-x.el (dired-jump, dired-jump-other-window): Add arg
5658 FILE-NAME to read from the minibuffer when called interactively
5659 with prefix argument instead of using buffer-file-name.
5660 http://lists.gnu.org/archive/html/emacs-devel/2010-05/msg00534.html
5661
5662 * dired.el: Update autoloads.
5663
5664 2010-05-20 Chong Yidong <cyd@stupidchicken.com>
5665
5666 * nxml/nxml-mode.el (nxml-mode-map): Bind C-c / to
5667 nxml-finish-element, for consistency with SGML mode.
5668
5669 * progmodes/octave-mod.el (octave-mode-map): Bind C-c / to
5670 octave-close-block.
5671
5672 2010-05-20 Juanma Barranquero <lekktu@gmail.com>
5673
5674 * composite.el: Require cl when compiling.
5675 (reference-point-alist, compose-gstring-for-graphic)
5676 (compose-gstring-for-terminal): Fix typos in docstrings.
5677
5678 2010-05-19 Juri Linkov <juri@jurta.org>
5679
5680 * emacs-lisp/cl-macs.el (window-parameter): Add defsetf with
5681 set-window-parameter.
5682
5683 2010-05-19 Michael Albinus <michael.albinus@gmx.de>
5684
5685 * net/tramp.el (tramp-methods): Add `tramp-async-args' attribute
5686 where appropriate.
5687 (tramp-maybe-open-connection): Use it.
5688
5689 2010-05-19 Eli Zaretskii <eliz@gnu.org>
5690
5691 * simple.el (move-end-of-line): Make sure we are at line beginning
5692 before backing up to end of previous line.
5693
5694 2010-05-19 Michael Albinus <michael.albinus@gmx.de>
5695
5696 * password-cache.el (password-cache-remove): Fix docstring.
5697
5698 * net/secrets.el: Autoload the widget functions.
5699 (secrets-search-items, secrets-create-item)
5700 (secrets-get-attributes, secrets-expand-item): Attributes will be
5701 stored on the password database without leading ":", as all other
5702 clients do as well.
5703 (secrets-mode): Fix docstring.
5704 (secrets-show-secrets): Provide it as autoloaded command only when
5705 D-Bus support is available. Check existence of Secret Service API.
5706
5707 2010-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
5708
5709 * indent.el (indent-region): Deactivate region (bug#6200).
5710
5711 2010-05-19 Glenn Morris <rgm@gnu.org>
5712
5713 * vc-dir.el (vc-dir): Don't pop-up-windows. (Bug#6204)
5714
5715 2010-05-19 Kenichi Handa <handa@m17n.org>
5716
5717 * composite.el: Register compose-gstring-for-graphic in
5718 composition-function-table only for combining characters (Mn, Mc, Me).
5719
5720 2010-05-18 Jay Belanger <jay.p.belanger@gmail.com>
5721
5722 * calc/calc-trail.el (calc-trail-isearch-forward)
5723 (calc-trail-isearch-backward): Ensure that the new window
5724 point is set correctly.
5725
5726 2010-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
5727
5728 * subr.el (read-quoted-char): Resolve modifiers after key
5729 remapping (bug#6212).
5730
5731 2010-05-18 Michael Albinus <michael.albinus@gmx.de>
5732
5733 Add visualization code for secrets.
5734 * net/secrets.el (secrets-mode): New major mode.
5735 (secrets-show-secrets, secrets-show-collections)
5736 (secrets-expand-collection, secrets-expand-item)
5737 (secrets-tree-widget-after-toggle-function)
5738 (secrets-tree-widget-show-password): New defuns.
5739
5740 2010-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
5741
5742 * emacs-lisp/smie.el (smie-next-sexp): Break inf-loop at BOB.
5743 (smie-backward-sexp, smie-forward-sexp): Remove boundary condition now
5744 handled in smie-next-sexp.
5745 (smie-indent-calculate): Provide a starting indentation (so the
5746 recursion is well-founded ;-).
5747
5748 Fix handling of non-associative equal levels.
5749 * emacs-lisp/smie.el (smie-prec2-levels): Choose distinct levels even
5750 when it's not needed.
5751 (smie-op-left, smie-op-right): New functions.
5752 (smie-next-sexp): New function, extracted from smie-backward-sexp.
5753 Better handle equal levels to distinguish the associative case from
5754 the "multi-keyword construct" case.
5755 (smie-backward-sexp, smie-forward-sexp): Use it.
5756
5757 2010-05-18 Juanma Barranquero <lekktu@gmail.com>
5758
5759 * progmodes/prolog.el (smie-indent-basic): Declare for byte-compiler.
5760
5761 * emacs-lisp/smie.el (smie-precs-precedence-table, smie-backward-sexp)
5762 (smie-forward-sexp, smie-indent-calculate): Fix typos in docstrings.
5763
5764 2010-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
5765
5766 Provide a simple generic indentation engine and use it for Prolog.
5767 * emacs-lisp/smie.el: New file.
5768 * progmodes/prolog.el (prolog-smie-op-levels)
5769 (prolog-smie-indent-rules): New var.
5770 (prolog-mode-variables): Use them to configure SMIE.
5771 (prolog-indent-line, prolog-indent-level): Remove.
5772
5773 2010-05-17 Jay Belanger <jay.p.belanger@gmail.com>
5774
5775 * calc/calc-vec.el (math-vector-avg): Put the vector elements in
5776 order before computing the averages.
5777
5778 2010-05-16 Jay Belanger <jay.p.belanger@gmail.com>
5779
5780 * calc/calc-vec.el (calc-histogram):
5781 (calcFunc-histogram): Allow vectors as inputs.
5782 (math-vector-avg): New function.
5783
5784 * calc/calc-ext.el (math-group-float): Have the number of digits
5785 being grouped depend on the radix (Bug#6189).
5786
5787 2010-05-15 Ken Raeburn <raeburn@raeburn.org>
5788
5789 * version.el (emacs-copyright, emacs-version): Don't define here,
5790 now that emacs.c defines it.
5791
5792 2010-05-15 Eli Zaretskii <eliz@gnu.org>
5793
5794 * international/mule-cmds.el (mule-menu-keymap): Fix definition of
5795 "Describe Language Environment" menu item.
5796
5797 * language/hebrew.el ("Hebrew", "Windows-1255"): Doc fix.
5798
5799 Bidi-sensitive movement with arrow keys.
5800 * subr.el (right-arrow-command, left-arrow-command): New functions.
5801
5802 * bindings.el (global-map): Bind them to right and left arrow keys.
5803
5804 Don't override standard definition of convert-standard-filename.
5805 * files.el (convert-standard-filename): Call
5806 w32-convert-standard-filename and dos-convert-standard-filename on
5807 the corresponding systems.
5808
5809 * w32-fns.el (w32-convert-standard-filename): Rename from
5810 convert-standard-filename. Doc fix.
5811
5812 * dos-fns.el (dos-convert-standard-filename): Doc fix.
5813 (convert-standard-filename): Don't defalias.
5814 (register-name-alist, make-register, register-value)
5815 (set-register-value, intdos): Obsolete aliases for the
5816 corresponding dos-* functions and variables.
5817 (dos-intdos): Add a doc string.
5818
5819 2010-05-15 Jay Belanger <jay.p.belanger@gmail.com>
5820
5821 * calc/calc-aent.el (math-read-token, math-find-user-tokens):
5822 * calc/calc-lang.el (math-read-big-rec, math-lang-read-symbol):
5823 (math-compose-tex-func):
5824 * calc/calccomp.el (math-compose-expr):
5825 * calc/calc-ext.el (math-format-flat-expr-fancy):
5826 * calc/calc-store.el (calc-read-var-name):
5827 * calc/calc-units.el (calc-explain-units-rec): Allow Greek letters.
5828
5829 * calc/calc.el (var-π, var-φ, var-γ): New variables.
5830 * calc/calc-aent.el (math-read-replacement-list): Add "micro" symbol.
5831 * calc/calc-units.el (math-unit-prefixes): Add mu for micro.
5832 (math-standard-units): Add units.
5833
5834 2010-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
5835
5836 * progmodes/asm-mode.el (asm-mode):
5837 * progmodes/prolog.el (prolog-mode): Use define-derived-mode.
5838
5839 * pcomplete.el (pcomplete-completions-at-point): New function,
5840 extracted from pcomplete-std-complete.
5841 (pcomplete-std-complete): Use it.
5842
5843 2010-05-15 Glenn Morris <rgm@gnu.org>
5844
5845 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
5846 Remove references to CVS, RCS and Old directories.
5847
5848 2010-05-14 Jay Belanger <jay.p.belanger@gmail.com>
5849
5850 * calc/calc-bin.el (math-format-twos-complement): Group digits when
5851 appropriate.
5852
5853 2010-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
5854
5855 * progmodes/sh-script.el (sh-mode-default-syntax-table): Remove.
5856 (sh-mode-syntax-table): Give it a default value instead.
5857 (sh-header-marker): Make buffer-local.
5858 (sh-mode): Move make-local-variable to the corresponding setq.
5859 (sh-add-completer): Avoid gratuitously let-binding a buffer-local var.
5860 Use complete-with-action.
5861
5862 * simple.el (prog-mode): New (abstract) major mode.
5863 * emacs-lisp/lisp-mode.el (emacs-lisp-mode, lisp-mode): Use it.
5864 * progmodes/sh-script.el (sh-mode): Remove redundant var assignment.
5865
5866 2010-05-14 Juanma Barranquero <lekktu@gmail.com>
5867
5868 * progmodes/sql.el (sql-oracle-program): Reflow docstring.
5869 (sql-oracle-scan-on, sql-sybase-program, sql-product-font-lock)
5870 (sql-add-product-keywords, sql-highlight-product, sql-set-product)
5871 (sql-make-alternate-buffer-name, sql-placeholders-filter)
5872 (sql-escape-newlines-filter, sql-input-sender)
5873 (sql-send-magic-terminator, sql-sybase): Fix typos in docstrings.
5874
5875 2010-05-13 Chong Yidong <cyd@stupidchicken.com>
5876
5877 Add TeX open-block and close-block keybindings to SGML, and vice versa.
5878
5879 * textmodes/tex-mode.el (tex-mode-map): Bind C-c C-t to
5880 latex-open-block and C-c / to latex-close-block.
5881
5882 * textmodes/sgml-mode.el (sgml-mode-map): Bind C-c C-o to sgml-tag
5883 and C-c C-e to sgml-close-tag.
5884
5885 2010-05-13 Michael Albinus <michael.albinus@gmx.de>
5886
5887 * net/tramp.el (with-progress-reporter): Create reporter object
5888 only when the message would be displayed. Handle nested calls.
5889 (tramp-handle-load, tramp-handle-file-local-copy)
5890 (tramp-handle-insert-file-contents, tramp-handle-write-region)
5891 (tramp-maybe-send-script, tramp-find-shell):
5892 Use `with-progress-reporter'.
5893 (tramp-handle-dired-compress-file, tramp-maybe-open-connection):
5894 Fix message text.
5895
5896 * net/tramp-smb.el (tramp-smb-handle-copy-file)
5897 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
5898 (tramp-smb-handle-write-region, tramp-smb-maybe-open-connection):
5899 Use `with-progress-reporter'.
5900
5901 2010-05-13 Agustín Martín <agustin.martin@hispalinux.es>
5902
5903 * textmodes/ispell.el (ispell-init-process): Do not kill ispell
5904 process everytime when spellchecking from the minibuffer (bug#6143).
5905
5906 2010-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
5907
5908 * progmodes/sh-script.el (sh-mode): Use define-derived-mode.
5909
5910 * dos-fns.el: Add "dos-" prefix for namespace control.
5911 (convert-standard-filename): Define as alias for
5912 dos-convert-standard-filename but only if applicable.
5913
5914 2010-05-12 Alan Mackenzie <acm@muc.de>
5915
5916 * progmodes/cc-cmds.el (c-beginning-of-defun, c-end-of-defun):
5917 Push the mark at the start of these functions when appropriate.
5918
5919 2010-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
5920
5921 * minibuffer.el (completion-cycle-threshold): New custom var.
5922 (completion--do-completion): Use it.
5923 (minibuffer-complete): Use cycling if appropriate.
5924
5925 2010-05-11 Juanma Barranquero <lekktu@gmail.com>
5926
5927 * dirtrack.el (dirtrackp): Remove defcustom; don't make automatically
5928 buffer-local (it's an obsolete alias for `dirtrack-mode') (bug#6173).
5929
5930 2010-05-11 Juri Linkov <juri@jurta.org>
5931
5932 * scroll-all.el (scroll-all-check-to-scroll):
5933 Add `scroll-up-command' and `scroll-down-command' (bug#6164).
5934
5935 2010-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
5936
5937 * iimage.el (iimage-mode-map): Move initialization into declaration.
5938 (iimage-mode-buffer): Use with-silent-modifications.
5939 Simplify calling convention. Adjust callers.
5940 (iimage-mode): Don't run hook redundantly.
5941
5942 * minibuffer.el (completion-pcm--pattern->regex):
5943 Fix last change (bug#6160).
5944
5945 2010-05-10 Juri Linkov <juri@jurta.org>
5946
5947 Remove nodes visited during Isearch from the Info history.
5948 * info.el (Info-isearch-initial-history)
5949 (Info-isearch-initial-history-list): New variables.
5950 (Info-isearch-start): Record initial values of
5951 Info-isearch-initial-history and Info-isearch-initial-history-list.
5952 Add Info-isearch-end to isearch-mode-end-hook.
5953 (Info-isearch-end): New function.
5954
5955 2010-05-10 Michael Albinus <michael.albinus@gmx.de>
5956
5957 * net/tramp.el (tramp-do-file-attributes-with-stat): Add space in
5958 format string, in order to work around a bug in pdksh.
5959 Reported by Gilles Pion <gpion@lfdj.com>.
5960 (tramp-handle-verify-visited-file-modtime): Do not send a command
5961 when the connection is not established.
5962 (tramp-handle-set-file-times): Simplify the check for utc.
5963
5964 2010-05-10 Juanma Barranquero <lekktu@gmail.com>
5965
5966 Fix use of `filter-buffer-substring' (rework previous change).
5967 * emulation/cua-base.el (cua--filter-buffer-noprops): New function.
5968 (cua-repeat-replace-region):
5969 * emulation/cua-rect.el (cua--extract-rectangle, cua-incr-rectangle):
5970 * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
5971 (cua-cut-region-to-global-mark): Use it.
5972
5973 2010-05-09 Michael R. Mauger <mmaug@yahoo.com>
5974
5975 * progmodes/sql.el: Version 2.1.
5976 (sql-product-alist): Redesign structure of product info.
5977 (sql-product, sql-user, sql-server, sql-database): Safe variables.
5978 (sql-port, sql-port-history): New variables.
5979 (sql-interactive-product): New variable.
5980 (sql-send-terminator): New variable.
5981 (sql-imenu-generic-expression): Add "Types" imenu entry.
5982 (sql-oracle-login-params, sql-sqlite-login-params)
5983 (sql-mysql-login-params, sql-solid-login-params)
5984 (sql-sybase-login-params, sql-informix-login-params)
5985 (sql-ingres-login-params, sql-ms-login-params)
5986 (sql-postgres-login-params, sql-interbase-login-params)
5987 (sql-db2-login-params, sql-linter-login-params)
5988 (sql-oracle-scan-on): New variables.
5989 (sql-mode-map): Add C-c C-i to start interactive mode.
5990 (sql-mode-menu): Update existing menu entries.
5991 (sql-font-lock-keywords-builder): Compile-time font-lock optimization.
5992 (sql-mode-oracle-font-lock-keywords)
5993 (sql-mode-postgres-font-lock-keywords)
5994 (sql-mode-ms-font-lock-keywords)
5995 (sql-mode-sybase-font-lock-keywords)
5996 (sql-mode-informix-font-lock-keywords)
5997 (sql-mode-interbase-font-lock-keywords)
5998 (sql-mode-ingres-font-lock-keywords)
5999 (sql-mode-solid-font-lock-keywords)
6000 (sql-mode-mysql-font-lock-keywords)
6001 (sql-mode-sqlite-font-lock-keywords)
6002 (sql-mode-db2-font-lock-keywords)
6003 (sql-mode-linter-font-lock-keywords): Update initialization to
6004 reduce run-time complexity.
6005 (sql-add-product, sql-del-product): New functions.
6006 (sql-set-product-feature, sql-get-product-feature): New functions.
6007 (sql-product-font-lock): Update product API.
6008 (sql-add-product-keywords): New function.
6009 (sql-highlight-product): Update product API.
6010 (sql-help-list-products): New function.
6011 (sql-help): Dynamically lists free and non-free products.
6012 (sql-get-login): Correct bug in handling history and added
6013 prompt for port.
6014 (sql-copy-column): Copy without properties.
6015 (sqli-input-sender): Apply filters to SQLi input.
6016 (sql-query-placeholders-and-send): Obey `sql-oracle-scan-on' setting.
6017 Implement as a filter.
6018 (sql-escape-newlines-filter): Implement as a filter.
6019 (sql-remove-tabs-filter): New function.
6020 (sql-send-magic-terminator): New function.
6021 (sql-send-string): Implement magic terminator.
6022 (sql-send-region): Use `sql-send-string'.
6023 (sql-interactive-mode): Use product API.
6024 (sql-product-interactive): Use product API.
6025 (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql)
6026 (sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase)
6027 (sql-db2, sql-linter): Use `sql-product-interactive'.
6028 (sql-connect): New function.
6029 (sql-connect-oracle, sql-connect-sybase, sql-connect-informix)
6030 (sql-connect-sqlite, sql-connect-mysql, sql-connect-solid)
6031 (sql-connect-ingres, sql-connect-ms, sql-connect-postgres)
6032 (sql-connect-interbase, sql-connect-db2, sql-connect-linter):
6033 Use `sql-connect'.
6034
6035 2010-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
6036
6037 * minibuffer.el (completion-pcm-complete-word-inserts-delimiters):
6038 New custom variable.
6039 (completion-pcm--string->pattern): Use it.
6040 (completion-pcm--pattern->regex, completion-pcm--pattern->string):
6041 Make it handle any symbol as `any'.
6042 (completion-pcm--merge-completions): Extract common suffix for the new
6043 `prefix' symbol as well.
6044 (completion-substring--all-completions): Use the new `prefix' symbol.
6045
6046 2010-05-09 Michael Albinus <michael.albinus@gmx.de>
6047
6048 * net/tramp-compat.el (byte-compile-not-obsolete-vars): Define if
6049 not bound.
6050 (tramp-compat-copy-file): Add PRESERVE-SELINUX-CONTEXT.
6051 (tramp-compat-funcall): New defmacro.
6052 (tramp-compat-line-beginning-position)
6053 (tramp-compat-line-end-position)
6054 (tramp-compat-temporary-file-directory)
6055 (tramp-compat-make-temp-file, tramp-compat-file-attributes)
6056 (tramp-compat-copy-file, tramp-compat-copy-directory)
6057 (tramp-compat-delete-file, tramp-compat-delete-directory)
6058 (tramp-compat-number-sequence, tramp-compat-process-running-p)
6059 * net/tramp.el (top, with-progress-reporter)
6060 (tramp-rfn-eshadow-setup-minibuffer)
6061 (tramp-rfn-eshadow-update-overlay, tramp-handle-set-file-times)
6062 (tramp-handle-dired-compress-file, tramp-handle-shell-command)
6063 (tramp-completion-mode-p, tramp-check-for-regexp)
6064 (tramp-open-connection-setup-interactive-shell)
6065 (tramp-compute-multi-hops, tramp-read-passwd, tramp-clear-passwd)
6066 (tramp-time-diff, tramp-coding-system-change-eol-conversion)
6067 (tramp-set-process-query-on-exit-flag, tramp-unload-tramp)
6068 * net/tramp-cmds.el (tramp-cleanup-all-connections)
6069 (tramp-reporter-dump-variable, tramp-load-report-modules)
6070 (tramp-append-tramp-buffers)
6071 * net/tramp-gvfs.el (tramp-gvfs-handle-file-selinux-context): Use it.
6072
6073 * net/tramp-imap.el (top): Autoload `epg-make-context'.
6074
6075 2010-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
6076
6077 * progmodes/compile.el (compilation-buffer-modtime): Rename from
6078 buffer-modtime. Adjust users.
6079
6080 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
6081
6082 * international/mule.el (auto-coding-alist): Only purecopy
6083 car of each item, not the whole list (Bug#6083).
6084
6085 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
6086
6087 * progmodes/js.el (js-mode): Make paragraph variables local before
6088 calling c-setup-paragraph-variables (Bug#6071).
6089
6090 2010-05-08 Eli Zaretskii <eliz@gnu.org>
6091
6092 * composite.el (compose-region, reference-point-alist): Fix typos
6093 in the doc strings.
6094
6095 2010-05-08 Alexander Klimov <alserkli@inbox.ru> (tiny change)
6096
6097 * calc/calc-graph.el (calc-graph-plot): Use the proper form for
6098 gnuplot's "set" command.
6099
6100 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
6101
6102 * abbrev.el (last-abbrev-text): Doc fix.
6103 (abbrev-prefix-mark): Don't escape parenthesis.
6104
6105 2010-05-08 Andreas Schwab <schwab@linux-m68k.org>
6106
6107 * composite.el (find-composition): Doc fix.
6108
6109 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
6110
6111 * progmodes/sql.el (sql-electric-stuff): Fix typo in tag.
6112 (sql-oracle-program, sql-sqlite-options)
6113 (sql-query-placeholders-and-send): Doc fixes.
6114 (sql-set-product, sql-interactive-mode): Reflow docstrings.
6115 (sql-imenu-generic-expression, sql-buffer)
6116 (sql-mode-ansi-font-lock-keywords, sql-mode-oracle-font-lock-keywords)
6117 (sql-mode-postgres-font-lock-keywords, sql-mode-ms-font-lock-keywords)
6118 (sql-mode-sybase-font-lock-keywords)
6119 (sql-mode-informix-font-lock-keywords)
6120 (sql-mode-interbase-font-lock-keywords)
6121 (sql-mode-ingres-font-lock-keywords, sql-mode-solid-font-lock-keywords)
6122 (sql-mode-mysql-font-lock-keywords, sql-mode-sqlite-font-lock-keywords)
6123 (sql-mode-db2-font-lock-keywords, sql-mode-font-lock-keywords)
6124 (sql-product-feature, sql-highlight-product)
6125 (comint-line-beginning-position, sql-rename-buffer)
6126 (sql-toggle-pop-to-buffer-after-send-region sql-oracle)
6127 (sql-sybase, sql-informix, sql-sqlite, sql-mysql, sql-solid)
6128 (sql-ingres, sql-ms, sql-postgres, sql-interbase, sql-db2, sql-linter):
6129 Fix typos in docstrings.
6130
6131 2010-05-08 Juri Linkov <juri@jurta.org>
6132
6133 * info.el (Info-fontify-node): Put Info-breadcrumbs to the `display'
6134 property instead of `invisible' and `after-string' (bug#5998).
6135
6136 2010-05-08 Juri Linkov <juri@jurta.org>
6137
6138 * image-mode.el (image-mode-as-text): Fix typo in docstring.
6139
6140 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
6141
6142 * filecache.el (file-cache-add-directory-list)
6143 (file-cache-add-directory-recursively): Fix typos in docstrings.
6144
6145 2010-05-08 Kenichi Handa <handa@m17n.org>
6146
6147 * language/indian.el (gurmukhi-composable-pattern): Fix typo.
6148 (gujarati-composable-pattern): Fix typo.
6149
6150 2010-05-08 Kenichi Handa <handa@m17n.org>
6151
6152 * language/indian.el (oriya-composable-pattern)
6153 (tamil-composable-pattern, malayalam-composable-pattern):
6154 Add two-part vowels to "v" (vowel sign).
6155
6156 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
6157
6158 * files.el (copy-directory): Handle symlinks (Bug#5982).
6159
6160 2010-05-08 Dan Nicolaescu <dann@ics.uci.edu>
6161
6162 * vc-hg.el (vc-hg-state): Use HGRCPATH, not HGRC.
6163 (vc-hg-working-revision): Likewise. Use hg parents, not hg parent
6164 (Bug#5846).
6165
6166 2010-05-08 Glenn Morris <rgm@gnu.org>
6167
6168 * emacs-lisp/lisp.el (lisp-completion-at-point): Give it a doc string.
6169
6170 * minibuffer.el (completion-at-point): Doc fix.
6171
6172 2010-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
6173
6174 * electric.el (Electric-command-loop): Minor tweak.
6175
6176 * ebuff-menu.el (electric-buffer-list): Try and make it behave a bit
6177 better with dedicated windows.
6178
6179 2010-05-07 Chong Yidong <cyd@stupidchicken.com>
6180
6181 * Version 23.2 released.
6182
6183 2010-05-07 Deniz Dogan <deniz.a.m.dogan@gmail.com> (tiny change)
6184 Stefan Monnier <monnier@iro.umontreal.ca>
6185
6186 Highlight vendor specific properties.
6187 * textmodes/css-mode.el (css-proprietary-nmstart-re): New var.
6188 (css-proprietary-property): New face.
6189 (css-font-lock-keywords): Use them.
6190
6191 2010-05-07 Eli Zaretskii <eliz@gnu.org>
6192
6193 * cus-start.el (all): Add native condition for tool-bar-* symbols.
6194
6195 2010-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
6196
6197 * textmodes/dns-mode.el (auto-mode-alist): Add entry for .zone files.
6198 * files.el (auto-mode-alist): Remove redundant entries.
6199
6200 * files.el (auto-save-mode): Move to simple.el to fix bootstrap.
6201 * simple.el (auto-save-mode): Move from files.el.
6202 * minibuffer.el (completion--common-suffix): Fix copy&paste error.
6203
6204 2010-05-07 Christian von Roques <roques@mti.ag> (tiny change)
6205
6206 * epg.el (epg-key-capablity-alist): Add "D" flag (Bug#5592).
6207
6208 2010-05-07 Katsumi Yamaoka <yamaoka@jpl.org>
6209
6210 * mail/binhex.el (binhex-decode-region-internal)
6211 * mail/uudecode.el (uudecode-decode-region-internal)
6212 * net/dns.el (dns-read-string-name, dns-write, dns-read)
6213 (dns-read-type, dns-query)
6214 * pgg-parse.el (pgg-parse-armor)
6215 * pgg.el (pgg-verify-region)
6216 * sha1.el (sha1-string-external): Don't run set-buffer-multibyte for
6217 XEmacs.
6218
6219 * net/imap.el (imap-disable-multibyte): Redefine it as a macro.
6220
6221 2010-05-07 Juanma Barranquero <lekktu@gmail.com>
6222
6223 * progmodes/cperl-mode.el (cperl-mode-unload-function): New function.
6224
6225 Fix use of `filter-buffer-substring' (4th arg NOPROPS removed).
6226 * emulation/cua-base.el (cua-repeat-replace-region):
6227 * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
6228 (cua-cut-region-to-global-mark):
6229 Remove text properties with `set-text-properties'.
6230
6231 2010-05-06 Michael Albinus <michael.albinus@gmx.de>
6232
6233 * net/tramp.el (top, with-progress-reporter):
6234 Use `symbol-function' inside `funcall'.
6235
6236 * net/tramp-compat.el (tramp-compat-file-attributes)
6237 (tramp-compat-delete-file, tramp-compat-delete-directory):
6238 Handle only `wrong-number-of-arguments' error.
6239
6240 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Fix typo.
6241 (tramp-gvfs-handle-file-selinux-context): Use `symbol-function'
6242 inside `funcall'.
6243
6244 2010-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
6245
6246 * minibuffer.el (completion--sreverse, completion--common-suffix):
6247 New functions.
6248 (completion-pcm--merge-completions): Extract common suffix when safe.
6249
6250 * emacs-lisp/easy-mmode.el (define-minor-mode):
6251 Make :variable more flexible.
6252 * files.el (auto-save-mode): Use it to define using define-minor-mode.
6253
6254 2010-05-05 Juri Linkov <juri@jurta.org>
6255
6256 Add `slow' and `history' tags to the desktop data.
6257
6258 * info.el (Info-virtual-nodes) [*Index*]: Add `slow' tag.
6259 (Info-virtual-files) [*Apropos*]: Add `slow' tag.
6260 (Info-finder-find-node): Require `finder.el' to be able
6261 to restore node from the desktop.
6262 (Info-desktop-buffer-misc-data): Save all nodes. Save additional
6263 data `Info-history' and `slow' tag in the assoc list.
6264 (Info-restore-desktop-buffer): Don't restore nodes with the
6265 `slow' tag. Restore `Info-history'.
6266
6267 2010-05-05 Michael Albinus <michael.albinus@gmx.de>
6268
6269 Add FORCE argument to `delete-file'.
6270
6271 * net/ange-ftp.el (ange-ftp-del-tmp-name): Make it a defun,
6272 forcing to delete the temporary file.
6273 (ange-ftp-delete-file): Add FORCE arg.
6274 (ange-ftp-rename-remote-to-remote)
6275 (ange-ftp-rename-local-to-remote, ange-ftp-rename-remote-to-local)
6276 (ange-ftp-load, ange-ftp-compress, ange-ftp-uncompress):
6277 Force file deletion.
6278
6279 * net/tramp-compat.el (tramp-compat-delete-file): New defun.
6280
6281 * net/tramp.el (tramp-handle-delete-file): Add FORCE arg.
6282 (tramp-handle-make-symbolic-link, tramp-handle-load)
6283 (tramp-do-copy-or-rename-file-via-buffer)
6284 (tramp-do-copy-or-rename-file-directly)
6285 (tramp-do-copy-or-rename-file-out-of-band)
6286 (tramp-handle-process-file, tramp-handle-call-process-region)
6287 (tramp-handle-shell-command, tramp-handle-file-local-copy)
6288 (tramp-handle-insert-file-contents, tramp-handle-write-region)
6289 (tramp-delete-temp-file-function): Use `tramp-compat-delete-file'.
6290
6291 * net/tramp-fish.el (tramp-fish-handle-delete-file): Add FORCE arg.
6292 (tramp-fish-handle-make-symbolic-link)
6293 (tramp-fish-handle-process-file): Use `tramp-compat-delete-file'.
6294
6295 * net/tramp-ftp.el (tramp-ftp-file-name-handler):
6296 Use `tramp-compat-delete-file'.
6297
6298 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Add FORCE arg.
6299 (tramp-gvfs-handle-write-region): Use `tramp-compat-delete-file'.
6300
6301 * net/tramp-imap.el (tramp-imap-handle-delete-file): Add FORCE arg.
6302 (tramp-imap-do-copy-or-rename-file): Use `tramp-compat-delete-file'.
6303
6304 * net/tramp-smb.el (tramp-smb-handle-delete-file): Add FORCE arg.
6305 (tramp-smb-handle-copy-file, tramp-smb-handle-file-local-copy)
6306 (tramp-smb-handle-rename-file, tramp-smb-handle-write-region): Use
6307 `tramp-compat-delete-file'.
6308
6309 2010-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
6310
6311 Minor cleanups.
6312 * subr.el (add-minor-mode): Use push.
6313 * mail/supercite.el (sc-electric-mode): Use more descriptive arg name.
6314 * emulation/edt.el (edt-select-mode): Simplify.
6315
6316 Use define-minor-mode in more cases.
6317 * term/tvi970.el (tvi970-set-keypad-mode):
6318 * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
6319 (normal-erase-is-backspace-mode):
6320 * scroll-bar.el (scroll-bar-mode): Use it and define-minor-mode.
6321 (set-scroll-bar-mode-1): (Re)move to its sole caller.
6322 (get-scroll-bar-mode): New function.
6323 * emacs-lisp/cl-macs.el (eq): Handle a non-variable first arg.
6324
6325 Use define-minor-mode for less obvious cases.
6326 * emacs-lisp/easy-mmode.el (define-minor-mode): Add :variable keyword.
6327 * emacs-lisp/cl-macs.el (terminal-parameter, eq): Add setf method.
6328 * international/iso-ascii.el (iso-ascii-mode):
6329 * frame.el (auto-raise-mode, auto-lower-mode):
6330 * composite.el (global-auto-composition-mode): Use define-minor-mode.
6331
6332 2010-05-04 Michael Albinus <michael.albinus@gmx.de>
6333
6334 * net/tramp.el (tramp-methods): Remove "-q" from `tramp-login-args'
6335 in order to see error messages for failed logins.
6336
6337 2010-05-03 Chong Yidong <cyd@stupidchicken.com>
6338
6339 * diff.el (diff-sentinel):
6340
6341 * epg.el (epg--make-temp-file, epg-decrypt-string)
6342 (epg-verify-string, epg-sign-string, epg-encrypt-string):
6343
6344 * jka-compr.el (jka-compr-partial-uncompress)
6345 (jka-compr-call-process, jka-compr-write-region, jka-compr-load):
6346
6347 * server.el (server-sentinel): Use delete-file's new FORCE arg
6348 (Bug#6070).
6349
6350 2010-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
6351
6352 Use define-minor-mode where applicable.
6353 * view.el (view-mode):
6354 * type-break.el (type-break-query-mode)
6355 (type-break-mode-line-message-mode):
6356 * textmodes/reftex.el (reftex-mode):
6357 * term/vt100.el (vt100-wide-mode):
6358 * tar-mode.el (tar-subfile-mode):
6359 * savehist.el (savehist-mode):
6360 * ibuf-ext.el (ibuffer-auto-mode):
6361 * composite.el (auto-composition-mode):
6362 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
6363 Use define-minor-mode.
6364 (vhdl-mode): Use static mode-line format.
6365 (vhdl-mode-line-update): Delete.
6366 (vhdl-create-mode-menu, vhdl-activate-customizations)
6367 (vhdl-hs-minor-mode): Don't bother calling it.
6368
6369 2010-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
6370
6371 * simple.el (with-wrapper-hook): Move.
6372 (buffer-substring-filters): Mark obsolete.
6373 (filter-buffer-substring-functions): New variable.
6374 (filter-buffer-substring): Use it. Remove unused arg `noprops'.
6375
6376 2010-05-01 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
6377 Michael Albinus <michael.albinus@gmx.de>
6378
6379 Implement compression for inline methods.
6380
6381 * net/tramp.el (tramp-inline-compress-start-size): New defcustom.
6382 (tramp-copy-size-limit): Allow also nil.
6383 (tramp-inline-compress-commands): New defconst.
6384 (tramp-find-inline-compress, tramp-get-inline-compress)
6385 (tramp-get-inline-coding): New defuns.
6386 (tramp-get-remote-coding, tramp-get-local-coding): Remove,
6387 replaced by `tramp-get-inline-coding'.
6388 (tramp-handle-file-local-copy, tramp-handle-write-region)
6389 (tramp-method-out-of-band-p): Use `tramp-get-inline-coding'.
6390
6391 2010-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
6392
6393 * bindings.el (mode-line-abbrev-mode, mode-line-auto-fill-mode):
6394 Remove unused functions.
6395
6396 * emacs-lisp/lisp-mode.el (lisp-mode): Use define-derived-mode.
6397 Set find-tag-default-function as a variable rather than a property.
6398
6399 * minibuffer.el (tags-completion-at-point-function): Move to etags.el.
6400 * progmodes/etags.el (tags-completion-at-point-function):
6401 Remove left over interactive spec. Add autoloading stub.
6402 (complete-tag): Use tags-completion-at-point-function.
6403
6404 2010-04-30 Chong Yidong <cyd@stupidchicken.com>
6405
6406 * minibuffer.el (tags-completion-at-point-function): Fix return value.
6407
6408 2010-04-29 Chong Yidong <cyd@stupidchicken.com>
6409
6410 * ido.el (ido-init-completion-maps): Remove C-v binding.
6411 (ido-minibuffer-setup): Don't set cua-inhibit-cua-keys (Bug#5765).
6412
6413 2010-04-29 Chong Yidong <cyd@stupidchicken.com>
6414
6415 * minibuffer.el (tags-completion-at-point-function): New function.
6416 (completion-at-point-functions): Use it.
6417
6418 * progmodes/etags.el (complete-tag): Revert last change.
6419
6420 2010-04-29 Alan Mackenzie <acm@muc.de>
6421
6422 * progmodes/cc-mode.el (c-extend-region-for-CPP): Fix an
6423 off-by-one error (in end of macro position).
6424
6425 2010-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
6426
6427 * net/browse-url.el (browse-url-firefox-program): Use iceweasel if
6428 firefox is absent. Don't autoload.
6429 (browse-url-galeon-program): Don't autoload.
6430
6431 2010-04-28 Chong Yidong <cyd@stupidchicken.com>
6432
6433 * bindings.el (complete-symbol): Move into minibuffer.el.
6434
6435 * minibuffer.el (complete-tag): Move from etags.el. If tags
6436 completion cannot be performed, return nil instead of signalling
6437 an error.
6438 (completion-at-point): Make it an alias for complete-symbol.
6439 (complete-symbol): Move from bindings.el, and replace with the
6440 body of completion-at-point.
6441
6442 * progmodes/etags.el (complete-tag): Move to minibuffer.el.
6443
6444 2010-04-28 Michael Albinus <michael.albinus@gmx.de>
6445
6446 * net/tramp.el (tramp-remote-selinux-p): New defun.
6447 (tramp-handle-file-selinux-context)
6448 (tramp-handle-set-file-selinux-context): Use it.
6449
6450 2010-04-28 Sam Steingold <sds@gnu.org>
6451
6452 * progmodes/bug-reference.el (bug-reference-url-format): Mark as
6453 `safe-local-variable' if the value is a string or a symbol with
6454 the property `bug-reference-url-format'.
6455
6456 2010-04-28 Chong Yidong <cyd@stupidchicken.com>
6457
6458 * progmodes/bug-reference.el (bug-reference-url-format):
6459 Revert 2010-04-27 change due to security risk.
6460
6461 2010-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
6462
6463 Make it possible to locally disable a globally enabled mode.
6464 * simple.el (fundamental-mode): Run fundamental-mode-hook.
6465 * emacs-lisp/derived.el (define-derived-mode): Use fundamental-mode
6466 rather than kill-all-local-variables so it runs fundamental-mode-hook.
6467 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
6468 Use fundamental-mode-hook to run MODE-enable-in-buffers earlier, so
6469 that subsequent hooks get a chance to disable it.
6470
6471 2010-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
6472
6473 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
6474 Avoid re-enabling a minor mode after the user turned the minor mode
6475 off if MODE-enable-in-buffers is run twice (typically once from
6476 fundamental-mode's after-change-major-mode-hook and a second time from
6477 run-mode-hook's own after-change-major-mode-hook).
6478
6479 * emacs-lisp/lisp.el (lisp-complete-symbol): Fail gracefully.
6480
6481 2010-04-27 Sam Steingold <sds@gnu.org>
6482
6483 * progmodes/bug-reference.el (bug-reference-url-format): Mark as
6484 `safe-local-variable' if the value is a string or a function, as
6485 documented and implemented on 2010-04-02.
6486
6487 2010-04-27 Juanma Barranquero <lekktu@gmail.com>
6488
6489 * ido.el (ido-buffer-internal): Bind `ido-use-virtual-buffers' to nil
6490 when method is 'kill.
6491
6492 2010-04-27 Agustín Martín <agustin.martin@hispalinux.es>
6493
6494 * textmodes/ispell.el (ispell-init-process): Fix personal dictionary
6495 condition in default directory check.
6496 (ispell-init-process,ispell-kill-ispell,kill-buffer-hook):
6497 Kill ispell process when killing its associated buffer.
6498
6499 2010-04-27 Jan Djärv <jan.h.d@swipnet.se>
6500
6501 * desktop.el (desktop-kill): ask-if-new: Ask if desktop file exists,
6502 but we aren't using it.
6503
6504 2010-04-25 Jan Djärv <jan.h.d@swipnet.se>
6505
6506 * tool-bar.el (tool-bar-local-item-from-menu): Revert unintended
6507 checkin in 2010-04-23T16:26:11Z!monnier@iro.umontreal.ca.
6508
6509 2010-04-24 Glenn Morris <rgm@gnu.org>
6510
6511 * emacs-lisp/authors.el (authors-obsolete-files-regexps):
6512 Ignore VCS-ignore files, and deleted nextstep preferences files.
6513 (authors-ignored-files): Ignore deleted cedet test files, and "*.el".
6514 (authors-ambiguous-files): New list.
6515 (authors-valid-file-names): Add some deleted files.
6516 (authors-renamed-files-alist): Add font-setting.el, edt-user.doc.
6517 (authors-disambiguate-file-name): New function. (Bug#5501)
6518 (authors-canonical-file-name): Doc fix.
6519 Don't warn about obsolete files.
6520 (authors-canonical-file-name, authors-scan-el):
6521 Use authors-disambiguate-file-name.
6522
6523 * hfy-cmap.el (htmlfontify-load-rgb-file, hfy-fallback-colour-values):
6524 Add autoload cookies.
6525 (htmlfontify-unload-rgb-file, hfy-fallback-colour-values): Add docs.
6526 (generated-autoload-file): Set file-local value to "htmlfontify.el".
6527 * htmlfontify.el (caddr, cadddr): Remove fallback definitions.
6528 They have definitions / compiler macros in cl.el.
6529 (htmlfontify-load-rgb-file, hfy-fallback-colour-values):
6530 Replace manual autoloads with generated ones.
6531 (htmlfontify-unload-rgb-file): Remove autoload.
6532 * Makefile.in (autoloads): Ensure htmlfontify.el is writable.
6533
6534 2010-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
6535
6536 * emacs-lisp/bytecomp.el (byte-compile-set-default): New function.
6537 (byte-compile-setq-default): Optimize for the
6538 single-var case and don't call byte-compile-form in this case to avoid
6539 inf-loop with byte-compile-set-default.
6540
6541 * progmodes/compile.el (compilation-start): Abbreviate default directory.
6542
6543 2010-04-23 Michael Albinus <michael.albinus@gmx.de>
6544
6545 Implement SELINUX backends.
6546
6547 * net/tramp.el (tramp-file-name-handler-alist):
6548 Add `file-selinux-context' and `set-file-selinux-context'.
6549 (tramp-handle-file-selinux-context)
6550 (tramp-handle-set-file-selinux-context): New defuns.
6551 (tramp-handle-copy-file, tramp-do-copy-or-rename-file):
6552 Handle PRESERVE-SELINUX-CONTEXT.
6553
6554 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
6555 Add `file-selinux-context' and `set-file-selinux-context'.
6556 (tramp-gvfs-handle-file-selinux-context)
6557 (tramp-gvfs-handle-set-file-selinux-context): New defuns.
6558 (tramp-gvfs-handle-copy-file): Handle PRESERVE-SELINUX-CONTEXT.
6559
6560 * net/ange-ftp.el (ange-ftp-copy-file):
6561 * net/tramp-fish.el (tramp-fish-handle-copy-file):
6562 * net/tramp-imap.el (tramp-imap-handle-copy-file):
6563 * net/tramp-smb.el (tramp-smb-handle-copy-file):
6564 Add PRESERVE-SELINUX-CONTEXT.
6565
6566 2010-04-22 Michael Albinus <michael.albinus@gmx.de>
6567
6568 Synchronize with Tramp repository.
6569
6570 * net/tramp.el (with-connection-property, tramp-completion-mode-p)
6571 (tramp-action-process-alive, tramp-action-out-of-band)
6572 (tramp-check-for-regexp, tramp-file-name-p, tramp-equal-remote)
6573 (tramp-exists-file-name-handler): Fix docstring.
6574 (with-progress-reporter): New defmacro.
6575 (tramp-do-copy-or-rename-file, tramp-handle-dired-compress-file)
6576 (tramp-maybe-open-connection): Use it.
6577
6578 2010-04-22 Noah Lavine <noah549@gmail.com> (tiny change)
6579
6580 Detect ssh 'ControlMaster' argument automatically in some cases.
6581
6582 * net/tramp.el (tramp-detect-ssh-controlmaster): New defun.
6583 (tramp-default-method): Use it.
6584
6585 2010-04-22 Michael Albinus <michael.albinus@gmx.de>
6586
6587 * net/tramp.el (tramp-handle-copy-file): Add new optional
6588 parameter `preserve-selinux-context'.
6589 (tramp-file-name-for-operation): Add `set-file-selinux-context'.
6590
6591 2010-04-22 Michael Albinus <michael.albinus@gmx.de>
6592
6593 * net/tramp.el (tramp-completion-handle-file-name-all-completions):
6594 Ensure, that non remote files are still checked. Oops.
6595
6596 2010-04-21 Michael Albinus <michael.albinus@gmx.de>
6597
6598 Fix Bug#5840.
6599
6600 * icomplete.el (icomplete-completions): Use `non-essential'.
6601
6602 * net/tramp.el (tramp-connectable-p): New defun.
6603 (tramp-handle-expand-file-name)
6604 (tramp-completion-handle-file-name-all-completions)
6605 (tramp-completion-handle-file-name-completion): Use it.
6606
6607 2010-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
6608
6609 * emacs-lisp/lisp.el (lisp-completion-at-point): Try and handle errors.
6610
6611 2010-04-21 Jan Djärv <jan.h.d@swipnet.se>
6612
6613 * vc-dir.el (vc-dir-tool-bar-map): Add :label on some tool bar items.
6614
6615 * tool-bar.el (tool-bar-setup): Add :label on some tool bar items.
6616
6617 * loadup.el: Load dynamic-setting.el if feature dynamic-setting
6618 is present.
6619
6620 * info.el (info-tool-bar-map): Add labels.
6621
6622 * cus-start.el (all): Add tool-bar-style and tool-bar-max-label-size.
6623
6624 * cus-edit.el (custom-commands): Add labels for tool bar.
6625 (custom-buffer-create-internal, Custom-mode): Adjust for
6626 labels in custom-commands.
6627
6628 * dynamic-setting.el: Renamed from font-setting.el.
6629
6630 2010-04-21 John Wiegley <jwiegley@gmail.com>
6631
6632 * ido.el (ido-init-completion-maps): For ido-switch-buffer, C-o
6633 toggles the use of virtual buffers.
6634 (ido-buffer-internal): Guard `ido-use-virtual-buffers' global value.
6635 (ido-toggle-virtual-buffers): New function.
6636
6637 2010-04-21 Juanma Barranquero <lekktu@gmail.com>
6638
6639 Use `define-derived-mode'; fix window selection; doc fixes.
6640 * play/tetris.el (tetris, tetris-update-speed-function)
6641 (tetris-tty-colors, tetris-x-colors, tetris-move-bottom)
6642 (tetris-move-left, tetris-move-right, tetris-rotate-prev)
6643 (tetris-rotate-next, tetris-end-game, tetris-start-game)
6644 (tetris-pause-game): Fix typos in docstrings.
6645 (tetris-mode-map, tetris-null-map):
6646 Move initialization into declaration.
6647 (tetris-mode): Define with `define-derived-mode';
6648 set show-trailing-whitespace to nil.
6649 (tetris): Prefer window already displaying the "*Tetris*" buffer.
6650
6651 2010-04-21 Karel Klíč <kklic@redhat.com>
6652
6653 * files.el (backup-buffer): Handle SELinux context, and return it
6654 if a backup was made by renaming.
6655 (backup-buffer-copy): Set SELinux context to the target file.
6656 (basic-save-buffer): Set SELinux context of the newly written file.
6657 (basic-save-buffer-1): Now it also returns any SELinux context.
6658 (basic-save-buffer-2): Set SELinux context of the newly created file,
6659 and return it.
6660 * net/tramp.el (tramp-file-name-for-operation):
6661 Add file-selinux-context.
6662
6663 2010-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
6664
6665 Make the log-edit comments use RFC822 format throughout.
6666
6667 * vc.el (vc-checkin, vc-modify-change-comment):
6668 Adjust to new vc-start/finish-logentry.
6669 (vc-find-conflicted-file): New command.
6670 (vc-transfer-file): Adjust to new vc-checkin.
6671 (vc-next-action): Improve scoping.
6672
6673 * vc-hg.el (vc-hg-log-edit-mode): Remove.
6674 (vc-hg-checkin): Remove extra arg. Use log-edit-extract-headers.
6675
6676 * vc-git.el (vc-git-log-edit-mode): Remove.
6677 (vc-git-checkin): Remove extra arg. Use log-edit-extract-headers.
6678 (vc-git-commits-coding-system): Rename from git-commits-coding-system.
6679
6680 * vc-dispatcher.el (vc-log-edit): Shorten names for log-edit-show-files.
6681 (vc-start-logentry): Remove argument `extra'.
6682 (vc-finish-logentry): Remove extra args.
6683
6684 * vc-bzr.el (vc-bzr-log-edit-mode): Remove.
6685 (vc-bzr-checkin): Remove extra arg. Use log-edit-extract-headers.
6686 (vc-bzr-conflicted-files): New function.
6687
6688 * log-edit.el (log-edit-extra-flags)
6689 (log-edit-before-checkin-process): Remove.
6690 (log-edit-summary, log-edit-header, log-edit-unknown-header): New faces.
6691 (log-edit-headers-alist): New var.
6692 (log-edit-header-contents-regexp): New const.
6693 (log-edit-match-to-eoh): New function.
6694 (log-edit-font-lock-keywords): Use them.
6695 (log-edit): Insert a "Summary:" header as default.
6696 (log-edit-mode): Mark font-lock rules as case-insensitive.
6697 (log-edit-done): Cleanup headers.
6698 (log-view-process-buffer): Remove.
6699 (log-edit-extract-headers): New function to replace it.
6700
6701 2010-04-20 Juanma Barranquero <lekktu@gmail.com>
6702
6703 * subr.el (default-direction-reversed): Remove obsolescence info.
6704
6705 2010-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
6706
6707 * vc-dispatcher.el (vc-finish-logentry): Don't mess so badly with the
6708 windows/frames.
6709
6710 * emacs-lisp/lisp.el (lisp-completion-at-point): Complete around point.
6711 I.e. include text after point in the completion region.
6712 Also, return nil when we're not after/in a symbol.
6713
6714 * international/mule-cmds.el (view-hello-file): Don't fiddle with the
6715 default enable-multibyte-characters.
6716
6717 2010-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
6718
6719 * international/mule.el: Help the user choose a valid coding-system.
6720 (read-buffer-file-coding-system): New function.
6721 (set-buffer-file-coding-system): Use it. Prompt the user if the
6722 coding-system cannot encode all the chars.
6723
6724 * vc-bzr.el: Use standard *vc* and *vc-diff* buffers.
6725 (vc-bzr-shelve-show, vc-bzr-shelve-apply)
6726 (vc-bzr-shelve-apply-and-keep, vc-bzr-shelve-snapshot):
6727 Don't use *vc-bzr-shelve*.
6728
6729 2010-04-19 Dan Nicolaescu <dann@ics.uci.edu>
6730
6731 Fix the version number for added files.
6732 * vc-hg.el (vc-hg-working-revision): Check if the file is
6733 registered after hg parent fails (Bug#5961).
6734
6735 2010-04-19 Glenn Morris <rgm@gnu.org>
6736
6737 * htmlfontify.el (htmlfontify-buffer)
6738 (htmlfontify-copy-and-link-dir): Autoload entry points.
6739
6740 2010-04-19 Magnus Henoch <magnus.henoch@gmail.com>
6741
6742 * vc-hg.el (vc-hg-annotate-extract-revision-at-line): Expand file
6743 name relative to the project root (Bug#5960).
6744
6745 2010-04-19 Glenn Morris <rgm@gnu.org>
6746
6747 * vc-git.el (vc-git-print-log): Doc fix.
6748
6749 2010-04-19 Óscar Fuentes <ofv@wanadoo.es>
6750
6751 * ido.el (ido-file-internal): Fix 2009-12-02 change.
6752
6753 2010-04-19 Christoph <cschol2112@googlemail.com> (tiny change)
6754
6755 * progmodes/grep.el (grep-compute-defaults): Fix handling of host
6756 default settings (Bug#5928).
6757
6758 2010-04-19 Glenn Morris <rgm@gnu.org>
6759
6760 * progmodes/fortran.el (fortran-match-and-skip-declaration):
6761 New function.
6762 (fortran-font-lock-keywords-3): Use it. (Bug#1385)
6763
6764 2010-04-19 Kenichi Handa <handa@m17n.org>
6765
6766 * language/indian.el (malayalam-composable-pattern): Fix previous
6767 change (add U+0D4D "SIGN VIRAMA").
6768 (oriya-composable-pattern): Add U+0B30 and fix typo in the regexp.
6769 (tamil-composable-pattern): Fix typo in the regexp.
6770 (telugu-composable-pattern): Fix U+0C4D and typo in the regexp.
6771 (kannada-composable-pattern): Fix U+0CB0 and typo in the regexp.
6772 (malayalam-composable-pattern): Fix U+0D4D and typo in the regexp.
6773
6774 2010-04-19 Chong Yidong <cyd@stupidchicken.com>
6775
6776 * textmodes/tex-mode.el (latex-mode): Revert 2008-03-03 change to
6777 paragraph-separate (Bug#5821).
6778
6779 2010-04-19 Juri Linkov <juri@jurta.org>
6780
6781 Put breadcrumbs on overlay instead of inserting to buffer (bug#5809).
6782
6783 * info.el (Info-find-node-2): Comment out code that skips
6784 breadcrumbs line.
6785 (Info-mouse-follow-link): New command.
6786 (Info-link-keymap): New keymap.
6787 (Info-breadcrumbs): Rename from `Info-insert-breadcrumbs'.
6788 Return a string with links instead of inserting breadcrumbs
6789 to the Info buffer.
6790 (Info-fontify-node): Comment out code that inserts breadcrumbs.
6791 Instead of putting the `invisible' text property over the Info
6792 header, make an overlay over the Info header with the `invisible'
6793 property and `after-string' set to the string returned by
6794 `Info-breadcrumbs'.
6795
6796 2010-04-19 Chong Yidong <cyd@stupidchicken.com>
6797
6798 * help.el (help-window-setup-finish): Doc fix (Bug#5830).
6799 Reported by monkey@sandpframing.com.
6800
6801 2010-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
6802
6803 * tmm.el (tmm-prompt): Remove obsolete call to x-popup-menu.
6804 (tmm-get-keymap): Add key-binding shortcuts now that they're not
6805 available in the "keyseq cache" any more.
6806
6807 * custom.el (defcustom): Add edebug spec.
6808
6809 2010-04-18 Juri Linkov <juri@jurta.org>
6810
6811 Test for special mode-class in view-buffer instead of view-file (bug#5513).
6812
6813 * view.el (view-file, view-buffer): Move test for special mode-class
6814 from view-file to view-buffer.
6815
6816 * tar-mode.el (tar-extract): Turn if's into one cond
6817 like in arc-mode.el.
6818
6819 2010-04-18 Juri Linkov <juri@jurta.org>
6820
6821 Add 7z archive format support (bug#5475).
6822
6823 * arc-mode.el (archive-zip-extract): Try to find 7z executable.
6824 (archive-7z-extract): New defcustom.
6825 (archive-find-type): Add magic string for 7z.
6826 (archive-extract-by-stdout): Add new optional arg `stderr-file'.
6827 If `stderr-file' is non-nil, use `(t stderr-file)' for the
6828 `buffer' arg of `call-process'.
6829 (archive-zip-extract): Check `archive-zip-extract' for "7z" and
6830 call the function `archive-7z-extract' with the variable
6831 `archive-7z-extract' let-bound to `archive-zip-extract'.
6832 (archive-7z-summarize, archive-7z-extract): New functions.
6833
6834 * international/mule.el (auto-coding-alist):
6835 * files.el (auto-mode-alist): Add 7z file extension.
6836
6837 2010-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
6838
6839 * loadup.el: Setup hash-cons for pure data.
6840
6841 Fix duplicate entries in cedet's loaddefs.el files.
6842 * emacs-lisp/autoload.el (autoload-file-load-name): Be more clever.
6843 Should make most file-local generated-autoload-file unnecessary.
6844 (print-readably): Silence warnings.
6845 (autoload-find-destination): Take load-name as an arg to make sure
6846 it's the same as the one that will be in the file.
6847 (autoload-generate-file-autoloads): Adjust to above changes.
6848 Try to make the dataflow a bit simpler.
6849
6850 * cvs-status.el (cvs-refontify): Remove unused.
6851
6852 2010-04-18 Jay Belanger <jay.p.belanger@gmail.com>
6853
6854 * calc/calc.el (calc-mode-map): Bind "O" to `calc-missing-key'.
6855
6856 * calc/calc-bin.el (calc-radix): Have the "O" option turn on
6857 twos-complement mode.
6858
6859 2010-04-17 Jay Belanger <jay.p.belanger@gmail.com>
6860
6861 * calc/calc-ext.el (calc-init-extensions): Add keybinding for
6862 'calc-option'. Add `calc-option-prefix-help' to calc-help autoloads.
6863 (calc-inverse): Add "Option" to message, as appropriate.
6864 (calc-hyperbolic): Add "Option" to message, as appropriate.
6865 (calc-option, calc-is-option): New functions.
6866
6867 * calc/calc-help.el (calc-full-help): Add `calc-option-help'.
6868 (calc-option-prefix-help): New function.
6869
6870 * calc/calc-misc.el (calc-help): Add "Option" entry.
6871
6872 * calc/calc.el (calc-local-var-list): Add `calc-option-flag'.
6873 (calc-option-flag): New variable.
6874 (calc-do): Set `calc-option-flag to nil.
6875 (calc-set-mode-line): Add "Opt " as appropriate.
6876
6877 2010-04-16 Juri Linkov <juri@jurta.org>
6878
6879 Move scrolling commands from simple.el to window.el
6880 because their primitives are implemented in window.c.
6881
6882 * simple.el (scroll-error-top-bottom)
6883 (scroll-up-command, scroll-down-command, scroll-up-line)
6884 (scroll-down-line, scroll-other-window-down)
6885 (beginning-of-buffer-other-window, end-of-buffer-other-window):
6886 * window.el (scroll-error-top-bottom)
6887 (scroll-up-command, scroll-down-command, scroll-up-line)
6888 (scroll-down-line, scroll-other-window-down)
6889 (beginning-of-buffer-other-window, end-of-buffer-other-window):
6890 Move from simple.el to window.el because their primitives are
6891 implemented in window.c.
6892
6893 2010-04-16 Juri Linkov <juri@jurta.org>
6894
6895 * isearch.el (isearch-lookup-scroll-key): Check both
6896 `isearch-scroll' and `scroll-command' properties.
6897 (scroll-up, scroll-down): Remove `isearch-scroll' property.
6898
6899 * mwheel.el (mwheel-scroll): Remove `isearch-scroll' property.
6900
6901 * simple.el (scroll-up-command, scroll-down-command)
6902 (scroll-up-line, scroll-down-line): Remove `isearch-scroll' property.
6903
6904 2010-04-15 Juri Linkov <juri@jurta.org>
6905
6906 * simple.el (scroll-up-command, scroll-down-command)
6907 (scroll-up-line, scroll-down-line): Put `scroll-command'
6908 property on the these symbols. Remove them from
6909 `scroll-preserve-screen-position-commands'.
6910
6911 * mwheel.el (mwheel-scroll): Put `scroll-command' and
6912 `isearch-scroll' properties on the `mwheel-scroll' symbol.
6913 Remove it from `scroll-preserve-screen-position-commands'.
6914
6915 * isearch.el (isearch-allow-scroll): Doc fix.
6916
6917 2010-04-15 Michael Albinus <michael.albinus@gmx.de>
6918
6919 * net/tramp.el (tramp-error-with-buffer): Don't show the
6920 connection buffer when we are in completion mode.
6921 (tramp-file-name-handler): Catch the error for some operations
6922 when we are in completion mode. This gives the user the chance to
6923 correct the file name in the minibuffer.
6924
6925 2010-04-15 Glenn Morris <rgm@gnu.org>
6926
6927 * progmodes/verilog-mode.el (verilog-forward-sexp): Avoid free variable.
6928
6929 2010-04-15 Juanma Barranquero <lekktu@gmail.com>
6930
6931 Simplify by using `define-derived-mode'.
6932 * info.el (Info-mode):
6933 * calendar/todo-mode.el (todo-mode):
6934 * play/gomoku.el (gomoku-mode): Define with `define-derived-mode'.
6935 (gomoku-mode-map): Move initialization into declaration.
6936
6937 2010-04-14 Michael Albinus <michael.albinus@gmx.de>
6938
6939 Fix Bug#5840.
6940 * ido.el (ido-file-name-all-completions-1):
6941 * minibuffer.el (minibuffer-completion-help):
6942 * net/tramp.el (tramp-completion-mode-p): Use `non-essential'.
6943
6944 2010-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
6945
6946 * simple.el (non-essential): New var.
6947
6948 Add a new field `location' to bookmarks for non-file bookmarks.
6949 * bookmark.el (bookmark-location): Use the new field, if present.
6950 (bookmark-insert-location): Undo last change, not needed any more.
6951 * man.el (Man-bookmark-make-record):
6952 * woman.el (woman-bookmark-make-record): Add `location' field.
6953
6954 2010-04-14 Juri Linkov <juri@jurta.org>
6955
6956 * simple.el (scroll-error-top-bottom): New defcustom.
6957 (scroll-up-command, scroll-down-command): Use it. Doc fix.
6958
6959 * emulation/pc-select.el (pc-select-override-scroll-error):
6960 Obsolete in favor of `scroll-error-top-bottom'.
6961
6962 2010-04-14 Juri Linkov <juri@jurta.org>
6963
6964 * tutorial.el (tutorial--default-keys): Rebind `C-v' to
6965 `scroll-up-command' and `M-v' to `scroll-down-command'.
6966
6967 * emulation/cua-rect.el (cua--init-rectangles):
6968 * forms.el (forms--change-commands):
6969 * image-mode.el (image-mode-map):
6970 Remap scroll-down-command and scroll-up-command
6971 in addition to scroll-down and scroll-up.
6972
6973 2010-04-14 Juri Linkov <juri@jurta.org>
6974
6975 * mwheel.el (scroll-preserve-screen-position-commands):
6976 Add mwheel-scroll to this list of commands.
6977
6978 * simple.el (scroll-preserve-screen-position-commands):
6979 Add scroll-up-command, scroll-down-command, scroll-up-line,
6980 scroll-down-line to this list of commands.
6981
6982 2010-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
6983
6984 * obsolete/complete.el: Move from lisp/complete.el.
6985
6986 * pcomplete.el (pcomplete-here*): Fix mistaken change (bug#5935).
6987
6988 * emacs-lisp/easy-mmode.el (define-minor-mode): Passing a nil argument
6989 to the minor mode function now turns the mode ON unconditionally.
6990
6991 2010-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
6992
6993 * vc-dir.el (vc-dir-kill-line): New command.
6994 (vc-dir-mode-map): Bind it to C-k.
6995
6996 * bookmark.el (bookmark-insert-location): Handle a nil filename.
6997
6998 * woman.el: Add bookmark declarations to silence the compiler.
6999 (bookmark-prop-get): Use `man-args' rather than `filename' as a first
7000 step to compatibility between man and woman bookmarks.
7001 Adjust for Man-default-bookmark-title renaming.
7002 (woman-bookmark-jump): Adjust accordingly. Don't forget to autoload.
7003
7004 * man.el: Add bookmark declarations to silence the compiler.
7005 (Man-name-local-regexp): Make it match NAME as well.
7006 (Man-getpage-in-background): Return the buffer.
7007 (Man-notify-when-ready): Use `case'.
7008 (man-set-default-bookmark-title): Rename to Man-default-bookmark-title.
7009 Don't hardcode "NAME". Simplify.
7010 (Man-bookmark-make-record): Use Man-arguments rather than buffer-name.
7011 Rename from Man-bookmark-make-record.
7012 (Man-bookmark-jump): Rename from man-bookmark-jump. Simplify now that
7013 we have the actual man-args. Use Man-getpage-in-background rather
7014 than `man' since the arg is already processed. Let bookmark.el do the
7015 window handling. Only wait for the relevant process.
7016 Don't forget to autoload.
7017
7018 * bookmark.el (bookmark-default-file): Use locate-user-emacs-file.
7019
7020 2010-04-12 Thierry Volpiatto <thierry.volpiatto@gmail.com>
7021
7022 * woman.el (woman-bookmark-make-record, woman-bookmark-jump):
7023 New functions.
7024 (woman-mode): Setup bookmark support.
7025
7026 * man.el (man-set-default-bookmark-title, man-bookmark-make-record)
7027 (man-bookmark-jump): New functions.
7028 (Man-mode): Setup bookmark support.
7029
7030 2010-04-10 Jari Aalto <jari.aalto@cante.net>
7031
7032 * comint.el (comint-password-prompt-regexp): Use regexp-opt, and
7033 recognize ssh-keygen prompt (Bug#2817).
7034
7035 2010-04-10 Michael Albinus <michael.albinus@gmx.de>
7036
7037 * net/tramp.el (tramp-do-copy-or-rename-file): Add progress reporter.
7038
7039 2010-04-10 Michael Albinus <michael.albinus@gmx.de>
7040
7041 Synchronize with Tramp repository.
7042
7043 * net/tramp.el (tramp-completion-function-alist)
7044 (tramp-file-name-regexp, tramp-chunksize)
7045 (tramp-local-coding-commands, tramp-remote-coding-commands):
7046 Fix docstring.
7047 (tramp-remote-process-environment): Use `format' instead of `concat'.
7048 (tramp-handle-directory-files-and-attributes)
7049 (tramp-get-remote-path): Use `copy-tree'.
7050 (tramp-handle-file-name-all-completions): Backward/ XEmacs
7051 compatibility: Use `completion-ignore-case' if
7052 `read-file-name-completion-ignore-case' does not exist.
7053 (tramp-do-copy-or-rename-file-directly): Do not use
7054 `tramp-handle-file-remote-p'.
7055 (tramp-do-copy-or-rename-file-out-of-band):
7056 Use `tramp-compat-delete-directory'.
7057 (tramp-do-copy-or-rename-file-out-of-band)
7058 (tramp-compute-multi-hops, tramp-maybe-open-connection):
7059 Use `format-spec-make'.
7060 (tramp-find-foreign-file-name-handler)
7061 (tramp-advice-make-auto-save-file-name)
7062 (tramp-set-auto-save-file-modes): Remove superfluous check for
7063 `stringp'. This is done inside `tramp-tramp-file-p'.
7064 (tramp-debug-outline-regexp): New defconst.
7065 (tramp-get-debug-buffer): Use it.
7066 (tramp-check-for-regexp): Use (forward-line 1).
7067 (tramp-set-auto-save-file-modes): Adapt version check.
7068
7069 * net/tramp-compat.el (tramp-advice-file-expand-wildcards):
7070 Wrap call of `featurep' for 2nd argument.
7071 (tramp-compat-make-temp-file): Simplify fallback implementation.
7072 (tramp-compat-copy-tree): Remove function.
7073 (tramp-compat-delete-directory): Provide implementation for older
7074 Emacsen.
7075
7076 * net/tramp-fish.el (tramp-fish-handle-directory-files-and-attributes):
7077 Do not use `tramp-fish-handle-file-attributes.
7078
7079 * net/trampver.el: Update release number.
7080
7081 2010-04-10 Glenn Morris <rgm@gnu.org>
7082
7083 * progmodes/compile.el (compilation-save-buffers-predicate):
7084 Add missing :version tag.
7085
7086 2010-04-09 Sam Steingold <sds@gnu.org>
7087
7088 * progmodes/compile.el (compilation-save-buffers-predicate):
7089 Remove the "autoload" cookie.
7090
7091 * progmodes/bug-reference.el (turn-on-bug-reference-mode)
7092 (turn-on-bug-reference-prog-mode): Remove, `bug-reference-mode'
7093 and `bug-reference-prog-mode' can be used in hooks directly.
7094
7095 2010-04-09 Dan Nicolaescu <dann@ics.uci.edu>
7096
7097 Add --author support to git commit.
7098 * vc-git.el (vc-git-checkin): Pass extra-args to the commit command.
7099 (vc-git-log-edit-mode): New minor mode.
7100 (log-edit-mode, log-edit-extra-flags, log-edit-mode):
7101 New declarations.
7102
7103 2010-04-09 Eric Raymond <esr@snark.thyrsus.com>
7104
7105 * vc-hooks.el, vc-git.el: Improve documentation comments.
7106
7107 2010-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
7108
7109 Fix some of the problems in defsubst* (bug#5728).
7110 * emacs-lisp/cl-macs.el (defsubst*): Don't substitute non-trivial args.
7111 (cl-defsubst-expand): Do the substitutions simultaneously (bug#5728).
7112
7113 2010-04-07 Sam Steingold <sds@gnu.org>
7114
7115 * progmodes/compile.el (compilation-save-buffers-predicate):
7116 New custom variable.
7117 (compile, recompile): Pass it to `save-some-buffers'.
7118
7119 2010-04-07 Jan Djärv <jan.h.d@swipnet.se>
7120
7121 * wid-edit.el (widget-choose): Move cursor to the second line of
7122 the buffer (Bug#5695).
7123
7124 2010-04-07 Dan Nicolaescu <dann@ics.uci.edu>
7125
7126 Add new VC methods: vc-log-incoming and vc-log-outgoing.
7127 * vc.el (vc-print-log-setup-buttons): New function split out from
7128 vc-print-log-internal.
7129 (vc-log-internal-common): New function, a parametrized version of
7130 vc-print-log-internal.
7131 (vc-print-log-internal): Just call vc-log-internal-common with the
7132 right arguments.
7133 (vc-incoming-outgoing-internal):
7134 (vc-log-incoming, vc-log-outgoing): New functions.
7135 (vc-log-view-type): New permanent local variable.
7136
7137 * vc-hooks.el (vc-menu-map): Bind vc-log-incoming and vc-log-outgoing.
7138
7139 * vc-bzr.el (vc-bzr-log-view-mode): Use vc-log-view-type instead
7140 of the dynamic bound vc-short-log.
7141 (vc-bzr-log-incoming, vc-bzr-log-outgoing): New functions.
7142
7143 * vc-git.el (vc-git-log-outgoing): New function.
7144 (vc-git-log-view-mode): Use vc-log-view-type instead
7145 of the dynamic bound vc-short-log.
7146
7147 * vc-hg.el (vc-hg-log-view-mode): Use vc-log-view-type instead
7148 of the dynamic bound vc-short-log. Highlight the tag.
7149 (vc-hg-log-incoming, vc-hg-log-outgoing): New functions.
7150 (vc-hg-outgoing, vc-hg-incoming, vc-hg-outgoing-mode):
7151 (vc-hg-incoming-mode): Remove.
7152 (vc-hg-extra-menu-map): Do not bind vc-hg-incoming and vc-hg-outgoing.
7153
7154 2010-04-07 Dan Nicolaescu <dann@ics.uci.edu>
7155
7156 Fix default-directory for vc-root-diff.
7157 * vc.el (vc-root-diff): Bind default-directory to the root
7158 directory for the diff command.
7159
7160 2010-04-07 Michael McNamara <mac@mail.brushroad.com>
7161
7162 * progmodes/verilog-mode.el (verilog-forward-sexp):
7163 (verilog-calc-1): Support "disable fork" and "fork wait" multi
7164 word keywords, suggested by Steve Pearlmutter.
7165 (verilog-pretty-declarations): Support lineup of declarations in
7166 port lists.
7167 (verilog-skip-backward-comments, verilog-skip-forward-comment-p):
7168 fix bug for /* / comments.
7169 (verilog-backward-syntactic-ws, verilog-forward-syntactic-ws):
7170 Speed up and simplfy as this is never called with a bound.
7171 (verilog-pretty-declarations): Enhance to line up declarations
7172 inside a parameter list, suggested by Alan Morgan.
7173 (verilog-pretty-expr): Tune assignment regular expression match
7174 string for corner cases; also use markers instead of character
7175 number as indent changes the later.
7176
7177 2010-04-07 Wilson Snyder <wsnyder@wsnyder.org>
7178
7179 * progmodes/verilog-mode.el (verilog-type-keywords): Fix pulldown
7180 as missing keyword.
7181 (verilog-read-sub-decls-line): Fix comments in AUTO_TEMPLATE
7182 causing truncation of AUTOWIRE signals. Reported by Bruce Tennant.
7183 (verilog-auto-inst, verilog-auto-inst-port): Add vl_mbits for
7184 AUTO_TEMPLATEs needing multiple array bits. Suggested by Bruce
7185 Tennant.
7186 (verilog-keywords):
7187 (verilog-1800-2005-keywords, verilog-1800-2009-keywords): Add IEEE
7188 1800-2009 keywords, including "global.".
7189
7190 2010-04-06 John Wiegley <jwiegley@gmail.com>
7191
7192 * ido.el (ido-add-virtual-buffers-to-list): Fix duplicated names
7193 appearing in buffer list (if a live buffer name matched a recentf
7194 file basename). Should use uniquify to offer a real solution.
7195
7196 2010-04-06 John Wiegley <jwiegley@gmail.com>
7197
7198 * ido.el (ido-use-virtual-buffers, ido-virtual): Move a ChangeLog
7199 comment to code, and add a :version tag.
7200 (ido-virtual-buffers): Move defvar to fix byte-compiler warning.
7201
7202 2010-04-06 Juanma Barranquero <lekktu@gmail.com>
7203
7204 Enable recentf-mode if using virtual buffers.
7205 * ido.el (recentf-list): Declare for byte-compiler.
7206 (ido-virtual-buffers): Move up to silence byte-compiler. Add docstring.
7207 (ido-make-buffer-list): Simplify.
7208 (ido-add-virtual-buffers-to-list): Simplify. Enable recentf-mode.
7209
7210 2010-04-05 Juri Linkov <juri@jurta.org>
7211
7212 Scrolling commands which scroll a line instead of full screen.
7213 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01452.html
7214
7215 * simple.el (scroll-up-line, scroll-down-line): New commands.
7216 Put property isearch-scroll=t on them.
7217
7218 * emulation/ws-mode.el (scroll-down-line, scroll-up-line):
7219 Remove commands.
7220
7221 2010-04-05 Juri Linkov <juri@jurta.org>
7222
7223 Scrolling commands which do not signal errors at top/bottom.
7224 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01452.html
7225
7226 * simple.el (scroll-up-command, scroll-down-command): New commands.
7227 Put property isearch-scroll=t on them.
7228
7229 * bindings.el (global-map): Rebind [prior] from `scroll-down' to
7230 `scroll-down-command' and [next] from `scroll-up' to
7231 `scroll-up-command'.
7232
7233 * emulation/cua-base.el: Put property CUA=move on
7234 `scroll-up-command' and `scroll-down-command'.
7235 (cua--init-keymaps): Remap `scroll-up-command' to `cua-scroll-up'
7236 and `scroll-down-command' to `cua-scroll-down'.
7237
7238 2010-04-05 Juanma Barranquero <lekktu@gmail.com>
7239
7240 * help.el (describe-mode): Return nil.
7241
7242 2010-04-04 John Wiegley <jwiegley@gmail.com>
7243
7244 * ido.el (ido-use-virtual-buffers): New variable to indicate
7245 whether "virtual buffer" support is enabled for IDO.
7246 (ido-virtual): Face used to indicate virtual buffers in the list.
7247 (ido-buffer-internal): If a buffer is chosen, and no such buffer
7248 exists, but a virtual buffer of that name does (which would be why
7249 it was in the list), recreate the buffer by reopening the file.
7250 (ido-make-buffer-list): If virtual buffers are being used, call
7251 `ido-add-virtual-buffers-to-list' before the make list hook.
7252 (ido-virtual-buffers): New variable which contains a copy of the
7253 current contents of the `recentf-list', albeit pared down for the
7254 sake of speed, and with proper faces applied.
7255 (ido-add-virtual-buffers-to-list): Using the `recentf-list',
7256 create a list of "virtual buffers" to present to the user in
7257 addition to the currently open set. Note that this logic could
7258 get rather slow if that list is too large. With the default
7259 `recentf-max-saved-items' of 200, there is little speed penalty.
7260
7261 2010-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
7262
7263 * font-lock.el: Require CL when compiling.
7264 (font-lock-turn-on-thing-lock): Use `case'.
7265
7266 2010-04-03 Eli Zaretskii <eliz@gnu.org>
7267
7268 * emacs-lisp/authors.el (authors-fixed-entries): Add entry for Eli
7269 Zaretskii.
7270
7271 2010-04-02 Juri Linkov <juri@jurta.org>
7272
7273 * ehelp.el (electric-help-orig-major-mode):
7274 New buffer-local variable.
7275 (electric-help-mode): Set it to original major-mode. Doc fix.
7276 (with-electric-help): Use `electric-help-orig-major-mode' instead
7277 of (default-value 'major-mode). Doc fix.
7278 http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00069.html
7279
7280 2010-04-02 Sam Steingold <sds@gnu.org>
7281
7282 * vc-hg.el (vc-hg-push, vc-hg-pull): Use `apply' when calling
7283 `vc-hg-command' with a list of flags.
7284
7285 * progmodes/bug-reference.el (bug-reference-bug-regexp):
7286 Also accept "patch" and "RFE".
7287 (bug-reference-fontify): `bug-reference-url-format' can also be a
7288 function to be able to handle the bug kind.
7289 (turn-on-bug-reference-mode, turn-on-bug-reference-prog-mode): Add.
7290
7291 2010-04-02 Jan Djärv <jan.h.d@swipnet.se>
7292
7293 * tmm.el (tmm-get-keymap): Check with symbolp before passing
7294 value to fboundp, it may not be a symbol.
7295
7296 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
7297
7298 * cus-edit.el (custom-buffer-sort-alphabetically): Update :version.
7299
7300 2010-03-31 Juri Linkov <juri@jurta.org>
7301
7302 * simple.el (next-line, previous-line): Re-throw a signal
7303 with `signal' instead of using `ding'.
7304 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01432.html
7305
7306 2010-03-31 Juri Linkov <juri@jurta.org>
7307
7308 * simple.el (keyboard-escape-quit): Raise deselecting the active
7309 region higher than exiting the minibuffer.
7310 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00904.html
7311
7312 2010-03-31 Juri Linkov <juri@jurta.org>
7313
7314 * image.el (image-animated-p): Use `image-metadata' instead of
7315 `image-extension-data'. Get GIF extenstion data from metadata
7316 property `extension-data'.
7317
7318 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
7319
7320 * simple.el (append-to-buffer): Simplify.
7321
7322 2010-03-31 Tomas Abrahamsson <tab@lysator.liu.se>
7323
7324 * textmodes/artist.el (artist-mode): Fix typo in docstring.
7325 Reported by Alex Schröder <kensanata@gmail.com>. (Bug#5807)
7326
7327 2010-03-31 Kenichi Handa <handa@m17n.org>
7328
7329 * language/sinhala.el (composition-function-table): Fix regexp for
7330 the new Unicode specification.
7331
7332 * language/indian.el (devanagari-composable-pattern)
7333 (tamil-composable-pattern, kannada-composable-pattern)
7334 (malayalam-composable-pattern): Adjust for the new Unicode
7335 specification.
7336 (bengali-composable-pattern, gurmukhi-composable-pattern)
7337 (gujarati-composable-pattern, oriya-composable-pattern)
7338 (telugu-composable-pattern): New variables to cope with the new
7339 Unicode specification. Use them in composition-function-table.
7340
7341 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
7342
7343 Make tmm-menubar work for the Buffers menu again (bug#5726).
7344 * tmm.el (tmm-prompt): Also handle keymap entries in the form of
7345 vectors rather than cons cells, as used in menu-bar-update-buffers.
7346
7347 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
7348
7349 * progmodes/js.el (js-auto-indent-flag, js-mode-map)
7350 (js-insert-and-indent): Revert 2009-08-15 change, restoring
7351 electric punctuation for "{}();,:" (Bug#5586).
7352
7353 * mail/sendmail.el (mail-default-directory): Doc fix.
7354
7355 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
7356
7357 * mail/sendmail.el (mail-default-directory): Doc fix.
7358
7359 2010-03-31 Eli Zaretskii <eliz@gnu.org>
7360
7361 * subr.el (version-regexp-alist, version-to-list)
7362 (version-list-<, version-list-=, version-list-<=)
7363 (version-list-not-zero, version<, version<=, version=): Doc fix.
7364 (Bug#5744).
7365
7366 2010-02-31 Dan Nicolaescu <dann@ics.uci.edu>
7367
7368 * vc.el (vc-root-diff): Doc fix.
7369
7370 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
7371
7372 * vc.el (vc-print-log, vc-print-root-log): Doc fix.
7373
7374 * simple.el (append-to-buffer): Fix last change.
7375
7376 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
7377
7378 * simple.el (append-to-buffer): Ensure that point is preserved if
7379 BUFFER is the current buffer. Suggested by YAMAMOTO Mitsuharu.
7380 (Bug#5749)
7381
7382 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
7383
7384 * files.el (auto-mode-case-fold): Change default to t.
7385
7386 2010-03-30 Juri Linkov <juri@jurta.org>
7387
7388 * dired-x.el (dired-omit-mode): Doc fix.
7389
7390 2010-03-30 Juri Linkov <juri@jurta.org>
7391
7392 * replace.el (occur-accumulate-lines): Move occur-engine related
7393 functions `occur-accumulate-lines' and `occur-engine-add-prefix'
7394 to be located after `occur-engine'.
7395
7396 2010-03-30 Juri Linkov <juri@jurta.org>
7397
7398 Make occur handle multi-line matches cleanly with context.
7399 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01280.html
7400
7401 * replace.el (occur-accumulate-lines): Add optional arg `pt'.
7402 (occur-engine): Add local variables `ret', `prev-after-lines',
7403 `prev-lines'. Use more arguments for `occur-context-lines'.
7404 Set first elem of its returned list to `data', and the second elem
7405 to `prev-after-lines'. Don't print the separator line.
7406 In the end, print remaining context after-lines.
7407 (occur-context-lines): Add new arguments `begpt', `endpt',
7408 `lines', `prev-lines', `prev-after-lines'. Rewrite to combine
7409 after-lines of the previous match with before-lines of the
7410 current match and not overlap them. Return a list with two
7411 values: the output line and the list of context after-lines.
7412
7413 2010-03-30 Juri Linkov <juri@jurta.org>
7414
7415 * replace.el (occur-accumulate-lines): Fix a bug where the first
7416 context line at the beginning of the buffer was missing.
7417
7418 2010-03-30 Eli Zaretskii <eliz@gnu.org>
7419
7420 * files.el: Make bidi-display-reordering safe variable for boolean
7421 values.
7422
7423 2010-03-29 Phil Hagelberg <phil@evri.com>
7424 Chong Yidong <cyd@stupidchicken.com>
7425
7426 * subr.el: Extend progress reporters to perform "spinning".
7427 (progress-reporter-update, progress-reporter-do-update):
7428 Handle non-numeric value arguments.
7429 (progress-reporter--pulse-characters): New var.
7430
7431 2010-03-28 Chong Yidong <cyd@stupidchicken.com>
7432
7433 * progmodes/compile.el (compilation-start): Fix regexp detection
7434 of initial cd command (Bug#5771).
7435
7436 2010-03-28 Stefan Guath <stefan@automata.se> (tiny change)
7437
7438 * find-dired.el (find-dired): Use read-directory-name (Bug#5777).
7439
7440 2010-03-27 Nick Roberts <nickrob@snap.net.nz>
7441
7442 Restore GDB/MI fuctionality removed by 2009-12-29T07:15:34Z!nickrob@snap.net.nz.
7443 * progmodes/gdb-mi.el: Restore.
7444 * progmodes/gdb-ui.el: Remove.
7445 * progmodes/gud.el: Re-accommodate for gdb-mi.el.
7446
7447 2010-03-25 Glenn Morris <rgm@gnu.org>
7448
7449 * desktop.el (desktop-save-buffer-p): Don't mistakenly include
7450 all dired buffers, even tramp ones. (Bug#5755)
7451
7452 2010-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
7453
7454 Add "union tags" in mpc.el.
7455 * mpc.el: Remove backward compatibility code.
7456 (mpc-browser-tags): Change default.
7457 (mpc--find-memoize-union-tags): New var.
7458 (mpc-cmd-flush, mpc-cmd-special-tag-p): New fun.
7459 (mpc-cmd-find): Handle the case where the playlist does not exist.
7460 Handle union-tags.
7461 (mpc-cmd-list): Use mpc-cmd-special-tag-p. Handle union-tags.
7462 (mpc-cmd-add): Use mpc-cmd-flush.
7463 (mpc-tagbrowser-tag-name): New fun.
7464 (mpc-tagbrowser-buf): Use it.
7465 (mpc-songs-refresh): Use cond. Move to point-min as a fallback.
7466
7467 2010-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
7468
7469 Misc cleanup.
7470 * progmodes/make-mode.el (makefile-bsdmake-rule-action-regex):
7471 Use replace-regexp-in-string.
7472 (makefile-mode-abbrev-table): Merge defvar and define-abbrev-table.
7473 (makefile-imake-mode-syntax-table): Move init into defvar.
7474 (makefile-mode): Use define-derived-mode.
7475
7476 * progmodes/make-mode.el (makefile-rule-action-regex): Backtrack less.
7477 (makefile-make-font-lock-keywords): Adjust rule since submatch 1 may
7478 not be present any more.
7479
7480 2010-03-24 Juanma Barranquero <lekktu@gmail.com>
7481
7482 * faces.el (set-face-attribute): Fix typo in docstring.
7483 (face-valid-attribute-values): Reflow docstring.
7484
7485 2010-03-24 Glenn Morris <rgm@gnu.org>
7486
7487 * textmodes/flyspell.el (sgml-lexical-context): Autoload it (Bug#5752).
7488
7489 2010-03-24 Chong Yidong <cyd@stupidchicken.com>
7490
7491 * indent.el (indent-for-tab-command): Doc fix.
7492
7493 2010-03-24 Alan Mackenzie <acm@muc.de>
7494
7495 * progmodes/cc-engine.el (c-remove-stale-state-cache):
7496 Fix off-by-one error. Fixes bug #5747.
7497
7498 2010-03-24 Juanma Barranquero <lekktu@gmail.com>
7499
7500 * image-dired.el (image-dired-display-thumbs): Fix typo in docstring.
7501 (image-dired-read-comment): Doc fix.
7502
7503 * json.el (json-object-type, json-array-type, json-key-type)
7504 (json-false, json-null, json-read-number):
7505 * minibuffer.el (completion-in-region-functions):
7506 * calendar/cal-tex.el (cal-tex-daily-end, cal-tex-number-weeks)
7507 (cal-tex-cursor-week):
7508 * emacs-lisp/trace.el (trace-function):
7509 * eshell/em-basic.el (eshell/printnl):
7510 * eshell/em-dirs.el (eshell-last-dir-ring, eshell-parse-drive-letter)
7511 (eshell-read-last-dir-ring, eshell-write-last-dir-ring):
7512 * obsolete/levents.el (allocate-event, event-key, event-object)
7513 (event-point, event-process, event-timestamp, event-to-character)
7514 (event-window, event-x, event-x-pixel, event-y, event-y-pixel):
7515 * textmodes/reftex-vars.el (reftex-index-macros-builtin)
7516 (reftex-section-levels, reftex-auto-recenter-toc, reftex-toc-mode-hook)
7517 (reftex-cite-punctuation, reftex-search-unrecursed-path-first)
7518 (reftex-highlight-selection): Fix typos in docstrings.
7519
7520 2010-03-24 Juanma Barranquero <lekktu@gmail.com>
7521
7522 * minibuffer.el (completion-in-region-functions): Fix docstring typos.
7523
7524 2010-03-24 Glenn Morris <rgm@gnu.org>
7525
7526 * mail/rmail.el (rmail-highlight-face): Restore option deleted
7527 2008-02-13 without comment; mark it obsolete.
7528 (rmail-highlight-headers): Use rmail-highlight-face once more.
7529
7530 2010-03-24 Chong Yidong <cyd@stupidchicken.com>
7531
7532 * woman.el (woman2-process-escapes): Only consume the newline if
7533 the filler character is on a line by itself (Bug#5729).
7534
7535 2010-03-24 Kenichi Handa <handa@m17n.org>
7536
7537 * language/indian.el (devanagari-composable-pattern): Add more
7538 consonants.
7539
7540 2010-03-24 Michael Albinus <michael.albinus@gmx.de>
7541
7542 * net/trampver.el: Update release number.
7543
7544 2010-03-24 Michael Albinus <michael.albinus@gmx.de>
7545
7546 * net/tramp.el (tramp-find-executable):
7547 Use `tramp-get-connection-buffer'. Make the regexp for checking
7548 output of "wc -l" more robust.
7549 (tramp-find-shell): Use another shell but /bin/sh on OpenSolaris.
7550 (tramp-open-connection-setup-interactive-shell): Remove workaround
7551 for OpenSolaris bug, it is not needed anymore.
7552
7553 2010-03-24 Glenn Morris <rgm@gnu.org>
7554
7555 * emacs-lisp/cl-macs.el (defsubst*): Add autoload cookie. (Bug#4427)
7556
7557 2010-03-24 Wilson Snyder <wsnyder@wsnyder.org>
7558
7559 * files.el (auto-mode-alist): Accept more verilog file patterns.
7560
7561 2010-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
7562
7563 * vc-dir.el (vc-dir-headers): Abbreviate the working dir.
7564
7565 2010-03-24 Glenn Morris <rgm@gnu.org>
7566
7567 * vc-bzr.el (vc-bzr-log-edit-mode): Add --fixes support to
7568 log-edit-before-checkin-process.
7569
7570 * vc.el (vc-modify-change-comment): Pass MODE to vc-start-logentry.
7571
7572 * vc.el, vc-bzr.el, vc-hg.el (log-edit-mode): Declare.
7573
7574 * vc-dispatcher.el (vc-start-logentry): Doc fix.
7575 (log-view-process-buffer, log-edit-extra-flags): Declare.
7576
7577 * log-edit.el (log-edit-before-checkin-process): Doc fix.
7578
7579 2010-03-23 Sam Steingold <sds@gnu.org>
7580
7581 Fix bug#5620: recalculate all markers on compilation buffer
7582 modifications, not on file modifications.
7583 * progmodes/compile.el (buffer-modtime): New buffer-local variable:
7584 the buffer modification time, for buffers not associated with files.
7585 (compilation-mode): Create it.
7586 (compilation-filter): Update it.
7587 (compilation-next-error-function): Use it instead of
7588 `visited-file-modtime' for timestamp.
7589
7590 2010-03-23 Juri Linkov <juri@jurta.org>
7591
7592 Implement Occur multi-line matches.
7593 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01044.html
7594
7595 * replace.el (occur): Doc fix.
7596 (occur-engine): Set `begpt' to the beginning of the first line.
7597 Set `endpt' to the end of the last match line. At first, count
7598 line numbers between `origpt' and `begpt'. Split out code from
7599 `out-line' variable to new let-bindings `match-prefix' and
7600 `match-str'. In `out-line' add non-numeric prefix to all
7601 non-first lines of multi-line matches. Finally, count lines
7602 between `begpt' and `endpt' and add to `lines'.
7603
7604 2010-03-23 Juri Linkov <juri@jurta.org>
7605
7606 * replace.el (occur-accumulate-lines, occur-engine):
7607 Use `occur-engine-line' instead of duplicate code.
7608 (occur-engine-line): New function created from duplicate code
7609 in `occur-accumulate-lines' and `occur-engine'.
7610
7611 * replace.el (occur-engine-line): Add optional arg `keep-props'.
7612 (occur-accumulate-lines, occur-engine): Add arg `keep-props'.
7613
7614 2010-03-23 Juri Linkov <juri@jurta.org>
7615
7616 * finder.el: Remove TODO tasks.
7617
7618 * info.el (Info-finder-find-node): Add node "all"
7619 with all package info. Handle a list of multiple keywords
7620 separated by comma.
7621 (info-finder): In interactive use with a prefix argument,
7622 use `completing-read-multiple' to read a list of keywords
7623 separated by comma.
7624
7625 2010-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
7626
7627 Add a new completion style `substring'.
7628 * minibuffer.el (completion-basic--pattern): New function.
7629 (completion-basic-try-completion, completion-basic-all-completions):
7630 Use it.
7631 (completion-substring--all-completions)
7632 (completion-substring-try-completion)
7633 (completion-substring-all-completions): New functions.
7634 (completion-styles-alist): New style `substring'.
7635
7636 2010-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
7637
7638 Get rid of .elc files after removal of the corresponding .el.
7639 * Makefile.in (compile-clean): New target.
7640 (compile-main): Use it.
7641
7642 2010-03-22 Jan Djärv <jan.h.d@swipnet.se>
7643
7644 * Makefile.in (compile-main): cd to $(lisp) in a sub-shell, so we
7645 don't do make there. When compiling with separate object dir, there
7646 is no Makefile there.
7647
7648 2010-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
7649
7650 Get rid of the ELCFILES abomination, again.
7651 * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
7652 (all, compile): Don't call compile-last.
7653 (compile-main): Build the "elcfiles" list dynamically.
7654 (compile-targets): New (internal) target.
7655
7656 2010-03-21 Andreas Schwab <schwab@linux-m68k.org>
7657
7658 * Makefile.in (top_srcdir): Define.
7659 (abs_top_builddir): Define.
7660 (srcdir): Don't append `/..'.
7661 (EMACS): Use ${abs_top_builddir}.
7662 (all, compile, compile-always, compile-last): Don't set emacswd.
7663 (update-subdirs, update-authors): Use $(top_srcdir) instead of
7664 $(srcdir).
7665 (lisp): Use $(srcdir) instead of @srcdir@.
7666
7667 2010-03-21 Juri Linkov <juri@jurta.org>
7668
7669 Fix message of multi-line occur regexps and multi-buffer header lines.
7670 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00457.html
7671
7672 * replace.el (occur-1): Don't display regexp if it is longer
7673 than window-width. Use `query-replace-descr' to display regexp.
7674 (occur-engine): Don't display regexp in the buffer header for
7675 multi-buffer occur. Display a separate header line with total
7676 match count and regexp for multi-buffer occur.
7677 Use `query-replace-descr' to display regexp.
7678
7679 2010-03-20 Teodor Zlatanov <tzz@lifelogs.com>
7680
7681 * net/secrets.el: Fix parenthesis.
7682 (secrets-enabled): Fix parenthesis.
7683
7684 2010-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
7685
7686 Use more relative file and directory names.
7687 * Makefile.in (EMACS): Arrange for it to work when we chdir.
7688 (setwins, setwins_almost, setwins_for_subdirs):
7689 Don't `cd'; output relative names.
7690 (all, compile, compile-always, compile-last): Set emacswd.
7691 (custom-deps, finder-data, autoloads, update-subdirs, compile-last):
7692 Just cd to the lisp source dir so we can use relative file names.
7693
7694 * outline.el (hide-sublevels): Unfix the paren non-typo! (bug#5738).
7695
7696 2010-03-20 Glenn Morris <rgm@gnu.org>
7697
7698 * textmodes/rst.el: Use faces for font-lock customization, and make the
7699 old -face variables obsolete.
7700 (rst-block, rst-external, rst-definition, rst-directive, rst-comment)
7701 (rst-emphasis1, rst-emphasis2, rst-literal, rst-reference): New faces.
7702 (rst-block-face, rst-external-face, rst-definition-face)
7703 (rst-directive-face, rst-comment-face, rst-emphasis1-face)
7704 (rst-emphasis2-face, rst-literal-face, rst-reference-face):
7705 Make obsolete.
7706 (rst-font-lock-keywords-function): Update for above changes.
7707
7708 2010-03-20 Juri Linkov <juri@jurta.org>
7709
7710 * s-region.el:
7711 * obsolete/s-region.el: Move to obsolete.
7712
7713 2010-03-19 Juanma Barranquero <lekktu@gmail.com>
7714
7715 * vc-dispatcher.el (vc-do-command): Remove reference to `vc-path'.
7716
7717 2010-03-19 Dan Nicolaescu <dann@ics.uci.edu>
7718
7719 * vc-hooks.el (vc-path): Remove variable and obsolete declaration.
7720
7721 2010-03-19 Dan Nicolaescu <dann@ics.uci.edu>
7722
7723 Add special markup processing for commit logs.
7724 * log-edit.el (log-edit-extra-flags): New variable.
7725 (log-edit): Add new argument MODE. Use that mode when non-nil
7726 instead of the log-view-mode.
7727 (log-view-process-buffer): New function.
7728
7729 * vc.el: Document that the checkin method takes optional
7730 arguments. Document new backend specific method: log-view-mode.
7731 (vc-default-log-edit-mode): New function.
7732 (vc-checkin): Use a backend specific log-view-mode.
7733 Pass extra arguments to the checkin method.
7734 (vc-modify-change-comment): Pass a dummy extra argument.
7735
7736 * vc-dispatcher.el (vc-log-edit): Add a mode argument, pass it to
7737 log-edit.
7738 (vc-start-logentry): Add a mode argument, pass it to vc-log-edit.
7739 (vc-finish-logentry): Process the log buffer before passing it
7740 down. Pass log-edit-extra-flags.
7741
7742 * vc-bzr.el (vc-bzr-checkin): Pass extra arguments to the commit
7743 command.
7744 (log-edit-extra-flags, log-edit-before-checkin-process):
7745 New declarations.
7746
7747 * vc-hg.el (vc-hg-checkin): Pass extra arguments to the commit
7748 command.
7749 (log-edit-extra-flags, log-edit-before-checkin-process):
7750 New declarations.
7751 (vc-hg-log-edit-mode): New derived mode.
7752
7753 * vc-arch.el (vc-arch-checkin):
7754 * vc-cvs.el (vc-cvs-checkin):
7755 * vc-git.el (vc-git-checkin):
7756 * vc-mtn.el (vc-mtn-checkin):
7757 * vc-rcs.el (vc-rcs-checkin):
7758 * vc-sccs.el (vc-sccs-checkin):
7759 * vc-svn.el (vc-svn-checkin): Add an optional ignored argument.
7760
7761 2010-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
7762
7763 * outline.el (hide-sublevels): Don't hide trailing newline (and fix
7764 parent typo).
7765
7766 2010-03-19 Glenn Morris <rgm@gnu.org>
7767
7768 * password-cache.el (password-cache, password-cache-expiry): Autoload.
7769
7770 2010-03-18 Glenn Morris <rgm@gnu.org>
7771
7772 * emacs-lisp/autoload.el (autoload-rubric): Doc fix.
7773
7774 * replace.el (query-replace-history): Give it a doc string.
7775 (map-query-replace-regexp): Use query-replace-from-history-variable
7776 and query-replace-to-history-variable.
7777
7778 * mail/hashcash.el (declare-function): Remove duplicate definition.
7779
7780 * mail/emacsbug.el (report-emacs-bug-pretest-address):
7781 Make it an obsolete alias for report-emacs-bug-address.
7782 (message-strip-special-text-properties): Declare.
7783 (report-emacs-bug): Remove test for a pretest bug address.
7784 Combine message-mode-specific code.
7785
7786 * mail/supercite.el: Don't require sendmail.
7787 (mh-in-header-p): Declare rather than using with-no-warnings.
7788 (sc-no-blank-line-or-header): Use rfc822-goto-eoh rather than
7789 mail-header-end. Don't bind mysterious variable `kill-lines-magic'.
7790
7791 * calendar/cal-french.el: Convert to utf-8.
7792
7793 * files.el (interpreter-mode-alist): Use emacs-lisp-mode for
7794 Emacs scripts.
7795
7796 2010-03-16 Michael Albinus <michael.albinus@gmx.de>
7797
7798 * net/secrets.el (secrets-enabled): New variable. Use it instead
7799 of a subfeature.
7800
7801 2010-03-15 Michael Albinus <michael.albinus@gmx.de>
7802
7803 * net/secrets.el (top): Register the D-Bus signals only when the
7804 service "org.freedesktop.secrets" can be pinged.
7805 Provide subfeature `enabled'.
7806
7807 2010-03-14 Juri Linkov <juri@jurta.org>
7808
7809 Add finder unknown keywords.
7810
7811 * finder.el (finder-unknown-keywords): New function.
7812
7813 * info.el (Info-finder-find-node): Use `finder-unknown-keywords'
7814 to create a Finder node with unknown keywords.
7815
7816 2010-03-14 Juri Linkov <juri@jurta.org>
7817
7818 * finder.el (finder-compile-keywords): Replace `princ' with
7819 `prin1' on a list of symbols interned from keyword strings.
7820
7821 * emacs-lisp/lisp-mnt.el (lm-keywords-list): If `keywords' contains
7822 a comma, then split keywords using a comma and optional whitespace.
7823 Otherwise, split by whitespace.
7824
7825 * complete.el:
7826 * face-remap.el:
7827 * log-view.el:
7828 * net/hmac-def.el:
7829 * net/hmac-md5.el:
7830 * net/netrc.el:
7831 * progmodes/mixal-mode.el: Fix keywords.
7832
7833 2010-03-13 Michael Albinus <michael.albinus@gmx.de>
7834
7835 * Makefile.in (ELCFILES): Add net/secrets.elc.
7836
7837 * net/secrets.el: New file.
7838
7839 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
7840
7841 * facemenu.el (list-colors-display, list-colors-print): New arg
7842 callback. Use it to allow selecting colors.
7843
7844 * wid-edit.el (widget-image-insert): Insert image prop even if the
7845 current display is non-graphic.
7846 (widget-field-value-set): New fun.
7847 (editable-field): Use it.
7848 (widget-field-value-get): Clean up unused var.
7849 (widget-color-value-create, widget-color--choose-action):
7850 New funs. Allow using list-colors-display to choose color.
7851
7852 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
7853
7854 * cus-edit.el: Resort topmost custom groups.
7855 (custom-buffer-sort-alphabetically): Default to t.
7856 (customize-apropos): Use apropos-parse-pattern.
7857 (custom-search-field): New var.
7858 (custom-buffer-create-internal): Add custom-apropos search field.
7859 (custom-add-parent-links): Don't display parent doc.
7860 (custom-group-value-create): Don't sort top-level custom group.
7861 (custom-magic-value-create): Show visibility button before option name.
7862
7863 (custom-variable-state): New fun, from custom-variable-state-set.
7864 (custom-variable-state-set): Use it.
7865 (custom-group-value-create): Hide options with standard values
7866 using the :hidden-states property. Use progress reporter.
7867
7868 (custom-show): Simplify.
7869 (custom-visibility): Disable images by default.
7870 (custom-variable): New property :hidden-states.
7871 (custom-variable-value-create): Enable images for
7872 custom-visibility widgets. Use :hidden-states property to
7873 determine initial visibility.
7874
7875 * wid-edit.el (widget-image-find): Give images center ascent.
7876 (visibility): Add :on-image and :off-image properties.
7877 (widget-visibility-value-create): Use them.
7878
7879 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
7880
7881 * cus-edit.el (processes): Remove from development group.
7882 (oop, hypermedia): Delete group.
7883 (comm): Promote to top-level group.
7884
7885 * net/browse-url.el (browse-url):
7886 * net/xesam.el (xesam):
7887 * net/tramp.el (tramp):
7888 * net/goto-addr.el (goto-address):
7889 * net/ange-ftp.el (ange-ftp): Put in comm group.
7890
7891 * view.el (view): Remove from editing group.
7892
7893 * uniquify.el (uniquify): Put in files group.
7894
7895 * net/browse-url.el (browse-url):
7896 * ps-print.el (postscript): Put in external group.
7897
7898 * cus-edit.el (outlines):
7899 * textmodes/text-mode.el (text-mode-hook):
7900 * textmodes/table.el (table):
7901 * textmodes/picture.el (picture):
7902 * outline.el (outlines): Put in wp group.
7903
7904 * nxml/nxml-mode.el (nxml): Remove from wp group.
7905
7906 * net/tramp-imap.el (tramp-imap): Put in tramp group.
7907
7908 * mail/metamail.el (metamail): Remove from hypermedia group.
7909
7910 * cus-edit.el (abbrev):
7911 * whitespace.el (whitespace):
7912 * vcursor.el (vcursor):
7913 * reveal.el (reveal):
7914 * hl-line.el (hl-line): Put in convenience group.
7915
7916 * epg-config.el (epg): Put in data group.
7917
7918 * emulation/pc-select.el (pc-select): Put in emulations group.
7919
7920 * calculator.el (calculator): Put in applications group.
7921
7922 2010-03-12 Dan Nicolaescu <dann@ics.uci.edu>
7923
7924 Add .dir-locals.el support for file-less buffers.
7925 * files.el (hack-local-variables): Split out code to apply local
7926 variable settings ...
7927 (hack-local-variables-apply): ... here. New function.
7928 (hack-dir-local-variables): Use the default directory for when the
7929 buffer does not have an associated file.
7930 (hack-dir-local-variables-non-file-buffer): New function.
7931 * diff-mode.el (diff-mode):
7932 * vc-annotate.el (vc-annotate-mode):
7933 * vc-dir.el (vc-dir-mode):
7934 * log-edit.el (log-edit-mode):
7935 * log-view.el (log-view-mode): Call hack-dir-local-variables-non-file-buffer.
7936
7937 2010-03-12 Dan Nicolaescu <dann@ics.uci.edu>
7938
7939 Add support for shelving snapshots and for showing shelves.
7940 * vc-bzr.el (vc-bzr-shelve-show, vc-bzr-shelve-show-at-point)
7941 (vc-bzr-shelve-apply-and-keep-at-point, vc-bzr-shelve-snapshot):
7942 New functions.
7943 (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
7944 (vc-bzr-extra-menu-map): Map them.
7945
7946 2010-03-11 Glenn Morris <rgm@gnu.org>
7947
7948 * cus-edit.el (customize-changed-options-previous-release):
7949 Bump to 23.1.
7950
7951 * image.el (image-animate-max-time): Fix :version tag.
7952
7953 2010-03-10 Chong Yidong <cyd@stupidchicken.com>
7954
7955 * Branch for 23.2.
7956
7957 2010-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
7958
7959 * vc-git.el (vc-git-revision-table): Include remote branches.
7960
7961 2010-03-10 Kim F. Storm <storm@cua.dk>
7962
7963 Animated image API.
7964 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00211.html
7965
7966 * image.el (image-animate-max-time): New defcustom.
7967 (image-animated-types): New defconst.
7968 (create-animated-image, image-animate-timer)
7969 (image-animate-start, image-animate-stop, image-animate-timeout)
7970 (image-animated-p): New functions.
7971
7972 * image-mode.el (image-toggle-display-image):
7973 Replace `create-image' with `create-animated-image'.
7974
7975 2010-03-09 Miles Bader <miles@gnu.org>
7976
7977 * vc-git.el (vc-git-print-log): Use "tformat:" for shortlog,
7978 instead of "format:"; this ensures that the output is
7979 newline-terminated.
7980
7981 2010-03-08 Chong Yidong <cyd@stupidchicken.com>
7982
7983 * mail/rfc822.el (rfc822-addresses): Use nested catches to ensure
7984 that all errors are caught, and that the return value is always a
7985 list (Bug#5692).
7986
7987 2010-03-08 Kenichi Handa <handa@m17n.org>
7988
7989 * language/misc-lang.el (windows-1256): New coding system.
7990 (cp1256): New alias of windows-1256 (bug#5690).
7991
7992 2010-03-07 Andreas Schwab <schwab@linux-m68k.org>
7993
7994 * mail/rfc822.el (rfc822-addresses): Move catch clause down around
7995 call to rfc822-bad-address. (Bug#5692)
7996
7997 2010-03-07 Štěpán Němec <stepnem@gmail.com> (tiny change)
7998
7999 * vc-git.el (vc-git-annotate-extract-revision-at-line):
8000 Use vc-git-root as default directory for revision path (Bug#5657).
8001
8002 2010-03-06 Chong Yidong <cyd@stupidchicken.com>
8003
8004 * calculator.el (calculator): Don't bind split-window-keep-point
8005 (Bug#5674).
8006
8007 2010-03-06 Stefan Monnier <monnier@iro.umontreal.ca>
8008
8009 * vc-git.el: Re-flow to fit into 80 columns.
8010 (vc-git-after-dir-status-stage, vc-git-dir-status-goto-stage):
8011 Remove spurious `quote' element in each case alternative.
8012 (vc-git-show-log-entry): Use prog1.
8013 (vc-git-after-dir-status-stage): Remove unused var `remaining'.
8014
8015 2010-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
8016
8017 * man.el (Man-files-regexp): Tighten up the regexp (bug#5686).
8018
8019 2010-03-03 Chong Yidong <cyd@stupidchicken.com>
8020
8021 * macros.el (insert-kbd-macro): Look up keyboard macro using the
8022 definition, not the name (Bug#5481).
8023
8024 2010-03-03 Štěpán Němec <stepnem@gmail.com> (tiny change)
8025
8026 * subr.el (momentary-string-display): Don't overwrite the MESSAGE
8027 argument with a local variable. (Bug#5670)
8028
8029 2010-03-02 Juri Linkov <juri@jurta.org>
8030
8031 * info.el (Info-index-next): Decrement line number by 2. (Bug#5652)
8032
8033 2010-03-02 Michael Albinus <michael.albinus@gmx.de>
8034
8035 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Fix an
8036 error when FILENAME and NEWNAME are existing remote directories.
8037
8038 * net/tramp-compat.el (tramp-compat-make-temp-file): Add optional
8039 parameter DIR-FLAG.
8040
8041 2010-03-02 Glenn Morris <rgm@gnu.org>
8042
8043 * calendar/cal-hebrew.el (holiday-hebrew-passover): Fix date
8044 of Yom HaAtzma'ut when it falls on a Monday (rule changed in 2004).
8045
8046 2010-03-01 Kenichi Handa <handa@m17n.org>
8047
8048 * language/burmese.el (burmese-composable-pattern): Rename from
8049 myanmar-composable-pattern.
8050
8051 * international/characters.el (script-list):
8052 * international/fontset.el (script-representative-chars):
8053 Change myanmar to burmese.
8054 (otf-script-alist): Likewise.
8055 (setup-default-fontset): Likewise. Re-fix :otf spec.
8056
8057 2010-02-28 Katsumi Yamaoka <yamaoka@jpl.org>
8058
8059 * menu-bar.el (menu-bar-manuals-menu): Fix typo.
8060
8061 2010-02-28 Jan Djärv <jan.h.d@swipnet.se>
8062
8063 * scroll-bar.el (scroll-bar-drag-1): Add save-excursion, bug #5654.
8064
8065 2010-02-28 Michael Albinus <michael.albinus@gmx.de>
8066
8067 * net/tramp.el (tramp-handle-write-region): START can be a string.
8068 Take care in the checks. Reported by Dan Davison
8069 <davison@stats.ox.ac.uk>.
8070
8071 2010-02-28 Michael Albinus <michael.albinus@gmx.de>
8072
8073 * net/dbus.el (dbus-introspect, dbus-get-property)
8074 (dbus-set-property, dbus-get-all-properties):
8075 Use `dbus-call-method' when noninteractive. (Bug#5645)
8076
8077 2010-02-28 Chong Yidong <cyd@stupidchicken.com>
8078
8079 * textmodes/reftex-toc.el (reftex-toc-promote-prepare):
8080 * emacs-lisp/elint.el (elint-add-required-env):
8081 * calendar/icalendar.el (icalendar--add-diary-entry):
8082 * calc/calcalg2.el (math-tracing-integral):
8083 * files.el (recover-session-finish): Use with-current-buffer
8084 instead of save-excursion.
8085
8086 2010-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
8087
8088 Fix in-buffer completion when after-change-functions modify the buffer.
8089 * minibuffer.el (completion--replace): New function.
8090 (completion--do-completion): Use it and use relative movement.
8091
8092 2010-02-27 Chong Yidong <cyd@stupidchicken.com>
8093
8094 * international/fontset.el (setup-default-fontset): Fix :otf spec.
8095
8096 2010-02-27 Jeremy Whitlock <jcscoobyrs@gmail.com> (tiny change)
8097
8098 * progmodes/python.el (python-pdbtrack-stack-entry-regexp):
8099 Allow the characters _<> in the stack entry (Bug#5653).
8100
8101 2010-02-26 Kenichi Handa <handa@m17n.org>
8102
8103 * language/burmese.el: Fix entries in composition-function-table.
8104 (myanmar-composable-pattern): New variable.
8105
8106 * international/fontset.el (setup-default-fontset): Add an entry
8107 for myanmar.
8108
8109 * international/characters.el (script-list): Add Myanmar
8110 Extended-A.
8111
8112 2010-02-26 Glenn Morris <rgm@gnu.org>
8113
8114 * custom.el (custom-initialize-delay): Doc fix.
8115
8116 * mail/sendmail.el (send-mail-function): Autoload the call
8117 to custom-initialize-delay, not otherwise preserved in loaddefs.el.
8118
8119 2010-02-24 Chong Yidong <cyd@stupidchicken.com>
8120
8121 * files.el (hack-local-variables-filter): For eval forms, also
8122 check safe-local-variable-p (Bug#5636).
8123
8124 2010-02-22 Michael Albinus <michael.albinus@gmx.de>
8125
8126 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Protect
8127 setting the modes by `ignore-errors'. It might fail, for example
8128 if the file is not owned by the user but the group.
8129 (tramp-handle-write-region): Ensure, that `tmpfile' is always readable.
8130
8131 2010-02-21 Chong Yidong <cyd@stupidchicken.com>
8132
8133 * files.el (directory-listing-before-filename-regexp): Use
8134 stricter matching for iso-style dates, to avoid false matches with
8135 date-like filenames (Bug#5597).
8136
8137 * htmlfontify.el (htmlfontify): Doc fix.
8138
8139 * eshell/eshell.el (eshell): Doc fix.
8140
8141 * startup.el (fancy-about-screen): In mode-line, apply
8142 mode-line-buffer-id face only to the buffer name (Bug#5613).
8143
8144 2010-02-20 Kevin Ryde <user42@zip.com.au>
8145
8146 * progmodes/compile.el (compilation-error-regexp-alist-alist):
8147 In `watcom' anchor regexp to start of line, to avoid slowness
8148 (Bug#5599).
8149
8150 2010-02-20 Eli Zaretskii <eliz@gnu.org>
8151
8152 * subr.el (remove-yank-excluded-properties): Explain in a comment
8153 why `category' property is removed.
8154
8155 2010-02-19 Chong Yidong <cyd@stupidchicken.com>
8156
8157 * isearch.el (isearch-update-post-hook, isearch-update): Revert
8158 2010-02-17 change.
8159
8160 2010-02-19 Ulf Jasper <ulf.jasper@web.de>
8161
8162 * calendar/icalendar.el (icalendar--convert-ordinary-to-ical)
8163 (icalendar--convert-weekly-to-ical)
8164 (icalendar--convert-yearly-to-ical)
8165 (icalendar--convert-block-to-ical)
8166 (icalendar--convert-cyclic-to-ical)
8167 (icalendar--convert-anniversary-to-ical): Take care of time
8168 specifications where hour has 1-digit only (Bug#5549).
8169
8170 2010-02-19 Nick Roberts <nickrob@snap.net.nz>
8171
8172 * progmodes/gdb-ui.el (gdb-assembler-handler): Accommodate change
8173 of disassemble output in GDB 7.1.
8174
8175 2010-02-19 Glenn Morris <rgm@gnu.org>
8176
8177 * progmodes/f90.el (f90-electric-insert): Give it a delete-selection
8178 property. (Bug#5593)
8179
8180 2010-02-18 Sam Steingold <sds@gnu.org>
8181
8182 * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
8183
8184 2010-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
8185
8186 Use abbreviated file names in bookmarks (bug#5591).
8187 * bookmark.el (bookmark-maybe-load-default-file): Remove redundant
8188 calls to expand-file-name.
8189 (bookmark-relocate): Use abbreviated file names in bookmarks.
8190 (bookmark-load): Use abbreviated file names in messages.
8191
8192 2010-02-18 Michael Albinus <michael.albinus@gmx.de>
8193
8194 * net/tramp.el (tramp-handle-directory-files): When FULL, do not
8195 expand "." and "..". Reported by Thierry Volpiatto
8196 <thierry.volpiatto@gmail.com>.
8197
8198 2010-02-18 Michael Albinus <michael.albinus@gmx.de>
8199
8200 * net/tramp.el (tramp-handle-insert-file-contents): Set always the
8201 permissions of the temporary file to "0600". In case the remote
8202 file has no read permissions for the owner, there might be
8203 problems otherwise. Reported by Ole Laursen <olau@iola.dk>.
8204
8205 22010-02-18 Glenn Morris <rgm@gnu.org>
8206
8207 * emacs-lisp/authors.el (authors-renamed-files-alist):
8208 Add entries for INSTALL.CVS.
8209
8210 2010-02-17 Mark A. Hershberger <mah@everybody.org>
8211
8212 * vc-bzr.el: Fix typo in Known Bugs section.
8213
8214 * isearch.el (isearch-update-post-hook): New hook.
8215 (isearch-update): Use the new hook.
8216
8217 2010-02-16 Michael Albinus <michael.albinus@gmx.de>
8218
8219 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
8220 Fix errors in copying directories.
8221 (tramp-handle-add-name-to-file, tramp-handle-copy-directory)
8222 (tramp-do-copy-or-rename-file, tramp-handle-delete-directory)
8223 (tramp-handle-delete-file)
8224 (tramp-handle-dired-recursive-delete-directory)
8225 (tramp-handle-write-region): Flush also the cache for the upper
8226 directory.
8227
8228 2010-02-16 Chong Yidong <cyd@stupidchicken.com>
8229
8230 * simple.el (save-interprogram-paste-before-kill): Doc fix.
8231
8232 * cus-edit.el (hardware): Doc fix.
8233
8234 * man.el (man): Add to external custom group.
8235
8236 * delim-col.el (columns): Move to wp custom group.
8237
8238 * doc-view.el (doc-view): Add to data custom group.
8239
8240 * nxml/nxml-mode.el (nxml-faces): Remove from font-lock-faces group.
8241
8242 * textmodes/flyspell.el (flyspell-word): Obey the offset specified
8243 by ispell-parse-output (Bug#5575).
8244
8245 2010-02-16 Kenichi Handa <handa@m17n.org>
8246
8247 * international/ja-dic-cnv.el (iso-2022-7bit-short): Delete it.
8248 (skkdic-convert-okuri-ari): Ignore lines starting with '>'.
8249 (skkdic-convert): Use `euc-japan' coding system for writing.
8250
8251 2010-02-16 Glenn Morris <rgm@gnu.org>
8252
8253 * textmodes/tex-mode.el (tex-bibtex-file): Expand the result of
8254 tex-main-file before using it. (Bug#5562)
8255
8256 2010-02-15 Stefan Monnier <monnier@iro.umontreal.ca>
8257
8258 * emacs-lisp/advice.el (ad-compile-function): Suppress byte-compiler
8259 warnings, since it is annoying for the user to see them each time he
8260 runs the code.
8261
8262 2010-02-15 Michael Albinus <michael.albinus@gmx.de>
8263
8264 * net/tramp.el (tramp-process-actions, tramp-read-passwd):
8265 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection): Use VEC
8266 instead of PROC for caching "first-password-request". Otherwise,
8267 new processes would not profit from passwords already entered.
8268
8269 * net/tramp-cache.el (tramp-dump-connection-properties):
8270 Don't save "first-password-request" property.
8271
8272 2010-02-14 Juanma Barranquero <lekktu@gmail.com>
8273
8274 * outline.el (outline-head-from-level):
8275 * simple.el (with-wrapper-hook):
8276 * emacs-lisp/elint.el (elint-extra-errors, elint-current-buffer)
8277 (elint-defun, elint-buffer-env, elint-top-form-logged)
8278 (elint-unbound-variable):
8279 * textmodes/reftex-toc.el (reftex-toc-newhead-from-alist):
8280 Fix typos in docstrings.
8281
8282 2010-02-14 Michael Albinus <michael.albinus@gmx.de>
8283
8284 * files.el (insert-directory): When WILDCARD-REGEXP and
8285 FULL-DIRECTORY-P are nil, insert the file entry instead of the
8286 whole directory. (Bug#5551)
8287
8288 * net/ange-ftp.el (ange-ftp-insert-directory): Insert " " for
8289 dired's alignment sanity. (Bug#5516)
8290
8291 2010-02-14 Juri Linkov <juri@jurta.org>
8292
8293 * man.el (Man-fontify-manpage, Man-cleanup-manpage):
8294 Remove remaining ^H with their preceding chars. (Bug#5566)
8295
8296 2010-02-13 Glenn Morris <rgm@gnu.org>
8297
8298 * simple.el (transpose-subr): Give it a doc-string.
8299
8300 * textmodes/paragraphs.el (transpose-paragraphs, transpose-sentences):
8301 Doc fixes.
8302
8303 2010-02-12 Juri Linkov <juri@jurta.org>
8304
8305 * arc-mode.el (archive-unique-fname): Make directories for nested
8306 archives. (Bug#5540)
8307
8308 2010-02-12 Juri Linkov <juri@jurta.org>
8309
8310 * ffap.el (dired-at-point): Fix docstring. (Bug#5565)
8311
8312 2010-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
8313
8314 * subr.el (copy-overlay): Handle deleted overlays.
8315
8316 * man.el (Man-completion-table): Don't signal an error if we can't run
8317 manual-program (bug#4056).
8318
8319 2010-02-10 Juanma Barranquero <lekktu@gmail.com>
8320
8321 * textmodes/artist.el (artist-mt): Fix typos in docstring.
8322
8323 2010-02-10 Thierry Volpiatto <thierry.volpiatto@gmail.com>
8324
8325 * info.el (Info-bookmark-jump): Simplify.
8326
8327 * bookmark.el (bookmark-handle-bookmark): Catch the right error.
8328 (bookmark-default-handler): Accept new bookmark field `buffer'.
8329
8330 2010-02-10 Chong Yidong <cyd@stupidchicken.com>
8331
8332 * iswitchb.el (iswitchb-completions): Revert last change.
8333
8334 2010-02-10 Michael Albinus <michael.albinus@gmx.de>
8335
8336 * ls-lisp.el (ls-lisp-insert-directory): When WILDCARD-REGEXP and
8337 FULL-DIRECTORY-P are nil, and FILE is absolute, expand it.
8338 This prevents file names like "~/" being listed literally.
8339
8340 2010-02-10 Dan Nicolaescu <dann@ics.uci.edu>
8341
8342 * term/xterm.el (xterm-maybe-set-dark-background-mode):
8343 Remove dead code. (Bug#5546)
8344
8345 2010-02-09 Chong Yidong <cyd@stupidchicken.com>
8346
8347 * eshell/em-ls.el (eshell-ls-applicable): Frob file attributes
8348 correctly (Bug#5548).
8349
8350 2010-02-08 Jose E. Marchesi <jemarch@gnu.org>
8351
8352 * progmodes/ada-mode.el (ada-in-numeric-literal-p): New function.
8353 (ada-adjust-case): Don't adjust case in hexadecimal number literals.
8354
8355 2010-02-08 Kenichi Handa <handa@m17n.org>
8356
8357 * international/mule-util.el (with-coding-priority): Add autoload
8358 cookie for putting `lisp-indent-function'.
8359
8360 2010-02-07 Glenn Morris <rgm@gnu.org>
8361
8362 * progmodes/f90.el (f90-font-lock-keywords-1, f90-font-lock-keywords-2):
8363 Move F2003 named interfaces from keywords-2 to keywords-1, and
8364 use function-name-face rather than constant-face.
8365 Simplify "abstract interface" regexp.
8366
8367 2010-02-07 Chong Yidong <cyd@stupidchicken.com>
8368
8369 * eshell/esh-util.el (eshell-file-attributes): New optional arg
8370 ID-FORMAT. Pass it to `file-attributes'.
8371
8372 * eshell/em-ls.el (eshell-do-ls): Use it (Bug#5528).
8373
8374 2010-02-07 sj <prime.wizard+emacs@gmail.com> (tiny change)
8375
8376 * faces.el (set-face-attribute): Allow calling
8377 internal-set-lisp-face-attribute with 'unspecified family and
8378 foundry argument (Bug#5536).
8379
8380 2010-02-07 Glenn Morris <rgm@gnu.org>
8381
8382 * progmodes/f90.el (f90-font-lock-keywords-2)
8383 (f90-looking-at-type-like, f90-looking-at-program-block-end):
8384 Handle F2003 named interfaces.
8385
8386 2010-02-06 Chong Yidong <cyd@stupidchicken.com>
8387
8388 * progmodes/cc-mode.el (c-common-init): Bind temporary variables
8389 beg and end before calling c-get-state-before-change-functions.
8390
8391 2010-02-06 Dan Nicolaescu <dann@ics.uci.edu>
8392
8393 * vc-bzr.el (vc-bzr-dir-extra-headers): Disable the pending merges header.
8394
8395 2010-02-05 Juri Linkov <juri@jurta.org>
8396
8397 * doc-view.el (doc-view-mode):
8398 * image-mode.el (image-mode): Put property mode-class=special.
8399 (Bug#4896)
8400
8401 2010-02-05 Mark A. Hershberger <mah@everybody.org>
8402
8403 * vc-svn.el (vc-svn-revision-table): New function.
8404
8405 2010-02-05 Michael Albinus <michael.albinus@gmx.de>
8406
8407 * net/ange-ftp.el (ange-ftp-insert-directory):
8408 * net/tramp-imap.el (tramp-imap-handle-insert-directory):
8409 * net/tramp-smb.el (tramp-smb-handle-insert-directory):
8410 Handle also directories. (Bug#5478)
8411
8412 2010-02-05 Glenn Morris <rgm@gnu.org>
8413
8414 * progmodes/f90.el (f90-font-lock-keywords-2): Fix `enum'.
8415
8416 2010-02-05 Chong Yidong <cyd@stupidchicken.com>
8417
8418 * startup.el (command-line-1): Convert options beginning with a
8419 single dash as well (Bug#5519).
8420
8421 2010-02-05 Stefan Monnier <monnier@iro.umontreal.ca>
8422
8423 Make `initials' completion work for /hh -> /home/horn again (bug#5524).
8424 * minibuffer.el (completion-initials-expand): Only check the presence
8425 of delims *within* the boundaries, since otherwise the / delim is
8426 always found for files.
8427
8428 Fix up various corner case problems.
8429 * doc-view.el (doc-view-last-page-number): New function.
8430 (doc-view-mode, doc-view-last-page, doc-view-goto-page): Use it.
8431 (doc-view-goto-page): Avoid inf-loops when the conversion fails.
8432 (doc-view-kill-proc): Avoid inf-loop in freak cases.
8433 (doc-view-reconvert-doc): Use the new recursive delete-directory.
8434 (doc-view-convert-current-doc): Don't create the resolution.el file
8435 here any more.
8436 (doc-view-pdf/ps->png): Do it here instead.
8437 (doc-view-already-converted-p): Check that resolution.el is present.
8438 (doc-view-pdf->png): Don't rely on doc-view-pdf/ps->png for the few
8439 windows that are not yet showing images.
8440
8441 2010-02-04 Michael Albinus <michael.albinus@gmx.de>
8442
8443 * dired.el (dired-revert): If DIRED-DIRECTORY is a cons cell, call
8444 `dired-uncache' for every elemnt which is an absolute file name.
8445
8446 * net/tramp.el (tramp-handle-dired-uncache): When DIR is not a
8447 directory, handle its directory component.
8448 (tramp-handle-file-remote-p): Let-bind `tramp-verbose' to 3; this
8449 function is called permanently and creates noise, otherwise.
8450
8451 * net/tramp-imap.el (tramp-imap-handle-insert-directory):
8452 * net/tramp-smb.el (tramp-smb-handle-insert-directory):
8453 Handle the case, FILENAME is not in `default-directory'. (Bug#5478)
8454
8455 2010-02-04 David Burger <dburger@google.com> (tiny change)
8456
8457 * macros.el (apply-macro-to-region-lines):
8458 Minor simplification. (Bug#5485)
8459
8460 2010-02-04 Glenn Morris <rgm@gnu.org>
8461
8462 * mail/rmail.el (rmail-show-message-1): Handle malformed
8463 quoted-printable text. (Bug#5441)
8464
8465 * mail/mail-utils.el (mail-unquote-printable-region): Doc fix.
8466
8467 * simple.el (visual-line-mode): Capitalize lighter.
8468
8469 2010-02-03 John Wiegley <jwiegley@gmail.com>
8470
8471 * iswitchb.el (iswitchb-completions): Add bookmark files to the
8472 list of files considered for "virtual buffer" completions.
8473
8474 2010-02-03 Michael Albinus <michael.albinus@gmx.de>
8475
8476 * net/ange-ftp.el (ange-ftp-insert-directory): Parse directory
8477 also in case of (and (not full) (not wildcard)). This is needed
8478 when dired is called with a list of files, which are not in
8479 `default-directory'. (Bug#5478)
8480
8481 2010-02-03 Stefan Monnier <monnier@iro.umontreal.ca>
8482
8483 * vc-hooks.el (vc-path): Make it an obsolete var, rather than function.
8484
8485 2010-02-02 Juri Linkov <juri@jurta.org>
8486
8487 * textmodes/ispell.el (ispell-message-text-end): Remove final newline
8488 from unidiff to allow function-line after @@.
8489
8490 2010-02-02 Juri Linkov <juri@jurta.org>
8491
8492 * ediff-util.el (ediff-file-checked-in-p): Replace '(nil CVS) by
8493 '(RCS SCCS) with inverted condition.
8494
8495 2010-02-02 Michael Albinus <michael.albinus@gmx.de>
8496
8497 * net/ange-ftp.el (ange-ftp-skip-msgs): Ignore all ""^500 .*AUTH"
8498 messages.
8499
8500 2010-02-01 Juri Linkov <juri@jurta.org>
8501
8502 * arc-mode.el (archive-zip-extract): Use `member-ignore-case' to
8503 compare with "pkunzip" and "pkzip" instead of only "pkzip".
8504 In the `archive-extract-by-stdout' branch use `shell-quote-argument'
8505 only when (car archive-zip-extract) is "unzip". (Bug#5475)
8506
8507 2010-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
8508
8509 * doc-view.el (doc-view-new-window-function): Be a bit more defensive.
8510 (doc-view-revert-buffer): New command.
8511 (doc-view-mode-map): Use it.
8512
8513 2010-02-01 Dan Nicolaescu <dann@ics.uci.edu>
8514
8515 * vc-bzr.el (vc-bzr-dir-extra-headers): Add a header when a
8516 pending merge is detected.
8517
8518 2010-01-31 Juri Linkov <juri@jurta.org>
8519
8520 * progmodes/grep.el (zrgrep): Call `grep-compute-defaults' at the
8521 beginning of interactive spec like all other grep commands do.
8522 Put "all" in front of "gz". (Bug#5260)
8523
8524 2010-01-29 Dan Nicolaescu <dann@ics.uci.edu>
8525
8526 * vc-bzr.el (vc-bzr-after-dir-status): Match another renaming indicator.
8527
8528 2010-01-29 Chong Yidong <cyd@stupidchicken.com>
8529
8530 * dirtrack.el (dirtrack): Warn instead of signalling error if the
8531 regexp is incorrect (Bug#5476).
8532
8533 2010-01-29 Michael Albinus <michael.albinus@gmx.de>
8534
8535 * net/tramp.el (tramp-handle-insert-directory): Handle also
8536 symlinks, when FILENAME is not in `default-directory'.
8537
8538 2010-01-28 Michael Albinus <michael.albinus@gmx.de>
8539
8540 * net/ange-ftp.el (ange-ftp-insert-directory): Handle the case,
8541 FILE is not in `default-directory'. (Bug#5478)
8542
8543 * net/tramp.el (tramp-handle-insert-directory): Simplify handling
8544 of SWITCHES. Handle the case, FILENAME is not in
8545 `default-directory'. (Bug#5478)
8546 (tramp-register-file-name-handlers): Add safe-magic property.
8547
8548 2010-01-28 Chong Yidong <cyd@stupidchicken.com>
8549
8550 * arc-mode.el (archive-zip-extract): Quote the argument passed to
8551 unzip (Bug#5475).
8552
8553 2010-01-28 Nil Geisweiller <ngeiswei@googlemail.com> (tiny change)
8554
8555 * progmodes/flymake.el (flymake-allowed-file-name-masks)
8556 (flymake-master-make-header-init): Add other C++ filename masks.
8557 (flymake-find-possible-master-files)
8558 (flymake-check-patch-master-file-buffer): Doc fixes (Bug#5488).
8559
8560 2010-01-28 Michael Albinus <michael.albinus@gmx.de>
8561
8562 Fix some busybox annoyances.
8563
8564 * net/tramp.el (tramp-wrong-passwd-regexp): Add "Timeout, server
8565 not responding." string.
8566 (tramp-open-connection-setup-interactive-shell): Dump stty
8567 settings. Enable "neveropen" arg for all `tramp-send-command'
8568 calls. Handle "=" in variable values properly.
8569 (tramp-find-inline-encoding): Raise an error, when no encoding is
8570 found.
8571 (tramp-wait-for-output): Check, whether PROC buffer is available.
8572 Remove spurious " ^H" sequences, sent by busybox.
8573 (tramp-get-ls-command): Suppress coloring, if possible.
8574
8575 2010-01-28 Glenn Morris <rgm@gnu.org>
8576
8577 * vc-svn.el (vc-svn-update): Use "svn --non-interactive". (Bug#4280)
8578
8579 * log-edit.el (log-edit-strip-single-file-name): Add missing
8580 :safe, :group, and :version tags.
8581
8582 2010-01-27 Stephen Berman <stephen.berman@gmx.net>
8583
8584 * calendar/diary-lib.el (diary-unhide-everything): Handle narrowed
8585 buffers. (Bug#5477)
8586
8587 2010-01-27 David De La Harpe Golden <david@harpegolden.net>
8588
8589 * files.el (delete-directory): Handle moving to trash without
8590 first doing recursion (Bug#5436).
8591
8592 2010-01-26 Dan Nicolaescu <dann@ics.uci.edu>
8593
8594 * vc-hooks.el (vc-path): Mark as obsolete.
8595
8596 2010-01-25 Dan Nicolaescu <dann@ics.uci.edu>
8597
8598 * vc-annotate.el (vc-annotate-revision-at-line): Compare file
8599 names too.
8600
8601 * vc-bzr.el (vc-bzr-print-log): Use the more compact --line option
8602 for the short log.
8603 (vc-bzr-log-view-mode): Adjust regexp for the above change.
8604
8605 2010-01-25 Mark A. Hershberger <mah@everybody.org>
8606
8607 * progmodes/python.el: Replace reference to obsolete c-subword-mode.
8608
8609 * vc-bzr.el (vc-bzr-revision-table): New function.
8610
8611 2010-01-25 Eric Hanchrow <eric.hanchrow@gmail.com> (tiny change)
8612
8613 * vc-git.el (vc-git-dir-status-goto-stage): Pass --relative to the
8614 diff-index command. This requires at least git-1.5.5. (Bug#1589).
8615
8616 2010-01-24 Dan Nicolaescu <dann@ics.uci.edu>
8617
8618 Remove support for adding --signoff on commit.
8619 Future support will use an incompatible generic mechanism.
8620 * vc-git.el (vc-git-add-signoff): Remove variable.
8621 (vc-git-toggle-signoff): Remove function.
8622 (vc-git-extra-menu-map): Do not bind vc-git-toggle-signoff.
8623
8624 * term/xterm.el (xterm-maybe-set-dark-background-mode): Rename
8625 from xterm-set-background-mode. Return t if the background mode
8626 was set.
8627 (terminal-init-xterm): Move tty-set-up-initial-frame-faces
8628 earlier, call it again in case the background mode has changed.
8629
8630 2010-01-23 Dmitri Paduchikh <dpaduch@k66.ru> (tiny change)
8631
8632 * emacs-lisp/advice.el (ad-set-orig-definition): Fix typo
8633 (Bug#3541).
8634
8635 2010-01-23 Chong Yidong <cyd@stupidchicken.com>
8636
8637 * emacs-lisp/assoc.el (aelement): Doc fix.
8638 (aput, adelete, amake): Use lexical-let (Bug#5450).
8639
8640 2010-01-23 Stephen Leake <stephen_leake@member.fsf.org>
8641
8642 * progmodes/ada-mode.el (ada-in-paramlist-p): Pragma syntax
8643 is the same as subprogram call, not declaration. (Bug#5435).
8644
8645 2010-01-23 Michael Albinus <michael.albinus@gmx.de>
8646
8647 * net/tramp-smb.el (tramp-smb-conf): New defcustom.
8648 (tramp-smb-maybe-open-connection): Use it.
8649
8650 2010-01-22 Michael Albinus <michael.albinus@gmx.de>
8651
8652 * net/tramp-imap.el (top): Autoload needed packages. (Bug#5448)
8653
8654 2010-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
8655
8656 * mail/rmailmm.el (rmail-mime-handle): Don't set the buffer to unibyte
8657 just because we see "encoding: 8bit".
8658 * mail/rmail.el (rmail-show-message-1): Decode the body's QP into bytes.
8659
8660 2010-01-22 Chong Yidong <cyd@stupidchicken.com>
8661
8662 * isearch.el (isearch-allow-scroll): Doc fix (Bug#5446).
8663
8664 2010-01-22 Eli Zaretskii <eliz@gnu.org>
8665
8666 * jka-compr.el (jka-compr-load): If load-file is not in
8667 load-history, try its file-truename version. (bug#5447)
8668
8669 2010-01-21 Alan Mackenzie <acm@muc.de>
8670
8671 Fix a situation where deletion of a cpp construct throws an error.
8672 * progmodes/cc-engine.el (c-invalidate-state-cache):
8673 Before invoking c-with-all-but-one-cpps-commented-out, check that the
8674 special cpp construct is still in the buffer.
8675 (c-parse-state): Record the special cpp with markers, not numbers.
8676
8677 2010-01-21 Kenichi Handa <handa@m17n.org>
8678
8679 * textmodes/sgml-mode.el (sgml-maybe-name-self): No need to
8680 process last-command-event, as it is now decoded first (Bug#5380).
8681
8682 2010-01-20 Chong Yidong <cyd@stupidchicken.com>
8683
8684 * term.el (term-send-raw-meta): Revert 2009-12-04 change (Bug#5330).
8685
8686 2010-01-20 Glenn Morris <rgm@gnu.org>
8687
8688 * indent.el (tab-always-indent): Fix custom-type.
8689
8690 2010-01-19 Alan Mackenzie <acm@muc.de>
8691
8692 * progmodes/cc-defs.el: Fix bug#5395: typing '#' in an empty
8693 buffer throws "args out of range".
8694 (c-set-cpp-delimiters, c-clear-cpp-delimiters): Check for EOB
8695 playing the role of delimiter.
8696
8697 2010-01-18 Stephen Leake <stephen_leake@member.fsf.org>
8698
8699 * progmodes/ada-mode.el: Fix bug#5400.
8700 (ada-matching-decl-start-re): Move into ada-goto-decl-start.
8701 (ada-goto-decl-start): Rename from ada-goto-matching-decl-start; callers
8702 changed. Delete RECURSIVE parameter; never used. Improve doc string.
8703 Improve comments in "is" portion. Handle null procedure declaration.
8704 (ada-move-to-end): Improve doc string.
8705
8706 2010-01-18 Óscar Fuentes <ofv@wanadoo.es>
8707
8708 * ido.el (ido-cur-list): Initialize to nil.
8709 Remove obsolete information from commentary.
8710 (ido-choice-list): Initialize to nil.
8711 (ido-get-bufname): Reject minibuffers.
8712 (ido-make-buffer-list): If "default" is a nonexistent
8713 buffer, ignore it, as per the function's comment.
8714 (ido-kill-buffer-internal): New function.
8715 (ido-kill-buffer-at-head): Use it.
8716 (ido-visit-buffer): Likewise.
8717
8718 2010-01-18 Chong Yidong <cyd@stupidchicken.com>
8719
8720 * calendar/time-date.el (date-to-time): Doc fix (Bug#5408).
8721
8722 2010-01-18 Juanma Barranquero <lekktu@gmail.com>
8723
8724 * emacs-lisp/chart.el (chart-file-count, chart-rmail-from):
8725 Fix typos in chart titles.
8726
8727 * whitespace.el (whitespace-style, global-whitespace-newline-mode):
8728 * emacs-lisp/eieio.el (eieio-error-unsupported-class-tags)
8729 (eieio-generic-form, eieio-help-mode-augmentation-maybee, eieio-browse)
8730 (describe-class, eieio-describe-generic, describe-generic):
8731 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click)
8732 (eieio-speedbar-expand):
8733 * emulation/viper-cmd.el (viper-exec-form-in-vi)
8734 (viper-exec-form-in-emacs, viper-harness-minor-mode, viper-ESC)
8735 (viper-repeat, viper-replace-state-exit-cmd, viper-toggle-search-style)
8736 (viper-del-backward-char-in-replace, viper-backward-indent)
8737 (viper-brac-function, viper-register-to-point, viper-submit-report):
8738 * net/tramp.el (tramp-remote-coding-commands):
8739 * term/x-win.el (emacs-session-save, x-menu-bar-open, icon-map-list):
8740 Fix typos in docstrings.
8741
8742 2010-01-17 Chong Yidong <cyd@stupidchicken.com>
8743
8744 * mail/sendmail.el (mail-yank-original): Set the mark if the
8745 specified function for yanking does not do it.
8746
8747 2010-01-17 Dan Nicolaescu <dann@ics.uci.edu>
8748
8749 * vc.el (with-vc-properties): Deal with directory arguments. (Bug#5298)
8750
8751 * vc-dir.el (vc-dir-resynch-file): Update the vc-dir header when
8752 resyncing a directory.
8753
8754 2010-01-17 Stephen Leake <stephen_leake@member.fsf.org>
8755
8756 * progmodes/ada-mode.el: Fix bug#1920.
8757 (ada-ident-re): Delete ., allow multibyte characters.
8758 (ada-goto-label-re): New; matches goto labels.
8759 (ada-block-label-re): New; matches block labels.
8760 (ada-label-re): New; matches both.
8761 (ada-named-block-re): Deleted; callers changed to use
8762 `ada-block-label-re' instead.
8763 (ada-get-current-indent, ada-get-indent-noindent, ada-get-indent-loop):
8764 Use `ada-block-label-re'.
8765 (ada-indent-on-previous-lines): Improve handling of goto labels.
8766 (ada-get-indent-block-start): Special-case block label.
8767 (ada-get-indent-label): Split into `ada-indent-block-label' and
8768 `ada-indent-goto-label'.
8769 (ada-goto-stmt-start, ada-goto-next-non-ws):
8770 Optionally ignore goto labels.
8771 (ada-goto-next-word): Simplify.
8772 (ada-indent-newline-indent-conditional): Insert newline before
8773 trying to fix indentation; doc fix.
8774
8775 2010-01-17 Jay Belanger <jay.p.belanger@gmail.com>
8776
8777 * calc/calc.el (calc-command-flags): Give it an initial value.
8778
8779 2010-01-17 Juanma Barranquero <lekktu@gmail.com>
8780
8781 * files.el (minibuffer-with-setup-hook):
8782 * textmodes/artist.el (artist-mt, artist-key-undraw-continously)
8783 (artist-key-draw-continously, artist-key-do-continously-continously)
8784 (artist-key-set-point-continously, artist-mouse-draw-continously):
8785 Fix typos in docstrings.
8786
8787 2010-01-16 Lennart Borgman <lennart.borgman@gmail.com>
8788
8789 * nxml/nxml-mode.el (nxml-extend-after-change-region): Never
8790 return t (Bug#3898).
8791
8792 2010-01-16 Frédéric Perrin <frederic.perrin@resel.fr> (tiny change)
8793
8794 * vc-dispatcher.el (vc-do-command): Set LC_MESSAGES, so that we
8795 can parse the output of the external commands (Bug#5279).
8796
8797 2010-01-16 Jari Aalto <jari.aalto@cante.net>
8798
8799 * pcmpl-unix.el (pcmpl-unix-read-passwd-file): Doc fix.
8800
8801 2010-01-16 Chong Yidong <cyd@stupidchicken.com>
8802
8803 * emacs-lisp/advice.el (ad-add-advice): Doc fix (Bug#5274)
8804
8805 * emacs-lisp/cl-macs.el (defstruct): Doc fix (Bug#5267).
8806
8807 * startup.el (command-line): Remove unused --icon-type arg.
8808 Handle --display arg, passing it to command-line-1 (Bug#5392).
8809
8810 2010-01-16 Mario Lang <mlang@delysid.org>
8811
8812 * emacs-lisp/chart.el (chart-translate-namezone):
8813 * textmodes/artist.el (artist-compute-popup-menu-table):
8814 Remove duplicated words in doc-strings.
8815
8816 2010-01-15 David Abrahams <dave@boostpro.com> (tiny change)
8817
8818 * net/mairix.el (mairix-widget-send-query): Send -1 instead of nil
8819 to mairix-search to suppress threading (Bug#5342).
8820
8821 2010-01-15 Kenichi Handa <handa@m17n.org>
8822
8823 * international/mule-cmds.el (canonicalize-coding-system-name):
8824 Convert "msXXX", "ibmXXX", "windows-XXX" to "cpXXX" (Bug#5387).
8825
8826 2010-01-15 Glenn Morris <rgm@gnu.org>
8827
8828 * log-view.el (top-level): Require 'wid-edit. (Bug#5311)
8829
8830 * wid-edit.el (widget-keymap): Doc fix.
8831
8832 * vc-svn.el (vc-svn-print-log): Use --limit rather than -l since the
8833 former seems to be more widely accepted by various svn versions.
8834
8835 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
8836
8837 * find-cmd.el (find-constituents):
8838 * vc-arch.el (vc-arch-root):
8839 * window.el (window-body-height, pop-up-frames):
8840 * emacs-lisp/eieio-base.el (eieio-singleton, slot-missing):
8841 * progmodes/ada-stmt.el (ada-if):
8842 * progmodes/gdb-ui.el (gdb-jsonify-buffer):
8843 * textmodes/ispell.el (ispell-grep-options, ispell-dictionary-alist)
8844 (ispell-encoding8-command, ispell-aspell-supports-utf8)
8845 (ispell-last-program-name, ispell-help): Fix typos in docstrings.
8846
8847 * progmodes/flymake.el (flymake-post-syntax-check):
8848 Fix typo in error message.
8849
8850 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
8851
8852 * hexl.el (hexl-printable-character): Fix check of `hexl-iso',
8853 which is always a string. (Bug#5313)
8854
8855 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
8856
8857 * progmodes/ada-xref.el (ada-default-prj-properties):
8858 Simplify previous change.
8859
8860 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
8861
8862 * progmodes/ada-xref.el (ada-default-prj-properties):
8863 Default ada_project_path to $ADA_PROJECT_PATH.
8864
8865 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
8866
8867 * progmodes/ada-mode.el (ada-create-keymap):
8868 Override `narrow-to-defun' with `ada-narrow-to-defun'.
8869
8870 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
8871
8872 * progmodes/ada-mode.el: Deal with Ada 2005 "overriding" keyword.
8873 (ada-subprog-start-re, ada-imenu-subprogram-menu-re): Add keyword.
8874 (ada-get-current-indent, ada-imenu-generic-expression)
8875 (ada-which-function): Check for it.
8876
8877 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
8878
8879 * progmodes/ada-mode.el (ada-clean-buffer-before-saving): Make obsolete.
8880 (ada-mode): Don't obey `ada-clean-buffer-before-saving' anymore.
8881
8882 2010-01-14 Glenn Morris <rgm@gnu.org>
8883
8884 * frame.el (show-trailing-whitespace): Safe if boolean. (Bug#5312)
8885
8886 2010-01-14 Kenichi Handa <handa@m17n.org>
8887
8888 * composite.el (auto-composition-mode): Make it a buffer local
8889 variable (permanent-local).
8890 (auto-composition-function): Set the default value to
8891 auto-compose-chars.
8892 (auto-composition-mode): Make it a simple function, not a minor mode.
8893 (global-auto-composition-mode): Likewise.
8894 (turn-on-auto-composition-if-enabled): Delete it.
8895
8896 2010-01-13 Karl Fogel <kfogel@red-bean.com>
8897
8898 * bookmark.el (bookmark-bmenu-execute-deletions): Doc fix (Bug#5276).
8899
8900 2010-01-12 Michael Albinus <michael.albinus@gmx.de>
8901
8902 * files.el (copy-directory): Compute target for recursive
8903 directories with identical names. (Bug#5343)
8904
8905 2010-01-12 Glenn Morris <rgm@gnu.org>
8906
8907 * mail/emacsbug.el (report-emacs-bug-pretest-address): Set
8908 it to bug-gnu-emacs rather than emacs-pretest-bug.
8909
8910 2010-01-11 Sam Steingold <sds@gnu.org>
8911
8912 * imenu.el (imenu-default-create-index-function): Detect infinite
8913 loops caused by imenu-prev-index-position-function.
8914
8915 2010-01-11 Juanma Barranquero <lekktu@gmail.com>
8916
8917 * htmlfontify.el (htmlfontify-load-rgb-file)
8918 (htmlfontify-unload-rgb-file, hfy-fallback-colour-values)
8919 (htmlfontify-manual, htmlfontify, hfy-page-header, hfy-page-footer)
8920 (hfy-src-doc-link-style, hfy-src-doc-link-unstyle, hfy-link-extn)
8921 (hfy-link-style-fun, hfy-index-file, hfy-instance-file)
8922 (hfy-html-quote-regex, hfy-init-kludge-hook, hfy-post-html-hooks)
8923 (hfy-default-face-def, hfy-etag-regex, hfy-html-quote-map)
8924 (hfy-etags-cmd-alist-default, hfy-etags-bin, hfy-ignored-properties)
8925 (hfy-which-etags, hfy-etags-cmd, hfy-istext-command, hfy-display-class)
8926 (hfy-optimisations, hfy-tags-cache, hfy-tags-sortl, hfy-tags-rmap)
8927 (hfy-style-assoc, hfy-sheet-assoc, hfy-facemap-assoc, hfy-interq)
8928 (hfy-colour-vals, hfy-default-header, hfy-link-style-string)
8929 (hfy-triplet, hfy-slant, hfy-weight, hfy-combined-face-spec)
8930 (hfy-face-attr-for-class, hfy-face-to-style-i, hfy-size-to-int)
8931 (hfy-flatten-style, hfy-face-to-style, hfy-face-or-def-to-name)
8932 (hfy-face-to-css, hfy-p-to-face, hfy-p-to-face-lennart, hfy-face-at)
8933 (hfy-fontified-p, hfy-merge-adjacent-spans, hfy-buffer)
8934 (hfy-html-enkludge-buffer, hfy-html-quote, hfy-html-dekludge-buffer)
8935 (hfy-force-fontification, htmlfontify-buffer, hfy-dirname)
8936 (hfy-make-directory, hfy-text-p, hfy-mark-tag-names, hfy-relstub)
8937 (hfy-href-stub, hfy-href, hfy-mark-tag-hrefs, hfy-prepare-index-i)
8938 (hfy-prepare-index, hfy-prepare-tag-map, hfy-subtract-maps)
8939 (htmlfontify-run-etags): Fix typos in docstrings and remove superfluous
8940 backslash-quoting from parentheses, etc.
8941
8942 2010-01-11 Chong Yidong <cyd@stupidchicken.com>
8943
8944 * progmodes/js.el: Autoload javascript-mode alias.
8945
8946 2010-01-11 Juanma Barranquero <lekktu@gmail.com>
8947
8948 * ffap.el (ffap-shell-prompt-regexp, ffap-all-subdirs, ffap-url-p)
8949 (ffap-alist, ffap-tex-path, ffap-url-at-point, ffap-gopher-regexp)
8950 (ffap-gopher-at-point, ffap-file-at-point, ffap-read-file-or-url)
8951 (ffap-read-url-internal, ffap-menu, ffap-at-mouse):
8952 Fix typos in docstrings.
8953 (ffap-url-regexp): Doc fix.
8954 (ffap-at-mouse): Fix typo in message.
8955
8956 2010-01-11 Glenn Morris <rgm@gnu.org>
8957
8958 * version.el (emacs-copyright): Set copyright year to 2010.
8959
8960 2010-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
8961
8962 * format.el (format-annotate-function): Only set
8963 write-region-post-annotation-function after running to-fn so as not to
8964 affect nested write-region calls (bug#5273).
8965
8966 2010-01-10 Chong Yidong <cyd@stupidchicken.com>
8967
8968 * Makefile.in (ELCFILES): Add wisent/python-wy.el and
8969 wisent/python.el.
8970
8971 2010-01-09 Chong Yidong <cyd@stupidchicken.com>
8972
8973 * man.el (Man-goto-section): Signal error if the section is not
8974 found (Bug#5317).
8975
8976 2010-01-09 Juanma Barranquero <lekktu@gmail.com>
8977
8978 * vc-bzr.el (vc-bzr-working-revision): On Windows and MS-DOS, accept
8979 URLs with a leading triple slash in the file: scheme. (Bug#5345)
8980
8981 2010-01-09 Chong Yidong <cyd@stupidchicken.com>
8982
8983 * progmodes/compile.el: Don't treat compile-command as safe if
8984 compilation-read-command might be nil (Bug#4218).
8985
8986 2010-01-09 Jan Djärv <jan.h.d@swipnet.se>
8987
8988 * startup.el (command-line-1): Use orig-argi to check for ignored X and
8989 NS options.
8990
8991 2010-01-08 Kenichi Handa <handa@m17n.org>
8992
8993 * international/fontset.el (build-default-fontset-data):
8994 Exclude characters in scripts kana, hangul, han, or cjk-misc.
8995
8996 2010-01-07 Juanma Barranquero <lekktu@gmail.com>
8997
8998 * vc-dir.el (vc-dir-prepare-status-buffer): Pass a (fake) filename
8999 to `create-file-buffer' as it expects, not just a buffer name.
9000 (vc-dir-mode): Include the buffer name in `list-buffers-directory',
9001 to help uniquify. (Bug#3224)
9002
9003 2010-01-06 Jan Djärv <jan.h.d@swipnet.se>
9004
9005 * font-setting.el (font-setting-change-default-font): Use user-spec
9006 instead of name.
9007
9008 2010-01-06 Dan Nicolaescu <dann@ics.uci.edu>
9009
9010 * vc-bzr.el (vc-bzr-after-dir-status): Ignore pending merges.
9011
9012 2010-01-05 Tom Tromey <tromey@redhat.com>
9013
9014 * progmodes/python.el (python-font-lock-keywords):
9015 Handle qualified decorators (Bug#881).
9016
9017 2010-01-05 Dan Nicolaescu <dann@ics.uci.edu>
9018
9019 * vc-bzr.el (vc-bzr-working-revision): Fix looking for a revision
9020 in a lightweight checkout.
9021
9022 2010-01-05 Kenichi Handa <handa@m17n.org>
9023
9024 * language/indian.el (malayalam-composable-pattern): Fix ZWNJ and ZWJ.
9025
9026 2010-01-05 Dan Nicolaescu <dann@ics.uci.edu>
9027
9028 * vc-bzr.el (vc-bzr-diff): Obey vc-disable-async-diff.
9029
9030 2010-01-04 Dan Nicolaescu <dann@ics.uci.edu>
9031
9032 * vc-bzr.el (vc-bzr-state-heuristic): Make it work for lightweight
9033 checkouts. (Bug#618)
9034 (vc-bzr-log-view-mode): Also highlight the author.
9035 (vc-bzr-shelve-map): Change binding for vc-bzr-shelve-apply-at-point.
9036 (vc-bzr-shelve-menu-map):
9037 (vc-bzr-dir-extra-headers): Improve menu and tooltip text.
9038 (vc-bzr-shelve-apply): Make prompt more explicit.
9039
9040 2010-01-02 Chong Yidong <cyd@stupidchicken.com>
9041
9042 * net/browse-url.el (browse-url-encode-url): Don't escape commas.
9043 They are valid characters in URL paths (rfc3986), and at least
9044 Firefox does not understand the encoded version (Bug#3166).
9045
9046 2010-01-02 Daniel Elliott <danelliottster@gmail.com> (tiny change)
9047
9048 * progmodes/octave-mod.el (octave-end-keywords)
9049 (octave-block-begin-or-end-regexp, octave-block-match-alist):
9050 Add "end" keyword (Bug#3061).
9051 (octave-end-as-array-index-p): New function.
9052 (calculate-octave-indent): Use it.
9053
9054 2010-01-02 Karl Fogel <kfogel@red-bean.com>
9055
9056 * bookmark.el: Consistently put the text property on the bookmark name.
9057 (bookmark-bmenu-marks-width): Bump back to 2, to include
9058 annotation marks.
9059 (bookmark-bmenu-hide-filenames): Adjust for above, and put the text
9060 property on the bookmark name, instead of not putting it at all.
9061 (bookmark-bmenu-list): Fix where we put the text property.
9062
9063 2010-01-02 Karl Fogel <kfogel@red-bean.com>
9064
9065 * bookmark.el (bookmark-bmenu-save): Just depend on the new logic
9066 for showing buffer modified state (as added in the previous change).
9067
9068 2010-01-02 Karl Fogel <kfogel@red-bean.com>
9069
9070 * bookmark.el: Show modified state of bookmark buffer more accurately.
9071 (bookmark-bmenu-list): Initialize buffer-modified-p properly.
9072 (bookmark-send-edited-annotation): Mark bookmark-alist as modified.
9073 (with-buffer-modified-unmodified): New macro.
9074 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
9075 (bookmark-bmenu-mark, bookmark-bmenu-unmark, bookmark-bmenu-delete):
9076 Use new macro to preserve the buffer modified state.
9077
9078 2010-01-02 Karl Fogel <kfogel@red-bean.com>
9079
9080 * bookmark.el (bookmark-bmenu-select, bookmark-bmenu-1-window)
9081 (bookmark-bmenu-2-window, bookmark-bmenu-this-window)
9082 (bookmark-bmenu-other-window, bookmark-bmenu-switch-other-window)
9083 (bookmark-bmenu-show-annotation, bookmark-bmenu-edit-annotation)
9084 (bookmark-bmenu-rename, bookmark-bmenu-locate)
9085 (bookmark-bmenu-relocate, bookmark-bmenu-goto-bookmark):
9086 Remove unnecessary calls to `bookmark-bmenu-ensure-position'.
9087
9088 2010-01-02 Eli Zaretskii <eliz@gnu.org>
9089
9090 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
9091 Make the lines in the generated doc string shorter. (Bug#4668)
9092
9093 2010-01-02 Ryan Yeske <rcyeske@gmail.com>
9094
9095 * net/rcirc.el: Add follow-link binding (Bug#4738).
9096
9097 2010-01-02 Eli Zaretskii <eliz@gnu.org>
9098
9099 * Makefile.in (bzr-update): Rename from cvs-update.
9100 (cvs-update): New target for backward compatibility.
9101
9102 * makefile.w32-in (bzr-update): Rename from cvs-update.
9103 (cvs-update): New target for backward compatibility.
9104
9105 2010-01-02 Karl Fogel <kfogel@red-bean.com>
9106
9107 * bookmark.el: Remove gratuitous gratitude.
9108
9109 2010-01-02 Karl Fogel <kfogel@red-bean.com>
9110
9111 * bookmark.el (bookmark-bmenu-any-marks): New function.
9112 (bookmark-bmenu-save): Clear buffer modification if no marks.
9113
9114 2010-01-02 Karl Fogel <kfogel@red-bean.com>
9115
9116 * bookmark.el (bookmark-bmenu-marks-width): Define to 1, not 2.
9117 (bookmark-bmenu-list, bookmark-bmenu-bookmark): Calculate property
9118 positions by using `bookmark-bmenu-marks-width', instead of hardcoding.
9119 This fixes the `bookmark-bmenu-execute-deletions' bug reported here:
9120
9121 http://lists.gnu.org/archive/html/emacs-devel/2009-12/msg00819.html
9122 From: Sun Yijiang <sunyijiang {_AT_} gmail.com>
9123 To: emacs-devel {_AT_} gnu.org
9124 Subject: bookmark.el bug report
9125 Date: Mon, 28 Dec 2009 14:19:16 +0800
9126 Message-ID: 5065e2900912272219y3734fc9fsdaee41167ef99ad7@mail.gmail.com
9127
9128 2010-01-02 Karl Fogel <kfogel@red-bean.com>
9129
9130 * bookmark.el: Improvements suggested by Drew Adams:
9131 (bookmark-bmenu-ensure-position): New name for
9132 `bookmark-bmenu-check-position'. Just ensure the position,
9133 don't return any meaningful value.
9134 (bookmark-bmenu-header-height, bookmark-bmenu-marks-width):
9135 New constants.
9136
9137 2010-01-02 Juanma Barranquero <lekktu@gmail.com>
9138
9139 * bookmark.el (bookmarks-already-loaded): Doc fix (don't use `iff').
9140 (bookmark-yank-point, bookmark-bmenu-check-position):
9141 Fix typos in docstrings.
9142 (bookmark-save-flag, bookmark-bmenu-toggle-filenames)
9143 (bookmark-name-from-full-record, bookmark-get-position)
9144 (bookmark-set-position, bookmark-set, bookmark-handle-bookmark)
9145 (bookmark-delete, bookmark-save, bookmark-save, bookmark-bmenu-mode):
9146 Remove useless quoting of parenthesis, etc. in docstrings.
9147
9148 * ediff-mult.el (ediff-prepare-meta-buffer): Fix typo in help message.
9149 (ediff-append-custom-diff): Fix typo in error message.
9150 (ediff-meta-mark-equal-files): Fix typos in messages.
9151
9152 * mpc.el (mpc-playlist-delete): Fix typo in error messages.
9153
9154 * net/imap-hash.el (imap-hash-make): Doc fix.
9155 (imap-hash-test): Fix typo in error message; reflow docstring.
9156 (imap-hash-p, imap-hash-get, imap-hash-put, imap-hash-make-message)
9157 (imap-hash-count, imap-hash-server, imap-hash-port, imap-hash-ssl)
9158 (imap-hash-mailbox, imap-hash-user, imap-hash-password):
9159 Fix typos in docstrings.
9160 (imap-hash-open-connection): Fix typo in error message.
9161
9162 * play/gomoku.el (gomoku): Fix typos in docstring.
9163
9164 * progmodes/gdb-ui.el (gdb-location-alist): Reflow docstring.
9165 (gdb-jsonify-buffer): Fix typos in docstring.
9166 (gdb-goto-breakpoint): Fix typo in error message.
9167 ("Display Other Windows"): Fix typo in help message.
9168 (gdb-speedbar-expand-node): Fix typo in question.
9169
9170 * progmodes/idlw-help.el (idlwave-help-browse-url-available)
9171 (idlwave-html-system-help-location, idlwave-html-help-location)
9172 (idlwave-help-browser-function, idlwave-help-browser-generic-program)
9173 (idlwave-help-browser-generic-args, idlwave-help-directory)
9174 (idlwave-html-help-is-available, idlwave-help-mode-line-indicator)
9175 (idlwave-help-mode-map, idlwave-help-mode, idlwave-do-context-help)
9176 (idlwave-online-help, idlwave-help-html-link)
9177 (idlwave-help-show-help-frame, idlwave-help-assistant-command):
9178 Fix typos in docstrings.
9179 (idlwave-help-with-source, idlwave-help-find-routine-definition):
9180 Reflow docstrings.
9181 (idlwave-help-assistant-start): Fix typo in error message.
9182
9183 * progmodes/octave-mod.el (octave-mode, octave-electric-semi)
9184 (octave-electric-space): Fix typos in docstrings.
9185
9186 2010-01-01 Chong Yidong <cyd@stupidchicken.com>
9187
9188 * files.el (minibuffer-with-setup-hook): Doc fix (Bug#5149).
9189
9190 2010-01-01 Juri Linkov <juri@jurta.org>
9191
9192 * comint.el (comint-input-ring-size): Make it a defcustom and
9193 increase the default to 500 (Bug#5148).
9194
9195 2009-12-31 Nick Roberts <nickrob@snap.net.nz>
9196
9197 Further changes from EMACS_23_1_RC branch (2009-12-29 contd).
9198 * term/x-win.el (x-gtk-stock-map): Map some GUD buttons.
9199 * progmodes/gud.el (gud-menu-map): Add reverse-execution commands.
9200
9201 2009-12-30 Nick Roberts <nickrob@snap.net.nz>
9202
9203 Show working revision correctly for mercurial.
9204 * vc-hg.el (vc-hg-working-revision): Use hg parent instead of
9205 hg log as suggested by Alex Harsanyi <alexharsanyi@gmail.com>.
9206
9207 2009-12-29 Juanma Barranquero <lekktu@gmail.com>
9208
9209 Declare some functions for the byte-compiler.
9210 * progmodes/gdb-ui.el (speedbar-change-initial-expansion-list)
9211 (speedbar-timer-fn, speedbar-change-expand-button-char)
9212 (speedbar-delete-subblock, speedbar-center-buffer-smartly): Declare.
9213
9214 2009-12-29 Nick Roberts <nickrob@snap.net.nz>
9215
9216 This changeset reverts GDB Graphical Interface to use annotations.
9217 * progmodes/gdb-ui.el, progmodes/gud.el: Import from EMACS_23_1_RC.
9218
9219 2009-12-29 Dan Nicolaescu <dann@ics.uci.edu>
9220
9221 Make vc-dir work on subdirectories of the bzr root.
9222 * vc-bzr.el (vc-bzr-after-dir-status): Add new argument. Return
9223 file names relative to it.
9224 (vc-bzr-dir-status, vc-bzr-dir-status-files): Pass the bzr root
9225 relative directory to vc-bzr-after-dir-status.
9226
9227 2009-12-28 Tassilo Horn <tassilo@member.fsf.org>
9228
9229 * font-lock.el (font-lock-refresh-defaults): New function, which
9230 can be used to let font-lock react to external changes in
9231 variables like font-lock-defaults and keywords.
9232 See http://thread.gmane.org/gmane.emacs.devel/118777/focus=118802
9233
9234 2009-12-28 Dan Nicolaescu <dann@ics.uci.edu>
9235
9236 * vc-rcs.el (vc-rcs-register): Fix registering a specific version.
9237
9238 * vc-bzr.el (vc-bzr-log-view-mode): Fix short log regexp.
9239
9240 2009-12-28 Juanma Barranquero <lekktu@gmail.com>
9241
9242 Supersede color.diff settings in git log (bug#5211).
9243
9244 * vc-git.el (vc-git-print-log): Pass "--no-color" to log to avoid
9245 escape chars in its output when the user has color.diff set to `always'.
9246 This fix works on git 1.4.2 and newer (released on 2006-08-13).
9247
9248 2009-12-26 Kevin Ryde <user42@zip.com.au>
9249
9250 * info-look.el (sh-mode): Look for coreutils new "Concept Index"
9251 node. Keep previous "Index" name to work with past coreutils too.
9252
9253 * man.el (man): Revise docstring a bit to show -a and -l as
9254 examples. Add -k description since support for it has otherwise
9255 been a secret. (Further to bug#3717.)
9256 (Man-bgproc-sentinel): When "-k foo" produces no output show error
9257 "no matches" rather than "Can't find manpage", as the latter reads
9258 like -k was interpreted as a page name, which is not so. (Bug#5431)
9259
9260 2009-12-26 Michael Albinus <michael.albinus@gmx.de>
9261
9262 * net/tramp.el (tramp-handle-insert-directory): Quote "'" in the
9263 switches. Check also for //SUBDIRED// line.
9264
9265 2009-12-25 Kenichi Handa <handa@m17n.org>
9266
9267 * language/indian.el (devanagari-composable-pattern): Fixed to
9268 handle ZWNJ and ZWJ. Use it in composition-function-table for
9269 Devanagari.
9270 (malayalam-composable-pattern): Fix previous change.
9271
9272 2009-12-23 Vinicius Jose Latorre <viniciusjl@ig.com.br>
9273
9274 * ps-print.el (ps-face-attributes): It was not returning the
9275 attribute face for faces specified as string. Reported by harven
9276 <harven@free.fr>. (Bug#5254)
9277 (ps-print-version): New version 7.3.5.
9278
9279 2009-12-18 Ulf Jasper <ulf.jasper@web.de>
9280
9281 * calendar/icalendar.el (icalendar--convert-tz-offset):
9282 Fix timezone names.
9283 (icalendar--convert-tz-offset): Fix the "last-day-problem".
9284 (icalendar--add-diary-entry): Remove the trailing blank that
9285 diary-make-entry inserts.
9286
9287 2009-12-17 Michael Albinus <michael.albinus@gmx.de>
9288
9289 Make `file-expand-wildcards' work for remote files.
9290
9291 * files.el (file-expand-wildcards): In case of remote files, check
9292 only local file name part for wildcards. Provide feature 'files
9293 and subfeature 'remote-wildcards. (Bug#5198)
9294
9295 * net/tramp.el (tramp-handle-file-remote-p): Expand file name only
9296 if there is already an established connection.
9297 (tramp-advice-file-expand-wildcards): Remove it.
9298
9299 * net/tramp-compat.el (top): Autoload `tramp-handle-file-remote-p'.
9300 (tramp-advice-file-expand-wildcards): Move from tramp.el.
9301 Activate advice for older GNU Emacs versions. (Bug#5237)
9302
9303 2009-12-17 Juanma Barranquero <lekktu@gmail.com>
9304
9305 Some doc fixes (more needed).
9306
9307 * find-cmd.el (find-constituents): Reflow docstring.
9308 (find-cmd, find-prune, find-command): Fix typos in docstrings.
9309 (find-generic): Doc fix.
9310
9311 2009-12-17 Juri Linkov <juri@jurta.org>
9312
9313 Fix regression from 23.1 to allow multiple modes in Local Variables.
9314
9315 * files.el (hack-local-variables-filter): While ignoring duplicates,
9316 don't take `mode' into account.
9317 (hack-local-variables-filter, hack-dir-local-variables):
9318 Don't remove duplicate `mode' from local-variables-alist (like `eval').
9319
9320 2009-12-17 Juri Linkov <juri@jurta.org>
9321
9322 Make `dired-diff' safer. (Bug#5225)
9323
9324 * dired-aux.el (dired-diff): Signal an error when `file' equals to
9325 `current' or when `file' is a directory of the `current' file.
9326
9327 2009-12-17 Andreas Schwab <schwab@linux-m68k.org>
9328
9329 * emacs-lisp/autoload.el (batch-update-autoloads): Only exclude
9330 unconditionally preloaded files.
9331
9332 2009-12-16 Juri Linkov <juri@jurta.org>
9333
9334 Revert to old 23.1 logic of using the file at the mark as default.
9335 * dired-aux.el (dired-diff): Use the file at the mark as default
9336 if it's not the same as the current file, and the target dir is
9337 the current dir or the mark is active. Add the current file
9338 as the arg of `dired-dwim-target-defaults'. Use the default file
9339 in the prompt. (Bug#5225)
9340
9341 2009-12-15 Michael Albinus <michael.albinus@gmx.de>
9342
9343 * net/tramp.el (tramp-echo-mark-marker-length): New defconst.
9344 (tramp-echo-mark, tramp-echoed-echo-mark-regexp): Use it.
9345 (tramp-check-for-regexp): Check also, when an echoing shell stops
9346 to echo sent commands.
9347
9348 2009-12-14 Chong Yidong <cyd@stupidchicken.com>
9349
9350 * Makefile.in: Revert last change (Bug#5191).
9351
9352 2009-12-14 Dan Nicolaescu <dann@ics.uci.edu>
9353
9354 * vc-hg.el (vc-hg-print-log): Fix argument order.
9355 (vc-hg-working-revision): Make sure the command is executed in a
9356 known environment so that we can parse the output. (Bug#4417)
9357
9358 2009-12-14 Chong Yidong <cyd@stupidchicken.com>
9359
9360 * progmodes/python.el (python-symbol-completions): Remove text
9361 properties from symbol string before calling python-send-receive.
9362
9363 2009-12-14 Nick Roberts <nickrob@snap.net.nz>
9364
9365 * progmodes/gdb-mi.el (gdb-frame-handler): Only set gud-lat-frame
9366 when there are values for both file and line. (Bug#5060)
9367
9368 2009-12-14 Juri Linkov <juri@jurta.org>
9369
9370 * ediff-ptch.el (ediff-context-diff-label-regexp): Don't match
9371 whitespace after the file name of the first line of unified format,
9372 because git-diff doesn't output whitespace and file modification time
9373 after the file name.
9374
9375 2009-12-14 David Kastrup <dak@gnu.org>
9376
9377 * info.el (Info-hide-cookies-node): Before hiding a cookie,
9378 check if it already has the `display' property added by
9379 `Info-display-images-node', and not put the `invisible' property
9380 in this case.
9381
9382 2009-12-13 Glenn Morris <rgm@gnu.org>
9383
9384 * mail/emacsbug.el (message-sort-headers): Define for compiler.
9385 (report-emacs-bug): In message-mode, sort manually before storing
9386 original report text. (Bug#5178)
9387 Remove superfluous save-excursion.
9388
9389 2009-12-12 Michael Albinus <michael.albinus@gmx.de>
9390
9391 * net/dbus.el (dbus-property-handler): Filter lambda forms out
9392 when responding to "GetAll" properties.
9393
9394 2009-12-12 Chong Yidong <cyd@stupidchicken.com>
9395
9396 * simple.el (compose-mail): Remove mail-setup-with-from from
9397 customization checks.
9398
9399 2009-12-12 Eli Zaretskii <eliz@gnu.org>
9400
9401 * arc-mode.el (archive-rar-summarize): Support Attribute fields in
9402 RAR archives created on Unix systems.
9403
9404 2009-12-12 Stefan Monnier <monnier@iro.umontreal.ca>
9405
9406 * minibuffer.el (minibuffer-local-must-match-filename-map): Re-instate
9407 the varalias that was accidentally removed by the 2009-11-19 change
9408 (bug#5186).
9409
9410 2009-12-12 Kenichi Handa <handa@m17n.org>
9411
9412 * language/indian.el (indian-compose-regexp): New function.
9413 (malayalam-composable-pattern): Fix the pattern.
9414 (composition-function-table): Set malayalam-composable-pattern for
9415 Malayalam characters.
9416
9417 2009-12-11 Chong Yidong <cyd@stupidchicken.com>
9418
9419 * progmodes/bug-reference.el (bug-reference-map): Bind mouse-2
9420 rather than down-mouse-1, based on follow-link conventions.
9421
9422 * makefile.w32-in: Ensure that Lisp files in CEDET subdirectories
9423 are compiled.
9424
9425 2009-12-11 Michael McNamara <mac@mail.brushroad.com>
9426
9427 * progmodes/verilog-mode.el (verilog-vmm-begin-re, verilog-vmm-end-re)
9428 (verilog-vmm-statement-re, verilog-ovm-statement-re)
9429 (verilog-defun-level-not-generate-re, verilog-calculate-indent)
9430 (verilog-leap-to-head, verilog-backward-token):
9431 Fix indenting VMM macros. Reported by Jonathan Ashbrook.
9432
9433 2009-12-11 Wilson Snyder <wsnyder@wsnyder.org>
9434
9435 * progmodes/verilog-mode.el (verilog-auto-lineup)
9436 (verilog-nameable-item-re): Cleanup user-visible spelling and
9437 documentation errors. One reported by Gary Delp.
9438 (verilog-submit-bug-report): Mention bug tracking and CC co-author.
9439 (verilog-read-decls): Fix AUTOWIRE with types declared in a
9440 package, bug195. Reported by Pierre-David Pfister.
9441
9442 2009-12-11 Glenn Morris <rgm@gnu.org>
9443
9444 * progmodes/cc-engine.el (safe-pos-list): Define for compiler.
9445
9446 * mail/emacsbug.el: No longer require sendmail.
9447 Replace sendmail's `mail-text' by `rfc822-goto-eoh'. (Bug#5174)
9448 (report-emacs-bug-orig-text): Doc fix.
9449 (report-emacs-bug-send-command, report-emacs-bug-send-hook):
9450 New local variables, to adapt to different mail-user-agents.
9451 (report-emacs-bug): Fix test for a gnu.org address.
9452 Use overlays for emphasis, since font-lock defeats 'face property.
9453 Pretest bugs also end up at the newsgroup these days.
9454 Stop message-mode stripping text properties.
9455 Set and use the new buffer-local variables.
9456 (report-emacs-bug-hook): Add doc-string.
9457 Remove some unnecessary save-excursions and simplify.
9458 Use the appropriate hook and send-command.
9459
9460 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Standardize the
9461 capitalization of some menu entries.
9462
9463 2009-12-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
9464
9465 * whitespace.el (whitespace-display-char-on):
9466 Ensure `buffer-display-table' is unique when two or more windows are
9467 visible. Reported by Martin Pohlack <mp26@os.inf.tu-dresden.de>.
9468 New version 12.1.
9469
9470 2009-12-10 Eli Zaretskii <eliz@gnu.org>
9471
9472 * arc-mode.el (archive-rar-summarize): Allow between 6 and 7
9473 characters in the Attribute field.
9474
9475 2009-12-10 Dan Nicolaescu <dann@ics.uci.edu>
9476
9477 * vc-svn.el (vc-svn-after-dir-status): Fix regexp. (Bug#4741)
9478
9479 2009-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
9480
9481 Let loaddefs.el adjust to changes in autoload-excludes (bug#5162).
9482 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
9483 Disregard autoload-excludes.
9484 (update-directory-autoloads): Obey autoload-excludes here instead.
9485 But don't store its contents in no-autoloads and remove entries that
9486 refer to excludes files.
9487
9488 2009-12-10 Glenn Morris <rgm@gnu.org>
9489
9490 * mail/feedmail.el (top-level): Move require 'mail-utils to start.
9491 (expand-mail-aliases): Define for compiler.
9492
9493 * vc-annotate.el (log-view-vc-backend, log-view-vc-fileset):
9494 Define for compiler.
9495
9496 * mail/emacsbug.el (report-emacs-bug): Use whichever send command is
9497 appropriate for the mail-user-agent in use.
9498
9499 2009-12-09 Michael Albinus <michael.albinus@gmx.de>
9500
9501 * net/tramp.el (tramp-handle-insert-directory): Suppress error messages.
9502
9503 2009-12-09 Dan Nicolaescu <dann@ics.uci.edu>
9504
9505 Fix short log parsing and fontification.
9506 * vc-bzr.el (vc-bzr-log-view-mode): Match dot in revision number.
9507 Fix fontification for the [merge] label.
9508
9509 2009-12-09 Vivek Dasmohapatra <vivek@etla.org>
9510
9511 Drop some properties to avoid surprises (bug#5002).
9512 * htmlfontify.el (hfy-ignored-properties): New defcustom.
9513 (hfy-fontify-buffer): Use it.
9514
9515 2009-12-09 Stefan Monnier <monnier@iro.umontreal.ca>
9516
9517 Minor cleanup.
9518 * ffap.el (ffap-symbol-value): Replace ffap-soft-value.
9519 Adjust all callers.
9520 (ffap-locate-file): Remove unused arg `dir-ok' and make other
9521 args compulsory. Adjust callers.
9522 (ffap-gopher-at-point): Remove unused var `name'.
9523
9524 Get rid of the ELCFILES abomination.
9525 * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
9526 (compile-elcfiles): New phony target.
9527 (compile-main): Compute ELCFILES dynamically.
9528 (compile-clean): New target to remove left-over elc files.
9529 (compile, all): Use it.
9530
9531 2009-12-09 Kenichi Handa <handa@etlken>
9532
9533 * international/mule-diag.el: Require help-mode instead of help-fns.
9534
9535 2009-12-09 Kenichi Handa <handa@m17n.org>
9536
9537 * international/mule-cmds.el (ucs-names): Supply sufficiently
9538 fine ranges instead of pre-calculating accurate ranges.
9539 Iterate with bigger gc-cons-threshold.
9540
9541 2009-12-08 Dan Nicolaescu <dann@ics.uci.edu>
9542
9543 Add support for stashing a snapshot of the current tree.
9544 * vc-git.el (vc-git-stash-snapshot): New function.
9545 (vc-git-stash-map, vc-git-extra-menu-map): Add a mapping for it.
9546
9547 2009-12-08 Jose E. Marchesi <jemarch@gnu.org>
9548
9549 * play/gomoku.el (gomoku-mode-map): Remap `move-(beginning|end)-of-line'
9550 instead of `(beginning|end)-of-line'.
9551
9552 2009-12-08 Glenn Morris <rgm@gnu.org>
9553
9554 * vc-mtn.el (vc-mtn-print-log): Fix typo in previous.
9555
9556 * Makefile.in (ELCFILES): Regenerate.
9557
9558 2009-12-07 Juri Linkov <juri@jurta.org>
9559
9560 Don't lazy-highlight the comint output in history Isearch mode.
9561
9562 * comint.el (comint-history-isearch-search): Instead of
9563 `comint-line-beginning-position', use `comint-after-pmark-p'
9564 to check if point if before the process mark, and go to
9565 `process-mark' in this case.
9566
9567 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
9568
9569 * textmodes/tex-mode.el (latex-complete)
9570 (latex-indent-or-complete): Remove.
9571 (latex-mode): Set completion-at-point-functions instead.
9572
9573 Provide a standard completion command and hook it into TAB.
9574 * minibuffer.el (completion-at-point-functions): New var.
9575 (completion-at-point): New command.
9576 * indent.el (indent-for-tab-command): Handle the `complete' behavior.
9577 * progmodes/python.el (python-mode-map): Use completion-at-point.
9578 (python-completion-at-point): Rename from python-partial-symbol and
9579 adjust for use in completion-at-point-functions.
9580 (python-mode): Setup completion-at-point for Python completion.
9581 * emacs-lisp/lisp.el (lisp-completion-at-point): New function
9582 extracted from lisp-complete-symbol.
9583 (lisp-complete-symbol): Use it.
9584 * emacs-lisp/lisp-mode.el (emacs-lisp-mode): Use define-derived-mode,
9585 setup completion-at-point for Elisp completion.
9586 (emacs-lisp-mode-map, lisp-interaction-mode-map):
9587 Use completion-at-point.
9588 * ielm.el (ielm-map): Use completion-at-point.
9589 (inferior-emacs-lisp-mode): Setup completion-at-point-functions.
9590 * progmodes/sym-comp.el: Move to...
9591 * obsolete/sym-comp.el: Move from progmodes.
9592
9593 2009-12-07 Eli Zaretskii <eliz@gnu.org>
9594
9595 Prevent save-buffer in Rmail buffers from using the coding-system
9596 of the current message, and from clobbering the encoding mnemonics
9597 in the mode line (Bug#4623).
9598
9599 * mail/rmail.el (rmail-swap-buffers): Swap encoding and modified
9600 flag, too.
9601 (rmail-message-encoding): New variable.
9602 (rmail-write-region-annotate): Record the encoding of the current
9603 message in rmail-message-encoding.
9604 (rmail-after-save-hook): New function, restores the encoding of
9605 the current message after the message collection is saved.
9606
9607 2009-12-07 Juri Linkov <juri@jurta.org>
9608
9609 * progmodes/grep.el (grep-read-files): Use `completing-read'
9610 instead of `read-string'. Set its `collection' arg to
9611 `read-file-name-internal'. (Bug#4301)
9612
9613 2009-12-07 Juri Linkov <juri@jurta.org>
9614
9615 Correctly restore original Isearch point. (Bug#4994)
9616
9617 * isearch.el (isearch-mode): Move `isearch-push-state' after
9618 `(run-hooks 'isearch-mode-hook)'.
9619 (isearch-cancel): When `isearch-push-state-function' is defined,
9620 let-bind `isearch-cmds' to the first state (the last element of
9621 `isearch-cmds') and call `isearch-top-state' (it calls pop-state
9622 function and restores the original point). Otherwise, move point
9623 to `isearch-opoint'.
9624
9625 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
9626
9627 * international/mule-cmds.el (ucs-names): Weed out at compile-time the
9628 chars that don't have names, so the table can be built much faster at
9629 run-time.
9630
9631 2009-12-07 Chong Yidong <cyd@stupidchicken.com>
9632
9633 * vc-bzr.el (vc-bzr-annotate-command): More elegant form for last
9634 change. Suggested by David Kastrup.
9635
9636 * simple.el (compose-mail): Check for incompatibilities and warn.
9637 (compose-mail-user-agent-warnings): New option.
9638
9639 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
9640
9641 Support showing a single log entry from vc-annotate.
9642 * vc.el (print-log): Add a new argument: START-REVISION.
9643 (vc-print-log-internal): Add a new optional argument and
9644 pass it to the backend.
9645 (vc-print-log, vc-print-root-log): Adjust callers.
9646 * vc-annotate.el (vc-annotate-show-log-revision-at-line): If a
9647 buffer already displays the requested log entry, use it.
9648 Otherwise display only the log entry in question.
9649 * vc-svn.el (vc-svn-print-log):
9650 * vc-mtn.el (vc-mtn-print-log):
9651 * vc-hg.el (vc-hg-state):
9652 * vc-git.el (vc-git-print-log): Add support for new argument START-REVISION.
9653 (vc-git-show-log-entry): Return t on success.
9654 * vc-bzr.el (vc-bzr-print-log): Add support new argument START-REVISION.
9655 (vc-bzr-show-log-entry): Return t on success.
9656 * vc-rcs.el (vc-rcs-print-log):
9657 * vc-sccs.el (vc-sccs-print-log):
9658 * vc-cvs.el (vc-cvs-print-log): Add new argument, ignore it.
9659
9660 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
9661
9662 * ediff-mult.el (ediff-setup-meta-map, ediff-prepare-meta-buffer):
9663 Add menus to the meta mode. (Bug#5043)
9664
9665 2009-12-07 Michael Kifer <kifer@cs.stonybrook.edu>
9666
9667 * ediff-init.el (ediff-event-key): Use event-to-character instead of
9668 event-key.
9669
9670 * ediff.el (ediff-buffers-internal): Add unwind-protect.
9671
9672 2009-12-07 Michael Albinus <michael.albinus@gmx.de>
9673
9674 Handle prompt rules of ksh in OpenBSD 4.5. Reported by Raphaël
9675 Berbain <raphael.berbain@gmail.com>.
9676
9677 * net/tramp.el (tramp-end-of-output): Move up. Use `#' and `$'
9678 characters.
9679 (tramp-initial-end-of-output): New defconst.
9680 (tramp-methods, tramp-find-shell)
9681 (tramp-open-connection-setup-interactive-shell)
9682 (tramp-maybe-open-connection): Use it.
9683 (tramp-shell-prompt-pattern, tramp-wait-for-output): Handle
9684 existence of `#' and `$'.
9685
9686 * net/tramp-fish.el (tramp-fish-maybe-open-connection): Use
9687 `tramp-initial-end-of-output'.
9688
9689 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
9690
9691 Get the background mode from the terminal for xterm, and set
9692 faces accordingly.
9693 * term/xterm.el (xterm-set-background-mode): New function.
9694 (terminal-init-xterm): Use it in case xterm supports background
9695 color queries. Recompute faces after getting the background
9696 color.
9697
9698 2009-12-07 Ulrich Mueller <ulm@gentoo.org>
9699
9700 * emacs-lisp/bytecomp.el (byte-compile-insert-header): Put the version
9701 number comment back on its own line, for easier parsing.
9702
9703 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
9704
9705 Make it work for non-file buffers (bug#5102).
9706 * doc-view.el (doc-view-current-cache-dir):
9707 Use doc-view-buffer-file-name rather than buffer-file-name.
9708 (doc-view-mode): Use buffer-name when buffer-file-name is nil.
9709
9710 2009-12-06 Óscar Fuentes <ofv@wanadoo.es>
9711
9712 * vc-bzr.el (vc-bzr-annotate-command): Handle the case where the
9713 author field is too short.
9714
9715 2009-12-06 Dan Nicolaescu <dann@ics.uci.edu>
9716
9717 * vc-git.el (vc-git-print-log): Handle a limit argument.
9718 Display the short log in graph form and with labels.
9719 (vc-git-log-view-mode): Handle labels.
9720
9721 Make vc-revert change VC state from 'added to 'unregistered.
9722 * vc-git.el (vc-git-revert): Call git reset first.
9723
9724 2009-12-06 Ulf Jasper <ulf.jasper@web.de>
9725
9726 * net/newst-backend.el, net/newst-plainview.el:
9727 * net/newst-reader.el, net/newst-ticker.el:
9728 * net/newst-treeview.el, net/newsticker.el:
9729 Require/provide newst-... (instead of newsticker-...). (Bug#5096)
9730
9731 2009-12-06 Chong Yidong <cyd@stupidchicken.com>
9732
9733 * log-view.el (log-view-mode-map): Bind "=" to log-view-diff too.
9734
9735 * vc-bzr.el (vc-bzr-annotate-command): Show author in annotation.
9736 Handle empty author field (Bug#4144). Suggested by Óscar Fuentes.
9737 (vc-bzr-annotate-time, vc-bzr-annotate-extract-revision-at-line):
9738 Update annotation regexp.
9739
9740 * simple.el (beginning-of-visual-line): Constrain to field
9741 boundaries (Bug#5106).
9742
9743 2009-12-06 Ulf Jasper <ulf.jasper@web.de>
9744
9745 * xml.el (xml-substitute-numeric-entities): Move
9746 newsticker--decode-numeric-entities in newst-backend.el to
9747 xml-substitute-numeric-entities in xml.el. (Bug#5008)
9748 * net/newst-backend.el (newsticker--parse-generic-feed)
9749 (newsticker--parse-generic-items)
9750 (newsticker--decode-numeric-entities): Move
9751 newsticker--decode-numeric-entities in newst-backend.el to
9752 xml-substitute-numeric-entities in xml.el. (Bug#5008)
9753
9754 2009-12-06 Daniel Colascione <dan.colascione@gmail.com>
9755
9756 * progmodes/js.el (js--js-not): Add null to the list of values.
9757
9758 2009-12-06 Chong Yidong <cyd@stupidchicken.com>
9759
9760 * ansi-color.el (ansi-color-for-comint-mode): Add :version keyword.
9761
9762 2009-12-06 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
9763
9764 * textmodes/bibtex.el (bibtex-enclosing-field): Exclude entry
9765 delimiter if it is at the end of the current line.
9766 (bibtex-generate-url-list): Fix docstring.
9767
9768 2009-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
9769
9770 * minibuffer.el (minibuffer-complete-and-exit): Don't replace the
9771 minibuffer's content with itself.
9772 Fold the confirm-after-completion case into the `confirm' case.
9773 (completion-pcm-word-delimiters): Add : and / to the delimiters.
9774
9775 2009-12-06 Kevin Ryde <user42@zip.com.au>
9776
9777 * ffap.el (ffap-rfc-path): Make this a defcustom since
9778 `ffap-rfc-directories' is also a defcustom. (Bug#4514.)
9779
9780 * info-look.el: Add setup for apropos-mode to use emacs-lisp-mode
9781 manuals, similar to existing setup for help-mode. (Bug#3913.)
9782
9783 2009-12-05 Juri Linkov <juri@jurta.org>
9784
9785 Save and restore dired buffer's point positions too. (Bug#4880)
9786
9787 * dired.el (dired-save-positions): Return in the first element
9788 buffer's position in format (BUFFER DIRED-FILENAME BUFFER-POINT).
9789 Doc fix.
9790 (dired-restore-positions): First restore buffer's position.
9791 While restoring window's positions, check if window still displays
9792 the original buffer.
9793
9794 2009-12-05 Chong Yidong <cyd@stupidchicken.com>
9795
9796 * bindings.el (complete-symbol): Call semantic-ia-complete-symbol
9797 if possible.
9798
9799 * shell.el (shell): Require ansi-color (Bug#5113).
9800
9801 * ansi-color.el (ansi-color-for-comint-mode): Default to t.
9802
9803 * hl-line.el (global-hl-line-highlight): Minor doc fix (Bug#4925).
9804
9805 2009-12-05 Alan Mackenzie <acm@muc.de>
9806
9807 * progmodes/cc-mode.el (c-before-hack-hook)
9808 (c-postprocess-file-styles): Revert change 2009-07-18T21:03:43Z!acm@muc.de to permit
9809 `c-file-style' to work again. This reversion restores the current
9810 software to its state in Emacs 23.1. (Bug#4146)
9811
9812 2009-12-05 Kevin Ryde <user42@zip.com.au>
9813
9814 * textmodes/sgml-mode.el (sgml-lexical-context): Recognise
9815 comment-start-skip to comment-end-skip as comment (Bug#4781).
9816
9817 2009-12-05 Juri Linkov <juri@jurta.org>
9818
9819 * info.el (Info-find-node-2): Set `Info-current-subfile' to nil
9820 for virtual nodes. (Bug#4147)
9821 (Info-find-node-2): Set `Info-current-node-virtual' to nil
9822 when moving from a virtual node.
9823 (Info-mode-menu): Add `Info-virtual-index' to the menu.
9824 (Info-mode): Add `Info-virtual-index' to the docstring.
9825
9826 2009-12-05 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
9827
9828 * textmodes/bibtex.el (bibtex-map-entries): Use marker to keep
9829 track of the buffer position of the end of a BibTeX entry as this
9830 position may change during reformatting.
9831 (bibtex-format-entry): Remove whitespace before processing
9832 numerical fields so that we recognize the latter properly.
9833 (bibtex-reformat): Do not use push which changes the global value
9834 of bibtex-entry-format.
9835 (bibtex-field-braces-alist, bibtex-field-strings-alist)
9836 (bibtex-field-re-init): Replace only space characters by regexp
9837 for whitespace.
9838 (bibtex-generate-url-list, bibtex-cite-matcher-alist): Fix docstring.
9839 (bibtex-initialize): Also update bibtex-strings.
9840 (bibtex-kill-field): Preserve white space at end of entry.
9841 (bibtex-kill-entry, bibtex-yank-pop, bibtex-insert-kill):
9842 Update bibtex-reference-keys.
9843
9844 2009-12-05 Stefan Monnier <monnier@iro.umontreal.ca>
9845
9846 * minibuffer.el (completion-pcm--merge-try): Also consider placing
9847 point after a star, if that's the only place where modifications can
9848 make progress.
9849
9850 2009-12-05 Dan Nicolaescu <dann@ics.uci.edu>
9851
9852 * vc-dir.el (vc-dir): Use the correct markup for showing keymaps
9853 in docstrings.
9854
9855 2009-12-04 Juri Linkov <juri@jurta.org>
9856
9857 * proced.el (proced): Call `(proced-update t)' to update process
9858 information instead of only running proced-post-display-hook.
9859 (proced-send-signal): Add a leading space to the buffer name
9860 " *Marked Processes*" to make this buffer ephemeral.
9861
9862 2009-12-04 Juri Linkov <juri@jurta.org>
9863
9864 * dired.el (dired-auto-revert-buffer): New defcustom.
9865 (dired-internal-noselect): Use it.
9866
9867 2009-12-04 Juri Linkov <juri@jurta.org>
9868
9869 Change roles of modes and functions in image-mode.el (Bug#5062).
9870
9871 * image-mode.el: Replace `image-mode-maybe' with `image-mode'
9872 in `auto-mode-alist'.
9873 (image-mode-previous-major-mode): New variable.
9874 (image-minor-mode-map): Rename from `image-mode-text-map'.
9875 (image-mode): Move graceful error-handling code from
9876 `image-minor-mode' to here. On errors call `image-mode-as-text'.
9877 (image-minor-mode): Remove all image-handling code.
9878 Replace `image-mode-text-map' with `image-minor-mode-map'.
9879 Check for `image-type' in mode-line format string.
9880 (image-mode-maybe): Make obsolete with an alias to `image-mode'.
9881 (image-mode-as-text): New function with most code from
9882 `image-mode-maybe'.
9883 (image-toggle-display-text): Move code that removes image
9884 properties from `image-toggle-display' to here.
9885 (image-toggle-display-image): New function with code that adds
9886 image properties copied from `image-toggle-display'.
9887 (image-toggle-display): Remove most code with leaving only code
9888 that toggles between `image-mode-as-text' and `image-mode'.
9889
9890 2009-12-04 Ulf Jasper <ulf.jasper@web.de>
9891
9892 * net/newst-treeview.el
9893 (newsticker--treeview-list-highlight-start): Restored call to
9894 save-excursion: Selected item was stuck.
9895 (newsticker--treeview-list-select): New.
9896 (newsticker--treeview-item-show-text)
9897 (newsticker--treeview-item-show)
9898 (newsticker--treeview-item-update): Use new
9899 newsticker-treeview-item-mode.
9900 (newsticker-treeview-update): Keep current item.
9901 (newsticker-treeview-next-new-or-immortal-item): Doc change.
9902 (newsticker--treeview-first-feed): Doc change.
9903 (newsticker-treeview-list-menu)
9904 (newsticker-treeview-item-menu): Added menu entries.
9905 (newsticker-treeview-item-mode): New.
9906
9907 * net/newst-backend.el (newsticker-customize): Delete other
9908 windows.
9909
9910 2009-12-04 Sam Steingold <sds@gnu.org>
9911
9912 * log-view.el (log-view-mode-map): "q" calls quit-window,
9913 like in all the other non-self-insert buffers.
9914
9915 2009-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
9916
9917 Minor cleanup.
9918 * term.el (term-send-raw, term-send-raw-meta): Use read-key-sequence's
9919 key decoding rather than do it manually via last-input-event +
9920 ascii-character.
9921 (term-exec): Use delete-and-extract-region.
9922 (term-handle-ansi-terminal-messages): Remove unused var `end'.
9923 (term-process-pager): Remove unused var `i'.
9924 (term-dynamic-simple-complete): Make obsolete.
9925 (serial-update-config-menu): Remove unused vars `y' and `str'.
9926 (term-update-mode-line): Remove unused var `temp'.
9927
9928 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
9929
9930 Limit the number of log entries displayed by default.
9931 * vc.el (vc-print-log-internal): Fix check for limit-unsupported.
9932 (vc-print-log, vc-print-root-log): Use vc-log-show-limit when not
9933 using a prefix argument.
9934
9935 2009-12-03 Glenn Morris <rgm@gnu.org>
9936
9937 * progmodes/idlwave.el (class): Restore still useful declaration.
9938
9939 2009-12-03 Alan Mackenzie <acm@muc.de>
9940
9941 Enhance `c-parse-state' to run efficiently in "brace deserts".
9942
9943 * progmodes/cc-mode.el (c-basic-common-init):
9944 Call c-state-cache-init.
9945 (c-neutralize-syntax-in-and-mark-CPP): Rename from
9946 c-extend-and-neutralize-syntax-in-CPP. Mark each CPP construct by
9947 placing `category' properties value 'c-cpp-delimiter at its boundaries.
9948
9949 * progmodes/cc-langs.el (c-before-font-lock-function):
9950 c-extend-and-neutralize-syntax-in-CPP has been renamed
9951 c-neutralize-syntax-in-and-mark-CPP.
9952
9953 * progmodes/cc-fonts.el (c-cpp-matchers): Mark template brackets
9954 with `category' properties now, not `syntax-table' ones.
9955
9956 * progmodes/cc-engine.el (c-syntactic-end-of-macro): A new
9957 enhanced (but slower) version of c-end-of-macro that won't land
9958 inside a literal or on another awkward character.
9959 (c-state-cache-too-far, c-state-cache-start)
9960 (c-state-nonlit-pos-interval, c-state-nonlit-pos-cache)
9961 (c-state-nonlit-pos-cache-limit, c-state-point-min)
9962 (c-state-point-min-lit-type, c-state-point-min-lit-start)
9963 (c-state-min-scan-pos, c-state-brace-pair-desert)
9964 (c-state-old-cpp-beg, c-state-old-cpp-end): New constants and
9965 buffer local variables.
9966 (c-state-literal-at, c-state-lit-beg)
9967 (c-state-cache-non-literal-place, c-state-get-min-scan-pos)
9968 (c-state-mark-point-min-literal, c-state-cache-top-lparen)
9969 (c-state-cache-top-paren, c-state-cache-after-top-paren)
9970 (c-get-cache-scan-pos, c-get-fallback-scan-pos)
9971 (c-state-balance-parens-backwards, c-parse-state-get-strategy)
9972 (c-renarrow-state-cache)
9973 (c-append-lower-brace-pair-to-state-cache)
9974 (c-state-push-any-brace-pair, c-append-to-state-cache)
9975 (c-remove-stale-state-cache)
9976 (c-remove-stale-state-cache-backwards, c-state-cache-init)
9977 (c-invalidate-state-cache-1, c-parse-state-1)
9978 (c-invalidate-state-cache): New defuns/defmacros/defsubsts.
9979 (c-parse-state): Enhance and refactor.
9980 (c-debug-parse-state): Amend to deal with all the new variables.
9981
9982 * progmodes/cc-defs.el (c-<-as-paren-syntax, c-mark-<-as-paren)
9983 (c->-as-paren-syntax, c-mark->-as-paren, c-unmark-<->-as-paren):
9984 modify to use category text properties rather than syntax-table ones.
9985 (c-suppress-<->-as-parens, c-restore-<->-as-parens): New defsubsts
9986 to switch off/on the syntactic paren property of C++ template
9987 delimiters using the category property.
9988 (c-with-<->-as-parens-suppressed): Macro to invoke code with
9989 template delims suppressed.
9990 (c-cpp-delimiter, c-set-cpp-delimiters, c-clear-cpp-delimiters):
9991 New constant/macros which apply category properties to the start
9992 and end of preprocessor constructs.
9993 (c-comment-out-cpps, c-uncomment-out-cpps): Defsubsts which
9994 "comment out" the syntactic value of characters in preprocessor
9995 constructs.
9996 (c-with-cpps-commented-out)
9997 (c-with-all-but-one-cpps-commented-out): Macros to invoke code
9998 with characters in all or all but one preprocessor constructs
9999 "commented out".
10000
10001 2009-12-03 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
10002
10003 * proced.el (proced-filter-alist): Use regexp-quote.
10004
10005 2009-12-03 Michael Albinus <michael.albinus@gmx.de>
10006
10007 Cleanup.
10008 * eshell/em-unix.el (top): Require 'esh-opt and 'pcomplete.
10009 (eshell/su, eshell/sudo): Require 'tramp. Fix problems reading
10010 arguments. Expand `default-directory'.
10011
10012 * net/tramp.el (tramp-handle-file-remote-p): Expand FILENAME for
10013 the benefit of returning an expanded localname.
10014 (tramp-tramp-file-p): Handle the case NAME is not a string.
10015
10016 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
10017
10018 Add support for bzr shelve/unshelve.
10019 * vc-bzr.el (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
10020 (vc-bzr-extra-menu-map): New variables.
10021 (vc-bzr-extra-menu, vc-bzr-extra-status-menu, vc-bzr-shelve)
10022 (vc-bzr-shelve-apply, vc-bzr-shelve-list)
10023 (vc-bzr-shelve-get-at-point, vc-bzr-shelve-delete-at-point)
10024 (vc-bzr-shelve-apply-at-point, vc-bzr-shelve-menu): New functions.
10025 (vc-bzr-dir-extra-headers): Display shelves.
10026
10027 * vc-bzr.el (vc-bzr-print-log): Deal with nil arguments better.
10028
10029 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
10030
10031 * textmodes/bibtex.el (bibtex-complete-internal):
10032 Use completion-in-region.
10033 (bibtex-text-in-field-bounds): Remove unused var `opoint'.
10034
10035 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
10036
10037 Support applying stashes. Improve UI.
10038 * vc-git.el (vc-git-dir-extra-headers): Add tooltips.
10039 (vc-git-stash-apply, vc-git-stash-pop)
10040 (vc-git-stash-apply-at-point, vc-git-stash-pop-at-point)
10041 (vc-git-stash-menu): New functions.
10042 (vc-git-stash-menu-map): New variable.
10043 (vc-git-stash-map): Add bindings to popup a menu and to apply stashes.
10044
10045 2009-12-03 Glenn Morris <rgm@gnu.org>
10046
10047 * vc.el (log-view-vc-backend, log-view-vc-fileset): Declare.
10048 (vc-print-log-internal): Fix previous change.
10049 (vc-revert): Correct pluralization.
10050
10051 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
10052
10053 * progmodes/make-mode.el (makefile-special-targets-list): No need for
10054 it to be an alist any more.
10055 (makefile-complete): Use completion-in-region.
10056
10057 * progmodes/octave-mod.el (octave-complete-symbol):
10058 Use completion-in-region.
10059
10060 Misc cleanup.
10061 * progmodes/idlwave.el (idlwave-comment-hook): Simplify with `or'.
10062 (idlwave-code-abbrev, idlwave-display-user-catalog-widget)
10063 (idlwave-complete-class): Don't quote lambda.
10064 (idlwave-find-symbol-syntax-table, idlwave-mode-syntax-table)
10065 (idlwave-mode-map): Move initialization into declaration.
10066 (idlwave-action-and-binding): Use backquotes.
10067 (idlwave-in-quote, idlwave-reset-sintern, idlwave-complete-in-buffer):
10068 Simplify.
10069 (idlwave-is-pointer-dereference): Remove unused var `pos'.
10070 (idlwave-xml-create-rinfo-list): Remove unused var `entry'.
10071 (idlwave-convert-xml-clean-sysvar-aliases): Remove unused vars `new',
10072 `parts', and `all-parts'.
10073 (idlwave-xml-create-sysvar-alist): Remove unused var `fields'.
10074 (idlwave-convert-xml-system-routine-info): Remove unused string
10075 `version-string'.
10076 (idlwave-display-user-catalog-widget): Use dolist.
10077 (idlwave-scanning-lib): Declare dynamically-scoped var.
10078 (idlwave-scan-library-catalogs): Remove unused var `flags'.
10079 (completion-highlight-first-word-only): Declare to silence bytecomp.
10080 (idlwave-popup-select): Tighten scope of `resp'.
10081 (idlwave-find-struct-tag): Remove unused var `beg'.
10082 (idlwave-after-load-rinfo-hook): Declare.
10083 (idlwave-sintern-class-info): Remove unused var `taglist'.
10084 (idlwave-find-class-definition): Remove unused var `list'.
10085 (idlwave-complete-sysvar-tag-help): Remove unused var `main-base'.
10086 (idlwave-what-module-find-class): Remove unused var `classes'.
10087
10088 2009-12-03 Juanma Barranquero <lekktu@gmail.com>
10089
10090 * progmodes/pascal.el: Require CL when compiling (for lexical-let).
10091
10092 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
10093
10094 * hippie-exp.el (try-expand-dabbrev-visible): Preserve point in the
10095 buffers visited. Remove redundant current-buffer-saving.
10096
10097 2009-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
10098
10099 Use completion-in-buffer and remove uses of dynamic scoping.
10100 * progmodes/pascal.el (pascal-str, pascal-all, pascal-pred)
10101 (pascal-buffer-to-use, pascal-flag): Don't declare.
10102 (pascal-func-completion, pascal-type-completion, pascal-var-completion)
10103 (pascal-get-completion-decl, pascal-keyword-completion):
10104 Add `pascal-str' argument, save-excursion,
10105 return the found completions, and don't filter with pascal-pred.
10106 (pascal-completion-cache): New var.
10107 (pascal-completion): Don't switch buffer any more (it was never
10108 necessary). Don't save-excursion any more (it's done by the called
10109 subroutines). Use a cache to avoid redundant computations.
10110 Use complete-with-action rather than pascal-completion-response and
10111 let it apply the predicate as well.
10112 (pascal-complete-word): Use completion-in-buffer when
10113 pascal-toggle-completions is nil.
10114 (pascal-show-completions): Don't bind pascal-buffer-to-use since it's
10115 not used any more.
10116 (pascal-comp-defun): Don't change buffer any more.
10117 Use complete-with-action rather than pascal-completion-response and
10118 let it apply the predicate as well.
10119 (pascal-goto-defun): Change buffer before calling pascal-comp-defun
10120 when neded.
10121
10122 2009-12-02 Kenichi Handa <handa@m17n.org>
10123
10124 * language/indian.el: Include ZWJ and ZWNJ in the patterns to
10125 shape for all Indic scripts.
10126
10127 2009-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
10128
10129 Use completion-in-buffer.
10130 * wid-edit.el (widget-field-text-end): New function.
10131 (widget-field-value-get): Use it.
10132 (widget-string-complete, widget-file-complete)
10133 (widget-color-complete): Use it and completion-in-region.
10134 (widget-complete): Don't narrow the buffer.
10135
10136 2009-12-02 Glenn Morris <rgm@gnu.org>
10137
10138 * mail/rmail.el (rmail-pop-to-buffer): New function. (Bug#2282)
10139 (rmail-select-summary): Use rmail-pop-to-buffer.
10140 * mail/rmailsum.el: Replace all pop-to-buffer calls with
10141 rmail-pop-to-buffer, to prevent horizontal splits.
10142
10143 * calendar/diary-lib.el (diary-list-entries): Replace superfluous
10144 save-excursion with save-current-buffer.
10145 Widen before searching. (Bug#5093)
10146 (diary-list-sexp-entries): Remove superfluous save-excursion.
10147
10148 2009-12-02 Michael Welsh Duggan <mwd@cert.org>
10149
10150 * woman.el (woman-make-bufname): Handle man-pages with "." in the
10151 name. (Bug#5038)
10152
10153 2009-12-02 Andreas Politz <politza@fh-trier.de> (tiny change)
10154
10155 * ido.el (ido-file-internal): Handle filenames at point that do
10156 not have a directory part. (Bug#5049)
10157
10158 2009-12-02 Juanma Barranquero <lekktu@gmail.com>
10159
10160 * mpc.el (mpc-intersection, mpc-host, mpc-songs-playlist)
10161 (mpc-songs-jump-to, mpc-resume): Doc fixes.
10162
10163 2009-12-01 Rob Riepel <riepel@networking.Stanford.EDU>
10164
10165 * emulation/tpu-extras.el (tpu-cursor-free-mode): Emit message.
10166 (tpu-set-cursor-free, tpu-set-cursor-bound): Don't emit a message
10167 any more.
10168
10169 2009-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
10170
10171 * comint.el (comint-insert-input): Ignore clicks to the right of
10172 the field. Reported by Bob Nnamtrop <bobnnamtrop@gmail.com>.
10173
10174 * vc.el (vc-print-log-internal): Don't wait for the process to
10175 terminate before setting up the major mode.
10176
10177 * pcmpl-unix.el (pcomplete/cd): Complete more than one argument, just
10178 in case.
10179
10180 * pcomplete.el (pcomplete-std-complete): Don't try to complete past
10181 the last element.
10182
10183 * simple.el (normal-erase-is-backspace-mode): Fix thinko in message.
10184
10185 2009-12-01 Glenn Morris <rgm@gnu.org>
10186
10187 * window.el (window--display-buffer-2): Fix previous changes.
10188
10189 2009-12-01 Chong Yidong <cyd@stupidchicken.com>
10190
10191 * mail/sendmail.el (mail-setup-hook, mail-send-hook): Doc fixes.
10192
10193 2009-12-01 Glenn Morris <rgm@gnu.org>
10194
10195 * Makefile.in (ELCFILES): Add mpc.elc.
10196
10197 2009-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
10198
10199 * mpc.el: New file.
10200
10201 2009-12-01 Glenn Morris <rgm@gnu.org>
10202
10203 * window.el (window-to-use): Define for compiler.
10204
10205 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Make message
10206 consistent with others (no final period).
10207
10208 * mail/rmailmm.el (rmail-mime-handle): Doc fix.
10209 (rmail-mime-show): Downcase the encoding. (Bug#5070)
10210
10211 2009-12-01 Dan Nicolaescu <dann@ics.uci.edu>
10212
10213 Make vc-print-log buttons work.
10214 * log-view.el (log-view-mode-map): Inherit from widget-keymap.
10215
10216 2009-11-30 Ryan C. Thompson <rct@thompsonclan.org> (tiny change)
10217
10218 * savehist.el (savehist-autosave-interval): Allow setting to nil
10219 through customize. (Bug#5056)
10220
10221 2009-11-30 Juanma Barranquero <lekktu@gmail.com>
10222
10223 Fix references to jit-lock properties.
10224 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
10225 Refer to jit-lock-defer-multiline, not jit-lock-multiline.
10226 (perl-font-lock-special-syntactic-constructs):
10227 Quote jit-lock-defer-multiline property.
10228
10229 2009-11-30 Dan Nicolaescu <dann@ics.uci.edu>
10230
10231 * vc-git.el (vc-git-registered): Call vc-git-root only once.
10232
10233 2009-11-30 Juri Linkov <juri@jurta.org>
10234
10235 * misearch.el (multi-isearch-search-fun): Always provide a non-nil
10236 value `buffer' of `multi-isearch-next-buffer-current-function'.
10237 Use `(current-buffer)' when `buffer' is nil.
10238 (multi-isearch-next-buffer-from-list): Don't fallback to
10239 `(current-buffer)' when `buffer' is nil. (Bug#4947)
10240
10241 2009-11-30 Juri Linkov <juri@jurta.org>
10242
10243 * misearch.el (multi-isearch-read-buffers): Move canonicalization
10244 of buffers with `get-buffer' to `multi-isearch-buffers'.
10245 (multi-isearch-buffers, multi-isearch-buffers-regexp):
10246 Canonicalize BUFFERS with `get-buffer'. Doc fix.
10247 (multi-isearch-files, multi-isearch-files-regexp): Canonicalize
10248 FILES with `expand-file-name' converting relative file names
10249 to absolute. Doc fix. (Bug#4727)
10250
10251 2009-11-30 Juri Linkov <juri@jurta.org>
10252
10253 * misearch.el (multi-isearch-read-buffers)
10254 (multi-isearch-read-matching-buffers): New functions.
10255 (multi-isearch-buffers, multi-isearch-buffers-regexp):
10256 Use them in the `interactive' spec. Doc fix.
10257 (multi-isearch-read-files, multi-isearch-read-matching-files):
10258 New functions.
10259 (multi-isearch-files, multi-isearch-files-regexp):
10260 Use them in the `interactive' spec. Doc fix. (Bug#4725)
10261
10262 2009-11-30 Juri Linkov <juri@jurta.org>
10263
10264 * doc-view.el (doc-view-continuous):
10265 Rename from `doc-view-continuous-mode'.
10266 (doc-view-menu): Move "Toggle display" to the top.
10267 Add submenu "Continuous" with radio buttons "Off"/"On"
10268 and "Save as Default".
10269 (doc-view-scroll-up-or-next-page)
10270 (doc-view-scroll-down-or-previous-page)
10271 (doc-view-next-line-or-next-page)
10272 (doc-view-previous-line-or-previous-page): Rename
10273 `doc-view-continuous-mode' to `doc-view-continuous'. (Bug#4896)
10274
10275 2009-11-30 Juri Linkov <juri@jurta.org>
10276
10277 * comint.el (comint-mode-map): Rebind `M-r' from
10278 `comint-previous-matching-input' to
10279 `comint-history-isearch-backward-regexp'.
10280 Unbind `M-s' to allow global key binding `M-s'.
10281 Add menu items for `comint-history-isearch-backward' and
10282 `comint-history-isearch-backward-regexp'. (Bug#3746)
10283
10284 2009-11-30 Juri Linkov <juri@jurta.org>
10285
10286 * replace.el (perform-replace): Let-bind recenter-last-op to nil.
10287 For def=recenter, replace `recenter' with `recenter-top-bottom'
10288 that is called with `this-command' and `last-command' let-bound
10289 to `recenter-top-bottom'. When the last `def' was not `recenter',
10290 set `recenter-last-op' to nil. (Bug#4981)
10291
10292 2009-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
10293
10294 Minor cleanup and simplification.
10295 * filecache.el (file-cache-add-directory)
10296 (file-cache-add-directory-recursively)
10297 (file-cache-add-from-file-cache-buffer)
10298 (file-cache-delete-file-regexp, file-cache-delete-directory)
10299 (file-cache-files-matching-internal, file-cache-display): Use dolist.
10300 (file-cache-temp-minibuffer-message): Delete function.
10301 (file-cache-minibuffer-complete): Use minibuffer-message instead.
10302
10303 * progmodes/perl-mode.el (perl-font-lock-special-syntactic-constructs):
10304 Don't signal an error when bumping into EOB in tr, s, or y.
10305
10306 2009-11-29 Juri Linkov <juri@jurta.org>
10307
10308 * startup.el (fancy-about-text): Fix wording of Guided Tour.
10309 (Bug#4960)
10310
10311 * descr-text.el (describe-char-unidata-list): Use lowercase name
10312 for "Unicode name" like in other tags.
10313
10314 2009-11-29 Juri Linkov <juri@jurta.org>
10315
10316 * ediff-util.el (ediff-minibuffer-with-setup-hook):
10317 New compatibility macro.
10318 (ediff-read-file-name): Use it instead of `minibuffer-with-setup-hook'.
10319
10320 2009-11-29 Juri Linkov <juri@jurta.org>
10321
10322 Add defcustom to define the cycling order of `recenter-top-bottom'.
10323 (Bug#4981)
10324
10325 * window.el (recenter-last-op): Doc fix.
10326 (recenter-positions): New defcustom.
10327 (recenter-top-bottom): Rewrite to use `recenter-positions'.
10328 (move-to-window-line-top-bottom): Rewrite to use `recenter-positions'.
10329
10330 2009-11-29 Michael Albinus <michael.albinus@gmx.de>
10331
10332 Improve integration of Tramp and ange-ftp in eshell.
10333
10334 * eshell/em-unix.el (eshell/whoami): Make it a defun but a defalias.
10335 (eshell/su): Flatten args. Apply better args parsing. Use "cd".
10336 (eshell/sudo): Flatten args. Let-bind `default-directory'.
10337
10338 * eshell/esh-util.el (top): Require also Tramp when compiling.
10339 (eshell-directory-files-and-attributes): Check for FTP remote
10340 connection.
10341 (eshell-parse-ange-ls): Let-bind `ange-ftp-name-format',
10342 `ange-ftp-ftp-name-arg', `ange-ftp-ftp-name-res'.
10343 (eshell-file-attributes): Handle ".". Return `entry'.
10344
10345 * net/ange-ftp.el (ange-ftp-parse-filename): Use `save-match-data'.
10346 (ange-ftp-directory-files-and-attributes)
10347 (ange-ftp-real-directory-files-and-attributes): New defuns.
10348
10349 * net/tramp.el (tramp-maybe-open-connection): Open the remote
10350 shell with "exec" when possible. This prevents trailing prompts
10351 in `start-file-process'.
10352
10353 2009-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
10354
10355 Try and remove assumptions about point-min==1.
10356 * nxml/rng-valid.el (rng-validate-mode): Don't hardcode point-min==1.
10357 (rng-compute-mode-line-string): Show the validation percentage in
10358 terms of the narrowed text, not the widened text.
10359 (rng-do-some-validation): Don't catch internal errors when debugging.
10360 (rng-first-error): Simplify.
10361 (rng-after-change-function): Remove work around. AFAIK the bug has
10362 been fixed a while ago.
10363
10364 * image-mode.el (image-minor-mode): Exit more gracefully when the image
10365 cannot be displayed (e.g. when doing C-x C-f some-new-file.svg RET).
10366
10367 * man.el (Man-completion-table): Make it easier to enter "<sec> <name>".
10368
10369 * eshell/em-prompt.el (eshell-prompt-function): Abbreviate pwd, since
10370 `cd' doesn't always do it for us (bug#5067).
10371
10372 * pcomplete.el (pcomplete-entries): Revert change installed mistakenly
10373 on 2009-10-25 as part of some other change (bug#5067).
10374
10375 2009-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
10376
10377 * emacs-lisp/bytecomp.el (byte-compile-warning-types): New type
10378 `suspicious'.
10379 (byte-compile-warnings): Use byte-compile-warning-types.
10380 (byte-compile-save-excursion): Warn about use of set-buffer right
10381 after save-excursion.
10382
10383 * progmodes/gud.el (gud-basic-call): Don't only save the buffer but
10384 the excursion as well.
10385
10386 2009-11-27 Michael Albinus <michael.albinus@gmx.de>
10387
10388 * eshell/em-unix.el (eshell/su, eshell/sudo): New defuns,
10389 providing a Tramp related implementation of "su" and "sudo".
10390 (eshell-unix-initialize): Add "su" and "sudo".
10391
10392 2009-11-27 Daiki Ueno <ueno@unixuser.org>
10393
10394 * net/socks.el (socks-send-command): Convert binary request to
10395 unibyte before sending. This fixes mishandling of some port
10396 numbers such as 129.
10397
10398 2009-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
10399
10400 * help.el (describe-bindings-internal): Remove `interactive'.
10401
10402 * man.el (Man-completion-table): Trim a terminating "(".
10403 Remove the space between name page a section.
10404 Add the command's description on the `help-echo' property.
10405 Remove `process-connection-type' binding since it's unused by
10406 call-process.
10407 Provide completion for the "<section> <name>" format as well.
10408 (Man-default-man-entry): Remove spurious var shadowing the argument.
10409
10410 2009-11-26 Kevin Ryde <user42@zip.com.au>
10411
10412 * log-view.el: Add "Keywords: tools", since its other keywords
10413 aren't in finder-known-keywords, and following vc.el.
10414
10415 * sha1.el (sha1-string-external): default-directory "/" in case
10416 otherwise non-existent. process-connection-type pipe for touch of
10417 efficiency recommended by elisp manual. (An aside in Bug#3911.)
10418
10419 2009-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
10420
10421 Misc coding convention cleanups.
10422 * htmlfontify.el (hfy-init-kludge-hook): Rename from
10423 hfy-init-kludge-hooks.
10424 (hfy-etags-cmd, hfy-flatten-style, hfy-invisible-name, hfy-face-at)
10425 (hfy-fontify-buffer, hfy-prepare-index-i, hfy-subtract-maps)
10426 (hfy-save-kill-buffers, htmlfontify-copy-and-link-dir): Use dolist
10427 and push.
10428 (hfy-slant, hfy-weight): Use tables rather than code.
10429 (hfy-box-to-border-assoc, hfy-box-to-style, hfy-decor)
10430 (hfy-face-to-style-i, hfy-fontify-buffer): Use `case'.
10431 (hfy-face-attr-for-class): Initialize `face-spec' directly.
10432 (hfy-face-to-css): Remove `nconc' with single arg.
10433 (hfy-p-to-face-lennart): Use `or'.
10434 (hfy-face-at): Hoist common code. Remove spurious quotes in `case'.
10435 (hfy-overlay-props-at, hfy-mark-tag-hrefs): Eta-reduce.
10436 (hfy-compile-stylesheet, hfy-merge-adjacent-spans)
10437 (hfy-compile-face-map, hfy-parse-tags-buffer): Use push.
10438 (hfy-force-fontification): Use run-hooks.
10439
10440 2009-11-26 Vivek Dasmohapatra <vivek@etla.org>
10441
10442 Various minor fixes.
10443 * htmlfontify.el (hfy-default-header): Add toggle_invis since
10444 Javascript belongs in the header, not the body.
10445 (hfy-javascript): Remove.
10446 (hfy-fontify-buffer): Don't insert it any more.
10447 (hfy-face-at): Handle (face0 face1 face2) style face properties.
10448 Fix bug in invis handling when there were no invis props in a chunk.
10449
10450 2009-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
10451
10452 * vc-bzr.el (vc-bzr-annotate-command): Make operation asynchronous.
10453
10454 2009-11-26 Dan Nicolaescu <dann@ics.uci.edu>
10455
10456 * finder.el (finder-mode-map): Add a menu.
10457
10458 2009-11-26 Michael McNamara <mac@mail.brushroad.com>
10459
10460 * progmodes/verilog-mode.el (verilog-at-struct-p): Support "signed" and
10461 "unsigned" structs.
10462
10463 (verilog-leap-to-head, verilog-backward-token): Handle "disable
10464 fork" statement better.
10465
10466 2009-11-26 Wilson Snyder <wsnyder@wsnyder.org>
10467
10468 * progmodes/verilog-mode.el (verilog-auto-insert-lisp)
10469 (verilog-delete-auto, verilog-delete-empty-auto-pair)
10470 (verilog-library-filenames): Fix AUTOINSERTLISP to support insert-file.
10471 Reported by Clay Douglass.
10472
10473 (verilog-auto-inst, verilog-auto-star-safe)
10474 (verilog-delete-auto-star-implicit, verilog-read-sub-decls):
10475 Fix removing "// Interfaces" when saving .* expansions. Reported by
10476 Pierre-David Pfister.
10477
10478 2009-11-26 Glenn Morris <rgm@gnu.org>
10479
10480 * eshell/em-dirs.el (eshell/cd): Don't throw to a tag outside
10481 the scope.
10482
10483 2009-11-25 Johan Bockgård <bojohan@gnu.org>
10484
10485 * vc-annotate.el (vc-annotate-revision-previous-to-line):
10486 Really use previous revision.
10487
10488 2009-11-25 Kevin Ryde <user42@zip.com.au>
10489
10490 * man.el (Man-completion-table): default-directory "/" in case
10491 doesn't otherwise exist. process-environment COLUMNS=999 so as
10492 not to truncate long names. process-connection-type pipe to avoid
10493 any chance of hitting the pseudo-tty TIOCGWINSZ.
10494 (man): completion-ignore-case t for friendliness and since man
10495 itself is case-insensitive on the command line.
10496 Further to Bug#3717.
10497
10498 * arc-mode.el: Add "Keywords: files", so the details in its
10499 commentary can be reached from finder-by-keyword.
10500 * textmodes/dns-mode.el: Add "Keywords: comm". It's only an
10501 editing mode, but it's comms related and sgml-mode.el has "comm"
10502 on that basis too.
10503 * textmodes/bibtex-style.el: Add "Keywords: tex".
10504 * international/isearch-x.el, international/ja-dic-cnv.el:
10505 * international/ja-dic-utl.el, international/kkc.el:
10506 Add "Keywords: i18n", so they can be reached from finder-by-keyword.
10507
10508 2009-11-25 Juri Linkov <juri@jurta.org>
10509
10510 * man.el (Man-completion-table): Modify regexp to include
10511 section names to completion strings. (Bug#3717)
10512
10513 2009-11-25 Juri Linkov <juri@jurta.org>
10514
10515 Search recursively in gzipped files. (Bug#4982)
10516
10517 * progmodes/grep.el (grep-highlight-matches): Add new options
10518 `always' and `auto'. Doc fix.
10519 (grep-process-setup): Check `grep-highlight-matches' for
10520 `auto-detect' to determine the need to compute grep defaults.
10521 Move Windows/DOS specific --colors settings handling
10522 to `grep-compute-defaults'. Check `grep-highlight-matches'
10523 to get the value of "--color=".
10524 (grep-compute-defaults): Compute `grep-highlight-matches' when it
10525 has the value `auto-detect'. Move Windows/DOS specific settings
10526 from `grep-process-setup'.
10527 (zrgrep): New command with alias `rzgrep'.
10528
10529 2009-11-25 Juri Linkov <juri@jurta.org>
10530
10531 * doc-view.el (doc-view-mode): Set buffer-local `view-read-only'
10532 to nil instead of switching off view-mode. (Bug#4896)
10533
10534 2009-11-25 Juri Linkov <juri@jurta.org>
10535
10536 Mouse-wheel scrolling for DocView Continuous mode. (Bug#4896)
10537
10538 * mwheel.el (mwheel-scroll-up-function)
10539 (mwheel-scroll-down-function): New defvars.
10540 (mwheel-scroll): Funcall `mwheel-scroll-up-function' instead of
10541 `scroll-up', and `mwheel-scroll-down-function' instead of
10542 `scroll-down'.
10543
10544 * doc-view.el (doc-view-scroll-up-or-next-page)
10545 (doc-view-scroll-down-or-previous-page): Add optional ARG.
10546 Use this ARG in the call to image-scroll-up/image-scroll-down.
10547 Change `interactive' spec to "P". Goto next/previous page only
10548 when `doc-view-continuous-mode' is non-nil or ARG is nil (for the
10549 SPC/DEL case). Doc fix.
10550 (doc-view-next-line-or-next-page)
10551 (doc-view-previous-line-or-previous-page): Rename arg to ARG
10552 for consistency.
10553 (doc-view-mode): Set buffer-local `mwheel-scroll-up-function' to
10554 `doc-view-scroll-up-or-next-page', and buffer-local
10555 `mwheel-scroll-down-function' to
10556 `doc-view-scroll-down-or-previous-page'.
10557
10558 2009-11-25 Juri Linkov <juri@jurta.org>
10559
10560 Provide additional default values (directories at other Dired
10561 windows) via M-n in the minibuffer of some Dired commands.
10562
10563 * dired-aux.el (dired-diff, dired-compare-directories)
10564 (dired-do-create-files): Use `dired-dwim-target-defaults' to set
10565 `minibuffer-default' in `minibuffer-with-setup-hook'.
10566 (dired-dwim-target-directory): Find a window that displays Dired
10567 buffer instead of failing when the next window is not Dired.
10568 Use `get-window-with-predicate' to find for the next Dired window.
10569 (dired-dwim-target-defaults): New function.
10570
10571 * ediff-util.el (ediff-read-file-name):
10572 Use `dired-dwim-target-defaults' to set `minibuffer-default'
10573 in `minibuffer-with-setup-hook'.
10574
10575 2009-11-25 Juri Linkov <juri@jurta.org>
10576
10577 Provide additional default values (file name at point or at the
10578 current Dired line) via M-n for file reading minibuffers. (Bug#5010)
10579
10580 * minibuffer.el (read-file-name-defaults): New function.
10581 (read-file-name): Reset `minibuffer-default' to nil when
10582 it duplicates initial input `insdef'.
10583 Bind `minibuffer-default-add-function' to lambda that
10584 calls `read-file-name-defaults' in `minibuffer-selected-window'.
10585 (minibuffer-insert-file-name-at-point): New command.
10586
10587 * files.el (file-name-at-point-functions): New defcustom.
10588 (find-file-default): Remove defvar.
10589 (find-file-read-args): Don't use `find-file-default'.
10590 Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
10591 to `read-file-name'.
10592 (find-file-literally): Use `read-file-name' with
10593 `confirm-nonexistent-file-or-buffer'.
10594
10595 * ffap.el (ffap-guess-file-name-at-point): New autoloaded function.
10596
10597 * dired.el (dired-read-dir-and-switches):
10598 Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
10599 to `read-file-name'.
10600 (dired-file-name-at-point): New function.
10601 (dired-mode): Add hook `dired-file-name-at-point' to
10602 `file-name-at-point-functions'.
10603
10604 2009-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
10605
10606 Really make the *Completions* window soft-dedicated (bug#5030).
10607 * window.el (window--display-buffer-2): Add `dedicated' argument.
10608 (display-buffer): Pass it when needed so the dedicated flag is set
10609 after calling set-window-buffer, which would otherwise reset it.
10610
10611 2009-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
10612
10613 * progmodes/meta-mode.el (meta-complete-symbol):
10614 * progmodes/etags.el (complete-tag):
10615 * mail/mailabbrev.el (mail-abbrev-complete-alias):
10616 Use completion-in-region.
10617
10618 * dabbrev.el (dabbrev--minibuffer-origin): Use minibuffer-selected-window.
10619 (dabbrev-completion): Use completion-in-region.
10620 (dabbrev--abbrev-at-point): Simplify regexp.
10621
10622 * abbrev.el (abbrev--before-point): Use word-motion functions
10623 if :regexp is not specified (bug#5031).
10624
10625 * subr.el (string-prefix-p): New function.
10626
10627 * man.el (Man-completion-cache): New var.
10628 (Man-completion-table): Use it.
10629
10630 * vc.el (vc-print-log-internal): Make `limit' optional for better
10631 compatibility (e.g. with vc-annotate.el).
10632
10633 2009-11-24 Kevin Ryde <user42@zip.com.au>
10634
10635 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp):
10636 Build value with regexp-opt instead of explicit joining loop. (Bug#4927)
10637
10638 * emacs-lisp/elint.el (elint-add-required-env): Better error message
10639 when .el source file not found or other error.
10640
10641 2009-11-24 Markus Triska <markus.triska@gmx.at>
10642
10643 * linum.el (linum-update-window): Ignore intangible (bug#4996).
10644
10645 2009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
10646
10647 Handle the [back] button properly (bug#4979).
10648 * descr-text.el (describe-text-properties): Add a `buffer' argument.
10649 Use help-setup-xref, help-buffer, and with-help-window.
10650 (describe-char): Add `buffer' argument.
10651 Pass proper command to help-setup-xref. Don't meddle with
10652 help-xref-stack-item directly.
10653 (describe-text-category): Use with-help-window and help-buffer.
10654
10655 * emacs-lisp/shadow.el (list-load-path-shadows): Setup a major mode
10656 for the displayed buffer (bug#4887).
10657
10658 * man.el (Man-completion-table): New function.
10659 (man): Use it.
10660
10661 2009-11-24 David Reitter <david.reitter@gmail.com>
10662
10663 * vc-git.el (vc-git-registered): Use checkout directory (where
10664 .git is) rather than the file's directory and a relative path spec
10665 to work around a bug in git.
10666
10667 2009-11-24 Michael Albinus <michael.albinus@gmx.de>
10668
10669 Improve handling of processes on remote hosts.
10670
10671 * eshell/esh-util.el (eshell-path-env): New defvar.
10672 (eshell-parse-colon-path): New defun.
10673 (eshell-file-attributes): Use `eshell-parse-colon-path'.
10674
10675 * eshell/esh-ext.el (eshell-search-path):
10676 Use `eshell-parse-colon-path'.
10677 (eshell-remote-command): Remove argument HANDLER.
10678 (eshell-external-command): Check for FTP remote connection.
10679
10680 * eshell/esh-proc.el (eshell-gather-process-output):
10681 Use `file-truename', in order to start also symlinked files.
10682 Apply `start-file-process' instead of `start-process'.
10683 Shorten `command' to the local file name part.
10684
10685 * eshell/em-cmpl.el (eshell-complete-commands-list):
10686 Use `eshell-parse-colon-path'.
10687
10688 * eshell/em-unix.el (eshell/du): Check for FTP remote connection.
10689
10690 * net/tramp.el (tramp-eshell-directory-change): New defun. Add it
10691 to `eshell-directory-change-hook'.
10692
10693 2009-11-24 Tassilo Horn <tassilo@member.fsf.org>
10694
10695 * doc-view.el (doc-view-mode): Switch off view-mode explicitly,
10696 because it could be enabled automatically if view-read-only is non-nil.
10697
10698 2009-11-24 Michael Kifer <kifer@cs.stonybrook.edu>
10699
10700 * ediff-vers.el (ediff-rcs-get-output-buffer): Revert the change
10701 made on 2009-11-22.
10702
10703 2009-11-24 Glenn Morris <rgm@gnu.org>
10704
10705 * bookmark.el (bookmark-bmenu-hide-filenames): Remove assignment to
10706 deleted variable bookmark-bmenu-bookmark-column.
10707
10708 2009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
10709
10710 * bookmark.el (bookmark-bmenu-search): Clear echo area when exiting.
10711
10712 2009-11-23 Ken Brown <kbrown@cornell.edu> (tiny change)
10713
10714 * net/browse-url.el (browse-url-filename-alist): On Windows, add
10715 two slashes to the "file:" prefix.
10716 (browse-url-file-url): De-munge Cygwin filenames before passing
10717 them to Windows browser.
10718 (browse-url-default-windows-browser): Use call-process.
10719
10720 2009-11-23 Juri Linkov <juri@jurta.org>
10721
10722 Implement DocView Continuous mode. (Bug#4896)
10723 * doc-view.el (doc-view-continuous-mode): New defcustom.
10724 (doc-view-mode-map): Bind C-n/<down> to
10725 `doc-view-next-line-or-next-page', C-p/<up> to
10726 `doc-view-previous-line-or-previous-page'.
10727 (doc-view-next-line-or-next-page)
10728 (doc-view-previous-line-or-previous-page): New commands.
10729
10730 2009-11-23 Juri Linkov <juri@jurta.org>
10731
10732 Implement Isearch in comint input history. (Bug#3746)
10733 * comint.el (comint-mode): Add `comint-history-isearch-setup' to
10734 `isearch-mode-hook'.
10735 (comint-history-isearch): New defcustom.
10736 (comint-history-isearch-backward)
10737 (comint-history-isearch-backward-regexp): New commands.
10738 (comint-history-isearch-message-overlay): New buffer-local variable.
10739 (comint-history-isearch-setup, comint-history-isearch-end)
10740 (comint-goto-input, comint-history-isearch-search)
10741 (comint-history-isearch-message, comint-history-isearch-wrap)
10742 (comint-history-isearch-push-state)
10743 (comint-history-isearch-pop-state): New functions.
10744
10745 2009-11-23 Michael Albinus <michael.albinus@gmx.de>
10746
10747 * net/tramp.el (tramp-shell-prompt-pattern): Use \r for carriage
10748 return.
10749 (tramp-handle-make-symbolic-link)
10750 (tramp-handle-dired-compress-file, tramp-handle-expand-file-name):
10751 Quote file names.
10752 (tramp-send-command-and-check): New argument DONT-SUPPRESS-ERR.
10753 (tramp-handle-process-file): Use it.
10754
10755 2009-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
10756
10757 * window.el (move-to-window-line-last-op): Remove.
10758 (move-to-window-line-top-bottom): Reuse recenter-last-op instead.
10759
10760 2009-11-23 Deniz Dogan <deniz.a.m.dogan@gmail.com> (tiny change)
10761
10762 Make M-r mirror the new cycling behavior of C-l.
10763 * window.el (move-to-window-line-last-op): New var.
10764 (move-to-window-line-top-bottom): New command.
10765 (global-map): Bind M-r move-to-window-line-top-bottom.
10766
10767 2009-11-23 Sven Joachim <svenjoac@gmx.de>
10768
10769 * dired-x.el (dired-guess-shell-alist-default):
10770 Support xz format. (Bug#4953)
10771
10772 2009-11-22 Michael Kifer <kifer@cs.stonybrook.edu>
10773
10774 * emulation/viper-cmd.el: Use viper-last-command-char instead of
10775 last-command-char/last-command-event.
10776 (viper-prefix-arg-value): Do correct conversion of event-char for
10777 XEmacs.
10778
10779 * emulation/viper-util.el, emulation/viper.el:
10780 Use viper-last-command-char instead of
10781 last-command-char/last-command-event.
10782
10783 * ediff-init.el, ediff-mult.el, ediff-util.el:
10784 Replace last-command-char and last-command-event
10785 with (ediff-last-command-char) everywhere.
10786
10787 * ediff-vers.el (ediff-rcs-get-output-buffer): Make sure the buffer is
10788 created in fundamental mode.
10789
10790 * ediff.el (ediff-version): Revert the change of interactive-p to
10791 called-interactively-p.
10792
10793 2009-11-22 Tassilo Horn <tassilo@member.fsf.org>
10794
10795 * progmodes/subword.el (subword-mode-map): Fix subword-mode-map
10796 generation from word-movement command names.
10797
10798 2009-11-21 Jan Djärv <jan.h.d@swipnet.se>
10799
10800 * cus-start.el (all): Add native condition for font-use-system-font.
10801
10802 2009-11-21 Nathaniel Flath <flat0103@gmail.com>
10803
10804 * progmodes/cc-menus.el (cc-imenu-java-generic-expression):
10805 Correct the patch from 2009-11-18. (Bug#3910)
10806
10807 2009-11-21 Tassilo Horn <tassilo@member.fsf.org>
10808
10809 * progmodes/subword.el: Rename from lisp/subword.el.
10810
10811 * subword.el: Rename to progmodes/subword.el.
10812
10813 * Makefile.in (ELCFILES): Adapt to subword.el move.
10814
10815 2009-11-21 Thierry Volpiatto <thierry.volpiatto@gmail.com>
10816 Stefan Monnier <monnier@iro.umontreal.ca>
10817
10818 * bookmark.el (bookmark-bmenu-bookmark-column): Remove var.
10819 (bookmark-bmenu-list): Save name on `bookmark-name-prop' text-prop.
10820 (bookmark-bmenu-show-filenames): Use push.
10821 (bookmark-bmenu-hide-filenames): Use local var instead of
10822 bookmark-bmenu-bookmark-column. Use pop. Don't save window-excursion.
10823 (bookmark-bmenu-bookmark): Use the new `bookmark-name-prop' text-prop.
10824 (bookmark-bmenu-execute-deletions): Don't bother adding/removing the
10825 filenames now that the bookmark names are always available.
10826
10827 2009-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
10828
10829 * bookmark.el (bookmark-search-prompt, bookmark-search-timer): Remove.
10830 (bookmark-search-pattern): Move and leave unbound.
10831 (bookmark-bmenu-mode-map): Change binding.
10832 (bookmark-read-search-input): Simplify.
10833 Don't use text-char-description. Don't error on non-char events.
10834 (bookmark-filtered-alist-by-regexp-only): Remove by folding into the
10835 only caller (i.e. bookmark-bmenu-filter-alist-by-regexp).
10836 (bookmark-bmenu-search): Don't check we're in a bookmark-list buffer.
10837 Use a local var for the timer.
10838 (bookmark-bmenu-cancel-search): Remove by folding into the only caller
10839 (i.e. bookmark-bmenu-search).
10840
10841 2009-11-21 Glenn Morris <rgm@gnu.org>
10842
10843 * mail/rmailmm.el (rmail-mime): Decode in fundamental-mode. (Bug#4993)
10844
10845 2009-11-20 Ken Brown <kbrown@cornell.edu> (tiny change)
10846
10847 * net/browse-url.el (browse-url-default-windows-browser):
10848 Use cygstart for cygwin.
10849
10850 2009-11-20 Karl Fogel <karl.fogel@red-bean.com>
10851
10852 * bookmark.el: Formatting and doc fixes only:
10853 (bookmark-search-delay): Shorten doc string to fit in 80 columns.
10854 (bookmark-bmenu-search): Wrap to fit within 80 columns.
10855 Minor grammar and punctuation fixes in doc string.
10856 (bookmark-read-search-input): Adjust to fit within 80 columns.
10857
10858 2009-11-20 Tassilo Horn <tassilo@member.fsf.org>
10859
10860 * progmodes/cc-cmds.el (c-forward-into-nomenclature)
10861 (c-backward-into-nomenclature): Adapt to subword renaming.
10862
10863 * subword.el (subword-forward, subword-backward, subword-mark)
10864 (subword-kill, subword-backward-kill, subword-transpose)
10865 (subword-downcase, subword-upcase, subword-capitalize)
10866 (subword-forward-internal, subword-backward-internal):
10867 Rename from forward-subword, backward-subword, mark-subword,
10868 kill-subword, backward-kill-subword, transpose-subwords,
10869 downcase-subword, upcase-subword, capitalize-subword,
10870 forward-subword-internal, backward-subword-internal.
10871
10872 2009-11-20 Thierry Volpiatto <thierry.volpiatto@gmail.com>
10873
10874 * bookmark.el (bookmark-search-delay, bookmark-search-prompt):
10875 New options.
10876 (bookmark-search-pattern, bookmark-search-timer, bookmark-quit-flag):
10877 New vars.
10878 (bookmark-read-search-input, bookmark-filtered-alist-by-regexp-only)
10879 (bookmark-bmenu-filter-alist-by-regexp)
10880 (bookmark-bmenu-goto-bookmark, bookmark-bmenu-cancel-search): New funs.
10881 (bookmark-bmenu-search): New command.
10882 (bookmark-bmenu-mode-map): Bind it.
10883
10884 2009-11-20 Tassilo Horn <tassilo@member.fsf.org>
10885
10886 * progmodes/cc-cmds.el: declare-functioned forward-subword and
10887 backward-subword to quit the byte-compiler.
10888
10889 * makefile.w32-in: Don't refer cc-subword.elc but subword.elc.
10890
10891 * Makefile.in: Don't refer cc-subword.elc but subword.elc.
10892
10893 * progmodes/cc-cmds.el (c-update-modeline)
10894 (c-forward-into-nomenclature, c-backward-into-nomenclature):
10895 Refer to subword.el functions instead of cc-subword.el.
10896
10897 * progmodes/cc-mode.el (subword-mode, c-mode-base-map): Refer to
10898 subword.el functions instead of cc-subword.el.
10899
10900 * progmodes/cc-subword.el: Rename to subword.el.
10901 * subword.el: Rename from progmodes/cc-subword.el.
10902 (subword-mode-map): Rename from c-subword-mode-map.
10903 (subword-mode): Rename from c-subword-mode.
10904 (global-subword-mode): New global minor mode.
10905 (forward-subword): Rename from c-forward-subword.
10906 (backward-subword): Rename from c-backward-subword.
10907 (mark-subword): Rename from c-mark-subword.
10908 (kill-subword): Rename from c-kill-subword.
10909 (backward-kill-subword): Rename from c-backward-kill-subword.
10910 (transpose-subwords): Rename from c-tranpose-subword.
10911 (downcase-subword): Rename from c-downcase-subword.
10912 (capitalize-subword): Rename from c-capitalize-subword.
10913 (forward-subword-internal): Rename from c-forward-subword-internal.
10914 (backward-subword-internal): Rename from c-backward-subword-internal.
10915
10916 2009-11-20 Dan Nicolaescu <dann@ics.uci.edu>
10917
10918 * vc.el (vc-deduce-fileset): Allow non-state changing operations
10919 from a dired buffer.
10920 (vc-dired-deduce-fileset): New function.
10921 (vc-root-diff, vc-print-root-log): Use it.
10922
10923 * vc-annotate.el (vc-annotate-show-log-revision-at-line): Pass a
10924 nil LIMIT argument to vc-print-log-internal.
10925
10926 2009-11-20 Glenn Morris <rgm@gnu.org>
10927
10928 * Makefile.in (ELCFILES): Regenerate.
10929
10930 2009-11-20 Jay Belanger <jay.p.belanger@gmail.com>
10931
10932 * calc/calc.el (calc-set-mode-line):
10933 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
10934 (math-format-number): Rename `math-format-complement-signed' to
10935 `math-format-twos-complement'.
10936
10937 * calc/calc-bin.el (math-format-twos-complement): Rename from
10938 math-format-complement-signed.
10939 (calc-radix): Rename `calc-complement-signed-mode' to
10940 `calc-twos-complement-mode'.
10941 (calc-octal-radix, calc-hex-radix): Add an argument for
10942 two's complement.
10943
10944 * calc/calc-embed.el (calc-embedded-mode-vars):
10945 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
10946
10947 * calc/calc-ext.el (calc-init-extensions):
10948 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
10949 (math-format-number-fancy): Let `calc-twos-complement-mode' be nil.
10950
10951 * calc/calc-units.el (math-build-units-table-buffer):
10952 Let `calc-twos-complement-mode' be nil.
10953
10954 * calc/calc-menu.el (calc-modes-menu): Clean up two's complement
10955 entries.
10956
10957 * calc/calc-vec.el (calcFunc-vunpack):
10958 * calc/calc-aent.el (calc-do-calc-eval):
10959 * calc/calc-forms.el (math-format-date):
10960 * calc/calc-graph.el (calc-graph-plot):
10961 * calc/calc-math.el (math-use-emacs-fn):
10962 * calc/calccomp.el (math-compose-expr):
10963 Let `calc-twos-complement-mode' be nil.
10964
10965 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
10966
10967 * abbrev.el (abbrev-with-wrapper-hook): (re)move...
10968 * simple.el (with-wrapper-hook): ...to here. Add argument `args'.
10969 * minibuffer.el (completion-in-region-functions): New hook.
10970 (completion-in-region): New function.
10971 * emacs-lisp/lisp.el (lisp-complete-symbol):
10972 * pcomplete.el (pcomplete-std-complete): Use it.
10973
10974 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
10975
10976 * textmodes/tex-mode.el (latex-complete-bibtex-cache)
10977 (latex-complete-alist): New vars.
10978 (latex-string-prefix-p, latex-complete-bibtex-keys)
10979 (latex-complete-envnames, latex-complete-refkeys)
10980 (latex-complete-data): New functions.
10981 (latex-complete, latex-indent-or-complete): New commands.
10982
10983 * window.el (display-buffer-mark-dedicated): New var.
10984 (display-buffer): Obey it.
10985 * minibuffer.el (minibuffer-completion-help): Use it.
10986
10987 * progmodes/sym-comp.el (symbol-complete): Use completion-in-region.
10988
10989 * filecache.el (file-cache-add-file): Use push and cons.
10990 (file-cache-delete-file-regexp): Use push.
10991 (file-cache-complete): Use completion-in-region.
10992
10993 * simple.el (with-wrapper-hook): Fix thinko.
10994
10995 * hfy-cmap.el (hfy-rgb-file): Use locate-file.
10996 (htmlfontify-load-rgb-file): Remove unnused var `ff'.
10997 Use with-current-buffer and string-to-number.
10998 (hfy-fallback-colour-values): Use assoc-string.
10999 * htmlfontify.el (hfy-face-to-css): Remove unused var `style'.
11000 (hfy-face-at): Remove unused var `found-face'.
11001 (hfy-compile-stylesheet): Remove unused var `css'.
11002 (hfy-fontify-buffer): Remove unused vars `in-style', `invis-button',
11003 and `orig-buffer'.
11004 (hfy-buffer, hfy-copy-and-fontify-file, hfy-parse-tags-buffer):
11005 Use with-current-buffer.
11006 (hfy-text-p): Use expand-file-name and fewer setq.
11007
11008 2009-11-19 Vivek Dasmohapatra <vivek@etla.org>
11009
11010 * htmlfontify.el, hfy-cmap.el: New files.
11011
11012 2009-11-19 Juri Linkov <juri@jurta.org>
11013
11014 * minibuffer.el (completions-format): New defcustom.
11015 (completion--insert-strings): Implement vertical format.
11016
11017 * simple.el (switch-to-completions): Move point to the first
11018 completion when point was at the beginning of the buffer.
11019
11020 2009-11-19 Juri Linkov <juri@jurta.org>
11021
11022 * find-dired.el (find-name-arg): Remove autoload. (Bug#4387)
11023
11024 * progmodes/grep.el (rgrep): Require `find-dired' for `find-name-arg'.
11025
11026 2009-11-19 Chong Yidong <cyd@stupidchicken.com>
11027
11028 * mail/sendmail.el (mail-yank-prefix): Change default to "> ".
11029 (mail-signature): Change default to t.
11030 (mail-from-style): Deprecate `system-default' value.
11031 (mail-insert-from-field): For default value of mail-from-style,
11032 default to `angles' unless `angles' needs quoting and `parens'
11033 does not.
11034 (mail-citation-prefix-regexp): Use citation regexp from
11035 message-mode.
11036
11037 2009-11-19 Michael Albinus <michael.albinus@gmx.de>
11038
11039 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
11040 Set variables for computing the prompt for reading password.
11041
11042 2009-11-19 Glenn Morris <rgm@gnu.org>
11043
11044 * dired-aux.el (dired-compress-file-suffixes): Add ".xz". (Bug#4953)
11045
11046 * textmodes/flyspell.el (sgml-lexical-context): Declare.
11047
11048 * net/newst-treeview.el (newsticker-treeview-treewindow-width)
11049 (newsticker-treeview-listwindow-height): Fix custom type.
11050
11051 2009-11-19 Kenichi Handa <handa@m17n.org>
11052
11053 * descr-text.el (describe-char-padded-string): Compose with TAB
11054 only if there's a font for CH.
11055 (describe-char): Fix the condition for detecting a trivial composition.
11056
11057 2009-11-18 Nathaniel Flath <flat0103@gmail.com>
11058
11059 * progmodes/cc-menus.el (cc-imenu-java-generic-expression): A new,
11060 more accurate version of the regexp. (Bug#3910)
11061
11062 2009-11-18 Bernhard Herzog <bernhard.herzog@intevation.de> (tiny change)
11063
11064 * vc-hg.el (vc-hg-diff): Fix last patch: do not change directory.
11065
11066 2009-11-18 Juanma Barranquero <lekktu@gmail.com>
11067
11068 * font-setting.el (font-use-system-font): Declare for byte-compiler.
11069 (font-setting-change-default-font): Fix typo in docstring.
11070
11071 2009-11-18 Alan Mackenzie <acm@muc.de>
11072
11073 * progmodes/cc-defs.el (c-version): Bump to 5.31.8.
11074
11075 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
11076
11077 * font-setting.el (font-use-system-font): Move ...
11078
11079 * cus-start.el (all): ... to here.
11080
11081 2009-11-17 Michael Albinus <michael.albinus@gmx.de>
11082
11083 * net/tramp.el (tramp-advice-file-expand-wildcards): Simplify.
11084 Don't set `ad-return-value' if `ad-do-it' doesn't.
11085
11086 * net/tramp-gvfs.el (tramp-gvfs-handle-write-region): Set file
11087 modification time.
11088
11089 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
11090
11091 * menu-bar.el: Put "Use system font" in Option-menu.
11092 (menu-bar-options-save): Add font-use-system-font.
11093
11094 * loadup.el: If feature system-font-setting or font-render-setting is
11095 there, load font-setting.
11096
11097 * Makefile.in (ELCFILES): Add font-settings.el.
11098 * font-setting.el: New file.
11099
11100 2009-11-17 Glenn Morris <rgm@gnu.org>
11101
11102 * vc-svn.el (vc-svn-print-log): Fix typo in previous.
11103
11104 * net/newst-treeview.el (newsticker--treeview-list-update-faces):
11105 Preserve point in the list buffer. (Bug#4939)
11106 Use point-at-eol.
11107 (newsticker--treeview-list-update-highlight)
11108 (newsticker--treeview-tree-update-highlight): Use point-at-bol/eol.
11109
11110 2009-11-16 Jay Belanger <jay.p.belanger@gmail.com>
11111
11112 * calc/calc-bin.el (math-symclip, calcFunc-symclip, calc-symclip):
11113 Remove.
11114
11115 * calc/calc-ext.el (calc-init-extensions): Remove references to
11116 symclip.
11117
11118 * calc/calc-menu.el (calc-arithmetic-menu): Remove `calc-symclip'.
11119
11120 * calc/calc-map.el (calc-get-operator, calc-b-oper-keys):
11121 * calc/calc-help.el (calc-b-prefix-help): Remove references to
11122 `calc-symclip'.
11123
11124 2009-11-16 Kevin Ryde <user42@zip.com.au>
11125
11126 * textmodes/flyspell.el (sgml-mode-flyspell-verify):
11127 Use `sgml-lexical-context' instead of own parse for tag (Bug#4511).
11128
11129 * emacs-lisp/lisp-mnt.el (lm-keywords): Allow multi-line keywords.
11130 (lm-keywords-list): Allow comma-only separator like "foo,bar".
11131 Ignore trailing spaces by omit-nulls to split-string (fixing
11132 regression from Emacs 21 due to the incompatible split-string
11133 change). (Bug #4928.)
11134
11135 2009-11-16 Dan Nicolaescu <dann@ics.uci.edu>
11136
11137 * vc.el (vc-log-show-limit): Default to 2000.
11138 (vc-print-log-internal): Insert buttons to request more entries
11139 when limiting the output.
11140
11141 * vc-sccs.el (vc-sccs-print-log):
11142 * vc-rcs.el (vc-rcs-print-log):
11143 * vc-cvs.el (vc-cvs-print-log):
11144 * vc-git.el (vc-git-print-log): Return 'limit-unsupported when
11145 LIMIT is non-nil.
11146
11147 2009-11-16 Michael Albinus <michael.albinus@gmx.de>
11148
11149 * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error): Raise only an
11150 error when `tramp-gvfs-dbus-event-vector' is set.
11151 (tramp-gvfs-maybe-open-connection): Loop over `read-event'.
11152
11153 2009-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
11154
11155 * vc-rcs.el (vc-rcs-consult-headers): Add missing save-excursion.
11156
11157 2009-11-16 Michael Albinus <michael.albinus@gmx.de>
11158
11159 * net/dbus.el (dbus-unregister-service): New defun.
11160 (dbus-register-property): Register the handlers of
11161 "org.freedesktop.DBus.Properties" for SERVICE.
11162 (dbus-property-handler): Fix docstring.
11163
11164 2009-11-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11165
11166 * emacs-lisp/bytecomp.el (byte-compile-output-file-form):
11167 Quote doc string reference in defvaralias as it is not in special form.
11168 (byte-compile-output-docform): Doc fix.
11169
11170 2009-11-16 Jay Belanger <jay.p.belanger@gmail.com>
11171
11172 * calc/calc.el (math-2-word-size, math-half-2-word-size)
11173 (calc-complement-signed-mode): New variables.
11174 (calc-set-mode-line): Add indicator for twos-complements.
11175 (math-format-number): Format twos-complement notation.
11176
11177 * calc/calc-bin.el (calc-word-size): Reset the variables
11178 `math-2-word-size' and `math-half-2-word-size'.
11179 (math-format-complement-signed, math-symclip, calcFunc-symclip)
11180 (calc-symclip): New functions.
11181
11182 * calc/calc-aent.el (math-read-token): Read complement signed numbers.
11183
11184 * calc/calc-embed.el (calc-embedded-mode-vars):
11185 Add `calc-complement-signed-mode' to the list of modes.
11186
11187 * calc/calc-map.el (calc-get-operator): Add `calc-symclip'.
11188 (calc-b-oper-keys): Add `calc-symclip' to list.
11189
11190 * calc/calc-ext.el (math-read-number-fancy): Read complement
11191 signed numbers.
11192 (calc-init-extensions): Add binding for `calc-symclip'.
11193 Add autoload for `calcFunc-symclip' and `calc-symclip'.
11194
11195 * calc/calc-menu.el (calc-arithmetic-menu): Add item for
11196 `calc-symclip'.
11197 (calc-modes-menu): Add item for twos complement mode.
11198
11199 * calc/calc-help.el (calc-b-prefix-help): Add help for `calc-symclip'.
11200
11201 2009-11-15 Chong Yidong <cyd@stupidchicken.com>
11202
11203 * register.el (jump-to-register, insert-register): Handle Semantic
11204 tags. From commented-out advice in semantic/senator.el.
11205
11206 2009-11-15 Dan Nicolaescu <dann@ics.uci.edu>
11207
11208 * vc.el (vc-log-show-limit): New variable.
11209 (vc-print-log, vc-print-root-log): Add new argument LIMIT. Set it
11210 when using a prefix argument.
11211 (vc-print-log-internal): Add new argument LIMIT.
11212
11213 * vc-svn.el (vc-svn-print-log):
11214 * vc-mtn.el (vc-mtn-print-log):
11215 * vc-hg.el (vc-hg-print-log):
11216 * vc-bzr.el (vc-bzr-print-log): Add new optional argument LIMIT,
11217 pass it to the log command when set. Make the BUFFER argument
11218 non-optional.
11219
11220 * vc-sccs.el (vc-sccs-print-log):
11221 * vc-rcs.el (vc-rcs-print-log):
11222 * vc-git.el (vc-git-print-log):
11223 * vc-cvs.el (vc-cvs-print-log): Add new optional argument LIMIT,
11224 ignore it. Make the BUFFER argument non-optional
11225
11226 * bindings.el (mode-line-buffer-identification): Do not purecopy.
11227
11228 2009-11-15 Chong Yidong <cyd@stupidchicken.com>
11229
11230 * dired.el (dired-mode-map): Move encryption items to "Operate"
11231 menu (Bug#4703).
11232
11233 * strokes.el (strokes-update-window-configuration): Make strokes
11234 buffer current before erasing (Bug#4906).
11235
11236 2009-11-15 Juri Linkov <juri@jurta.org>
11237
11238 * simple.el (set-mark-default-inactive): Add :type, :group
11239 and :version. (Bug#4876)
11240
11241 2009-11-15 Michael Albinus <michael.albinus@gmx.de>
11242
11243 * arc-mode.el (archive-maybe-copy): Move creation of directory ...
11244 (archive-unique-fname): ... here. (Bug#4929)
11245
11246 2009-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
11247
11248 * help-mode.el (help-make-xrefs): Undo the last revert, and replace it
11249 with a real fix.
11250
11251 * novice.el (disabled-command-function): Add useful args.
11252 Setup the help buffer so that [back] works.
11253 Remove redundant call to help-mode.
11254 (disabled-command-function): Use `case'.
11255 (en/disable-command): New function extracted from enable-command.
11256 (enable-command, disable-command): Use it.
11257
11258 2009-11-14 Glenn Morris <rgm@gnu.org>
11259
11260 * menu-bar.el (menu-bar-tools-menu): Read and send mail entries are not
11261 constants. (Bug#4913)
11262
11263 * emacs-lisp/elint.el (elint-standard-variables): Doc fix.
11264
11265 2009-11-14 Shigeru Fukaya <shigeru.fukaya@gmail.com>
11266
11267 * emacs-lisp/elint.el (elint-standard-variables): Add some variables
11268 defined in C that have no doc-strings. (Bug#1063)
11269
11270 2009-11-14 Francis Wright <F.J.Wright@qmul.ac.uk>
11271
11272 * cus-edit.el (data, files):
11273 * ps-print.el (postscript): Doc fixes for custom groups. (Bug#3327)
11274
11275 2009-11-14 Chong Yidong <cyd@stupidchicken.com>
11276
11277 * simple.el (shell-command): Doc fix (Bug#4891).
11278
11279 * help-mode.el (help-make-xrefs): Revert 2009-11-13 change.
11280
11281 2009-11-14 Glenn Morris <rgm@gnu.org>
11282
11283 * emulation/viper.el (viper-set-hooks): Remove duplicate advice
11284 statements for vc-diff, emerge-quit, and rmail-cease-edit.
11285 If they are already loaded, eval-after-load will do the right thing.
11286
11287 * speedbar.el (top-level): Remove unnecessary load of ange-ftp when
11288 compiling.
11289
11290 * emacs-lisp/bytecomp.el (byte-compile-single-version): Remove, unused.
11291
11292 * simple.el (x-selection-owner-p): Declare.
11293 (read-mail-command): Use custom radio type rather than choice.
11294 (completion-no-auto-exit): Doc fix.
11295
11296 * custom.el (defgroup):
11297 * epg-config.el (epg): Doc fixes.
11298
11299 2009-11-14 Dan Nicolaescu <dann@ics.uci.edu>
11300
11301 * bindings.el (mode-line-buffer-identification): Purecopy only the string.
11302 * international/ccl.el (define-ccl-program): Do not purecopy the
11303 docstring, defconst does it anyway.
11304
11305 2009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
11306
11307 * add-log.el (add-change-log-entry): Avoid displaying the changelog
11308 a second time.
11309
11310 * x-dnd.el (x-dnd-maybe-call-test-function):
11311 * window.el (split-window-vertically):
11312 * whitespace.el (whitespace-help-on):
11313 * vc-rcs.el (vc-rcs-consult-headers):
11314 * userlock.el (ask-user-about-lock-help)
11315 (ask-user-about-supersession-help):
11316 * type-break.el (type-break-force-mode-line-update):
11317 * time-stamp.el (time-stamp-conv-warn):
11318 * terminal.el (te-set-output-log, te-more-break, te-filter)
11319 (te-sentinel, terminal-emulator):
11320 * term.el (make-term, term-exec, term-sentinel, term-read-input-ring)
11321 (term-write-input-ring, term-check-source, term-start-output-log):
11322 (term-display-buffer-line, term-dynamic-list-completions):
11323 (term-ansi-make-term, serial-term):
11324 * subr.el (selective-display):
11325 * strokes.el (strokes-xpm-to-compressed-string, strokes-decode-buffer)
11326 (strokes-encode-buffer, strokes-xpm-for-compressed-string):
11327 * speedbar.el (speedbar-buffers-tail-notes, speedbar-buffers-item-info)
11328 (speedbar-reconfigure-keymaps, speedbar-add-localized-speedbar-support)
11329 (speedbar-remove-localized-speedbar-support)
11330 (speedbar-set-mode-line-format, speedbar-create-tag-hierarchy)
11331 (speedbar-update-special-contents, speedbar-buffer-buttons-engine)
11332 (speedbar-buffers-line-directory):
11333 * simple.el (shell-command-on-region, append-to-buffer)
11334 (prepend-to-buffer):
11335 * shadowfile.el (shadow-save-todo-file):
11336 * scroll-bar.el (scroll-bar-set-window-start, scroll-bar-drag-1)
11337 (scroll-bar-maybe-set-window-start):
11338 * sb-image.el (speedbar-image-dump):
11339 * saveplace.el (save-place-alist-to-file, save-places-to-alist)
11340 (load-save-place-alist-from-file):
11341 * ps-samp.el (ps-print-message-from-summary):
11342 * ps-print.el (ps-flush-output, ps-insert-file, ps-get-boundingbox)
11343 (ps-background-image, ps-begin-job, ps-do-despool):
11344 * ps-bdf.el (bdf-find-file, bdf-read-font-info):
11345 * printing.el (pr-interface, pr-ps-file-print, pr-find-buffer-visiting)
11346 (pr-ps-message-from-summary, pr-lpr-message-from-summary):
11347 (pr-call-process, pr-file-list, pr-interface-save):
11348 * novice.el (disabled-command-function)
11349 (enable-command, disable-command):
11350 * mouse.el (mouse-buffer-menu-alist):
11351 * mouse-copy.el (mouse-kill-preserving-secondary):
11352 * macros.el (kbd-macro-query):
11353 * ledit.el (ledit-go-to-lisp, ledit-go-to-liszt):
11354 * informat.el (batch-info-validate):
11355 * ido.el (ido-copy-current-word, ido-initiate-auto-merge):
11356 * hippie-exp.el (try-expand-dabbrev-visible):
11357 * help-mode.el (help-make-xrefs):
11358 * help-fns.el (describe-variable):
11359 * generic-x.el (bat-generic-mode-run-as-comint):
11360 * finder.el (finder-mouse-select):
11361 * find-dired.el (find-dired-sentinel):
11362 * filesets.el (filesets-file-close):
11363 * files.el (list-directory):
11364 * faces.el (list-faces-display, describe-face):
11365 * facemenu.el (list-colors-display):
11366 * ezimage.el (ezimage-image-association-dump, ezimage-image-dump):
11367 * epg.el (epg--process-filter, epg-cancel):
11368 * epa.el (epa--marked-keys, epa--select-keys, epa-display-info)
11369 (epa--read-signature-type):
11370 * emerge.el (emerge-copy-as-kill-A, emerge-copy-as-kill-B)
11371 (emerge-file-names):
11372 * ehelp.el (electric-helpify):
11373 * ediff.el (ediff-regions-wordwise, ediff-regions-linewise):
11374 * ediff-vers.el (rcs-ediff-view-revision):
11375 * ediff-util.el (ediff-setup):
11376 * ediff-mult.el (ediff-append-custom-diff):
11377 * ediff-diff.el (ediff-exec-process, ediff-process-sentinel)
11378 (ediff-wordify):
11379 * echistory.el (Electric-command-history-redo-expression):
11380 * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
11381 * disp-table.el (describe-display-table):
11382 * dired.el (dired-find-buffer-nocreate):
11383 * dired-aux.el (dired-rename-subdir, dired-dwim-target-directory):
11384 * dabbrev.el (dabbrev--same-major-mode-p):
11385 * chistory.el (list-command-history):
11386 * apropos.el (apropos-documentation):
11387 * allout.el (allout-obtain-passphrase):
11388 (allout-copy-exposed-to-buffer):
11389 (allout-verify-passphrase): Use with-current-buffer.
11390
11391 2009-11-13 Glenn Morris <rgm@gnu.org>
11392
11393 * Makefile.in (ELCFILES): Regenerate.
11394
11395 2009-11-13 Michael Albinus <michael.albinus@gmx.de>
11396
11397 * net/dbus.el (dbus-registered-objects-table): Rename from
11398 `dbus-registered-functions-table', because it contains also properties.
11399 (dbus-unregister-object): Unregister also properties.
11400 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
11401 Use a timeout of 500 msec, in order to not block.
11402 (dbus-register-property, dbus-property-handler): New defuns.
11403
11404 2009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
11405
11406 * simple.el (minibuffer-default-add-completions): Drop deprecated
11407 4th arg.
11408
11409 2009-11-13 Tomas Abrahamsson <tab@lysator.liu.se>
11410
11411 * textmodes/artist.el (artist-mouse-choose-operation):
11412 Call `tmm-prompt' instead of `x-popup-menu' if we cannot popup
11413 menus. Bug noticed by Eli Zaretskii <eliz@gnu.org>.
11414 (artist-compute-up-event-key): New function.
11415 (artist-mouse-choose-operation, artist-down-mouse-1): Call it.
11416
11417 2009-11-13 Kenichi Handa <handa@m17n.org>
11418
11419 * language/japan-util.el: Make sure that the value of jisx0208
11420 property is jisx0208 character.
11421
11422 2009-11-13 Dan Nicolaescu <dann@ics.uci.edu>
11423
11424 * international/mule.el (auto-coding-regexp-alist): Only purecopy
11425 car or each item, not the whole list.
11426
11427 2009-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
11428
11429 * minibuffer.el (minibuffer-completion-help):
11430 Use minibuffer-hide-completions.
11431
11432 2009-11-12 Per Starbäck <per@starback.se> (tiny change)
11433
11434 * dired.el (dired-save-positions, dired-restore-positions): New funs.
11435 (dired-revert): Use them (bug#4880).
11436
11437 2009-11-12 Dan Nicolaescu <dann@ics.uci.edu>
11438
11439 * tooltip.el (tooltip-frame-parameters): Undo previous change.
11440
11441 2009-11-12 Juri Linkov <juri@jurta.org>
11442
11443 * ffap.el (ffap-alternate-file-other-window, ffap-literally):
11444 New functions.
11445 (find-file-literally-at-point): Alias of `ffap-literally'.
11446
11447 2009-11-12 Dan Nicolaescu <dann@ics.uci.edu>
11448
11449 * textmodes/ispell.el (ispell-skip-region-alist):
11450 * textmodes/css-mode.el (auto-mode-alist):
11451 * progmodes/compile.el (auto-mode-alist):
11452 * international/mule.el (ctext-non-standard-encodings-alist)
11453 (ctext-non-standard-encodings-regexp):
11454 * simple.el (shell-command-switch, text-read-only):
11455 * replace.el (occur-mode-map):
11456 * paths.el (rmail-file-name):
11457 * jka-cmpr-hook.el (jka-compr-build-file-regexp):
11458 * find-file.el (ff-special-constructs):
11459 * files.el (file-name-handler-alist):
11460 * composite.el: Purecopy strings.
11461
11462 * emacs-lisp/cl-macs.el (define-compiler-macro): Purecopy the file name.
11463
11464 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
11465
11466 * widget.el (define-widget): Purecopy the docstring.
11467 * international/mule-cmds.el (charset): Do not purecopy the
11468 docstring here, define-widget does it.
11469
11470 * textmodes/texinfo.el (texinfo-open-quote, texinfo-close-quote):
11471 * textmodes/bibtex-style.el (auto-mode-alist):
11472 * progmodes/inf-lisp.el (inferior-lisp-prompt):
11473 * progmodes/compile.el (compile-command):
11474 * language/korea-util.el (default-korean-keyboard):
11475 * international/mule-conf.el (file-coding-system-alist):
11476 * emacs-lisp/eldoc.el (eldoc-minor-mode-string):
11477 * tooltip.el (tooltip-frame-parameters):
11478 * newcomment.el (comment-end, comment-padding):
11479 * dired.el (dired-trivial-filenames):
11480 * comint.el (comint-file-name-prefix): Purecopy initial values.
11481
11482 2009-11-11 Michael Albinus <michael.albinus@gmx.de>
11483
11484 * net/tramp.el (tramp-advice-minibuffer-electric-separator)
11485 (tramp-advice-minibuffer-electric-tilde): Unload advices via
11486 `tramp-unload'.
11487 (tramp-advice-make-auto-save-file-name)
11488 (tramp-advice-file-expand-wildcards): Apply also `ad-activate'
11489 after removing the advice.
11490
11491 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
11492
11493 * progmodes/grep.el (grep-regexp-alist):
11494 * international/mule-cmds.el (iso-2022-control-alist):
11495 * emacs-lisp/timer.el (timer-duration-words):
11496 * subr.el (version-separator, version-regexp-alist):
11497 * minibuffer.el (completion-styles-alist):
11498 * faces.el (face-attribute-name-alist, list-faces-sample-text):
11499 Change defvars to defconsts.
11500
11501 * Makefile.in (ELCFILES): Add international/mule-conf.elc.
11502 * loadup.el ("international/mule-conf"): Load the byte compiled version.
11503 * international/mule-conf.el: Allow to be byte compiled.
11504
11505 * international/mule.el (define-charset): Purecopy props.
11506 (load-with-code-conversion): Purecopy doc string and file name.
11507 (put-charset-property): Purecopy strings.
11508 (auto-coding-alist, auto-coding-regexp-alist): Purecopy initial value.
11509
11510 * international/mule-cmds.el (register-input-method): Purecopy arguments.
11511 (define-char-code-property): Correctly purecopy the table.
11512
11513 * international/ccl.el (define-ccl-program): Purecopy the docstring.
11514
11515 * emacs-lisp/easy-mmode.el (define-minor-mode): Purecopy :lighter.
11516
11517 * subr.el (add-hook): Purecopy strings.
11518 (eval-after-load): Purecopy load-history-regexp and the form.
11519
11520 * custom.el (custom-declare-group): Purecopy load-file-name.
11521
11522 * subr.el (menu-bar-separator): New defconst.
11523 * net/eudc.el (eudc-tools-menu):
11524 * international/mule-cmds.el (set-coding-system-map)
11525 (mule-menu-keymap):
11526 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
11527 * vc-hooks.el (vc-menu-map):
11528 * replace.el (occur-mode-map):
11529 * menu-bar.el (menu-bar-file-menu, menu-bar-search-menu)
11530 (menu-bar-edit-menu, menu-bar-goto-menu)
11531 (menu-bar-custom-menu, menu-bar-showhide-menu)
11532 (menu-bar-options-menu, menu-bar-tools-menu)
11533 (menu-bar-encryption-decryption-menu, menu-bar-describe-menu)
11534 (menu-bar-search-documentation-menu, menu-bar-manuals-menu)
11535 (menu-bar-help-menu):
11536 * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu):
11537 * buff-menu.el (Buffer-menu-mode-map): Use menu-bar-separator.
11538
11539 * term/x-win.el (x-gtk-stock-map):
11540 * progmodes/vera-mode.el (auto-mode-alist):
11541 * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
11542 (inferior-lisp-program, inferior-lisp-load-command):
11543 * progmodes/hideshow.el (hs-special-modes-alist):
11544 * progmodes/gud.el (same-window-regexps):
11545 * progmodes/grep.el (grep-program, find-program, xargs-program):
11546 * net/telnet.el (same-window-regexps):
11547 * net/rlogin.el (same-window-regexps):
11548 * language/ethiopic.el (font-ccl-encoder-alist):
11549 * vc-sccs.el (vc-sccs-master-templates):
11550 * vc-rcs.el (vc-rcs-master-templates):
11551 * subr.el (cl-assertion-failed):
11552 * simple.el (next-error-overlay-arrow-position):
11553 * lpr.el (lpr-command):
11554 * locate.el (locate-ls-subdir-switches):
11555 * info.el (same-window-regexps, info)
11556 (Info-goto-emacs-command-node, Info-goto-emacs-key-command-node):
11557 * image-mode.el (image-mode, auto-mode-alist):
11558 * hippie-exp.el (hippie-expand-ignore-buffers):
11559 * format.el (format-alist):
11560 * find-dired.el (find-ls-subdir-switches, find-grep-options)
11561 (find-name-arg):
11562 * facemenu.el (facemenu-keybindings):
11563 * dired.el (dired-listing-switches, dired-chown-program):
11564 * diff.el (diff-switches, diff-command):
11565 * cus-edit.el (same-window-regexps):
11566 * bindings.el (mode-line-mule-info)
11567 (mode-line-buffer-identification): Purecopy strings.
11568
11569 2009-11-11 Juri Linkov <juri@jurta.org>
11570
11571 * simple.el (dired-get-filename) <declare-function>:
11572 Tell the byte-compiler about dired-get-filename.
11573 (shell-command): In Dired mode, get filename from the current line
11574 as the default value.
11575
11576 2009-11-10 Glenn Morris <rgm@gnu.org>
11577
11578 * dired.el, hi-lock.el, calendar/cal-menu.el, calendar/calendar.el:
11579 * calendar/holidays.el, progmodes/cperl-mode.el:
11580 Update x-popup-menu declarations.
11581
11582 * emacs-lisp/shadow.el (find-emacs-lisp-shadows)
11583 (list-load-path-shadows): Use dolist.
11584 (list-load-path-shadows): Use with-current-buffer.
11585
11586 2009-11-10 Juri Linkov <juri@jurta.org>
11587
11588 * minibuffer.el (read-file-name): Support a list of default values
11589 in `default-filename'. Use the first file name where only one
11590 element is required. Doc fix.
11591
11592 2009-11-09 Michael Albinus <michael.albinus@gmx.de>
11593
11594 * net/dbus.el (dbus-unregister-object): Release service, if no
11595 other method is registered for it.
11596
11597 2009-11-08 Markus Rost <rost@math.uni-bielefeld.de>
11598
11599 * bookmark.el (bookmark-completing-read): Sort bookmark names if
11600 bookmark-sort-flag is non-nil (Bug#4653).
11601
11602 2009-11-08 Chong Yidong <cyd@stupidchicken.com>
11603
11604 * emulation/cua-base.el: Add CUA property to some CC mode commands
11605 (Bug#4100).
11606
11607 2009-11-08 Kevin Ryde <user42@zip.com.au>
11608
11609 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp): Match noun
11610 at end of sentence (Bug#4818).
11611
11612 2009-11-08 Jared Finder <jfinder@crypticstudios.com>
11613
11614 * progmodes/compile.el (compilation-error-regexp-alist-alist):
11615 Handle "see declaration of" MSFT statements (Bug#4100).
11616
11617 2009-11-08 Michael Albinus <michael.albinus@gmx.de>
11618
11619 * net/tramp.el (tramp-advice-make-auto-save-file-name)
11620 (tramp-advice-file-expand-wildcards): Unload via
11621 `ad-remove-advice'.
11622
11623 * net/trampver.el: Update release number.
11624
11625 2009-11-08 Kevin Ryde <user42@zip.com.au>
11626
11627 * net/tramp.el (tramp-advice-file-expand-wildcards): Don't rely on
11628 `ad-do-it'.
11629
11630 2009-11-08 Andr <m00naticus@gmail.com> (tiny change)
11631
11632 * net/tramp.el (tramp-handle-write-region): Copy but rename temp file,
11633 in order to keep context in SELinux.
11634
11635 2009-11-08 Chong Yidong <cyd@stupidchicken.com>
11636
11637 * dired-aux.el (dired-query): Place cursor in echo area and allow
11638 C-g.
11639
11640 * dired.el (dired-mode-map): Disable dired-maybe-insert-subdir
11641 menu item if not on a directory (Bug#4701).
11642
11643 2009-11-07 Michael Albinus <michael.albinus@gmx.de>
11644
11645 Sync with Tramp 2.1.17.
11646
11647 * net/tramp.el (tramp-handle-copy-directory): Don't use
11648 `file-remote-p' (due to compatibility).
11649
11650 * net/tramp-compat.el (tramp-compat-copy-directory)
11651 (tramp-compat-delete-directory): New defuns.
11652
11653 * net/tramp-fish.el (tramp-fish-handle-delete-directory):
11654 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory): Use
11655 `tramp-compat-delete-directory'.
11656
11657 * net/tramp-smb.el (tramp-smb-handle-copy-directory)
11658 (tramp-smb-handle-delete-directory): Use
11659 `tramp-compat-copy-directory' and `tramp-compat-delete-directory'.
11660
11661 * net/trampver.el: Update release number.
11662
11663 2009-11-07 Chong Yidong <cyd@stupidchicken.com>
11664
11665 * tar-mode.el (tar-copy): Call write-region on the right buffer
11666 (Bug#4857).
11667
11668 * mail/rmailsum.el (rmail-summary-rmail-update): Call linum-update
11669 by hand, if necessary (Bug#4878).
11670
11671 2009-11-06 Chong Yidong <cyd@stupidchicken.com>
11672
11673 * buff-menu.el (Buffer-menu-buffer+size): Use display property to
11674 align size column (Bug#4839).
11675
11676 * emacs-lisp/autoload.el (autoload-rubric): Always issue a provide
11677 statement.
11678
11679 2009-11-05 Dan Nicolaescu <dann@ics.uci.edu>
11680
11681 * progmodes/ld-script.el (auto-mode-alist):
11682 * vc-hooks.el (vc-directory-exclusion-list): Purecopy strings.
11683
11684 * cus-face.el (custom-declare-face): Purecopy face spec.
11685
11686 2009-11-06 Kenichi Handa <handa@m17n.org>
11687
11688 * international/uni-bidi.el: Re-generated.
11689 * international/uni-category.el: Re-generated.
11690 * international/uni-combining.el: Re-generated.
11691 * international/uni-mirrored.el: Re-generated.
11692
11693 2009-11-05 Dan Nicolaescu <dann@ics.uci.edu>
11694
11695 * textmodes/tex-mode.el (tex-alt-dvi-print-command)
11696 (tex-dvi-print-command, tex-bibtex-command, tex-start-commands)
11697 (tex-start-options, slitex-run-command, latex-run-command)
11698 (tex-run-command, tex-directory):
11699 * textmodes/ispell.el (ispell-html-skip-alists)
11700 (ispell-tex-skip-alists, ispell-tex-skip-alists):
11701 * textmodes/fill.el (adaptive-fill-first-line-regexp):
11702 (adaptive-fill-regexp):
11703 * textmodes/dns-mode.el (auto-mode-alist):
11704 * progmodes/python.el (interpreter-mode-alist):
11705 * progmodes/etags.el (tags-compression-info-list):
11706 * progmodes/etags.el (tags-file-name):
11707 * net/browse-url.el (browse-url-galeon-program)
11708 (browse-url-firefox-program):
11709 * mail/sendmail.el (mail-signature-file)
11710 (mail-citation-prefix-regexp):
11711 * international/mule-conf.el (eight-bit):
11712 * international/latexenc.el (latex-inputenc-coding-alist):
11713 * international/fontset.el (x-pixel-size-width-font-regexp):
11714 * emacs-lisp/warnings.el (warning-type-format):
11715 * emacs-lisp/trace.el (trace-buffer):
11716 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-map)
11717 (emacs-lisp-mode-map):
11718 * calendar/holidays.el (holiday-solar-holidays)
11719 (holiday-bahai-holidays, holiday-islamic-holidays)
11720 (holiday-christian-holidays, holiday-hebrew-holidays)
11721 (hebrew-holidays-4, hebrew-holidays-3, hebrew-holidays-2)
11722 (hebrew-holidays-1, holiday-oriental-holidays)
11723 (holiday-general-holidays):
11724 * x-dnd.el (x-dnd-known-types):
11725 * tool-bar.el (tool-bar):
11726 * startup.el (site-run-file):
11727 * shell.el (shell-dumb-shell-regexp):
11728 * rfn-eshadow.el (file-name-shadow-tty-properties)
11729 (file-name-shadow-properties):
11730 * paths.el (remote-shell-program, news-directory):
11731 * mouse.el ([C-down-mouse-3]):
11732 * menu-bar.el (menu-bar-tools-menu):
11733 * jka-cmpr-hook.el (jka-compr-load-suffixes)
11734 (jka-compr-mode-alist-additions, jka-compr-compression-info-list)
11735 (jka-compr-compression-info-list):
11736 * isearch.el (search-whitespace-regexp):
11737 * image-file.el (image-file-name-extensions):
11738 * find-dired.el (find-ls-option):
11739 * files.el (directory-listing-before-filename-regexp)
11740 (directory-free-space-args, insert-directory-program)
11741 (list-directory-brief-switches, magic-fallback-mode-alist)
11742 (magic-fallback-mode-alist, auto-mode-interpreter-regexp)
11743 (automount-dir-prefix):
11744 * faces.el (face-x-resources, x-font-regexp, x-font-regexp-head)
11745 (x-font-regexp-slant, x-font-regexp-weight, face-x-resources)
11746 (face-font-registry-alternatives, face-font-registry-alternatives)
11747 (face-font-family-alternatives):
11748 * facemenu.el (facemenu-add-new-face, facemenu-background-menu)
11749 (facemenu-foreground-menu, facemenu-face-menu):
11750 * epa-hook.el (epa-file-name-regexp):
11751 * dnd.el (dnd-protocol-alist):
11752 * textmodes/rst.el (auto-mode-alist):
11753 * button.el (default-button): Purecopy strings.
11754
11755 2009-11-06 Glenn Morris <rgm@gnu.org>
11756
11757 * Makefile.in (ELCFILES): Update.
11758
11759 2009-11-05 Stefan Monnier <monnier@iro.umontreal.ca>
11760
11761 * emacs-lisp/lucid.el: Move to obsolete/lucid.el.
11762 * emacs-lisp/levents.el: Move to obsolete/levents.el.
11763
11764 * nxml/xsd-regexp.el (xsdre-gen-categories):
11765 * nxml/xmltok.el (xmltok-parse-entity):
11766 * nxml/rng-parse.el (rng-parse-validate-file):
11767 * nxml/rng-maint.el (rng-format-manual)
11768 (rng-manual-output-force-new-line):
11769 * nxml/rng-loc.el (rng-save-schema-location-1):
11770 * nxml/rng-cmpct.el (rng-c-parse-file):
11771 * nxml/nxml-maint.el (nxml-insert-target-repertoire-glyph-set):
11772 * nxml/nxml-parse.el (nxml-parse-file): Use with-current-buffer.
11773
11774 2009-11-05 Wilson Snyder <wsnyder@wsnyder.org>
11775
11776 * progmodes/verilog-mode.el (verilog-getopt-file, verilog-set-define):
11777 Remove extra save-excursions and make-variable-buffer-local's.
11778 Suggested by Stefan Monnier.
11779
11780 (verilog-getopt-file, verilog-module-inside-filename-p)
11781 (verilog-set-define): Merge GNU 1.35 and repair changes from
11782 switching to using with-current-buffer.
11783
11784 (verilog-read-always-signals-recurse): Fix "a == 2'b00 ? b : c"
11785 being treated as a number and confusing AUTORESET.
11786 Reported by Dan Dever.
11787
11788 (verilog-auto-ignore-concat, verilog-read-sub-decls-expr):
11789 Add verilog-auto-ignore-concat to fix backward compatibility with
11790 older verilog-modes. Reported by Dan Katz.
11791
11792 (verilog-read-auto-template): Fix AUTO_TEMPLATEs with regexps
11793 containing closing anchors "...$".
11794
11795 (verilog-read-decls): Fix AUTOREG not detecting "assign {a,b}".
11796 Reported by Wade Smith.
11797
11798 (verilog-batch-execute-func): Comment on function usage.
11799
11800 2009-11-05 Michael McNamara <mac@mail.brushroad.com>
11801
11802 * progmodes/verilog-mode.el (verilog-label-re): Fix regular expression
11803 for labels.
11804
11805 (verilog-label-re, verilog-calc-1): Support proper indent of named
11806 asserts.
11807
11808 (verilog-backward-token, verilog-basic-complete-re)
11809 (verilog-beg-of-statement, verilog-indent-re): Support proper
11810 indent of the assert statement at the beginning of a block of text.
11811
11812 (verilog-beg-block-re, verilog-ovm-begin-re): Support the
11813 `ovm_object_param_utils_begin and `ovm_component_param_utils_begin
11814 tokens as begins.
11815
11816 2009-11-05 Glenn Morris <rgm@gnu.org>
11817
11818 * emacs-lisp/bytecomp.el (byte-compile-insert-header): Drop test for
11819 Emacs 19. (Bug#1531)
11820 (byte-compile-fix-header): Update for the above change.
11821 Drop test for epoch::version.
11822
11823 * emacs-lisp/autoload.el (autoload-rubric): Add optional feature arg.
11824 * cus-dep.el (custom-make-dependencies):
11825 * finder.el (finder-compile-keywords):
11826 Use autoload-rubric's feature argument.
11827
11828 * calendar/diary-lib.el (top-level): Make load behave more like require.
11829
11830 * vc-git.el (vc-git-stash-map): Move definition before use.
11831
11832 2009-11-04 Dan Nicolaescu <dann@ics.uci.edu>
11833
11834 * custom.el (custom-declare-group): Purecopy standard-value.
11835 (custom-declare-group): Purecopy custom-prefix.
11836
11837 * international/mule.el (load-with-code-conversion):
11838 Call do-after-load-evaluation unconditionally.
11839
11840 * emacs-lisp/bytecomp.el (byte-compile-output-file-form): Handle defvaralias.
11841
11842 2009-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
11843
11844 * descr-text.el: Require help-mode rather than help-fns (bug#4861).
11845
11846 2009-11-04 Glenn Morris <rgm@gnu.org>
11847
11848 * emacs-lisp/bytecomp.el (byte-compile-version-cond): Remove macro.
11849 (byte-compile-compatibility): Remove option.
11850 (byte-compile-close-variables, byte-compile-fix-header)
11851 (byte-compile-insert-header, byte-compile-output-docform)
11852 (byte-compile-file-form-defmumble, byte-compile-byte-code-maker)
11853 (byte-compile-lambda, byte-compile-form, byte-defop-compiler19)
11854 (byte-compile-list, byte-compile-concat, byte-compile-function-form)
11855 (byte-compile-insert, byte-compile-defun):
11856 Remove support for byte-compile-compatibility and Emacs 18. (Bug#4571)
11857 (byte-defop-compiler19): Remove.
11858 Without byte-compile-compatibility, the 'emacs19-opcode property is not
11859 used by anything. Replace all calls with byte-defop-compiler.
11860
11861 2009-11-04 Juri Linkov <juri@jurta.org>
11862
11863 * menu-bar.el (menu-bar-make-mm-toggle): Quote each element of `props'.
11864 (menu-bar-options-menu): Don't quote the `prop' arg of
11865 `menu-bar-make-mm-toggle'.
11866
11867 2009-11-04 Juanma Barranquero <lekktu@gmail.com>
11868
11869 * calendar/calendar.el (cal-loaddefs):
11870 * calendar/diary-lib.el (diary-loaddefs):
11871 * calendar/holidays.el (hol-loaddefs):
11872 * eshell/esh-module.el (esh-groups): Load rather than require.
11873
11874 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
11875
11876 * calendar/todo-mode.el (todo-add-category): Don't hardcode
11877 point-min==1.
11878 (todo-top-priorities): Only display-buffer when called interactively.
11879 (todo-item-start): Don't save excursion point.
11880 (todo-item-end): Be slightly more careful. Add `include-sep' arg.
11881 (todo-insert-item-here, todo-file-item, todo-remove-item):
11882 Adjust uses of todo-item-start and todo-item-end.
11883
11884 * emacs-lisp/autoload.el (generated-autoload-feature): Remove.
11885 (autoload-rubric): Don't use any more.
11886
11887 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Use dolist,
11888 and only put a prop if it is non-nil.
11889
11890 2009-11-03 Juri Linkov <juri@jurta.org>
11891
11892 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle)
11893 (menu-bar-options-menu): Fix list quoting (Bug#4429).
11894
11895 * buff-menu.el (Buffer-menu-mode-map): Add hyphen between "Buffer"
11896 and "Menu" to make top-level menu item visually one unit (like
11897 it's done for "Lisp-Interaction", "Emacs-Lisp" and other
11898 multi-word menu items). Fix :help string for quit-window.
11899
11900 2009-11-03 Glenn Morris <rgm@gnu.org>
11901
11902 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar)
11903 (byte-compile-file-form-define-abbrev-table)
11904 (byte-compile-file-form-custom-declare-variable)
11905 (byte-compile-variable-ref, byte-compile-defvar):
11906 Whether or not a warning is enabled should only affect whether we issue
11907 the warning, not whether or not we collect the relevant data.
11908 Eg warnings can be turned on and off throughout the course of a file.
11909
11910 * eshell/esh-mode.el (ansi-color-apply-on-region): Autoload it...
11911 (eshell-handle-ansi-color): ... Rather than requiring ansi-color.
11912
11913 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
11914
11915 * term/ns-win.el (ns-scroll-bar-move, ns-face-at-pos):
11916 * play/mpuz.el (mpuz-create-buffer):
11917 * play/landmark.el (lm-prompt-for-move, lm-print-wts, lm-print-smell)
11918 (lm-print-y,s,noise, lm-print-w0, lm-init):
11919 * play/gomoku.el (gomoku-prompt-for-move):
11920 * play/fortune.el (fortune-in-buffer):
11921 * play/dissociate.el (dissociated-press):
11922 * play/decipher.el (decipher-adjacency-list, decipher-display-regexp)
11923 (decipher-analyze-buffer, decipher-stats-buffer, decipher-stats-buffer):
11924 * mail/supercite.el (sc-eref-show):
11925 * mail/smtpmail.el (smtpmail-send-it):
11926 * mail/rmailsum.el (rmail-summary-next-labeled-message)
11927 (rmail-summary-previous-labeled-message, rmail-summary-wipe)
11928 (rmail-summary-undelete-many, rmail-summary-rmail-update)
11929 (rmail-summary-goto-msg, rmail-summary-expunge)
11930 (rmail-summary-get-new-mail, rmail-summary-search-backward)
11931 (rmail-summary-add-label, rmail-summary-output-menu)
11932 (rmail-summary-output-body):
11933 * mail/rfc822.el (rfc822-addresses):
11934 * mail/reporter.el (reporter-dump-variable, reporter-dump-state):
11935 * mail/mailpost.el (post-mail-send-it):
11936 * mail/hashcash.el (hashcash-generate-payment):
11937 * mail/feedmail.el (feedmail-run-the-queue)
11938 (feedmail-queue-send-edit-prompt-help-first)
11939 (feedmail-send-it-immediately, feedmail-give-it-to-buffer-eater)
11940 (feedmail-deduce-address-list):
11941 * eshell/esh-ext.el (eshell-remote-command):
11942 * eshell/em-unix.el (eshell-occur-mode-mouse-goto):
11943 * emulation/viper-util.el (viper-glob-unix-files, viper-save-setting)
11944 (viper-wildcard-to-regexp, viper-glob-mswindows-files)
11945 (viper-save-string-in-file, viper-valid-marker):
11946 * emulation/viper-keym.el (viper-toggle-key):
11947 * emulation/viper-ex.el (ex-expand-filsyms, viper-get-ex-file)
11948 (ex-edit, ex-global, ex-mark, ex-next-related-buffer, ex-quit)
11949 (ex-get-inline-cmd-args, ex-tag, ex-command, ex-compile):
11950 * emulation/viper-cmd.el (viper-exec-form-in-vi)
11951 (viper-exec-form-in-emacs, viper-brac-function):
11952 * emulation/viper.el (viper-delocalize-var):
11953 * emulation/vip.el (vip-mode, vip-get-ex-token, vip-ex, vip-get-ex-pat)
11954 (vip-get-ex-command, vip-get-ex-opt-gc, vip-get-ex-buffer)
11955 (vip-get-ex-count, vip-get-ex-file, ex-edit, ex-global, ex-mark)
11956 (ex-map, ex-unmap, ex-quit, ex-read, ex-tag, ex-command):
11957 * emulation/vi.el (vi-switch-mode, vi-ex-cmd):
11958 * emulation/edt.el (edt-electric-helpify):
11959 * emulation/cua-rect.el (cua--rectangle-aux-replace):
11960 * emulation/cua-gmrk.el (cua--insert-at-global-mark)
11961 (cua--delete-at-global-mark, cua--copy-rectangle-to-global-mark)
11962 (cua-indent-to-global-mark-column):
11963 * calendar/diary-lib.el (calendar-mark-1):
11964 * calendar/cal-hebrew.el (calendar-hebrew-mark-date-pattern):
11965 Use with-current-buffer.
11966 * emulation/viper.el (viper-delocalize-var): Use dolist.
11967
11968 2009-11-03 Chong Yidong <cyd@stupidchicken.com>
11969
11970 * comint.el (comint-replace-by-expanded-history-before-point):
11971 Replace !! with the previous input string literally (Bug#1795).
11972
11973 2009-11-02 Jay Belanger <jay.p.belanger@gmail.com>
11974
11975 * calc/calc-forms.el (calc-date-notation): Allow a "blank string"
11976 to be made up of whitespace.
11977
11978 2009-11-02 Chong Yidong <cyd@stupidchicken.com>
11979
11980 * minibuffer.el (read-file-name): Don't use file dialogs for
11981 remote directories (Bug#99).
11982
11983 2009-11-01 Chong Yidong <cyd@stupidchicken.com>
11984
11985 * progmodes/sh-script.el (sh-font-lock-paren): Fix last change.
11986
11987 2009-11-01 Andreas Schwab <schwab@linux-m68k.org>
11988
11989 * view.el (view-mode-exit): If OLD-BUF is dead bury the buffer
11990 instead of deleting the window or frame.
11991
11992 2009-10-31 Chong Yidong <cyd@stupidchicken.com>
11993
11994 * textmodes/sgml-mode.el (sgml-mode-facemenu-add-face-function):
11995 Support face colors.
11996
11997 * textmodes/tex-mode.el (tex-facemenu-add-face-function):
11998 New function. Support face colors (Bug#1168).
11999 (tex-common-initialization): Use it.
12000
12001 * facemenu.el (facemenu-enable-faces-p): Enable facemenu if the
12002 mode allows it (Bug#1168).
12003
12004 2009-10-31 Juri Linkov <juri@jurta.org>
12005
12006 * facemenu.el (list-colors-display): Don't mark buffer as
12007 modified (Bug#3948).
12008
12009 2009-10-31 Chong Yidong <cyd@stupidchicken.com>
12010
12011 * international/mule-diag.el (list-character-sets-1): Minor
12012 message fix (Bug#3526).
12013
12014 * progmodes/etags.el (etags-list-tags, etags-tags-apropos): Fix
12015 face property (Bug#4834).
12016 (etags-list-tags, etags-tags-apropos-additional)
12017 (etags-tags-apropos, tags-select-tags-table): Add follow-link
12018 property.
12019
12020 * menu-bar.el (menu-bar-tools-menu): Add Semantic and EDE menu
12021 items.
12022
12023 2009-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
12024
12025 * textmodes/two-column.el (2C-split):
12026 * textmodes/texnfo-upd.el (texinfo-multi-file-included-list):
12027 * textmodes/tex-mode.el (tex-set-buffer-directory):
12028 * textmodes/spell.el (spell-region, spell-string):
12029 * textmodes/reftex.el (reftex-erase-buffer):
12030 (reftex-get-file-buffer-force, reftex-kill-temporary-buffers):
12031 * textmodes/reftex-toc.el (reftex-toc-promote-action):
12032 * textmodes/reftex-sel.el (reftex-get-offset, reftex-insert-docstruct)
12033 (reftex-select-item):
12034 * textmodes/reftex-ref.el (reftex-label-info-update)
12035 (reftex-offer-label-menu):
12036 * textmodes/reftex-index.el (reftex-index-change-entry)
12037 (reftex-index-phrases-info):
12038 * textmodes/reftex-global.el (reftex-create-tags-file)
12039 (reftex-save-all-document-buffers, reftex-ensure-write-access):
12040 * textmodes/reftex-dcr.el (reftex-echo-ref, reftex-echo-cite)
12041 (reftex-view-crossref-from-bibtex):
12042 * textmodes/reftex-cite.el (reftex-bibtex-selection-callback)
12043 (reftex-extract-bib-entries-from-thebibliography)
12044 (reftex-all-used-citation-keys, reftex-create-bibtex-file):
12045 * textmodes/refbib.el (r2b-capitalize-title):
12046 (r2b-convert-buffer, r2b-help):
12047 * textmodes/page-ext.el (pages-directory)
12048 (pages-directory-goto-with-mouse):
12049 * textmodes/bibtex.el (bibtex-validate-globally):
12050 * textmodes/bib-mode.el (bib-capitalize-title):
12051 * textmodes/artist.el (artist-clear-buffer, artist-system):
12052 * progmodes/xscheme.el (global-set-scheme-interaction-buffer):
12053 (local-set-scheme-interaction-buffer, xscheme-process-filter)
12054 (verify-xscheme-buffer, xscheme-enter-interaction-mode)
12055 (xscheme-enter-debugger-mode, xscheme-debugger-mode-p)
12056 (xscheme-send-control-g-interrupt, xscheme-start-process)
12057 (xscheme-process-sentinel, xscheme-cd):
12058 * progmodes/verilog-mode.el (verilog-read-always-signals)
12059 (verilog-set-define, verilog-getopt-file)
12060 (verilog-module-inside-filename-p):
12061 * progmodes/sh-script.el:
12062 * progmodes/python.el (python-pdbtrack-get-source-buffer)
12063 (python-pdbtrack-grub-for-buffer, python-execute-file):
12064 * progmodes/octave-inf.el (inferior-octave):
12065 * progmodes/idlwave.el (idlwave-scan-user-lib-files)
12066 (idlwave-shell-compile-helper-routines, idlwave-set-local)
12067 (idlwave-display-completion-list-xemacs, idlwave-list-abbrevs)
12068 (idlwave-display-completion-list-emacs, idlwave-list-load-path-shadows)
12069 (idlwave-completion-fontify-classes, idlwave-display-calling-sequence):
12070 * progmodes/idlw-shell.el (idlwave-shell-examine-display-clear)
12071 (idlwave-shell-filter, idlwave-shell-examine-highlight)
12072 (idlwave-shell-sentinel, idlwave-shell-filter-directory)
12073 (idlwave-shell-display-line, idlwave-shell-set-bp-in-module)
12074 (idlwave-shell-examine-display, idlwave-shell-run-region)
12075 (idlwave-shell-filter-bp, idlwave-shell-save-and-action)
12076 (idlwave-shell-sources-filter, idlwave-shell-goto-next-error):
12077 * progmodes/idlw-help.el (idlwave-help-get-special-help)
12078 (idlwave-help-get-help-buffer):
12079 * progmodes/gud.el (gud-basic-call, gud-find-class)
12080 (gud-tooltip-activate-mouse-motions-if-enabled):
12081 * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
12082 * progmodes/ebrowse.el (ebrowse-member-table, ebrowse-save-tree-as)
12083 (ebrowse-view-exit-fn, ebrowse-tags-list-members-in-file)
12084 (ebrowse-tags-next-file):
12085 * progmodes/ebnf2ps.el (ebnf-generate-eps, ebnf-generate-eps)
12086 (ebnf-eps-production-list, ebnf-begin-file, ebnf-log)
12087 (ebnf-eps-finish-and-write):
12088 * progmodes/cpp.el (cpp-edit-save):
12089 * progmodes/cperl-mode.el (cperl-pod-to-manpage):
12090 * progmodes/cc-defs.el (c-emacs-features):
12091 * progmodes/antlr-mode.el (antlr-invalidate-context-cache)
12092 (antlr-directory-dependencies):
12093 * progmodes/ada-xref.el (ada-gnat-parse-gpr, ada-get-ali-file-name)
12094 (ada-run-application, ada-find-in-src-path, ada-goto-parent)
12095 (ada-find-any-references, ada-make-filename-from-adaname)
12096 (ada-make-body-gnatstub):
12097 * obsolete/rnews.el (news-list-news-groups):
12098 * obsolete/resume.el (resume-suspend-hook, resume-write-buffer-to-file):
12099 * obsolete/iso-acc.el (iso-acc-minibuf-setup):
12100 * net/rcirc.el (rcirc-debug):
12101 * net/newst-treeview.el (newsticker--treeview-list-add-item)
12102 (newsticker--treeview-list-clear, newsticker-treeview-browse-url)
12103 (newsticker--treeview-list-update-faces, newsticker-treeview-save)
12104 (newsticker--treeview-item-show-text, newsticker--treeview-item-show)
12105 (newsticker--treeview-tree-update-tag, newsticker--treeview-buffer-init)
12106 (newsticker-treeview-show-item, newsticker--treeview-unfold-node)
12107 (newsticker--treeview-list-clear-highlight)
12108 (newsticker--treeview-list-update-highlight)
12109 (newsticker--treeview-list-highlight-start)
12110 (newsticker--treeview-tree-update-highlight)
12111 (newsticker--treeview-get-selected-item)
12112 (newsticker-treeview-mark-list-items-old)
12113 (newsticker--treeview-set-current-node):
12114 * net/newst-plainview.el (newsticker--buffer-set-uptodate):
12115 * net/newst-backend.el (newsticker--get-news-by-funcall)
12116 (newsticker--get-news-by-wget, newsticker--image-get)
12117 (newsticker--image-sentinel):
12118 * net/mairix.el (mairix-rmail-fetch-field, mairix-gnus-fetch-field):
12119 * net/eudcb-ph.el (eudc-ph-do-request, eudc-ph-open-session):
12120 (eudc-ph-close-session):
12121 * net/eudc.el (eudc-save-options):
12122 * language/thai-word.el (thai-update-word-table):
12123 * language/japan-util.el (japanese-string-conversion):
12124 * international/titdic-cnv.el (tsang-quick-converter)
12125 (ziranma-converter, ctlau-converter):
12126 * international/mule-cmds.el (describe-language-environment):
12127 * international/ja-dic-cnv.el (skkdic-convert-okuri-ari)
12128 (skkdic-convert-postfix, skkdic-convert-prefix):
12129 (skkdic-convert-okuri-nasi, skkdic-convert):
12130 * emacs-lisp/re-builder.el (reb-update-overlays):
12131 * emacs-lisp/pp.el (pp-to-string, pp-display-expression):
12132 * emacs-lisp/gulp.el (gulp-send-requests):
12133 * emacs-lisp/find-gc.el (trace-call-tree):
12134 * emacs-lisp/eieio-opt.el (eieio-browse, eieio-describe-class)
12135 (eieio-describe-generic):
12136 * emacs-lisp/eieio-base.el (eieio-persistent-read):
12137 * emacs-lisp/edebug.el (edebug-outside-excursion):
12138 * emacs-lisp/debug.el (debugger-make-xrefs):
12139 * emacs-lisp/cust-print.el (custom-prin1-to-string):
12140 * emacs-lisp/chart.el (chart-new-buffer):
12141 * emacs-lisp/authors.el (authors-scan-el, authors-scan-change-log):
12142 Use with-current-buffer.
12143 * textmodes/artist.el (artist-system): Don't call
12144 copy-sequence on a fresh string.
12145 * progmodes/idlw-shell.el (easymenu setup): Use dolist.
12146
12147 2009-10-31 Stephen Berman <stephen.berman@gmx.net>
12148
12149 * calendar/todo-mode.el (todo-edit-item): Signal an error if there
12150 is no item to edit. (Bug#4820)
12151 (todo-top-priorities): Restore point and restore narrowing in Todo
12152 buffer. (Bug#4820)
12153
12154 2009-10-31 Glenn Morris <rgm@gnu.org>
12155
12156 * net/ange-ftp.el (top-level): Don't require dired when compiling.
12157 (comint-last-output-start, comint-last-input-start)
12158 (comint-last-input-end): Don't defvar when compiling.
12159 (ange-ftp-process-file): Use bound-and-true-p.
12160
12161 * pcmpl-rpm.el (top-level): Move provide statement to end.
12162 (pcmpl-rpm): Remove unused custom group.
12163
12164 * pcmpl-gnu.el (tar-parse-info, tar-header-name): Declare for compiler.
12165
12166 * mail/emacsbug.el (report-emacs-bug): Request `emacs -Q' recipes.
12167
12168 * emacs-lisp/bytecomp.el (byte-compile-warning-types)
12169 (byte-compile-warnings): Add `constants' as an option.
12170 (byte-compile-callargs-warn, byte-compile-arglist-warn)
12171 (display-call-tree): Update for byte-compile-fdefinition possibly
12172 returning `(macro lambda ...)'. (Bug#4778)
12173 (byte-compile-variable-ref, byte-compile-setq-default):
12174 Respect `constants' member of byte-compile-warnings.
12175
12176 2009-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
12177
12178 * vc-bzr.el (vc-bzr-revision-keywords): New var.
12179 (vc-bzr-revision-completion-table): Use it to fix completion of "s:"
12180 to "submit:".
12181
12182 2009-10-30 Dan Nicolaescu <dann@ics.uci.edu>
12183
12184 * textmodes/ispell.el (ispell-skip-region-alist):
12185 * international/mule-conf.el (eight-bit):
12186 * international/fontset.el (font-encoding-alist):
12187 * startup.el (pure-space-overflow-message):
12188 * simple.el (overwrite-mode-textual, overwrite-mode-binary):
12189 * paths.el (gnus-nntp-service, rmail-spool-directory)
12190 (term-file-prefix):
12191 * files.el (save-some-buffers-action-alist):
12192 * cmuscheme.el (same-window-buffer-names):
12193 * ielm.el (same-window-buffer-names):
12194 * shell.el (same-window-buffer-names):
12195 * mail/sendmail.el (same-window-buffer-names):
12196 * progmodes/inf-lisp.el (same-window-buffer-names):
12197 * bindings.el (mode-line-client)
12198 (mode-line-column-line-number-mode-map):
12199 * language/tibetan.el (tibetan-precomposition-rule-regexp)
12200 (tibetan-precomposed-regexp): Purecopy string arguments.
12201
12202 2009-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
12203
12204 * calc/calc.el (calc, calc-refresh, calc-trail-buffer, calc-record)
12205 (calcDigit-nondigit):
12206 * calc/calc-yank.el (calc-copy-to-buffer):
12207 * calc/calc-units.el (calc-invalidate-units-table):
12208 * calc/calc-trail.el (calc-trail-yank):
12209 * calc/calc-store.el (calc-insert-variables):
12210 * calc/calc-rewr.el (math-rewrite, math-rewrite-phase):
12211 * calc/calc-prog.el (calc-read-parse-table):
12212 * calc/calc-keypd.el (calc-do-keypad, calc-keypad-right-click):
12213 * calc/calc-help.el (calc-describe-bindings, calc-describe-key):
12214 * calc/calc-graph.el (calc-graph-delete, calc-graph-add-curve)
12215 (calc-graph-juggle, calc-graph-count-curves, calc-graph-plot)
12216 (calc-graph-plot, calc-graph-format-data, calc-graph-set-styles)
12217 (calc-graph-name, calc-graph-find-command, calc-graph-view)
12218 (calc-graph-view, calc-gnuplot-command, calc-graph-init):
12219 * calc/calc-ext.el (calc-realign):
12220 * calc/calc-embed.el (calc-do-embedded, calc-do-embedded)
12221 (calc-embedded-finish-edit, calc-embedded-make-info)
12222 (calc-embedded-finish-command, calc-embedded-stack-change):
12223 * calc/calc-aent.el (calcAlg-enter): Use with-current-buffer.
12224
12225 * pcomplete.el (pcomplete-comint-setup): If there's a choice, replace
12226 shell-dynamic-complete-filename in preference to
12227 comint-dynamic-complete-filename.
12228
12229 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
12230 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
12231 Don't consider whether the display supports colors.
12232 (bookmark-import-new-list): Use dolist.
12233 (bookmark-bmenu-mode-map): Move initialization into declaration.
12234 (bookmark-bmenu-list): Use dolist, simplify.
12235 (bookmark-show-all-annotations): Use save-selected-window and dolist.
12236 (menu-bar-final-items): Use push.
12237
12238 2009-10-28 Bernhard Herzog <bernhard.herzog@intevation.de> (tiny change)
12239
12240 * vc-hg.el (vc-hg-state, vc-hg-working-revision): Use process-file so
12241 it works on remote files.
12242 (vc-hg-diff): Don't pass any `--cwd' argument.
12243
12244 2009-10-27 Kevin Ryde <user42@zip.com.au>
12245
12246 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
12247 Use help-xref-info-regexp and help-xref-url-regexp to identify links.
12248 (Further to Bug#3921).
12249
12250 2009-10-27 Michael Albinus <michael.albinus@gmx.de>
12251
12252 * net/tramp-imap.el (top): Add `X-Size' to `imap-hash-headers'.
12253 (tramp-imap-do-copy-or-rename-file): Don't use the inode, when
12254 calling `tramp-imap-put-file'. Add file size to the call.
12255 (tramp-imap-get-file-entries): Compute also user name, file size,
12256 and date.
12257 (tramp-imap-handle-insert-directory): Insert uid and gid.
12258 (tramp-imap-handle-file-attributes): Transform uid and gid
12259 according to `id-format'.
12260 (tramp-imap-put-file): New optional parameter SIZE. Encode file
12261 size in header X-Size.
12262
12263 2009-10-26 Juanma Barranquero <lekktu@gmail.com>
12264
12265 * simple.el (transpose-subr): Give clearer error when the mark
12266 is not set. (Bug#4807)
12267
12268 2009-10-26 Michael Albinus <michael.albinus@gmx.de>
12269
12270 * net/tramp.el (tramp-perl-file-truename): New defconst.
12271 Perl code contributed by yary <not.com@gmail.com> (tiny change).
12272 (tramp-handle-file-truename, tramp-get-remote-perl): Use it.
12273 Check also for "perl-file-spec" and "perl-cwd-realpath" properties.
12274 (tramp-handle-write-region): In case of APPEND, reuse the tmpfile name.
12275
12276 * net/tramp-imap.el (tramp-imap-file-name-handler-alist):
12277 Ignore `dired-call-process'.
12278 (tramp-imap-make-iht): Use `user' and `ssl' with `imap-hash-make'.
12279
12280 2009-10-26 Julian Scheid <julians37@gmail.com>
12281
12282 * net/tramp.el (tramp-perl-file-name-all-completions): New defconst.
12283 (tramp-get-remote-readlink): New defun.
12284 (tramp-handle-file-truename): Use it.
12285 (tramp-handle-file-exists-p): Check file-attributes cache, assume
12286 file exists if cache value present.
12287 (tramp-check-cached-permissions): New defun.
12288 (tramp-handle-file-readable-p): Use it.
12289 (tramp-handle-file-writable-p): Likewise.
12290 (tramp-handle-file-executable-p): Likewise.
12291 (tramp-handle-file-name-all-completions): Try using Perl to get
12292 partial completions. When perl not available, combine `cd' and
12293 `ls' into single remote operation and use shell expansion to get
12294 partial remote directory contents. Set `file-exists-p' cache for
12295 directory and any files returned by ls. Change cache handling to
12296 support partial directory contents. Use error message emitted by
12297 remote `cd' or Perl code for local tramp-error.
12298 (tramp-do-copy-or-rename-file-directly): Avoid separate
12299 tramp-send-command-and-check call.
12300 (tramp-handle-process-file): Merge three remote ops into one.
12301 Do not flush all caches when `process-file-side-effects' is set.
12302 (tramp-handle-write-region): Avoid tramp-set-file-uid-gid if
12303 file-attributes shows uid/gid to be set already.
12304
12305 2009-10-26 Dan Nicolaescu <dann@ics.uci.edu>
12306
12307 * textmodes/tex-mode.el (tex-dvi-view-command)
12308 (tex-show-queue-command, tex-open-quote):
12309 * progmodes/ruby-mode.el (auto-mode-alist)
12310 (interpreter-mode-alist): Purecopy strings.
12311
12312 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Purecopy item names.
12313
12314 * emacs-lisp/derived.el (define-derived-mode): Purecopy the doc
12315 string for the hook, keymap and abbrev table.
12316
12317 * emacs-lisp/byte-run.el (make-obsolete): Purecopy the current name.
12318
12319 * x-dnd.el (x-dnd-xdnd-to-action):
12320 * startup.el (fancy-startup-text, fancy-about-text): Change to
12321 defconst from defvar.
12322
12323 * ps-print.el (ps-page-dimensions-database): Purecopy initial value.
12324
12325 * mouse.el (mouse-buffer-menu-mode-groups, x-fixed-font-alist):
12326 Purecopy initialization strings.
12327
12328 * mail/sendmail.el (mail-header-separator)
12329 (mail-personal-alias-file):
12330 * mail/rmail.el (rmail-default-dont-reply-to-names)
12331 (rmail-ignored-headers, rmail-retry-ignored-headers)
12332 (rmail-highlighted-headers, rmail-secondary-file-directory)
12333 (rmail-secondary-file-regexp):
12334 * files.el (null-device, file-name-invalid-regexp)
12335 (locate-dominating-stop-dir-regexp)
12336 (inhibit-first-line-modes-regexps): Purecopy initialization strings.
12337 (interpreter-mode-alist): Use mapcar instead of mapc.
12338
12339 * buff-menu.el (Buffer-menu-mode-map): Purecopy name.
12340
12341 * bindings.el (mode-line-major-mode-keymap): Purecopy name.
12342 (completion-ignored-extensions):
12343 (debug-ignored-errors): Purecopy strings.
12344
12345 2009-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
12346
12347 * pcomplete.el (pcomplete-std-complete): Obey pcomplete-use-paring.
12348 (pcomplete, pcomplete-parse-buffer-arguments, pcomplete-opt)
12349 (pcomplete--here): Use push.
12350
12351 * subr.el (all-completions): Declare the 4th arg obsolete.
12352
12353 2009-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
12354
12355 * pcomplete.el (pcomplete-unquote-argument-function): New var.
12356 (pcomplete-unquote-argument): New function.
12357 (pcomplete--common-suffix): Always pay attention to case.
12358 (pcomplete--table-subvert): Quote and unquote the text.
12359 (pcomplete--common-quoted-suffix): New function.
12360 (pcomplete-std-complete): Use it and pcomplete-begin.
12361
12362 * bookmark.el (bookmark-bmenu-list): Don't use switch-to-buffer if
12363 we're inside a dedicated or minibuffer window.
12364
12365 2009-10-24 Karl Fogel <kfogel@red-bean.com>
12366
12367 * bookmark.el: Update documentation, especially documentation
12368 of `bookmark-alist' and of the bookmark file format.
12369 Patch by Drew Adams, with minor tweaks from me. (Bug#4195)
12370
12371 2009-10-24 Chong Yidong <cyd@stupidchicken.com>
12372
12373 * mail/emacsbug.el (report-emacs-bug): Clarify that the
12374 keybindings apply to the mail buffer (Bug#4003). Shrink help
12375 window to buffer.
12376
12377 * whitespace.el (whitespace-mode, whitespace-newline-mode)
12378 (global-whitespace-mode, global-whitespace-newline-mode)
12379 (whitespace-toggle-options, global-whitespace-toggle-options):
12380 Doc fix (Bug#3660).
12381
12382 * nxml/nxml-mode.el (nxml-balanced-close-start-tag): Use the value
12383 of xmltok-start before the end tag was inserted (Bug#2840).
12384
12385 * progmodes/sh-script.el (sh-font-lock-paren): Handle case
12386 patterns that are preceded by an open-paren (Bug#1320).
12387
12388 2009-10-24 Sven Joachim <svenjoac@gmx.de>
12389
12390 * files.el (delete-directory): Delete symlinks to directories with
12391 delete-file (Bug#4739).
12392
12393 2009-10-24 Dan Nicolaescu <dann@ics.uci.edu>
12394
12395 * vc.el (vc-backend-for-registration): Rename from
12396 vc-get-backend-for-registration. Update callers.
12397
12398 * international/mule-cmds.el (set-language-info-alist):
12399 Purecopy lang-env.
12400 (leim-list-header, leim-list-entry-regexp): Change defvars to defconst.
12401 (charset): Purecopy the name.
12402 (define-char-code-property): Purecopy string arguments.
12403
12404 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
12405 Purecopy string arguments.
12406
12407 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
12408 * ediff-hook.el (menu-bar-ediff-menu):
12409 * buff-menu.el (Buffer-menu-mode-map): Purecopy names and tooltips.
12410 * bookmark.el (menu-bar-bookmark-map): Add :help and purecopy the name.
12411
12412 2009-10-24 Glenn Morris <rgm@gnu.org>
12413
12414 * comint.el (comint-dynamic-list-completions):
12415 * term.el (term-dynamic-list-completions): Use choose-completion rather
12416 than obsolete alias mouse-choose-completion.
12417
12418 * filecache.el (file-cache-completions-keymap): Bind mouse-2 to
12419 file-cache-choose-completion.
12420 (file-cache-choose-completion): Handle an optional event argument.
12421 (file-cache-mouse-choose-completion): Make it an obsolete alias.
12422
12423 * progmodes/octave-mod.el (octave-complete-symbol):
12424 Use choose-completion if mouse-choose-completion is ever removed.
12425
12426 * textmodes/sgml-mode.el (sgml-looking-back-at): Move definition before
12427 use.
12428
12429 * emacs-lisp/checkdoc.el (generate-autoload-cookie): Define for
12430 compiler.
12431
12432 * vc-hooks.el (vc-responsible-backend): Fix declaration.
12433
12434 2009-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
12435
12436 * minibuffer.el (completion--embedded-envvar-table): Fix last change.
12437 Ignore `pred' now that we receive one.
12438 Handle test-completion specially.
12439
12440 2009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
12441
12442 * vc.el (vc-responsible-backend): Throw an error if not backend is
12443 found. Remove the REGISTER argument. Move the code dealing with
12444 REGISTER ...
12445 (vc-get-backend-for-registration): ... here. New function.
12446 (vc-deduce-fileset): Call vc-get-backend-for-registration instead
12447 of vc-responsible-backend, pass the file name instead of the
12448 directory name.
12449
12450 2009-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
12451
12452 * pcomplete.el (pcomplete-common-suffix, pcomplete-table-subvert):
12453 New funs.
12454 (pcomplete-std-complete): Use them. Obey pcomplete-termination-string.
12455 (pcomplete-comint-setup): Don't modify a global var via
12456 accidental side-effects.
12457 (pcomplete-shell-setup): Adjust call accordingly.
12458 (pcomplete-parse-comint-arguments): Use push.
12459
12460 2009-10-23 Chong Yidong <cyd@stupidchicken.com>
12461
12462 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
12463 Allow uncapitalized info node names (Bug#3921).
12464
12465 * mail/emacsbug.el (report-emacs-bug): Tweak the sentence pointing
12466 to the DEBUG file (Bug#3781).
12467
12468 2009-10-23 Jari Aalto <jari.aalto@cante.net>
12469
12470 * textmodes/ispell.el (ispell-dictionary-base-alist): Add finnish
12471 dictionary entry (Bug#4579).
12472
12473 2009-10-23 Michael Albinus <michael.albinus@gmx.de>
12474
12475 * net/tramp.el (top): Remove `tramp-rfn-eshadow-update-overlay'
12476 from `rfn-eshadow-update-overlay-hook' when unloading.
12477 (tramp-methods): Add `tramp-copy-keep-tmpfile' for "rsync" and
12478 "rsyncc". Adjust doc string.
12479 (tramp-temp-buffer-file-name): New buffer-local defvar.
12480 (tramp-handle-insert-file-contents, tramp-handle-write-region):
12481 Keep temporary file when indicated by method ("rsync" and
12482 "rsyncc").
12483 (tramp-handle-write-region): Handle APPEND.
12484 (tramp-delete-temp-file-function): New defun. Added to
12485 `kill-buffer-hook'.
12486
12487 2009-10-23 Juanma Barranquero <lekktu@gmail.com>
12488
12489 * menu-bar.el (cua-enable-cua-keys): Declare for the byte-compiler.
12490
12491 2009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
12492
12493 * term/tty-colors.el (msdos-color-values): Remove declaration, unused.
12494 (color-name-rgb-alist, tty-standard-colors)
12495 (tty-color-mode-alist): Change to defconst.
12496
12497 * simple.el (mark-inactive): Purecopy message.
12498
12499 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle): Fix macro.
12500 (global-map, yank-menu):
12501 * textmodes/ispell.el (ispell-menu-map):
12502 * net/eudc.el (eudc-tools-menu):
12503 * international/mule-cmds.el (describe-language-environment-map)
12504 (setup-language-environment-map, set-coding-system-map)
12505 (mule-menu-keymap):
12506 * vc-hooks.el (vc-menu-entry, vc-menu-map):
12507 * replace.el (occur-mode-map):
12508 * pcvs-defs.el (cvs-global-menu): Purecopy names and tooltips.
12509
12510 2009-10-23 Jay Belanger <jay.p.belanger@gmail.com>
12511
12512 * calc/calc.el (math-read-number, math-read-number-simple): Use
12513 `save-match-data'.
12514
12515 2009-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
12516
12517 * simple.el (normal-erase-is-backspace-mode): Use input-decode-map
12518 rather than fiddling with global-map bindings, since it should only
12519 affect per-terminal settings.
12520 See http://bugs.gentoo.org/show_bug.cgi?id=289709.
12521
12522 * minibuffer.el (completion-table-with-terminator): Allow to specify
12523 the terminator-regexp.
12524
12525 * simple.el (switch-to-completions): Look for *Completions* in other
12526 frames as well.
12527
12528 * pcomplete.el: Allow the use of completion-tables.
12529 (pcomplete-std-complete): New command.
12530 (pcomplete-dirs-or-entries): Use a single call to pcomplete-entries.
12531 (pcomplete--here): Use a function for `form' rather than an expression,
12532 so it can be byte-compiled.
12533 (pcomplete-here, pcomplete-here*): Adjust accordingly.
12534 Add edebug declaration.
12535 (pcomplete-show-completions): Remove unused var `curbuf'.
12536 (pcomplete-do-complete, pcomplete-stub):
12537 Don't assume `completions' is a list of strings any more.
12538
12539 2009-10-22 Juanma Barranquero <lekktu@gmail.com>
12540
12541 * find-dired.el (find-name-arg): Fix typo in docstring.
12542
12543 2009-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
12544
12545 * pcmpl-linux.el (pcomplete/kill): Don't abuse pcomplete-entries.
12546 (pcmpl-linux-fs-types): Same, and update to new modules layout.
12547
12548 * pcmpl-gnu.el (pcmpl-gnu-makefile-names): Use a single call to
12549 pcomplete-entries.
12550
12551 * comint.el (comint-read-input-ring, comint-write-input-ring)
12552 (comint-substitute-in-file-name)
12553 (comint-dynamic-complete-as-filename)
12554 (comint-dynamic-simple-complete)
12555 (comint-dynamic-list-filename-completions)
12556 (comint-dynamic-list-completions)
12557 (comint-redirect-results-list-from-process): Minor simplifications.
12558
12559 2009-10-21 Kevin Ryde <user42@zip.com.au>
12560
12561 * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
12562 When inserting ";;; Code" put it before any ";;;###autoload" cookie on
12563 the first form. And insert a blank line after ";;; Code" since
12564 that's usual style. (Bug#4612)
12565
12566 * net/dns.el: Add "Keywords: comm", as per net/net-utils.el.
12567
12568 2009-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
12569
12570 * minibuffer.el (completion-table-with-terminator): Properly implement
12571 boundaries, in case `terminator' appears in the suffix.
12572 (completion--embedded-envvar-table): Don't return boundaries if
12573 there's no valid completion. Simplify.
12574 (completion-file-name-table): New completion table extracted from
12575 completion--file-name-table.
12576 (completion--file-name-table): Use it.
12577 (read-file-name-predicate): Declare obsolete.
12578 (read-file-name): Use the pred arg i.s.o read-file-name-predicate.
12579 * vc-bzr.el (vc-bzr-revision-completion-table): Use the new
12580 completion-file-name-table, and use the `pred' argument.
12581 * files.el (locate-file-completion-table): Use the `pred' arg rather
12582 than read-file-name-predicate.
12583 (abbreviate-file-name): Use \` rather than ^ for BOS.
12584
12585 2009-10-21 Dan Nicolaescu <dann@ics.uci.edu>
12586
12587 * vc.el (vc-deduce-fileset): Undo previous change, do not tell
12588 vc-responsible-backend to register, it causes problems.
12589
12590 2009-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
12591
12592 * help-fns.el: Don't require help-mode (to avoid bootstrap issues).
12593
12594 2009-10-21 Michael Albinus <michael.albinus@gmx.de>
12595
12596 * net/tramp-smb.el (tramp-smb-get-stat-capability): New defun.
12597 (tramp-smb-handle-file-attributes): Use it.
12598 (tramp-smb-do-file-attributes-with-stat): Don't raise an error.
12599 (tramp-smb-handle-insert-directory): Use `mapc' rather than
12600 `mapcar'. Use `tramp-smb-get-stat-capability'.
12601 Add `dired-filename' text properties.
12602 (tramp-smb-get-cifs-capabilities): Apply `save-match-data'.
12603 (tramp-smb-maybe-open-connection): Simplify check for smbclient
12604 version.
12605
12606 2009-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
12607
12608 * subr.el (read-key-delay): Reduce to 0.01.
12609 (read-key): Use read-key-sequence-vector to avoid turning M-t into 244
12610 (bug#4751).
12611
12612 2009-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
12613
12614 * bindings.el (function-key-map): Map C-@ to C-SPC if C-@ is unbound.
12615
12616 * info.el (Info-complete-menu-item): Handle `boundaries' explicitly.
12617 (Info-menu): Remove unused vars `last' and `completions'.
12618 (Info-index-nodes): Remove unused var `node'.
12619
12620 * info.el (Info-complete-menu-item): Use complete-with-action.
12621
12622 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
12623
12624 Make vc-annotate work through copies and renames.
12625 * vc-annotate.el (vc-annotate-extract-revision-at-line):
12626 Return the file name too.
12627 (vc-annotate-revision-at-line)
12628 (vc-annotate-find-revision-at-line)
12629 (vc-annotate-revision-previous-to-line)
12630 (vc-annotate-show-log-revision-at-line): Update to get the file
12631 name from vc-annotate-extract-revision-at-line.
12632 (vc-annotate-show-diff-revision-at-line-internal): Change the
12633 argument to mean whether to show a file diff or not. Get the file
12634 name from vc-annotate-extract-revision-at-line.
12635 (vc-annotate-show-diff-revision-at-line):
12636 Update vc-annotate-show-diff-revision-at-line call.
12637 (vc-annotate-warp-revision): Add an optional file argument.
12638
12639 * vc-git.el (vc-git-annotate-command): Pass -C -C to the blame command.
12640 (vc-git-annotate-extract-revision-at-line): Also return the file
12641 name if found.
12642
12643 * vc-hg.el (vc-hg-annotate-command): Pass --follow to the annotate
12644 command. Remove unused code.
12645 (vc-hg-annotate-re): Update to match --follow output.
12646 (vc-hg-annotate-extract-revision-at-line): Also return the file
12647 name if found.
12648
12649 * vc.el: Update annotate-extract-revision-at-line documentation.
12650
12651 2009-10-18 Kevin Ryde <user42@zip.com.au>
12652
12653 * ibuffer.el (ibuffer-confirm-operation-on): Correction to error
12654 re-throw, `err' is a pair not a list so can't use apply (Bug#4740).
12655
12656 * net/browse-url.el (browse-url): Identify alist with "consp and
12657 not functionp" and let all other things go down the `apply' leg,
12658 as suggested by Stefan. (Further to bug#4531.)
12659
12660 2009-10-18 Chong Yidong <cyd@stupidchicken.com>
12661
12662 * minibuffer.el (read-file-name): Check for repeat before putting
12663 a default argument in file-name-history (Bug#4657).
12664
12665 * emacs-lisp/lisp-mode.el (preceding-sexp): Recognize hash table
12666 read syntax (Bug#4737).
12667
12668 * textmodes/sgml-mode.el (sgml-delete-tag): Use sgml-looking-back-at.
12669
12670 2009-10-18 Aaron S. Hawley <aaron.s.hawley@gmail.com>
12671
12672 * textmodes/sgml-mode.el (sgml-tag-help): Prompt user for tag.
12673 (html-tag-alist, html-tag-help): Add descriptions for undocumented
12674 entries and make note of obsolete tags.
12675
12676 2009-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
12677
12678 * net/ange-ftp.el (ange-ftp-file-size): Use unwind-protect.
12679
12680 2009-10-18 Glenn Morris <rgm@gnu.org>
12681
12682 * Makefile.in (compile-last): Ensure GREP_OPTIONS is null before calling
12683 grep, so that binary files (eg international/uni-bidi.el) can match.
12684 Remove test for "UnicodeData" files, since it is hopefully unnecessary
12685 now, and in any case the file header format has changed.
12686
12687 2009-10-17 Glenn Morris <rgm@gnu.org>
12688
12689 * textmodes/flyspell.el (flyspell-large-region, flyspell-word)
12690 (flyspell-get-word, flyspell-large-region)
12691 (flyspell-auto-correct-previous-word): Doc/error message fixes.
12692
12693 2009-10-17 Chong Yidong <cyd@stupidchicken.com>
12694
12695 * Makefile.in (ELCFILES): Add ede/shell.
12696
12697 2009-10-17 Dan Nicolaescu <dann@ics.uci.edu>
12698
12699 * term/common-win.el (x-colors): Purecopy it.
12700
12701 2009-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
12702
12703 * tar-mode.el (tar-data-swapped-p): Make the assertion a bit more
12704 permissive for when the buffer is empty.
12705 (tar-header-block-tokenize): Decode the username and groupname.
12706 (tar-chown-entry, tar-chgrp-entry): Encode the names (bug#4730).
12707
12708 2009-10-17 Eric Ludlam <zappo@gnu.org>
12709
12710 * emacs-lisp/eieio-base.el (eieio-persistent-save): If buffer
12711 contains multibyte characters, choose first applicable coding
12712 system automatically.
12713
12714 2009-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
12715
12716 * international/mule-cmds.el (select-safe-coding-system): If the file
12717 has a coding cookie, use it regardless of any other setting (bug#4712).
12718
12719 2009-10-17 Glenn Morris <rgm@gnu.org>
12720
12721 * foldout.el (foldout-mouse-swallow-events):
12722 * gs.el (gs-load-image): Replace obsolete forms of sit-for, sleep-for.
12723
12724 * dired.el (dired-ls-F-marks-symlinks, dired-keep-marker-rename)
12725 (dired-keep-marker-copy, dired-keep-marker-hardlink)
12726 (dired-keep-marker-symlink, dired-dwim-target)
12727 (dired-copy-preserve-time): Do not autoload these defcustoms.
12728
12729 * mail/rmail.el (rmail-write-region-annotate): Prevent viewing different
12730 messages from messing up the file coding. (Bug#4623)
12731
12732 2009-10-17 Jari Aalto <jari.aalto@cante.net>
12733
12734 * textmodes/ispell.el (ispell-get-decoded-string): Give an error
12735 if no match is found for the current dictionary. (Bug#4578)
12736
12737 * textmodes/flyspell.el (flyspell-get-word): Make `following' argument
12738 optional, since that is how it is documented, and this is often called
12739 with a nil argument. (Bug#4577)
12740 (flyspell-external-point-words, flyspell-auto-correct-word)
12741 (flyspell-correct-word-before-point, flyspell-word-search-forward)
12742 (flyspell-word-search-backward): Remove nil argument in calls to
12743 flyspell-get-word, since it is not needed now.
12744
12745 2009-10-17 Ulrich Mueller <ulm@gentoo.org>
12746
12747 * play/doctor.el (doctor-adverbp): Exclude some nouns. (Bug#4565)
12748
12749 2009-10-16 Glenn Morris <rgm@gnu.org>
12750
12751 * net/rcirc.el (rcirc-authenticate): Simplify previous change.
12752
12753 2009-10-16 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
12754
12755 * net/ange-ftp.el (ange-ftp-send-cmd): Handle `size' like `mdtm'.
12756 (ange-ftp-file-size): New function.
12757 (ange-ftp-file-attributes): Use it.
12758
12759 2009-10-16 Michael Albinus <michael.albinus@gmx.de>
12760
12761 * net/tramp-smb.el (tramp-smb-version): New defvar.
12762 (tramp-smb-maybe-open-connection): Use it, in order to avoid
12763 repeated checks.
12764
12765 2009-10-16 Glenn Morris <rgm@gnu.org>
12766
12767 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Doc fix.
12768 Maybe copy some custom properties from old to new name. (Bug#4706)
12769
12770 2009-10-16 Juanma Barranquero <lekktu@gmail.com>
12771
12772 * subr.el (error, sit-for, start-process-shell-command)
12773 (start-file-process-shell-command): Set the calling convention
12774 after the function definition.
12775
12776 2009-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
12777
12778 * subr.el (error, sit-for, start-process-shell-command)
12779 (start-file-process-shell-command): Use the new
12780 set-advertised-calling-convention feature.
12781
12782 2009-10-16 Taichi Kawabata <kawabata.taichi@gmail.com>
12783
12784 * international/ucs-normalize.el (ucs-normalize-version):
12785 Change to 1.2.
12786 (check-range): Adjust for Unicode 5.2.
12787
12788 2009-10-15 Juri Linkov <juri@jurta.org>
12789
12790 * menu-bar.el (menu-bar-file-menu): Convert `separator-exit'
12791 to the `menu-item' format.
12792
12793 2009-10-15 Michael Albinus <michael.albinus@gmx.de>
12794
12795 * net/tramp.el (tramp-replace-environment-variables): Do not fail
12796 if the environment variable does not exist.
12797
12798 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
12799 (tramp-smb-get-share, tramp-smb-get-localname): Use only VEC as
12800 parameter.
12801 (tramp-smb-handle-add-name-to-file)
12802 (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
12803 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
12804 (tramp-smb-handle-file-attributes)
12805 (tramp-smb-do-file-attributes-with-stat)
12806 (tramp-smb-handle-file-local-copy)
12807 (tramp-smb-handle-insert-directory)
12808 (tramp-smb-handle-make-directory)
12809 (tramp-smb-handle-make-directory-internal)
12810 (tramp-smb-handle-make-symbolic-link)
12811 (tramp-smb-handle-rename-file, tramp-smb-handle-set-file-modes)
12812 (tramp-smb-handle-write-region, tramp-smb-get-file-entries)
12813 (tramp-smb-maybe-open-connection): Apply the changed parameters.
12814 (tramp-smb-read-file-entry): Read Disk names in compressed format.
12815 Handle long file names.
12816 (tramp-smb-get-cifs-capabilities): Check, whether the connection
12817 process is running.
12818 (tramp-smb-maybe-open-connection): Trace "smbclient -V" command.
12819 Read share names with "-g" option.
12820
12821 2009-10-15 Ryan Yeske <rcyeske@gmail.com>
12822
12823 * net/rcirc.el (rcirc-view-log-file): New command.
12824 (rcirc-track-minor-mode-map): Remove C-c ` binding.
12825 (rcirc-authenticate, rcirc-authinfo): Allow nickserv-nick to be
12826 specified.
12827
12828 2009-10-15 Glenn Morris <rgm@gnu.org>
12829
12830 * w32-fns.el (w32-batch-update-autoloads): Take autoload-make-program
12831 from the second command-line argument.
12832 * makefile.w32-in (autoloads, $(lisp)/calendar/cal-loaddefs.el)
12833 ($(lisp)/calendar/diary-loaddefs.el, $(lisp)/calendar/hol-loaddefs.el)
12834 ($(lisp)/mh-e/mh-loaddefs.el): Pass $(MAKE) as second argument to
12835 w32-batch-update-autoloads.
12836 * emacs-lisp/autoload.el (autoload-make-program): New variable.
12837 (batch-update-autoloads): Handle autoload-excludes on windows-nt.
12838
12839 * mail/rmailedit.el (rmail-cease-edit): Give an error if the end of
12840 the headers cannot be located. Simplify, subtracting superflous
12841 save-excursions.
12842
12843 2009-10-15 Stefan Monnier <monnier@iro.umontreal.ca>
12844
12845 Replace completion-base-size by completion-base-position to fix bugs
12846 such as (bug#4699).
12847 * simple.el (completion-base-position): New var.
12848 (completion-base-size): Mark as obsolete.
12849 (choose-completion): Make it work for mouse events as well.
12850 Pass the new base-position to choose-completion-string.
12851 (choose-completion-guess-base-position): New function, extracted from
12852 choose-completion-delete-max-match.
12853 (choose-completion-delete-max-match): Use it. Make obsolete.
12854 (choose-completion-string): Use the new base-position info.
12855 (completion-root-regexp): Delete.
12856 (completion-setup-function): Preserve completion-base-position.
12857 Eliminate obsolete base-size manipulation.
12858 * minibuffer.el (display-completion-list): Don't mess with base-size.
12859 (minibuffer-completion-help): Set completion-base-position instead.
12860 * mouse.el (mouse-choose-completion): Redefine as a mere alias to
12861 choose-completion.
12862 * textmodes/bibtex.el (bibtex-complete):
12863 * emacs-lisp/crm.el (crm--choose-completion-string):
12864 Adjust to new calling convention.
12865 * complete.el (partial-completion-mode): Use minibufferp to avoid
12866 bumping into incompatible change to choose-completion-string-functions.
12867 * ido.el (ido-choose-completion-string): Make its calling convention
12868 more permissive.
12869 * comint.el (comint-dynamic-list-input-ring-select): Remove obsolete
12870 base-size manipulation.
12871 (comint-dynamic-list-input-ring): Use dotimes and push.
12872 * iswitchb.el (iswitchb-completion-help): Remove dead-code call to
12873 fundamental-mode. Use `or'.
12874
12875 2009-10-14 Juri Linkov <juri@jurta.org>
12876
12877 * misearch.el (multi-isearch-next-buffer-from-list)
12878 (multi-isearch-next-file-buffer-from-list): Doc fix. (Bug#4723)
12879
12880 2009-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
12881
12882 * Makefile.in (compile-onefile): Load `bytecomp' rather than
12883 `bytecomp.el'.
12884
12885 * minibuffer.el (completion-pcm--merge-completions): Make sure the
12886 string we return is all made up of text from the completions rather
12887 than part from the completions and part from the input (bug#4219).
12888
12889 * ido.el (ido-everywhere): Use define-minor-mode.
12890
12891 * buff-menu.el (list-buffers, ctl-x-map):
12892 Mark the entry points with ;;;###autoload cookies.
12893
12894 2009-10-14 Dan Nicolaescu <dann@ics.uci.edu>
12895
12896 * vc-git.el (vc-git-dir-extra-headers): Set the branch name
12897 correctly in the detached head case.
12898 (vc-git-print-log): Remove unused binding.
12899
12900 * vc.el (vc-responsible-backend): When a directory is passed for
12901 for registration create a VC repository if no backend is
12902 responsible for the directory argument.
12903 (vc-deduce-fileset): Tell vc-responsible-backend to register.
12904
12905 * vc.el: Move comments about RCS and SCCS ...
12906 * vc-rcs.el:
12907 * vc-sccs.el: ... here, respectively.
12908
12909 2009-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
12910
12911 * minibuffer.el (completion--file-name-table): Return nil if there's
12912 no file completion, even if substitute-in-file-name changed
12913 the string (bug#4708).
12914
12915 2009-10-13 Juri Linkov <juri@jurta.org>
12916
12917 * files-x.el (read-file-local-variable-value): Don't filter out
12918 minor modes from mode name completion (bug#4664).
12919
12920 2009-10-13 Juanma Barranquero <lekktu@gmail.com>
12921
12922 * international/mule-cmds.el (ucs-names): Remove exclusion of
12923 "Enclosed Ideographic Supplement" range (U+1F200..U+1F2FF).
12924
12925 2009-10-13 Kenichi Handa <handa@m17n.org>
12926
12927 * international/uni-name.el: Regenerated.
12928
12929 2009-10-13 Juanma Barranquero <lekktu@gmail.com>
12930
12931 * bs.el (bs-mode): Fix last change. (`revert-buffer-function'
12932 should be automatically buffer-local, but isn't.)
12933
12934 2009-10-12 Sam Steingold <sds@gnu.org>
12935
12936 * progmodes/compile.el (compilation-next-error-function): Fix the
12937 timestamps if the buffer has been visited before.
12938 (compilation-mode-font-lock-keywords): Do not prepend "^ *" to
12939 non-anchored patterns, like the perl one (bug#3928).
12940
12941 2009-10-12 Glenn Morris <rgm@gnu.org>
12942
12943 * net/tramp-smb.el (tramp-smb-do-file-attributes-with-stat):
12944 Let-bind `size'.
12945
12946 2009-10-12 Juanma Barranquero <lekktu@gmail.com>
12947
12948 * proced.el (proced-unload-function): New function.
12949
12950 * bs.el (bs-mode): Set `revert-buffer-function' to `bs-refresh'.
12951 (bs-refresh): Add IGNORED arg for `revert-buffer' compatibility.
12952 Doc fix.
12953
12954 * menu-bar.el (menu-bar-file-menu): Fix format of `separator-exit' item.
12955
12956 2009-10-11 Juri Linkov <juri@jurta.org>
12957
12958 * files-x.el (read-file-local-variable-value):
12959 Provide default value only for bound variables (bug#4664).
12960
12961 2009-10-11 Michael Albinus <michael.albinus@gmx.de>
12962
12963 * net/tramp.el (tramp-local-host-p): Function shall return nil for
12964 connection methods like smb.
12965
12966 * net/tramp-cache.el (tramp-flush-connection-property): The hash
12967 can be empty.
12968
12969 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
12970 (tramp-smb-file-name-handler-alist): Add handlers for
12971 `add-name-to-file', `make-symbolic-link'.
12972 (tramp-smb-handle-add-name-to-file)
12973 (tramp-smb-do-file-attributes-with-stat)
12974 (tramp-smb-handle-make-symbolic-link)
12975 (tramp-smb-get-cifs-capabilities): New defuns.
12976 (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
12977 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
12978 (tramp-smb-handle-file-local-copy)
12979 (tramp-smb-handle-make-directory-internal)
12980 (tramp-smb-handle-rename-file, tramp-smb-handle-write-region):
12981 The file name syntax depends on cifs capabilities.
12982 (tramp-smb-handle-file-attributes):
12983 Call `tramp-smb-do-file-attributes-with-stat' if possible.
12984 (tramp-smb-handle-insert-directory): Use posix attributes if possible.
12985 (tramp-smb-handle-set-file-modes): It is applicable for posix only.
12986
12987 2009-10-11 Chong Yidong <cyd@stupidchicken.com>
12988
12989 * emacs-lisp/eieio.el: Avoid requiring cl at runtime.
12990 (eieio-defclass): Apply deftype handler and setf-method properties
12991 directly.
12992 (eieio-add-new-slot): Avoid union function from cl library.
12993 (eieio--typep): New function.
12994 (eieio-perform-slot-validation): Use it.
12995
12996 2009-10-10 Karl Fogel <kfogel@red-bean.com>
12997
12998 * bookmark.el (bookmark-yank-word, bookmark-insert-current-bookmark):
12999 Update documentation to refer to the variables documented in r1.135.
13000 (Bug#4188)
13001
13002 2009-10-10 Karl Fogel <kfogel@red-bean.com>
13003
13004 * bookmark.el (Info-suffix-list): Remove this unused variable.
13005 (bookmark-current-point): Remove this obsolete variable.
13006 (bookmark-set, bookmark-rename, bookmark-send-edited-annotation):
13007 Adjust for removal of bookmark-current-point.
13008
13009 (bookmarks-already-loaded, bookmark-current-buffer)
13010 (bookmark-yank-point): Document. (Bug#4188)
13011
13012 2009-10-10 Glenn Morris <rgm@gnu.org>
13013
13014 * frame.el (frame-height): Doc fix.
13015
13016 * calendar/calendar.el (calendar-split-width-threshold): New option.
13017 (calendar-basic-setup): Use calendar-split-width-threshold.
13018
13019 2009-10-09 Juanma Barranquero <lekktu@gmail.com>
13020
13021 * international/mule-cmds.el (ucs-names): Exclude new "Enclosed
13022 Ideographic Supplement" range (U+1F200..U+1F2FF).
13023
13024 2009-10-09 Karl Fogel <kfogel@red-bean.com>
13025
13026 * bookmark.el (bookmark-bmenu-rename): Don't call bookmark-bmenu-list,
13027 since the list will have been rebuilt anyway. (Bug#4349)
13028
13029 2009-10-09 Karl Fogel <kfogel@red-bean.com>
13030
13031 * bookmark.el (bookmark-delete): Don't let batch arg prevent saving.
13032 (bookmark-bmenu-execute-deletions): Don't save here, as
13033 bookmark-delete will now do so if necessary.
13034 Suggested by Thierry Volpiatto <thierry.volpiatto {_AT_} gmail.com>.
13035 (Bug#4348)
13036
13037 2009-10-09 Glenn Morris <rgm@gnu.org>
13038
13039 * mail/emacsbug.el (report-emacs-bug): Also print `features'.
13040
13041 2009-10-09 Karl Fogel <kfogel@red-bean.com>
13042
13043 * bookmark.el (bookmark-jump): Add new `display-func' parameter.
13044 (bookmark-jump-other-window): Just invoke bookmark-jump with new
13045 argument now, so the two function's behaviors will match. (Bug#3645)
13046
13047 2009-10-08 Michael Albinus <michael.albinus@gmx.de>
13048
13049 * net/tramp.el (tramp-file-name-real-user, tramp-file-name-domain)
13050 (tramp-file-name-real-host, tramp-file-name-port):
13051 Apply `save-match-data'.
13052
13053 * net/tramp-smb.el (tramp-smb-handle-copy-directory): Handle the
13054 case both directories are remote.
13055 (tramp-smb-handle-expand-file-name): Implement "~" expansion.
13056 (tramp-smb-maybe-open-connection): Flush the cache only if necessary.
13057
13058 2009-10-07 Juanma Barranquero <lekktu@gmail.com>
13059
13060 * makefile.w32-in (WINS_UPDATES): Fix typo in previous change.
13061
13062 2009-10-07 Glenn Morris <rgm@gnu.org>
13063
13064 * emacs-lisp/autoload.el (batch-update-autoloads): Remove useless use
13065 of concat.
13066
13067 2009-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
13068
13069 * files-x.el (read-file-local-variable): Include some
13070 non-user-variables in the completion table (bug#4664).
13071
13072 2009-10-07 Michael Albinus <michael.albinus@gmx.de>
13073
13074 * net/tramp-cache.el (tramp-flush-connection-property): Add trace
13075 message.
13076
13077 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
13078 (tramp-smb-file-name-handler-alist): Add handler for
13079 `copy-directory', `expand-file-name', `set-file-modes'.
13080 (tramp-smb-handle-copy-directory)
13081 (tramp-smb-handle-expand-file-name)
13082 (tramp-smb-handle-set-file-modes): New defuns.
13083 (tramp-smb-handle-copy-file): Handle KEEP-DATE.
13084 (tramp-smb-handle-file-attributes): Simplify check for retrieving
13085 entry.
13086 (tramp-smb-handle-insert-directory): Don't flush the cache.
13087 (tramp-smb-maybe-open-connection): Check for samba client and
13088 server versions.
13089
13090 2009-10-07 Eli Zaretskii <eliz@gnu.org>
13091
13092 * emacs-lisp/autoload.el (batch-update-autoloads): Fix last change
13093 to not error out of search for "^lisp=" fails.
13094
13095 2009-10-07 Juanma Barranquero <lekktu@gmail.com>
13096
13097 * makefile.w32-in (WINS_UPDATES): New macro.
13098 (custom-deps, finder-data, autoloads): Use it.
13099
13100 2009-10-07 Glenn Morris <rgm@gnu.org>
13101
13102 * Makefile.in (autoloads): Revert previous change.
13103 * emacs-lisp/autoload.el (batch-update-autoloads): Rather than having
13104 the list of preloaded files passed on the command-line, get
13105 it from src/Makefile.
13106
13107 * calendar/calendar.el (calendar-basic-setup): In the wide frame case,
13108 show the original buffer rather than a random one.
13109
13110 2009-10-07 Markus Rost <rost@math.uni-bielefeld.de>
13111
13112 * help.el (describe-no-warranty): Place point in a slightly better
13113 position in the GPLv3 text.
13114
13115 2009-10-06 Sam Steingold <sds@gnu.org>
13116
13117 * net/tramp-compat.el (tramp-compat-process-running-p): Check that
13118 the comm attribute is present before calling regexp-quote.
13119
13120 2009-10-06 Juanma Barranquero <lekktu@gmail.com>
13121
13122 * play/animate.el (animate-string): For good effect, make sure
13123 `indent-tabs-mode' and `show-trailing-whitespace' are nil.
13124
13125 * play/animate.el (animate-sequence, animate-birthday-present):
13126 * misc.el (butterfly): Don't set `indent-tabs-mode'.
13127
13128 2009-10-06 Glenn Morris <rgm@gnu.org>
13129
13130 * emacs-lisp/byte-run.el (define-obsolete-face-alias): Doc fix.
13131
13132 * emacs-lisp/autoload.el (autoload-excludes): New variable.
13133 (autoload-generate-file-autoloads): Skip files in autoload-excludes.
13134 (batch-update-autoloads): Process a string value of autoload-excludes,
13135 set during the build process.
13136 * Makefile.in (autoloads): Skip preloaded files. (Bug#4446)
13137
13138 * net/tramp.el (tramp-handle-start-file-process): Move tramp-error call
13139 inside with-parsed... macro so that `v' is defined.
13140
13141 * progmodes/f90.el (f90-end-of-block, f90-beginning-of-block):
13142 * progmodes/fortran.el (fortran-end-of-block)
13143 (fortran-beginning-of-block):
13144 Also push mark in the macro case.
13145
13146 * emerge.el (emerge-show-file-name):
13147 * calc/calc.el (calc-quit):
13148 * calc/calc-misc.el (calc-big-or-small):
13149 * calc/calc-graph.el (calc-graph-view):
13150 * calc/calc-ext.el (calc-reset):
13151 * calendar/calendar.el (calendar-basic-setup):
13152 Use window-full-height-p.
13153
13154 * mail/rmailedit.el (rmail-cease-edit): If there is a Content-Type
13155 header we don't understand, don't insert another. (Bug#4624)
13156 If changing mime charset, insert the new one in the right place.
13157
13158 2009-10-06 Matthew Junker <matthew.junker@sbcglobal.net> (tiny change)
13159
13160 * calendar/cal-tex.el (cal-tex-cursor-month-landscape)
13161 (cal-tex-cursor-month): Correctly increment the end date for diary and
13162 holiday listing. (Bug#4626)
13163
13164 2009-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
13165
13166 * help-fns.el (describe-function-1): Don't burp if the function is not
13167 a symbol.
13168
13169 2009-10-05 Juanma Barranquero <lekktu@gmail.com>
13170
13171 * emacs-lisp/chart.el (chart-face-pixmap-list, chart-new-buffer, chart)
13172 (chart-axis-range, chart-axis-names, chart-sequece, chart-bar)
13173 (chart-draw, chart-axis-draw, chart-sort, chart-sort-matchlist)
13174 (chart-draw-line, chart-bar-quickie): Fix typos in docstrings.
13175
13176 * emacs-lisp/eieio.el (generic-p, eieiomt-next, eieio-generic-form)
13177 (eieio-default-superclass): Reflow docstrings.
13178 (this, class-option-assoc, defclass, eieio-class-un-autoload)
13179 (eieio-unbind-method-implementations, defmethod)
13180 (eieio-validate-slot-value, eieio-validate-class-slot-value)
13181 (oref-default, eieio-oref-default, eieio-oset, eieio-oset-default)
13182 (with-slots, eieio-add-new-slot, object-assoc, object-remove-from-list)
13183 (eieio-slot-originating-class-p, eieio-slot-name-index)
13184 (eieio-pre-method-execution-hooks, eieio-initarg-to-attribute)
13185 (constructor, initialize-instance, no-next-method, object-print)
13186 (object-write, eieio-override-prin1, eieio-edebug-prin1-to-string):
13187 Fix typos in docstrings.
13188 (eieio-defclass, eieio-perform-slot-validation-for-default, defgeneric)
13189 (child-of-class-p, object-slots, slot-boundp, slot-exists-p)
13190 (next-method-p): Doc fixes.
13191 (eieio-add-new-slot, call-next-method, eieiomt-add, change-class):
13192 Fix typos in error messages.
13193 (eieio-defmethod): Fix typo in description of generic method.
13194
13195 * emacs-lisp/eieio-base.el (eieio-instance-inheritor, slot-unbound)
13196 (eieio-persistent-save-interactive, slot-missing):
13197 Fix typos in docstrings.
13198 (eieio-instance-inheritor-slot-boundp): Doc fix.
13199
13200 * emacs-lisp/eieio-comp.el (byte-compile-file-form-defmethod)
13201 (byte-compile-defmethod-param-convert): Fix typos in docstrings.
13202
13203 * emacs-lisp/eieio-custom.el (eieio-done-customizing)
13204 (eieio-custom-object-apply-reset):
13205 Fix typos in docstrings and error messages.
13206
13207 * emacs-lisp/eieio-datadebug.el (data-debug-show):
13208 Fix typo in docstring.
13209
13210 * emacs-lisp/eieio-opt.el (top): Fix typo in error message.
13211 (eieio-browse-tree): Doc fix.
13212 (eieio-all-generic-functions, eieio-class-speedbar): Reflow docstrings.
13213 (eieio-help-mode-augmentation-maybee, eieio-class-speedbar-make-map):
13214 Fix typos in docstrings.
13215
13216 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-file-button): Doc fix.
13217 (eieio-speedbar-key-map, eieio-speedbar-create-engine)
13218 (eieio-speedbar-buttons, eieio-speedbar, eieio-speedbar-object-children)
13219 (eieio-speedbar-make-tag-line, eieio-speedbar-object-expand):
13220 Reflow docstrings.
13221
13222 2009-10-05 Dan Nicolaescu <dann@ics.uci.edu>
13223
13224 * vc-hg.el (log-view-vc-backend): Declare for compiler.
13225 (vc-hg-outgoing-mode, vc-hg-incoming-mode):
13226 Set log-view-vc-backend so that diff can work.
13227
13228 * log-view.el (log-view-diff): Use vc-diff-internal instead of
13229 vc-version-diff.
13230 (vc-diff-internal): Autoload this instead of vc-version-diff.
13231
13232 2009-10-05 Eli Zaretskii <eliz@gnu.org>
13233
13234 * simple.el (eval-expression): Doc fix.
13235
13236 * progmodes/cwarn.el (cwarn-mode): Doc fix.
13237
13238 2009-10-05 Michael Albinus <michael.albinus@gmx.de>
13239
13240 * files.el (directory-files-no-dot-files-regexp): New defconst.
13241 (delete-directory): Use it.
13242 (copy-directory): Use it. Remove parameter PRESERVE-UID-GID.
13243
13244 * net/tramp.el (tramp-verbose): Fix docstring.
13245 (tramp-methods): Add recursive option to `tramp-copy-args'.
13246 Add `tramp-copy-recursive'. Valid for "rcp", "scp", "scp1", "scp2",
13247 "scp1_old", "scp2_old", "rsync", "rsyncc".
13248 (tramp-default-method): Check also for `auth-source-user-or-password'.
13249 (tramp-file-name-handler-alist, tramp-file-name-for-operation):
13250 Add handler for `copy-directory'.
13251 (tramp-handle-copy-directory): New defun.
13252 (tramp-do-copy-or-rename-file-out-of-band): Handle directory case.
13253 (tramp-handle-start-file-process): Raise an error when PROGRAM is nil.
13254 Optimize sent command.
13255
13256 2009-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
13257
13258 * calendar/diary-lib.el (diary-show-all-entries): Re-fit the calendar
13259 window if necessary.
13260
13261 * calendar/calendar.el (calendar-basic-setup): Don't call
13262 switch-to-buffer in a dedicated window.
13263
13264 2009-10-05 Karl Fogel <kfogel@red-bean.com>
13265
13266 * bookmark.el (bookmark-handle-bookmark): If bookmark has no file,
13267 don't do anything related to relocating, just return nil.
13268 (bookmark-error-no-filename): New error.
13269 (bookmark-default-handler): Signal `bookmark-error-no-filename' if
13270 bookmark has no file. Don't even attempt to handle things that
13271 are not files; the whole point of custom handlers is to keep that
13272 knowledge elsewhere anyway. Tighten some comments.
13273 (bookmark-file-or-variation-thereof): Remove now-unused function.
13274 (bookmark-location): Doc string fix.
13275 (Bug#4250)
13276
13277 2009-10-04 Karl Fogel <kfogel@red-bean.com>
13278
13279 * bookmark.el (bookmark-handle-bookmark): When relocating a bookmark,
13280 don't use a file dialog, because they usually don't know how to read
13281 a directory target from the user. (Bug#4230)
13282 Also, make sure the prompt can display directories as well as files.
13283
13284 2009-10-04 Karl Fogel <kfogel@red-bean.com>
13285
13286 * bookmark.el (bookmark-set, bookmark-buffer-name):
13287 Improve doc strings. (Bug#1193)
13288
13289 2009-10-04 Karl Fogel <kfogel@red-bean.com>
13290
13291 * bookmark.el (bookmark-get-bookmark, bookmark-get-bookmark-record)
13292 (bookmark-set-name, bookmark-prop-get, bookmark-prop-set)
13293 (bookmark-get-annotation, bookmark-set-annotation)
13294 (bookmark-get-filename, bookmark-set-filename, bookmark-get-position)
13295 (bookmark-set-position, bookmark-get-front-context-string)
13296 (bookmark-set-front-context-string, bookmark-get-rear-context-string)
13297 (bookmark-set-rear-context-string, bookmark-location, bookmark-jump)
13298 (bookmark-jump-other-window, bookmark-handle-bookmark)
13299 (bookmark-relocate, bookmark-insert-location, bookmark-rename)
13300 (bookmark-insert, bookmark-delete, bookmark-time-to-save-p)
13301 (bookmark-edit-annotation-mode, bookmark-edit-annotation):
13302 Improve doc strings to say whether bookmark can be a string or
13303 a record or both, and make other consistency and clarity fixes.
13304 (bookmark-get-handler, bookmark--jump-via, bookmark-write-file)
13305 (bookmark-default-annotation-text, bookmark-yank-word)
13306 (bookmark-maybe-load-default-file, bookmark-maybe-sort-alist)
13307 (bookmark-import-new-list, bookmark-maybe-rename)
13308 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
13309 (bookmark-bmenu-bookmark): Give these doc strings.
13310 (bookmark-bmenu-check-position): Give this a doc string, but also
13311 add a FIXME comment about how the function may be pointless.
13312 (bookmark-default-handler): Rework doc string and change a
13313 parameter name, to clarify that this takes a bookmark record
13314 not a bookmark name.
13315 (bookmark-set): Change a parameter name to indicate its meaning,
13316 and improve the doc string a bit.
13317 (Bug#4188)
13318
13319 2009-10-04 Karl Fogel <kfogel@red-bean.com>
13320
13321 * bookmark.el (bookmark-alist): Document the new `handler' element
13322 in the param alist.
13323 (bookmark-make-record-function): Adjust documentation for above.
13324 (Bug#4193)
13325
13326 2009-10-04 Karl Fogel <kfogel@red-bean.com>
13327
13328 * info.el (Info-bookmark-make-record): Document this function.
13329 (Info-bookmark-jump): Document with a doc string, not just a comment.
13330 (Bug#4203)
13331
13332 2009-10-04 Michael Albinus <michael.albinus@gmx.de>
13333
13334 * files.el (copy-directory): New defun.
13335
13336 * dired-aux.el (dired-copy-file-recursive): Use it.
13337
13338 2009-10-04 Juanma Barranquero <lekktu@gmail.com>
13339
13340 * files-x.el (modify-dir-local-variable)
13341 (copy-dir-locals-to-file-locals-prop-line): Fix typos in
13342 docstrings.
13343
13344 * recentf.el (recentf-unload-function): New function.
13345
13346 2009-10-04 Glenn Morris <rgm@gnu.org>
13347
13348 * window.el (window-full-height-p): Add doc string.
13349
13350 2009-10-04 Martin Rudalics <rudalics@gmx.at>
13351
13352 * window.el (window-full-height-p): New function. (Bug#4543)
13353
13354 2009-10-03 Dan Nicolaescu <dann@ics.uci.edu>
13355
13356 * vc.el: Remove commented out code.
13357 (vc-derived-from-dir-mode): Remove, unused.
13358 (vc-version-diff, vc-diff): Consistently pass t to vc-deduce-fileset.
13359
13360 2009-10-03 Michael Albinus <michael.albinus@gmx.de>
13361
13362 * net/tramp-ftp.el (tramp-ftp-file-name-handler):
13363 Disable `file-name-handler-alist' when loading 'ange-ftp. Otherwise,
13364 there could be recursive loading when `default-directory' is a
13365 remote file name. (Bug#4614)
13366
13367 2009-10-03 Glenn Morris <rgm@gnu.org>
13368
13369 * calendar/calendar.el (calendar-basic-setup): Handle the case where
13370 the frame is wide.
13371 (calendar-generate-window): Test for shrinkability rather than width.
13372
13373 * mail/rmail.el (rmail-generate-viewer-buffer): Be more careful about
13374 reusing existing buffers, in case we happen to visit two files with the
13375 same basename. (Bug#4593)
13376
13377 2009-10-02 Eli Zaretskii <eliz@gnu.org>
13378
13379 * makefile.w32-in (update-subdirs-CMD): Add cedet to $(WINS_SUBDIR).
13380 (WINS_CEDET_SUBDIRS): List of subdirectories of cedet.
13381 (bootstrap-clean-CMD, bootstrap-clean-SH): Remove *.elc files in
13382 subdirs of cedet as well.
13383 (AUTOGENEL): Add loaddefs.el files in cedet subdirectories.
13384
13385 2009-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
13386
13387 * emacs-lisp/eldoc.el (eldoc-get-fnsym-args-string):
13388 Obey advertised-signature-table.
13389
13390 * help-fns.el (help-function-arglist): Don't check
13391 advertised-signature-table.
13392 (describe-function-1): Do it here instead so it also applies to subrs.
13393
13394 2009-10-02 Michael Albinus <michael.albinus@gmx.de>
13395
13396 * simple.el (start-file-process): Say in the doc-string, that file
13397 handlers might not support pty association, if PROGRAM is nil.
13398
13399 * net/ange-ftp.el (ange-ftp-generate-passwd-key): Check, whether
13400 HOST and USER are strings. They are nil, when there are
13401 incomplete entries in ~/.netrc, for example.
13402 (ange-ftp-delete-directory): Implement RECURSIVE case. Change to
13403 root directory ("device busy" error otherwise).
13404
13405 * net/tramp-smb.el (tramp-smb-handle-make-directory-internal):
13406 Flush file properties of created directory.
13407
13408 2009-10-02 Eli Zaretskii <eliz@gnu.org>
13409
13410 * makefile.w32-in (WINS_BASIC): Remove cedet.
13411 (WINS_CEDET): Add cedet.
13412 (update-subdirs-SH): Use $(WINS_SUBDIR), not $(WINS).
13413
13414 2009-10-02 Kevin Ryde <user42@zip.com.au>
13415
13416 * net/browse-url.el (browse-url): Pass any symbol in
13417 browse-url-browser-function to `apply', since if you've mistakenly put
13418 an unbound symbol then the error is clearer. (Bug#4531)
13419
13420 2009-10-02 Juanma Barranquero <lekktu@gmail.com>
13421
13422 * allout.el (allout-init, allout-back-to-current-heading)
13423 (allout-beginning-of-current-entry, allout-ascend-to-depth)
13424 (allout-ascend, allout-up-current-level, allout-end-of-level)
13425 (allout-previous-visible-heading, allout-forward-current-level)
13426 (allout-backward-current-level, allout-show-children):
13427 * apropos.el (apropos-describe-plist):
13428 * bookmark.el (bookmark-maybe-historicize-string, bookmark-bmenu-list):
13429 * comint.el (comint-strip-ctrl-m, comint-goto-process-mark):
13430 * completion.el (add-completion, add-permanent-completion):
13431 * descr-text.el (describe-text-category, describe-char):
13432 * desktop.el (desktop-lazy-abort):
13433 * dired-x.el (dired-omit-expunge, dired-x-bind-find-file):
13434 * dired.el (dired-build-subdir-alist):
13435 * ediff.el (ediff-version):
13436 * elide-head.el (elide-head, elide-head-show):
13437 * emerge.el (emerge-version):
13438 * env.el (getenv):
13439 * face-remap.el (variable-pitch-mode):
13440 * faces.el (describe-face):
13441 * ffap.el (ffap-next-url, find-file-at-point, ffap-at-mouse)
13442 (dired-at-point):
13443 * files.el (find-file-existing, auto-save-mode):
13444 * font-lock.el (font-lock-fontify-buffer):
13445 * help-fns.el (describe-function, describe-variable)
13446 (describe-syntax, describe-categories):
13447 * help.el (view-lossage, describe-bindings, describe-key)
13448 (describe-mode):
13449 * hexl.el (hexl-current-address):
13450 * hi-lock.el (hi-lock-mode, hi-lock-find-patterns):
13451 * info.el (Info-goto-emacs-key-command-node):
13452 * log-edit.el (log-edit-insert-cvs-template)
13453 (log-edit-insert-cvs-rcstemplate):
13454 * menu-bar.el (menu-bar-mode):
13455 * mouse.el (mouse-appearance-menu):
13456 * newcomment.el (comment-indent-new-line):
13457 * pgg.el (pgg-save-coding-system, pgg-encrypt-region)
13458 (pgg-encrypt-symmetric-region, pgg-encrypt-symmetric)
13459 (pgg-encrypt, pgg-decrypt-region, pgg-decrypt)
13460 (pgg-sign-region, pgg-sign, pgg-verify-region, pgg-verify):
13461 * recentf.el (recentf-mode):
13462 * savehist.el (savehist-mode, savehist-save):
13463 * shadowfile.el (shadow-copy-files):
13464 * simple.el (kill-ring-save, next-line, previous-line)
13465 (normal-erase-is-backspace-mode):
13466 * strokes.el (strokes-update-window-configuration)
13467 (strokes-load-user-strokes, strokes-prompt-user-save-strokes)
13468 (strokes-xpm-for-stroke):
13469 * time.el (emacs-uptime, emacs-init-time):
13470 * tutorial.el (tutorial--describe-nonstandard-key)
13471 (tutorial--detailed-help):
13472 * type-break.el (type-break-mode)
13473 (type-break-mode-line-message-mode, type-break-query-mode)
13474 (type-break-guesstimate-keystroke-threshold):
13475 * vc.el (vc-version-diff, vc-diff, vc-root-diff):
13476 * version.el (emacs-version):
13477 * vt-control.el (vt-keypad-on, vt-keypad-off, vt-numlock):
13478 * winner.el (winner-mode):
13479 * calendar/timeclock.el (timeclock-in, timeclock-out)
13480 (timeclock-status-string, timeclock-change)
13481 (timeclock-workday-remaining-string)
13482 (timeclock-workday-elapsed-string)
13483 (timeclock-when-to-leave-string):
13484 * calendar/todo-mode.el (todo-add-category):
13485 * emacs-lisp/advice.el (ad-enable-regexp, ad-disable-regexp):
13486 * emacs-lisp/autoload.el (update-file-autoloads):
13487 * emacs-lisp/checkdoc.el (checkdoc-current-buffer)
13488 (checkdoc-start, checkdoc-continue, checkdoc-rogue-spaces)
13489 (checkdoc-message-text, checkdoc-defun):
13490 * emacs-lisp/debug.el (debugger-list-functions):
13491 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
13492 * emacs-lisp/eieio-opt.el (eieio-describe-class)
13493 (eieio-describe-generic):
13494 * emacs-lisp/lisp-mnt.el (lm-synopsis):
13495 * emacs-lisp/shadow.el (list-load-path-shadows):
13496 * emulation/cua-base.el (cua-mode):
13497 * emulation/edt.el (edt-set-scroll-margins):
13498 * emulation/tpu-edt.el (tpu-toggle-newline-and-indent)
13499 (tpu-toggle-regexp, tpu-toggle-search-direction)
13500 (tpu-toggle-rectangle, tpu-toggle-control-keys):
13501 * emulation/tpu-extras.el (tpu-set-scroll-margins):
13502 * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
13503 (viper-set-parsing-style-toggling-macro)
13504 (viper-set-emacs-state-searchstyle-macros):
13505 * emulation/viper.el (viper-set-hooks):
13506 * eshell/esh-mode.el (eshell-truncate-buffer):
13507 * international/mule-cmds.el (prefer-coding-system)
13508 (describe-input-method, describe-language-environment):
13509 * international/mule-diag.el (list-character-sets)
13510 (describe-character-set, describe-coding-system)
13511 (describe-fontset, list-fontsets, list-input-methods):
13512 * mail/sendmail.el (mail-signature):
13513 * net/ange-ftp.el (ange-ftp-copy-file):
13514 * net/browse-url.el (browse-url):
13515 * net/eudc.el (eudc-set-server, eudc-get-attribute-list):
13516 * net/quickurl.el (quickurl-add-url):
13517 * net/rcirc.el (names, topic):
13518 * net/xesam.el (xesam-mode):
13519 * play/5x5.el (5x5-new-game):
13520 * play/yow.el (apropos-zippy):
13521 * progmodes/ada-mode.el (ada-mode-version):
13522 * progmodes/f90.el (f90-beginning-of-subprogram, f90-end-of-subprogram)
13523 (f90-end-of-block)
13524 (f90-beginning-of-block):
13525 * progmodes/fortran.el (fortran-end-of-block)
13526 (fortran-beginning-of-block):
13527 * progmodes/js.el (js-syntactic-context, js-gc, js-eval):
13528 * progmodes/python.el (python-describe-symbol, python-shell):
13529 * term/ns-win.el (ns-print-buffer):
13530 * textmodes/bibtex.el (bibtex-end-of-entry, bibtex-url):
13531 * textmodes/flyspell.el (flyspell-mode-on):
13532 * textmodes/page-ext.el (set-page-delimiter, pages-directory)
13533 (pages-directory-for-addresses):
13534 * textmodes/table.el (table-recognize-cell)
13535 (table-query-dimension, table-generate-source)
13536 (table-insert-sequence, table--warn-incompatibility):
13537 * textmodes/tex-mode.el (tex-validate-buffer):
13538 * textmodes/texinfmt.el (texinfmt-version)
13539 (texinfo-format-buffer):
13540 Use `called-interactively-p' instead of `interactive-p'.
13541
13542 2009-10-02 Juanma Barranquero <lekktu@gmail.com>
13543
13544 * image-mode.el (image-toggle-display):
13545 * emacs-lisp/elp.el (elp-instrument-function):
13546 * emacs-lisp/advice.el (ad-make-advised-definition):
13547 * emacs-lisp/easy-mmode.el (define-minor-mode):
13548 * net/browse-url.el (browse-url-maybe-new-window):
13549 * progmodes/sh-script.el (sh-learn-buffer-indent):
13550 Pass new argument 'any to `called-interactively-p'.
13551
13552 2009-10-01 Juanma Barranquero <lekktu@gmail.com>
13553
13554 * international/uni-bidi.el:
13555 * international/uni-category.el:
13556 * international/uni-combining.el:
13557 * international/uni-comment.el:
13558 * international/uni-decimal.el:
13559 * international/uni-decomposition.el:
13560 * international/uni-digit.el:
13561 * international/uni-lowercase.el:
13562 * international/uni-mirrored.el:
13563 * international/uni-name.el:
13564 * international/uni-numeric.el:
13565 * international/uni-old-name.el:
13566 * international/uni-titlecase.el:
13567 * international/uni-uppercase.el:
13568 Regenerate from Unicode 5.2.0 data.
13569
13570 2009-10-01 Glenn Morris <rgm@gnu.org>
13571
13572 * Makefile.in (ELCFILES): Regenerate.
13573
13574 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
13575
13576 * subr.el (interactive-p): Mark obsolete.
13577 (called-interactively-p): Make the optional-ness of `kind' obsolete.
13578 * emacs-lisp/bytecomp.el (byte-compile-fdefinition): Make it obey
13579 advertised-signature-table for subroutines as well.
13580
13581 * emacs-lisp/byte-run.el (advertised-signature-table): New var.
13582 (set-advertised-calling-convention): New function.
13583 (make-obsolete, define-obsolete-function-alias)
13584 (make-obsolete-variable, define-obsolete-variable-alias):
13585 Make the optional-ness of `when' obsolete.
13586 (define-obsolete-face-alias): Make `when' non-optional.
13587 * help-fns.el (help-function-arglist):
13588 * emacs-lisp/bytecomp.el (byte-compile-fdefinition):
13589 Use advertised-signature-table.
13590
13591 2009-10-01 Michael Albinus <michael.albinus@gmx.de>
13592
13593 * files.el (delete-directory): New defun. The original function
13594 in fileio.c has been renamed to `delete-directory-internal'.
13595
13596 * dired.el (dired-delete-file): Call `delete-directory' with
13597 RECURSIVE parameter.
13598
13599 * net/ange-ftp.el (ange-ftp-delete-directory): Add optional
13600 parameter RECURSIVE. Implementation is missing.
13601
13602 * net/tramp.el (tramp-handle-make-directory): Flush upper
13603 directory's file properties.
13604 (tramp-handle-delete-directory): Handle optional parameter RECURSIVE.
13605 (tramp-handle-dired-recursive-delete-directory): Flush directory
13606 properties after the remove command only.
13607
13608 * net/tramp-fish.el (tramp-fish-handle-delete-directory):
13609 Handle optional parameter RECURSIVE.
13610
13611 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory):
13612 Handle optional parameter RECURSIVE.
13613
13614 * net/tramp-smb.el (tramp-smb-errors): Add error message for
13615 connection timeout.
13616 (tramp-smb-handle-delete-directory): Handle optional parameter
13617 RECURSIVE.
13618
13619 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
13620
13621 * emacs-lisp/bytecomp.el (byte-compile-defmacro-declaration): New fun.
13622 (byte-compile-file-form-defmumble, byte-compile-defmacro): Use it.
13623 (byte-compile-defmacro): Use backquotes.
13624
13625 * files.el (cd-absolute): Don't abbreviate-file-name (bug#4599).
13626
13627 * vc-dispatcher.el (vc-resynch-window): Don't revert a buffer which
13628 has no associated file.
13629 (vc-resynch-buffer): Use vc-dir-buffers.
13630
13631 2009-10-01 Glenn Morris <rgm@gnu.org>
13632
13633 * emacs-lisp/chart.el (chart-zap-chars, chart-bar-quickie)
13634 (chart-file-count):
13635 * emacs-lisp/eieio-comp.el (byte-compile-defmethod-param-convert):
13636 * emacs-lisp/eieio-datadebug.el (data-debug-insert-object-button):
13637 * emacs-lisp/eieio-opt.el (eieio-describe-class):
13638 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-create):
13639 * emacs-lisp/eieio.el (defclass, eieio-defclass-autoload)
13640 (eieio-copy-parents-into-subclass, make-instance, class-children)
13641 (eieio-generic-form):
13642
13643 * vc-cvs.el (vc-cvs-parse-entry): Be more careful with the
13644 match-data. (Bug#4555).
13645
13646 * emacs-lisp/check-declare.el (check-declare-scan): Read the declaration
13647 rather than parsing it as a regexp. This relaxes the layout
13648 requirements and makes errors easier to detect.
13649 (check-declare-verify): Check file is regular.
13650 (check-declare-directory): Doc fix.
13651 * subr.el (declare-function): Doc fix.
13652
13653 * ibuffer.el (ibuffer-format-qualifier):
13654 * isearch.el (hi-lock-regexp-okay):
13655 * calc/calc.el (math-zerop):
13656 * mail/uce.el (rmail-msgbeg, rmail-msgend):
13657 * term/w32-win.el (setup-default-fontset, set-fontset-font):
13658 Remove unused declarations.
13659
13660 2009-09-30 Eric Ludlam <zappo@gnu.org>
13661
13662 * emacs-lisp/eieio.el (boolean-p): Delete.
13663
13664 2009-09-30 Glenn Morris <rgm@gnu.org>
13665
13666 * emacs-lisp/authors.el (authors-ignored-files): Add "js2-mode.el".
13667
13668 * emacs-lisp/elint.el (elint-init-form): Report declarations where the
13669 filename is not a string.
13670
13671 2009-09-29 Chong Yidong <cyd@stupidchicken.com>
13672
13673 * files.el (safe-local-eval-forms): Fix typo.
13674
13675 2009-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
13676
13677 * vc-hooks.el (vc-dir-buffers): New var.
13678 (vc-state-refresh): New function.
13679 (vc-state): Use it.
13680 (vc-after-save): Always ask the backend to recompute the new state.
13681 Always call vc-dir if necessary, using vc-dir-buffers.
13682 * vc-dir.el (vc-dir-prepare-status-buffer, vc-dir-resynch-file):
13683 Use vc-dir-buffers.
13684 (vc-dir-mode): Use vc-dir-buffers rather than after-save-hook.
13685 (vc-dir-prepare-status-buffer, vc-dir-update)
13686 (vc-dir-resync-directory-files, vc-dir-resynch-file, vc-dir-mode):
13687 Don't call expand-file-name on default-directory.
13688
13689 2009-09-29 Juanma Barranquero <lekktu@gmail.com>
13690
13691 * speedbar.el (speedbar-item-delete):
13692 * calc/calc-prog.el (calc-kbd-if):
13693 * language/hanja-util.el (hanja-init-load): Fix typos in messages.
13694
13695 * epa.el (epa-key-list-mode-map):
13696 * hi-lock.el (hi-lock-menu): Fix typos in menus.
13697
13698 * progmodes/hideshow.el (hs-allow-nesting): Reflow docstring.
13699 (hs-show-hook): Fix typo in docstring.
13700
13701 2009-09-29 Glenn Morris <rgm@gnu.org>
13702
13703 * emacs-lisp/check-declare.el (check-declare-locate): Remove pointless
13704 file-name-nondirectory call preventing location of cedet files.
13705 (check-declare-verify): Use literal search rather than re-search.
13706 Add basic defmethod and defclass, and define-overloadable-function.
13707
13708 * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
13709 Use tramp-compat-file-attributes rather than nonexistent
13710 tramp-compat-handle-file-attributes.
13711
13712 * Makefile.in (lisptagsfiles4): New.
13713 (AUTOGENEL): Add cedet loaddefs files.
13714 (TAGS, TAGS-LISP): Use $lisptagsfiles4.
13715 (update-elclist, compile-always, backup-compiled-files)
13716 (bootstrap-clean): Add yet another directory level.
13717 (update-elclist): Use LC_COLLATE rather than COLLATE.
13718 (ELCFILES): Update, via `make update-elclist'.
13719
13720 2009-09-29 Juanma Barranquero <lekktu@gmail.com>
13721
13722 * makefile.w32-in (WINS_CEDET, WINS_BASIC, WINS_SUBDIR): New macros.
13723 (WINS_ALMOST): Set from WINS_BASIC and WINS_CEDET.
13724 (update-subdirs-CMD): Use WINS_SUBDIR, not WINS_ALMOST.
13725
13726 2009-09-28 Andreas Schwab <schwab@linux-m68k.org>
13727
13728 * Makefile.in (lisptagsfiles3): Define.
13729 (TAGS, TAGS-LISP): Use it.
13730 (update-elclist): Add third directory level to look for elc files.
13731 (compile-always): Likewise.
13732 (backup-compiled-files): Likewise.
13733 (bootstrap-clean): Likewise.
13734 (ELCFILES): Update.
13735
13736 2009-09-28 Chong Yidong <cyd@stupidchicken.com>
13737
13738 * Makefile.in (ELCFILES): Add CEDET files.
13739
13740 2009-09-28 Michael Albinus <michael.albinus@gmx.de>
13741
13742 * Makefile.in (ELCFILES): Add net/tramp-imap.elc.
13743
13744 * net/tramp.el (top): Require tramp-imap.
13745
13746 * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
13747 Use `tramp-compat-handle-file-attributes'.
13748
13749 2009-09-28 Teodor Zlatanov <tzz@lifelogs.com>
13750
13751 * net/tramp-imap.el: New package.
13752
13753 2009-09-28 Eric Ludlam <zappo@gnu.org>
13754
13755 * emacs-lisp/chart.el:
13756 * emacs-lisp/eieio-base.el:
13757 * emacs-lisp/eieio-comp.el:
13758 * emacs-lisp/eieio-custom.el:
13759 * emacs-lisp/eieio-datadebug.el:
13760 * emacs-lisp/eieio-opt.el:
13761 * emacs-lisp/eieio-speedbar.el:
13762 * emacs-lisp/eieio.el: New files.
13763
13764 2009-09-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
13765
13766 * whitespace.el (whitespace-trailing-regexp)
13767 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
13768 Fix doc string.
13769
13770 2009-09-27 Chong Yidong <cyd@stupidchicken.com>
13771
13772 * menu-bar.el: Remove menu-bar-ediff-misc-menu from the Tools
13773 menu.
13774
13775 * ediff-hook.el: Move menu-bar-ediff-misc-menu into
13776 menu-bar-ediff-menu.
13777
13778 * emacs-lisp/lisp-mode.el: Add doc-string-elt property to
13779 define-overloadable-function.
13780
13781 * progmodes/autoconf.el: Provide autoconf as well, so that this
13782 file can be `require'd.
13783
13784 * emacs-lisp/cl-macs.el (deftype): Add to cl-loaddefs.
13785
13786 * emacs-lisp/autoload.el (generated-autoload-feature)
13787 (generated-autoload-load-name): New vars.
13788 (autoload-rubric, autoload-generate-file-autoloads): Use them.
13789 (make-autoload): Recognize define-overloadable-function and
13790 defclass forms (for EIEIO).
13791
13792 * Makefile.in (update-subdirs): Exclude cedet directory.
13793
13794 2009-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
13795
13796 * term/ns-win.el: Don't set the region face background. (Bug#4381)
13797
13798 * faces.el: Default light-background background for region face to
13799 ns_selection_color under NS.
13800
13801 2009-09-27 Teodor Zlatanov <tzz@lifelogs.com>
13802
13803 * net/imap-hash.el: New library, see NEWS.
13804
13805 * Makefile.in (ELCFILES): Add imap-hash.el.
13806
13807 2009-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
13808
13809 * help.el (help-for-help-internal): Don't purecopy the text (bug#4560).
13810 * isearch.el (isearch-help-for-help-internal): Purecopy the second arg.
13811 * help-macro.el (make-help-screen): Avoid using an ambiguous function
13812 definition where the docstring could be taken for the return value.
13813
13814 2009-09-26 Glenn Morris <rgm@gnu.org>
13815
13816 * mail/rmailmm.el (rmail-mime-show-images, rmail-mime-bulk-handler):
13817 Add option to only show images below a certain size.
13818 (rmail-mime-multipart-handler): Remove unnecessary save-match-data and
13819 save-excursion calls.
13820
13821 2009-09-26 Eli Zaretskii <eliz@gnu.org>
13822
13823 * makefile.w32-in (WINS_ALMOST): Add cedet (with its
13824 subdirectories) and eieio.
13825
13826 2009-09-26 Alan Mackenzie <acm@muc.de>
13827
13828 * progmodes/cc-engine.el (c-beginning-of-statement-1): Correct
13829 buggy bracketing. (Bug#4289)
13830
13831 * progmodes/cc-langs.el (c-nonlabel-token-key): Allow quoted
13832 character constants (as case labels). (Bug#4289)
13833
13834 2009-09-25 Juri Linkov <juri@jurta.org>
13835
13836 * files.el (safe-local-eval-forms): Allow time-stamp in
13837 before-save-hook (Bug#4554).
13838
13839 2009-09-25 Drew Adams <drew.adams@oracle.com>
13840
13841 * menu-bar.el (list-buffers-directory): Doc fix.
13842
13843 2009-09-25 Stefan Monnier <monnier@iro.umontreal.ca>
13844
13845 * log-edit.el (log-edit-changelog-entries): Avoid inf-loops.
13846 Try and avoid copying twice the same paragraph.
13847 (log-edit-changelog-paragraph, log-edit-changelog-subparagraph):
13848 Remove save-excursion.
13849 (log-edit-changelog-entry): Do it here instead.
13850
13851 2009-09-25 Juanma Barranquero <lekktu@gmail.com>
13852
13853 * bs.el (bs--get-file-name): Use `list-buffers-directory'
13854 when available, instead of hardcoding mode names. Doc fix.
13855
13856 * menu-bar.el (list-buffers-directory): Add docstring.
13857 Make automatically buffer-local.
13858
13859 * dired.el (dired-mode):
13860 * files.el (cd-absolute):
13861 * pcvs.el (cvs-temp-buffer):
13862 * pcvs-util.el (cvs-get-buffer-create):
13863 * shell.el (shell-mode):
13864 * vc-dir.el (vc-dir-mode):
13865 Don't make `list-buffers-directory' buffer local.
13866
13867 2009-09-25 Devon Sean McCullough <emacs-hacker@Jovi.Net>
13868
13869 * comint.el (comint-exec, comint-run, make-comint):
13870 Doc fixes (Bug#4542).
13871
13872 2009-09-25 Glenn Morris <rgm@gnu.org>
13873
13874 * mail/rmailmm.el (rmail-mime): New custom group.
13875 Move all defcustoms in this file into this group.
13876 (rmail-mime-media-type-handlers-alist): Revert previous change.
13877 (rmail-mime-show-images): New option.
13878 (rmail-mime-total-number-of-bulk-attachments): Remove variable and all
13879 references to it, since it wasn't actually used for anything.
13880 (rmail-mime-insert-image): New function.
13881 (rmail-mime-image): Use rmail-mime-insert-image.
13882 (rmail-mime-bulk-handler): Remove optional `image' argument, instead
13883 obey the value of `rmail-mime-show-images' option. Print the size of
13884 attachments.
13885
13886 2009-09-25 David Engster <deng@randomsample.de>
13887
13888 * progmodes/hideshow.el (hs-show-block): Run `hs-show-hook'. (Bug#4548)
13889
13890 2009-09-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
13891
13892 * whitespace.el: Does not highlight trailing spaces While point is
13893 at end of line. Does not highligt spaces at beginning of buffer
13894 while point is at beginning of buffer. Does not highlight spaces
13895 at end of buffer while point is at end of buffer. (Bug#4177)
13896 New version 12.0.
13897 (whitespace-display-mappings): Adjust initialization.
13898 (whitespace-point, whitespace-font-lock-refontify): New vars.
13899 (whitespace-color-on, whitespace-color-off): Adjust code.
13900 (whitespace-trailing-regexp, whitespace-empty-at-bob-regexp)
13901 (whitespace-empty-at-eob-regexp, whitespace-space-regexp)
13902 (whitespace-tab-regexp, whitespace-post-command-hook): New funs.
13903
13904 2009-09-24 Chong Yidong <cyd@stupidchicken.com>
13905
13906 * nxml/nxml-mode.el: Alias xml-mode to nxml-mode.
13907
13908 * textmodes/sgml-mode.el: Remove xml-mode alias.
13909
13910 * files.el (auto-mode-alist, conf-mode-maybe)
13911 (magic-fallback-mode-alist): Revert 2009-09-18 and 2009-09-21 changes.
13912
13913 2009-09-24 Alan Mackenzie <acm@muc.de>
13914
13915 * progmodes/cc-cmds.el (c-scan-conditionals): A new function like
13916 c-forward-conditionals, but it doesn't move point and doesn't set
13917 the mark.
13918 (c-up-conditional, c-up-conditional-with-else, c-down-conditional)
13919 (c-down-conditional-with-else, c-backward-conditional)
13920 (c-forward-conditional): Refactor to use c-scan-conditionals.
13921
13922 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
13923
13924 * help-fns.el (help-downcase-arguments): New option, defaulting to nil.
13925 (help-default-arg-highlight): Remove.
13926 (help-highlight-arg): New function.
13927 (help-do-arg-highlight): Use it.
13928 Suggested by Drew Adams <drew.adams@oracle.com>. (Bug#4510, bug#4520)
13929
13930 2009-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
13931
13932 * term.el (term-set-scroll-region, term-handle-ansi-escape):
13933 Undo last change, which didn't fix the problem and introduced others.
13934
13935 2009-09-24 Nick Roberts <nickrob@snap.net.nz>
13936
13937 * progmodes/gdb-mi.el: Don't require speedbar.
13938 (gdb-jsonify-buffer): Handle case where "=" is part of value string.
13939
13940 2009-09-24 Glenn Morris <rgm@gnu.org>
13941
13942 * calendar/diary-lib.el (diary-fancy-display): Always run the hook.
13943
13944 * term/ns-win.el (ns-reg-to-script): Define for compiler.
13945
13946 * mail/rmailmm.el (rmail-mime-multipart-handler): Accept the case where
13947 there is no newline after the final mime boundary. (Bug#4539)
13948 Move markers on insertion so that any buttons inserted don't end up in
13949 the next part of a multipart message.
13950 (rmail-mime-media-type-handlers-alist): Doc fix. Add image handler.
13951 (rmail-mime-bulk-handler): Optionally handle images.
13952 (rmail-mime-image): New button action.
13953 (rmail-mime-image-handler): New function.
13954 (rmail-mime-mode): New mode.
13955 (rmail-mime): Doc fix. Use rmail-mime-mode (for font-lock).
13956
13957 2009-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
13958
13959 * minibuffer.el (minibuffer-force-complete): Cycle the list, rather
13960 than just dropping elements from it (bug#4504).
13961
13962 * term.el (term-set-scroll-region): Don't move cursor any more.
13963 (term-handle-ansi-escape): Call term-goto here instead.
13964 Suggested by Ivan Kanis <apple@kanis.eu>.
13965
13966 * term.el: Require CL.
13967 (term-ansi-reset): New function.
13968 (term-mode, term-emulate-terminal, term-handle-colors-array): Use it.
13969 (term-handle-colors-array): Simplify.
13970
13971 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
13972
13973 * allout.el (allout-overlay-interior-modification-handler)
13974 (allout-obtain-passphrase):
13975 * epa-file.el (epa-file-write-region):
13976 * ps-print.el (ps-begin-job):
13977 * vc-hooks.el (vc-toggle-read-only):
13978 * vc-rcs.el (vc-rcs-rollback):
13979 * vc-sccs.el (vc-sccs-rollback):
13980 * vc.el (vc-deduce-fileset, vc-next-action, vc-register-with)
13981 (vc-version-diff, vc-revert, vc-rollback):
13982 * wdired.el (wdired-check-kill-buffer):
13983 * emacs-lisp/authors.el (authors):
13984 * net/socks.el (socks-open-connection):
13985 * net/zeroconf.el (zeroconf-service-add-hook):
13986 * obsolete/vc-mcvs.el (vc-mcvs-register):
13987 * progmodes/gdb-mi.el (def-gdb-thread-buffer-gud-command)
13988 (gdb-select-frame):
13989 * progmodes/grep.el (lgrep, rgrep):
13990 * progmodes/idlw-help.el (idlwave-help-check-locations)
13991 (idlwave-help-html-link, idlwave-help-assistant-open-link):
13992 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
13993 * textmodes/reftex-toc.el (reftex-toc-promote-prepare)
13994 (reftex-toc-rename-label): Fix typos in error messages.
13995
13996 * dired-aux.el (dired-do-shell-command): Reflow docstring.
13997 (dired-copy-how-to-fn): Doc fix.
13998 (dired-files-attributes, dired-read-shell-command):
13999 Fix typos in docstrings.
14000
14001 * dired-x.el (dired-enable-local-variables, dired-filename-at-point)
14002 (dired-x-find-file-other-window): Reflow docstrings.
14003 (dired-omit-marker-char, dired-read-shell-command)
14004 (dired-x-submit-report): Fix typos in docstrings.
14005
14006 * shell.el (shell-mode-hook):
14007 * view.el (View-scroll-line-forward):
14008 * progmodes/inf-lisp.el (inferior-lisp-mode-hook):
14009 Fix typos in docstrings.
14010
14011 * net/dig.el (dig-invoke): Fix typo in docstring.
14012 (query-dig): Reflow docstring.
14013
14014 * progmodes/idlwave.el (idlwave-create-user-catalog-file)
14015 (idlwave-quoted, idlwave-rinfo-max-source-lines): Doc fixes.
14016 (idlwave-abbrev-move, idlwave-auto-routine-info-updates)
14017 (idlwave-begin-block-reg, idlwave-begin-unit-reg)
14018 (idlwave-beginning-of-subprogram, idlwave-block-jump-out)
14019 (idlwave-block-match-regexp, idlwave-calculate-paren-indent)
14020 (idlwave-check-abbrev, idlwave-class-file-or-buffer)
14021 (idlwave-class-found-in, idlwave-complete, idlwave-complete-in-buffer)
14022 (idlwave-completion-map, idlwave-current-indent)
14023 (idlwave-custom-ampersand-surround, idlwave-customize)
14024 (idlwave-default-font-lock-items, idlwave-default-insert-timestamp)
14025 (idlwave-define-abbrev, idlwave-determine-class-special)
14026 (idlwave-do-action, idlwave-doc-header, idlwave-doc-modification)
14027 (idlwave-end-block-reg, idlwave-end-of-statement)
14028 (idlwave-end-of-statement0, idlwave-end-of-subprogram)
14029 (idlwave-end-unit-reg, idlwave-entry-find-keyword)
14030 (idlwave-explicit-class-listed, idlwave-file-header)
14031 (idlwave-fill-paragraph, idlwave-find-class-definition)
14032 (idlwave-fix-keywords, idlwave-hang-indent-regexp, idlwave-hard-tab)
14033 (idlwave-idlwave_routine_info-compiled, idlwave-in-comment)
14034 (idlwave-in-quote, idlwave-indent-action-table)
14035 (idlwave-indent-expand-table, idlwave-indent-line)
14036 (idlwave-indent-subprogram, idlwave-indent-to-open-paren)
14037 (idlwave-is-comment-line, idlwave-is-comment-or-empty-line)
14038 (idlwave-is-continuation-line, idlwave-is-pointer-dereference)
14039 (idlwave-kill-autoloaded-buffers, idlwave-lib-p, idlwave-look-at)
14040 (idlwave-make-tags, idlwave-mode, idlwave-mode-abbrev-table)
14041 (idlwave-mouse-active-rinfo, idlwave-newline, idlwave-no-change-comment)
14042 (idlwave-outlawed-buffers, idlwave-popup-select)
14043 (idlwave-previous-statement, idlwave-rescan-catalog-directories)
14044 (idlwave-routine-entry-compare, idlwave-routine-info.pro)
14045 (idlwave-scan-all-buffers-for-routine-info, idlwave-scan-class-info)
14046 (idlwave-shell-automatic-start, idlwave-shell-explicit-file-name)
14047 (idlwave-show-begin, idlwave-split-line, idlwave-split-link-target)
14048 (idlwave-statement-type, idlwave-struct-skip)
14049 (idlwave-substitute-link-target, idlwave-toggle-comment-region)
14050 (idlwave-update-current-buffer-info, idlwave-use-library-catalogs)
14051 (idlwave-what-module-find-class): Fix typos in docstrings.
14052 (idlwave-all-method-classes, idlwave-calc-hanging-indent)
14053 (idlwave-calculate-cont-indent, idlwave-expand-equal)
14054 (idlwave-find-module, idlwave-find-structure-definition)
14055 (idlwave-init-rinfo-when-idle-after, idlwave-insert-source-location)
14056 (idlwave-list-load-path-shadows, idlwave-next-statement)
14057 (idlwave-routine-entry-compare-twins, idlwave-routine-info)
14058 (idlwave-routines, idlwave-sintern-rinfo-list, idlwave-statement-match)
14059 (idlwave-template): Reflow docstrings.
14060
14061 * progmodes/idlw-shell.el (idlwave-shell-syntax-error): Doc fix.
14062 (idlwave-shell-batch-command, idlwave-shell-bp-alist)
14063 (idlwave-shell-bp-get, idlwave-shell-bp-overlays)
14064 (idlwave-shell-bp-query, idlwave-shell-break-here, idlwave-shell-buffer)
14065 (idlwave-shell-display-line, idlwave-shell-display-wframe)
14066 (idlwave-shell-electric-debug-mode, idlwave-shell-examine-select)
14067 (idlwave-shell-file-name-chars, idlwave-shell-filter-bp)
14068 (idlwave-shell-goto-frame, idlwave-shell-halt-messages-re)
14069 (idlwave-shell-highlighting-and-faces, idlwave-shell-idl-wframe)
14070 (idlwave-shell-mode-hook, idlwave-shell-mode-line-info)
14071 (idlwave-shell-mode-map, idlwave-shell-module-source-filter)
14072 (idlwave-shell-mouse-help, idlwave-shell-mouse-print)
14073 (idlwave-shell-pc-frame, idlwave-shell-pending-commands)
14074 (idlwave-shell-print, idlwave-shell-quit, idlwave-shell-redisplay)
14075 (idlwave-shell-scan-for-state, idlwave-shell-send-command)
14076 (idlwave-shell-sentinel-hook, idlwave-shell-separate-examine-output)
14077 (idlwave-shell-shell-command, idlwave-shell-sources-alist)
14078 (idlwave-shell-sources-bp, idlwave-shell-sources-filter)
14079 (idlwave-shell-step, idlwave-shell-use-breakpoint-glyph)
14080 (idlwave-toolbar-add-everywhere, idlwave-toolbar-toggle):
14081 Fix typos in docstrings.
14082 (idlwave-shell-bp, idlwave-shell-clear-current-bp)
14083 (idlwave-shell-hide-output, idlwave-shell-mode)
14084 (idlwave-shell-run-region, idlwave-shell-set-bp-in-module):
14085 Reflow docstrings.
14086
14087 * textmodes/bibtex.el (bibtex-sort-entry-class): Fix group name.
14088
14089 2009-09-24 Ivan Kanis <apple@kanis.eu>
14090
14091 * term.el (term-bold-attribute): New var.
14092 (term-handle-colors-array): Use it.
14093
14094 2009-09-23 Nick Roberts <nickrob@snap.net.nz>
14095
14096 * progmodes/gdb-mi.el (gdb-version): New variable.
14097 (gdb-non-stop-handler): Set gdb-version.
14098 (gdb-gud-context-command, gdb-current-context-command, gdb-stopped):
14099 Condition "--thread" option on gdb-version.
14100 (gdb-invalidate-threads): Remove unused argument.
14101
14102 2009-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
14103
14104 * textmodes/flyspell.el (sgml-mode-flyspell-verify): Pass limit args
14105 to looking-back to avoid ridiculous slow down in large files (bug#4511).
14106
14107 2009-09-23 Glenn Morris <rgm@gnu.org>
14108
14109 * mail/rmail.el (rmail-reply): Don't try to add a References header when
14110 replying to mail without References or Message-Id. (Bug#4525)
14111
14112 2009-09-23 Adrian Robert <Adrian.B.Robert@gmail.com>
14113
14114 * term/ns-win.el (ns-reg-to-script): New variable.
14115
14116 2009-09-23 Daiki Ueno <ueno@unixuser.org>
14117
14118 * epg.el (epg-wait-for-status): Preserve existing 'error results.
14119
14120 2009-09-22 Sam Steingold <sds@gnu.org>
14121
14122 * vc-hg.el (vc-hg-print-log): Fix shortlog arg passing.
14123 (vc-hg-outgoing, vc-hg-incoming): Bump okstatus in `vc-hg-command'
14124 to 1 because hg returns status 1 when nothing is found.
14125 Bind `vc-short-log' for the sake of `vc-hg-log-view-mode'.
14126
14127 2009-09-22 Stefan Monnier <monnier@iro.umontreal.ca>
14128
14129 * textmodes/fill.el: Convert to utf-8 encoding.
14130 (fill-french-nobreak-p): Remove redundant » and « inherited from our
14131 pre-Unicode days.
14132
14133 * add-log.el (change-log-fill-forward-paragraph): New function.
14134 (change-log-mode): Use it so fill-region DTRT.
14135 Set fill-indent-according-to-mode here rather than in
14136 change-log-fill-paragraph.
14137 (change-log-fill-paragraph): Remove.
14138
14139 2009-09-22 Juanma Barranquero <lekktu@gmail.com>
14140
14141 * info.el (Info-try-follow-nearest-node): Use the URL extracted by
14142 `Info-get-token', instead of `browse-url-url-at-point'. (Bug#4508)
14143
14144 2009-09-22 Glenn Morris <rgm@gnu.org>
14145
14146 * calendar/calendar.el (calendar-mode-map): Make mouse-1 and 3 clicks on
14147 the scroll-bar scroll the calendar window rather than the buffer.
14148
14149 * calendar/cal-menu.el (cal-menu-scroll-menu): Add a sub-section with
14150 commands that move point (as opposed to scrolling).
14151
14152 * emulation/tpu-edt.el (tpu-copy-keyfile): Fix condition-case handler.
14153
14154 * emacs-lisp/elint.el (elint): New custom group.
14155 (elint-log-buffer): Make it a defcustom.
14156 (elint-scan-preloaded, elint-ignored-warnings)
14157 (elint-directory-skip-re): New options.
14158 (elint-builtin-variables): Doc fix.
14159 (elint-preloaded-env): New variable.
14160 (elint-unknown-builtin-args): Add an entry for encode-time.
14161 (elint-extra-errors): Make it a variable rather than a constant.
14162 (elint-preloaded-skip-re): New constant.
14163 (elint-directory): Skip files matching elint-directory-skip-re.
14164 (elint-features): New variable, local to linted buffers.
14165 (elint-update-env): Initialize elint-features. Possibly add
14166 elint-preloaded-env to the buffer's environment.
14167 (elint-get-top-forms): Bind elint-current-pos, for log messages.
14168 Skip quoted forms.
14169 (elint-init-form): New function, extracted from elint-init-env.
14170 Make non-list forms a warning rather than an error.
14171 Add the mode-map for define-derived-mode. Handle define-minor-mode,
14172 easy-menu-define, put that adds an error-condition, and provide.
14173 When requiring cl, also require cl-macs. Really require cl, to handle
14174 some cl macros. Store required libraries in the list elint-features,
14175 so as not to re-load them. Treat cc-require like require.
14176 (elint-init-env): Call elint-init-form to do the work.
14177 Handle eval-and-compile and such like.
14178 (elint-add-required-env): Do not clear messages.
14179 (elint-special-forms): Add handlers for function, defalias, if, when,
14180 unless, and, or.
14181 (elint-form): Add optional argument to ignore elint-special-forms,
14182 useful to prevent recursive calls from handlers. Doc fix.
14183 Respect elint-ignored-warnings.
14184 (elint-form): Respect elint-ignored-warnings.
14185 (elint-bound-variable, elint-bound-function): New variables.
14186 (elint-unbound-variable): Respect elint-bound-variable.
14187 (elint-get-args): Respect elint-bound-function.
14188 (elint-check-cond-form): Add some simple handling for (f)boundp and
14189 featurep tests.
14190 (elint-check-defalias-form): New handler.
14191 (elint-check-let-form): Make an empty let a warning rather than an
14192 error.
14193 (elint-check-setq-form): Make an empty setq a warning rather than an
14194 error. Respect elint-ignored-warnings.
14195 (elint-check-defvar-form): Accept null doc-strings.
14196 (elint-check-conditional-form): New handler. Does some simple-minded
14197 checking of featurep and (f)boundp tests.
14198 (elint-put-function-args): New function.
14199 (elint-initialize): Use elint-scan-doc-file rather than
14200 elint-find-builtin-variables. Use elint-put-function-args.
14201 Possibly scan preloaded-file-list.
14202 (elint-scan-doc-file): Rename from elint-find-builtin-variables and
14203 extend to handle functions as well.
14204
14205 2009-09-22 Lennart Borgman <lennart.borgman@gmail.com>
14206
14207 * linum.el (linum-delete-overlays, linum-update-window):
14208 Do not modify the right margin. (Bug#3971)
14209
14210 2009-09-21 Chong Yidong <cyd@stupidchicken.com>
14211
14212 * files.el (conf-mode-maybe, magic-fallback-mode-alist): Use
14213 nxml-mode instead of xml-mode.
14214
14215 2009-09-21 Kevin Ryde <user42@zip.com.au>
14216
14217 * net/dig.el: Add "Keywords: comm", as per net-utils.el. (Bug#4501)
14218
14219 2009-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
14220
14221 * net/dig.el (dig-mode): Use define-derived-mode.
14222
14223 2009-09-20 Dan Nicolaescu <dann@ics.uci.edu>
14224
14225 * vc-dispatcher.el (vc-do-command): Return the process object in
14226 the asynchronous case. Use when instead of if. Do not run
14227 vc-exec-after to display a message if not enabled. (Bug#4463)
14228
14229 * vc-git.el (vc-git-dir-extra-headers): Add keymap and mouse-face
14230 properties to the stash strings.
14231 (vc-git-stash-list): Return a list of strings.
14232 (vc-git-stash-get-at-point, vc-git-stash-delete-at-point)
14233 (vc-git-stash-show-at-point): New functions.
14234 (vc-git-stash-map): New keymap.
14235
14236 * register.el (ctl-x-r-map): Define the keys here instead of
14237 using autoload.
14238
14239 2009-09-20 Thierry Volpiatto <thierry.volpiatto@gmail.com> (tiny change)
14240
14241 * bookmark.el (bookmark-write-file): Avoid calling `pp' with large
14242 list, to workaround performance problem (bug#4485).
14243
14244 2009-09-20 Nick Roberts <nickrob@snap.net.nz>
14245
14246 * progmodes/gud.el (gud-sentinel): Revert indavertant change.
14247
14248 2009-09-20 Daiki Ueno <ueno@unixuser.org>
14249
14250 * epa-file.el (epa-file-cache-passphrase-for-symmetric-encryption):
14251 Document that this option is not recommended to use.
14252
14253 2009-09-19 Glenn Morris <rgm@gnu.org>
14254
14255 * calc/calc-graph.el (calc-graph-lookup): Avoid assignment to free
14256 variable `var'.
14257
14258 * calc/calc-alg.el (var):
14259 * calc/calcalg2.el (var): Define for compiler.
14260
14261 2009-09-19 Chong Yidong <cyd@stupidchicken.com>
14262
14263 * emacs-lisp/advice.el (ad-get-argument, ad-set-argument):
14264 Doc fix (Bug#3932).
14265
14266 * subr.el (baud-rate): Remove long-obsolete function (Bug#4372).
14267
14268 * time-stamp.el (time-stamp-month-dd-yyyy)
14269 (time-stamp-dd/mm/yyyy, time-stamp-mon-dd-yyyy)
14270 (time-stamp-dd-mon-yy, time-stamp-yy/mm/dd)
14271 (time-stamp-yyyy/mm/dd, time-stamp-yyyy-mm-dd)
14272 (time-stamp-yymmdd, time-stamp-hh:mm:ss, time-stamp-hhmm):
14273 Remove functions that have been obsolete since 1995 (Bug#4436).
14274
14275 * progmodes/sh-script.el (sh-learn-buffer-indent): Pop to the
14276 indent buffer only if called interactively (Bug#4452).
14277
14278 2009-09-19 Juanma Barranquero <lekktu@gmail.com>
14279 Eli Zaretskii <eliz@gnu.org>
14280
14281 This fixes bug#4197 (merged to bug#865, though not identical).
14282 * server.el (server-auth-dir): Add docstring note about FAT32.
14283 (server-ensure-safe-dir): Accept FAT32 directories as "safe",
14284 but warn against using them.
14285
14286 2009-09-19 Nick Roberts <nickrob@snap.net.nz>
14287
14288 * progmodes/gdb-mi.el (gdb-var-update-handler-1): Include case of
14289 older GDB where there is no has_more field.
14290
14291 2009-09-19 Glenn Morris <rgm@gnu.org>
14292
14293 * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
14294
14295 2009-09-18 Chong Yidong <cyd@stupidchicken.com>
14296
14297 * files.el (auto-mode-alist): Change default for XML files to nXML
14298 mode (Bug#4169).
14299
14300 2009-09-18 Juanma Barranquero <lekktu@gmail.com>
14301
14302 * server.el (server-ensure-safe-dir): Pass 'integer
14303 to `file-attributes', as suggested.
14304
14305 2009-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
14306
14307 * dired-aux.el (dired-query-alist): Remove spurious backslash.
14308 (dired-query): Use read-key.
14309
14310 2009-09-18 Adrian Robert <Adrian.B.Robert@gmail.com>
14311
14312 * cus-start.el (ns-use-qd-smoothing): Remove.
14313
14314 2009-09-18 Glenn Morris <rgm@gnu.org>
14315
14316 * allout.el (top-level): Remove unnecessary progn.
14317
14318 * progmodes/js.el (js-end-of-defun): Remove malformed and unneeded let.
14319
14320 * emacs-lisp/derived.el (define-derived-mode): Fix paren typo in
14321 definition of abbrev table.
14322
14323 * speedbar.el (speedbar-track-mouse):
14324 * net/eudc-bob.el (eudc-bob-pipe-object-to-external-program):
14325 * net/eudc.el (eudc-expand-inline):
14326 * net/newst-backend.el (newsticker--cache-read-feed):
14327 * nxml/nxml-outln.el (nxml-end-of-heading): Fix typos in
14328 condition-case handlers.
14329
14330 2009-09-18 Nick Roberts <nickrob@snap.net.nz>
14331
14332 * progmodes/gdb-mi.el (gdb-frame-address): New variable.
14333 (gdb-var-list): Add an element for has_more field.
14334 (gdb-non-stop-handler): Enable pretty printing for STL containers.
14335 (gdb-var-create-handler, gdb-var-list-children-handler-1)
14336 (gdb-var-update-handler-1): Parse output of dynamic variable
14337 objects (STL containers).
14338 (gdb-var-delete-1): Pass var1 as an explicit second argument.
14339 (gdb-get-field): Delete alias. Use bindat-get-field directly.
14340
14341 * progmodes/gud.el (gud-speedbar-item-info): Adjust for change to
14342 gdb-var-list.
14343 (gud-speedbar-buttons): Make node expandable if expression "has more"
14344 children.
14345
14346 2009-09-17 Juanma Barranquero <lekktu@gmail.com>
14347
14348 * startup.el (emacs-quick-startup): Remove variable and all uses.
14349 (command-line): Set `inhibit-x-resources' instead.
14350 (command-line-1): Use `inhibit-x-resources' instead.
14351
14352 2009-09-17 Chong Yidong <cyd@stupidchicken.com>
14353
14354 * subr.el: Fix last change to avoid using the `unless' macro,
14355 which breaks bootstrapping.
14356
14357 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
14358
14359 * subr.el (push, pop, dolist, dotimes, declare): Don't overwrite CL's
14360 extended definitions, in case we reload subr.el after having
14361 loaded CL.
14362 (eval-next-after-load): Mark as obsolete.
14363
14364 2009-09-17 Juri Linkov <juri@jurta.org>
14365
14366 * menu-bar.el (menu-bar-search-menu, menu-bar-edit-menu)
14367 (menu-bar-options-menu, menu-bar-showhide-fringe-menu)
14368 (menu-bar-showhide-menu, menu-bar-tools-menu)
14369 (menu-bar-describe-menu, menu-bar-help-menu)
14370 (minibuffer-local-completion-map, minibuffer-local-map):
14371 Fix list quoting.
14372
14373 2009-09-17 Glenn Morris <rgm@gnu.org>
14374
14375 * emacs-lisp/bytecomp.el (byte-compile-form): Always check the function
14376 arguments, whether or not it has a handler.
14377
14378 * ansi-color.el (ansi-color-get-face-1): Fix typo in handler.
14379
14380 * simple.el (hard-newline): Give it a doc-string.
14381
14382 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
14383 (lisp-mode-syntax-table): Give them doc-strings.
14384
14385 2009-09-17 Dan Nicolaescu <dann@ics.uci.edu>
14386
14387 * menu-bar.el (menu-bar-file-menu, menu-bar-file-menu)
14388 (menu-bar-i-search-menu, menu-bar-edit-menu, menu-bar-custom-menu)
14389 (menu-bar-options-menu, menu-bar-showhide-menu)
14390 (menu-bar-showhide-fringe-ind-menu, menu-bar-showhide-fringe-menu)
14391 (menu-bar-showhide-scroll-bar-menu, menu-bar-showhide-menu)
14392 (menu-bar-options-menu, menu-bar-line-wrapping-menu)
14393 (menu-bar-options-menu, menu-bar-tools-menu)
14394 (menu-bar-describe-menu, menu-bar-search-documentation-menu)
14395 (menu-bar-help-menu):
14396 (menu-bar-make-mm-toggle, menu-bar-make-toggle): Purecopy the
14397 string arguments.
14398
14399 * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu)
14400 (menu-bar-epatch-menu, menu-bar-ediff-misc-menu): Add purecopy
14401 calls for the menu names and :help.
14402
14403 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
14404
14405 * mouse.el (minor-mode-menu-from-indicator): Pay attention
14406 to :minor-mode-function (bug#4455).
14407
14408 2009-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
14409
14410 * startup.el (command-line): Initialize the window-system after
14411 processing the command-line.
14412
14413 * textmodes/page.el (what-page): Make sure we don't inf-loop if
14414 page-delimiter matches the empty string.
14415
14416 2009-09-16 Glenn Morris <rgm@gnu.org>
14417
14418 * emacs-lisp/bytecomp.el (byte-compile-not-obsolete-vars): Rename from
14419 byte-compile-not-obsolete-var. It's a list now.
14420 (byte-compile-not-obsolete-funcs): New variable.
14421 (byte-compile-warn-obsolete): Don't warn about functions if they are in
14422 byte-compile-not-obsolete-funcs.
14423 (byte-compile-variable-ref, byte-compile-defvar): Update for
14424 byte-compile-not-obsolete-vars name-change and list nature.
14425 (byte-compile-maybe-guarded): Suppress warnings about obsolete functions
14426 and variables behind (f)boundp tests.
14427 * net/tramp-compat.el (byte-compile-not-obsolete-vars): Set if bound.
14428
14429 2009-09-15 Dan Nicolaescu <dann@ics.uci.edu>
14430
14431 * vc-git.el (vc-git-log-view-mode): Undo inadvertent change.
14432
14433 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
14434
14435 * Makefile.in (compile-onefile): Use byte-compile-refresh-preloaded.
14436 * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded):
14437 Don't autoload.
14438
14439 2009-09-15 Stephen Eglen <stephen@gnu.org>
14440
14441 * iswitchb.el (iswitchb-read-buffer): When selecting a match from
14442 the virtual-buffers, use the name of the buffer specified by
14443 find-file-noselect, as the match may be a symlink. (This was a
14444 problem if the target and the symlink had different names.)
14445
14446 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
14447
14448 * custom.el (custom-initialize-default, custom-initialize-set): CSE.
14449
14450 * desktop.el (desktop-path): Check user-emacs-directory.
14451
14452 * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded): New function.
14453
14454 * loadup.el: Use after-load-functions to GC after loading each file.
14455 Remove the explicit GC calls that used to be sprinkled around.
14456
14457 * subr.el (after-load-functions): New hook.
14458 (do-after-load-evaluation): Run it. Use string-match-p to detect
14459 `obsolete' packages, rather than painfully extracting the relevant
14460 directory name.
14461
14462 2009-09-15 Glenn Morris <rgm@gnu.org>
14463
14464 * apropos.el (apropos-documentation-check-doc-file): Avoid assignment to
14465 free variable `doc'.
14466
14467 * dired.el (dired-mode-map): Add menu entry for async shell command.
14468
14469 * help-fns.el (find-lisp-object-file-name): When looking for autoloaded
14470 variables, also consider the .elc files, since the .el files are
14471 normally gzipped (subsequent code locates the .el.gz from the .elc).
14472
14473 * calc/calc-prog.el (arglist): Define for compiler.
14474
14475 * calendar/diary-lib.el (diary-display-function): Change the default to
14476 fancy display.
14477 (body): Define for compiler.
14478
14479 * emacs-lisp/bytecomp.el (byte-compile-keep-pending)
14480 (byte-compile-file-form, byte-compile-lambda)
14481 (byte-compile-top-level-body, byte-compile-form)
14482 (byte-compile-variable-ref, byte-compile-setq)
14483 (byte-compile-setq-default, byte-compile-body)
14484 (byte-compile-body-do-effect, byte-compile-and, byte-compile-or)
14485 (batch-byte-compile): Give some more local variables with common names
14486 a "bytecomp-" prefix to avoid masking warnings about free variables.
14487
14488 * startup.el (command-line-1): Give local variables with common names a
14489 distinguishing prefix, so as not to hide free variable warnings during
14490 bootstrap.
14491
14492 * mail/rmailmm.el (rmail-mime-save): If file exists, don't try to be
14493 clever and add a suffix to make a unique name, just let the user decide
14494 whether or not to overwrite it. If the input is a directory, write the
14495 default filename to that directory. (Bug#4388)
14496 (rmail-mime-bulk-handler): Ensure the save button's 'directory property
14497 is a filename-as-a-directory.
14498
14499 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
14500
14501 * textmodes/page.el (what-page): Don't move to beginning of line.
14502 See <87tyz5ajte.fsf@x2.delysid.org> in emacs-devel.
14503
14504 2009-09-15 Dan Nicolaescu <dann@ics.uci.edu>
14505
14506 * vc-git.el (vc-git-dir-extra-headers): Show the remote location.
14507
14508 2009-09-14 Dan Nicolaescu <dann@ics.uci.edu>
14509
14510 * bindings.el (mode-line-mode-menu): Add purecopy calls for :help.
14511 * help.el (help-for-help-internal): Add purecopy calls for text.
14512
14513 * vc.el (top): print-log method now takes an optional SHORTLOG
14514 argument. Add a new method: root.
14515 (vc-root-diff, vc-print-root-log): New functions.
14516 (vc-log-short-style): New variable.
14517 (vc-print-log-internal): Add support for showing short logs.
14518
14519 * vc-hooks.el (vc-prefix-map, vc-menu-map): Add bindings for
14520 vc-print-root-log and vc-print-root-diff.
14521
14522 * vc-bzr.el (vc-bzr-log-view-mode, vc-bzr-print-log):
14523 * vc-git.el (vc-git-print-log, vc-git-log-view-mode):
14524 * vc-hg.el (vc-hg-print-log, vc-hg-log-view-mode): Add support for
14525 short logs.
14526
14527 * vc-cvs.el (vc-cvs-print-log):
14528 * vc-mtn.el (vc-mtn-print-log):
14529 * vc-rcs.el (vc-rcs-print-log):
14530 * vc-sccs.el (vc-sccs-print-log):
14531 * vc-svn.el (vc-svn-print-log): Add an optional argument shortlog
14532 that is ignored for now.
14533
14534 * vc-mtn.el (vc-mtn-annotate-command):
14535 * vc-svn.el (vc-svn-annotate-command): Run asynchronously.
14536
14537 2009-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
14538
14539 * simple.el: Add mapping for backspace/delete/clear/tab/escape/return
14540 to function-key-map, and give them ascii-character property.
14541 * term/x-win.el (x-alternatives-map):
14542 * term/ns-win.el (ns-alternatives-map):
14543 * term/internal.el (msdos-key-remapping-map):
14544 * w32-fns.el (x-alternatives-map): Remove redundant mappings.
14545
14546 2009-09-14 Glenn Morris <rgm@gnu.org>
14547
14548 * emacs-lisp/elint.el (elint-add-required-env): Revert to not using
14549 temp-buffers (2009-09-12).
14550
14551 2009-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
14552
14553 * textmodes/ispell.el (ispell-command-loop): Improve last fix, using
14554 the new read-key function.
14555
14556 2009-09-13 Chong Yidong <cyd@stupidchicken.com>
14557
14558 * term/x-win.el (x-menu-bar-open): Only call accelerate-menu if it
14559 is defined (Bug#4405).
14560
14561 2009-09-13 Vincent Belaïche <vincent.belaiche@gmail.com>
14562
14563 * recentf.el (recentf-cleanup): Use a hash table to find
14564 duplicates (Bug#4407).
14565
14566 2009-09-13 Per Starbäck <per@starback.se> (tiny change)
14567
14568 * textmodes/ispell.el (ispell-command-loop): Convert keys such as
14569 kp-0 to ascii equivalents (Bug#4325).
14570
14571 2009-09-13 Chong Yidong <cyd@stupidchicken.com>
14572
14573 * progmodes/cperl-mode.el (cperl-init-faces): Revert last change.
14574
14575 * eshell/em-hist.el:
14576 * eshell/em-dirs.el (eshell-complete-user-reference):
14577 Declare pcomplete functions and variables to avoid compiler warnings.
14578
14579 2009-09-13 Leo <sdl.web@gmail.com> (tiny change)
14580
14581 * eshell/em-script.el (eshell-login-script, eshell-rc-script):
14582 * eshell/em-dirs.el (eshell-last-dir-ring-file-name):
14583 * eshell/em-alias.el (eshell-aliases-file):
14584 * eshell/em-hist.el (eshell-history-file-name):
14585 Use expand-file-name instead of concat to make file names (Bug#4308).
14586
14587 2009-09-13 Glenn Morris <rgm@gnu.org>
14588
14589 * ediff-merg.el (ediff-do-merge):
14590 * filesets.el (filesets-run-cmd):
14591 * emulation/ws-mode.el (ws-show-markers, ws-move-block, ws-delete-block)
14592 (ws-find-marker-0, ws-find-marker-1, ws-find-marker-2, ws-find-marker-3)
14593 (ws-find-marker-4, ws-find-marker-5, ws-find-marker-6, ws-find-marker-7)
14594 (ws-find-marker-8, ws-find-marker-9, ws-goto-block-begin)
14595 (ws-goto-block-end, ws-goto-last-cursorposition, ws-copy-block):
14596 Replace empty `let's with `progn'.
14597
14598 2009-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
14599
14600 * mail/sendmail.el (send-mail-function):
14601 * tooltip.el (tooltip-mode):
14602 * simple.el (transient-mark-mode):
14603 * rfn-eshadow.el (file-name-shadow-mode):
14604 * frame.el (blink-cursor-mode):
14605 * font-core.el (global-font-lock-mode):
14606 * files.el (temporary-file-directory)
14607 (small-temporary-file-directory, auto-save-file-name-transforms):
14608 * epa-hook.el (auto-encryption-mode):
14609 * composite.el (global-auto-composition-mode):
14610 Use custom-initialize-delay.
14611 * startup.el (command-line): Don't explicitly call
14612 custom-reevaluate-setting for all the above vars.
14613 * custom.el (custom-initialize-safe-set)
14614 (custom-initialize-safe-default): Delete.
14615
14616 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
14617
14618 * term/x-win.el (x-initialize-window-system):
14619 * term/w32-win.el (w32-initialize-window-system):
14620 * term/ns-win.el (ns-initialize-window-system): Don't call
14621 mouse-wheel-mode since it's enabled globally by default already.
14622
14623 * mwheel.el (mouse-wheel-mode): Make sure the new defvar doesn't
14624 actually define the variable, but only silences the byte-compiler.
14625 (mouse-wheel-change-button): Check whether mouse-wheel-mode is bound
14626 before looking it up.
14627 (mouse-wheel-scroll-amount): Also reset the bindings if this value
14628 is changed.
14629
14630 2009-09-12 Glenn Morris <rgm@gnu.org>
14631
14632 * emacs-lisp/elint.el (elint-file): Make max-lisp-eval-depth at least
14633 1000.
14634 (elint-add-required-env): Don't beep on error.
14635 (elint-forms): In case of error, return ENV unchanged.
14636 (elint-init-env): Skip non-list forms.
14637 (elint-log): Handle unknown file positions.
14638
14639 2009-09-12 Daiki Ueno <ueno@unixuser.org>
14640
14641 * epg.el (epg-make-context): Add autoload cookie.
14642 (epg-list-keys, epg-cancel, epg-start-decrypt, epg-decrypt-file)
14643 (epg-decrypt-string, epg-start-verify, epg-verify-file)
14644 (epg-verify-string, epg-start-sign, epg-sign-file)
14645 (epg-sign-string, epg-start-encrypt, epg-encrypt-file)
14646 (epg-encrypt-string, epg-start-export-keys)
14647 (epg-export-keys-to-file, epg-export-keys-to-string)
14648 (epg-start-import-keys, epg-import-keys-from-file)
14649 (epg-import-keys-from-string, epg-start-receive-keys)
14650 (epg-receive-keys, epg-import-keys-from-server)
14651 (epg-start-delete-keys, epg-delete-keys, epg-start-sign-keys)
14652 (epg-sign-keys, epg-start-generate-key)
14653 (epg-generate-key-from-file, epg-generate-key-from-string):
14654 Remove autoload cookie.
14655
14656 2009-09-12 Eli Zaretskii <eliz@gnu.org>
14657
14658 * dos-fns.el (dos-reevaluate-defcustoms): Comment out the
14659 reevaluation of trash-directory.
14660
14661 * mwheel.el: Fix last change.
14662 (mouse-wheel-mode): New defvar.
14663 (mouse-wheel-mode): Remove autoload cookie.
14664
14665 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
14666
14667 * mwheel.el (mwheel-installed-bindings): New var.
14668 (mouse-wheel-mode): Use it, so as to make sure we really remove all
14669 the bindings we set last time. Use custom-initialize-delay.
14670 * loadup.el: Load mwheel after term/*-win.el.
14671 * startup.el (command-line): Don't reevaluate mouse-wheel-down-event
14672 and mouse-wheel-up-event now that their first evaluation is done
14673 sufficiently late to be correct.
14674
14675 * startup.el (tutorial-directory): Make it a defcustom.
14676 Use custom-initialize-delay rather than eval-at-startup to set it.
14677 * image.el (image-load-path): Make it a defcustom.
14678 Use custom-initialize-delay rather than eval-at-startup to set it.
14679 * subr.el (eval-at-startup): Remove.
14680 * font-lock.el (lisp-font-lock-keywords-2): Remove eval-at-startup.
14681
14682 * subr.el (do-after-load-evaluation): Warn the user after loading an
14683 obsolete package.
14684
14685 2009-09-12 Glenn Morris <rgm@gnu.org>
14686
14687 * proced.el (proced-mark-alt): Remove alias.
14688 (proced-mode-map): Remove proced-mark-alt.
14689
14690 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries to
14691 Elint file and directory. Remove initialization entry.
14692
14693 * emacs-lisp/elint.el (elint-file, elint-directory): New autoloaded
14694 commands.
14695 (elint-current-buffer): Set mode-line-process.
14696 (elint-init-env): Handle define-derived-mode.
14697 Fix declare-function with unspecified arglist. Guard against odd
14698 defalias statements (eg iso-insert's 8859-1-map).
14699 (elint-add-required-env): Use a temp buffer.
14700 (elint-form): Just print the function/macro name, not the whole form.
14701 Return env unchanged if we fail to parse a macro.
14702 (elint-forms): Guard against parse errors.
14703 (elint-output): New function, to handle batch mode.
14704 (elint-log-message): Add optional argument. Use elint-output.
14705 (elint-set-mode-line): New function.
14706
14707 2009-09-12 Andreas Politz <politza@fh-trier.de> (tiny change)
14708
14709 * emacs-lisp/elp.el (elp-not-profilable): Add more
14710 functions (Bug#4233).
14711
14712 2009-09-12 Chong Yidong <cyd@stupidchicken.com>
14713
14714 * emulation/pc-select.el (scroll-down-mark, scroll-down-nomark)
14715 (scroll-up-mark, scroll-up-nomark): Doc fix (Bug#4190).
14716
14717 2009-09-11 Nick Roberts <nickrob@snap.net.nz>
14718
14719 * progmodes/gdb-mi.el (gdb-var-list-children-regexp): Delete.
14720 (gdb-var-list-children): Use json parsing.
14721
14722 2009-09-11 Daniel Colascione <dan.colascione@gmail.com>
14723
14724 * progmodes/js.el (js--proper-indentation): Handle the case where
14725 char-before is null. Reported by Deniz Dogan.
14726
14727 2009-09-11 Juanma Barranquero <lekktu@gmail.com>
14728
14729 * emacs-lisp/cl-macs.el (help-add-fundoc-usage): Declare.
14730
14731 2009-09-11 Daiki Ueno <ueno@unixuser.org>
14732
14733 * epg.el (epg-cipher-algorithm-alist): Add CAMELLIA.
14734 (epg-digest-algorithm-alist): Add SHA224.
14735 (epg-context-set-passphrase-callback)
14736 (epg-context-set-progress-callback): Add description about
14737 callback function.
14738
14739 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
14740
14741 * custom.el (custom-delayed-init-variables): New var.
14742 (custom-initialize-delay): New function.
14743 * startup.el (command-line): "Re"evaluate all vars in
14744 custom-delayed-init-variables. Don't reevaluate abbrev-file-name
14745 explicitly any more.
14746 * abbrev.el (abbrev-file-name): Use custom-initialize-delay
14747 to avoid creating a ~/.emacs.d at build-time (bug#4347).
14748
14749 * proced.el (proced-mode-map): Prefer "m" for proced-mark (bug#4362).
14750
14751 2009-09-11 Nick Roberts <nickrob@snap.net.nz>
14752
14753 * progmodes/gdb-mi.el (gdb-var-update-regexp): Delete.
14754 (gdb-var-update-handler): Use json parsing.
14755
14756 2009-09-11 Juanma Barranquero <lekktu@gmail.com>
14757
14758 * vc-annotate.el (vc-annotate): Use the main file's coding-system to
14759 decode annotated text, regardless of language environment. (Bug#2741)
14760
14761 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
14762
14763 * Makefile.in (autoloads): Make rmail.el writable as well.
14764
14765 2009-09-11 Glenn Morris <rgm@gnu.org>
14766
14767 * dired-aux.el, dired-x.el: Put autoloads in dired.el rather than
14768 loaddefs.el.
14769 * dired.el: Regenerate with extracted autoloads.
14770 * Makefile.in (autoloads): Make dired.el writable.
14771
14772 * ibuf-ext.el: Put autoloads in ibuffer.el rather than loaddefs.el.
14773 * ibuffer.el: Regenerate with extracted autoloads.
14774 * Makefile.in (autoloads): Make ibuffer.el writable.
14775
14776 * paths.el (prune-directory-list, gnus-nntp-service, rmail-file-name):
14777 * version.el (emacs-copyright, emacs-major-version)
14778 (emacs-minor-version): Reformat doc-strings for make-docfile.
14779
14780 * apropos.el (apropos-documentation-check-doc-file): Exclude unbound
14781 functions and variables, since they must be stuff specific to some other
14782 platform.
14783 (apropos-print): Make mouse-click message less specific about button.
14784
14785 * emacs-lisp/cl-macs.el (define-compiler-macro): Add a property
14786 that records where a macro was defined.
14787 * help-fns.el (describe-function-1): Mention if a function has a
14788 compiler-macro.
14789 * help-mode.el (help-function-cmacro): New button.
14790
14791 * locate.el (top-level): Always require dired.
14792 (locate-mode-map): Initialize inside the defvar.
14793
14794 * net/ange-ftp.el (dired-compress-file): Declare.
14795 (ange-ftp-dired-compress-file): Add doc string.
14796
14797 * term/ns-win.el (x-display-name, x-setup-function-keys):
14798 Unify doc-strings with X versions.
14799
14800 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
14801
14802 * emulation/crisp.el (crisp-mode-map): Move initialization
14803 into declaration.
14804 (crisp-mode): Use define-minor-mode.
14805
14806 * progmodes/xscheme.el (xscheme-evaluation-commands):
14807 Put a :advertised-binding property rather than using
14808 advertised-xscheme-send-previous-expression.
14809 (advertised-xscheme-send-previous-expression): Declare obsolete.
14810 * emulation/crisp.el (crisp-mode-map): Use `undo' rather than
14811 `advertised-undo'.
14812 (crisp-mode): Add corresponding bindings to
14813 undo's :advertised-binding instead.
14814 * dired.el (dired-mode-map): Put a :advertised-binding property rather
14815 than using dired-advertised-find-file.
14816 (dired-advertised-find-file):
14817 * simple.el (advertised-undo):
14818 * wid-edit.el (advertised-widget-backward): Declare obsolete.
14819 (widget-keymap): Put a :advertised-binding property rather
14820 than using advertised-widget-backward.
14821 * bindings.el (ctl-x-map): Put a :advertised-binding property rather
14822 than using advertised-undo.
14823 * tutorial.el (tutorial--default-keys): Adjust accordingly.
14824
14825 2009-09-10 Simon South <ssouth@slowcomputing.org>
14826
14827 * progmodes/delphi.el (delphi-tab): Indent region when Transient
14828 Mark mode is enabled and region is active; otherwise indent or
14829 insert TAB as usual.
14830 (delphi-mode): Update description of TAB-key binding.
14831
14832 2009-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
14833
14834 * subr.el (define-key-rebound-commands): Mark obsolete.
14835 * startup.el (precompute-menubar-bindings): Remove.
14836 (normal-top-level): Remove obsolete code that tried to precompute
14837 menubar bindings.
14838 * loadup.el (define-key-rebound-commands): Don't bother fiddling with
14839 define-key-rebound-commands and precompute-menubar-bindings.
14840
14841 2009-09-10 Teodor Zlatanov <tzz@lifelogs.com>
14842
14843 * net/imap.el (imap-interactive-login): Better messages.
14844 (imap-open): Fix bug with renamed buffer on reconnect.
14845 (imap-authenticate): Add buffer-local imap-last-authenticator variable
14846 for easier debugging and cleaner code. On successful (guessed based on
14847 server capabilities) secondary authentication, set imap-state
14848 correctly.
14849 (imap-last-authenticator): Define imap-last-authenticator as a variable
14850 to avoid warnings.
14851
14852 2009-09-10 Glenn Morris <rgm@gnu.org>
14853
14854 * pcvs.el (cvs-mode-find-file): Use forward-line rather than goto-line.
14855
14856 * emacs-lisp/bytecomp.el (byte-compile-function-environment): Doc fix.
14857 (byte-compile-file-form-autoload): Don't warn about unknown functions
14858 where the autoload statement comes after the use.
14859 (with-no-warnings): Give it a byte-hunk-handler like than of progn, so
14860 that any handlers inside the body (eg require) are in turn respected.
14861
14862 * emacs-lisp/byte-opt.el (degrees-to-radians): Mark as free from side
14863 effects.
14864
14865 * emacs-lisp/derived.el (define-derived-mode): Give the mode's map,
14866 and syntax and abbrev tables basic docs, if they don't have any.
14867
14868 * emacs-lisp/easy-mmode.el (easy-mmode-defmap): Add doc-string.
14869
14870 * international/mule-cmds.el (top-level): Require cl when compiling.
14871 (view-hello-file): Use default-value rather than
14872 default-enable-multibyte-characters.
14873
14874 * progmodes/fortran.el: Move all safe and risky properties into the
14875 defcustoms.
14876
14877 * mail/rmailedit.el, mail/rmailkwd.el, mail/rmailmm.el:
14878 * mail/rmailmsc.el, mail/rmailsort.el, mail/rmailsum.el:
14879 * mail/undigest.el:
14880 Put autoloads in rmail.el rather than loaddefs.el.
14881 * mail/rmail.el: Regenerate with extracted autoloads.
14882
14883 * mail/rmailsum.el (rmail-user-mail-address-regexp): Move to rmail.el.
14884 * mail/rmail.el (rmail-user-mail-address-regexp): Move from rmailsum.el.
14885
14886 2009-09-10 Nick Roberts <nickrob@snap.net.nz>
14887
14888 Reported in thread for Bug#4375.
14889 * progmodes/gud.el (gud-tooltip-print-command): Use MI command
14890 "-data-evaluate-expression" instead of print.
14891 * progmodes/gdb-mi.el (gdb-tooltip-print-1): Ditto.
14892 (gdb-tooltip-print): Parse output from above MI command.
14893 (gdb): Revert 2009-08-11 change. User should detach inferior
14894 manually.
14895
14896 Remove the word "separate" from IO functions as inferior
14897 output is now never displayed in the GUD buffer.
14898
14899 2009-09-10 Juanma Barranquero <lekktu@gmail.com>
14900
14901 * startup.el (command-line-normalize-file-name): On Windows and
14902 MS-DOS, also convert C:\/ and C:\\ (two backslashes) into C:/.
14903
14904 2009-09-10 Juri Linkov <juri@jurta.org>
14905
14906 * isearch.el (isearch-text-char-description): Propertize escape
14907 character sequences with the `escape-glyph' face. (Bug#4344)
14908
14909 * simple.el (shell-command): Set asynchronous process filter to
14910 `comint-output-filter'. (Bug#4343)
14911
14912 * progmodes/grep.el (grep-template): Add "<X>" to docstring.
14913 (grep-files-aliases): Add "all". Move "el" and "ch" to the top of
14914 the list. Move "asm" to the bottom.
14915 (grep-find-ignored-directories): Add `choice' with nil value
14916 to empty the list easily.
14917 (grep-find-ignored-files): New option.
14918 (grep-files-history): Set to nil by default instead of '("ch" "el").
14919 (grep-compute-defaults): Add "<X>" to `grep-template'.
14920 (grep-read-files): Bind new local variables `default-alias' and
14921 `default-extension'. Use a list of default values for the file prompt.
14922 (lgrep): Add `--exclude=' command line options composed from
14923 `grep-find-ignored-files'.
14924 (rgrep): Add `-name' command line options composed from
14925 `grep-find-ignored-files'. (Bug#4301)
14926
14927 2009-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
14928
14929 * diff-mode.el (diff-hunk-kill): Fix the search of the next hunk
14930 (bug#4368).
14931
14932 2009-09-09 Katsumi Yamaoka <yamaoka@jpl.org>
14933
14934 * calendar/time-date.el (autoload):
14935 Expand define-obsolete-function-alias into defalias and make-obsolete
14936 for old Emacsen that Gnus supports.
14937 (with-no-warnings): Define it for old Emacsen.
14938 (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
14939 is available.
14940 (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
14941 float-time is available; suppress compile warning for time-to-seconds.
14942
14943 2009-09-09 Teodor Zlatanov <tzz@lifelogs.com>
14944
14945 * net/imap.el (imap-message-map): Docstring fix.
14946
14947 2009-09-09 Glenn Morris <rgm@gnu.org>
14948
14949 * ffap.el (ffap-file-at-point): Handle absolute (non-remote) files with
14950 line numbers too. (Bug#4374)
14951
14952 2009-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
14953
14954 * smerge-mode.el (smerge-remove-props, smerge-refine):
14955 Use with-silent-modifications (bug#4342).
14956
14957 * subr.el (with-silent-modifications): New macro.
14958
14959 2009-09-07 Juanma Barranquero <lekktu@gmail.com>
14960
14961 * files.el (top-level): Require `cl' when compiling.
14962
14963 2009-09-07 Glenn Morris <rgm@gnu.org>
14964
14965 * files.el (auto-mode-alist): Use delphi-mode for .dpr files.
14966
14967 * proced.el (proced-mode-map): Bind "d" to proced-mark-alt.
14968 (proced-mark-alt): New alias, to control the advertised key. (Bug#4362)
14969
14970 2009-09-06 Nick Roberts <nickrob@snap.net.nz>
14971
14972 * vc-git.el (vc-git-annotate-command): Use separator to parse
14973 arguments correctly.
14974
14975 2009-09-06 Eli Zaretskii <eliz@gnu.org>
14976
14977 * proced.el (proced-mode): Doc fix.
14978
14979 2009-09-06 Julian Scheid <julians37@gmail.com> (tiny change)
14980
14981 * net/tramp.el (tramp-perl-file-attributes): Print "nil" when
14982 lstat fails.
14983 (tramp-do-file-attributes-with-ls): Check for file existence at
14984 remote end.
14985 (tramp-do-file-attributes-with-stat): Likewise.
14986 (tramp-convert-file-attributes): Return nil when attr is nil.
14987
14988 2009-09-05 Glenn Morris <rgm@gnu.org>
14989
14990 * calendar/diary-lib.el (diary-entry): Add help-echo and follow-link
14991 properties to this button.
14992 (diary-fancy-display): Don't extend the button to the final newline.
14993 (diary-fancy-display-mode): Continue to define "q" as a local key.
14994
14995 * calendar/cal-china.el (holiday-chinese): Make it slightly more
14996 efficient.
14997
14998 * font-lock.el (lisp-font-lock-keywords-2): Add letf.
14999
15000 * emacs-lisp/bytecomp.el (emacs-lisp-file-regexp): Doc fix.
15001 (byte-compile-dest-file-function): New option.
15002 (byte-compile-dest-file): Doc fix.
15003 Obey byte-compile-dest-file-function.
15004 (byte-compile-cl-file-p): New function.
15005 (byte-compile-eval): Only suppress noruntime warnings about cl functions
15006 if the cl-functions warning is enabled. Use byte-compile-cl-file-p.
15007 (byte-compile-eval): Check for non-nil byte-compile-cl-functions rather
15008 than for file being previously loaded.
15009 (byte-compile-find-cl-functions): Use byte-compile-cl-file-p.
15010 (byte-compile-file-form-require): Handle the case where requiring a file
15011 indirectly causes CL to be loaded.
15012
15013 2009-09-05 Karl Fogel <kfogel@red-bean.com>
15014
15015 * files.el (find-alternate-file): Run `kill-buffer-hook' manually
15016 before killing the old buffer, since by the time `kill-buffer' is
15017 run so many buffer variables have been set to nil that it may not
15018 behave as expected. (Bug#4061)
15019
15020 2009-09-05 Karl Fogel <kfogel@red-bean.com>
15021
15022 * files.el (find-alternate-file): If the old buffer is modified
15023 and visiting a file, behave similarly to `kill-buffer' when
15024 killing it, thus reverting to the pre-1.878 behavior; see
15025 http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00101.html
15026 for discussion. Also, consult `buffer-file-name' as a variable
15027 not as a function, for consistency with the rest of the code.
15028
15029 2009-09-04 Michael Albinus <michael.albinus@gmx.de>
15030
15031 * net/tramp.el (tramp-handle-insert-directory): Handle "--dired"
15032 also when adding a new directory.
15033
15034 * net/tramp-compat.el (tramp-compat-line-beginning-position): New
15035 defun.
15036
15037 2009-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
15038
15039 * files.el (locate-file-completion-table): Make it provide boundary
15040 information, so partial-completion works better.
15041
15042 2009-09-04 Leo <sdl.web@gmail.com> (tiny change)
15043
15044 * mail/footnote.el (Footnote-text-under-cursor):
15045 Check footnote-text-marker-alist before using it (bug#4324).
15046
15047 2009-09-04 Glenn Morris <rgm@gnu.org>
15048
15049 * play/5x5.el, play/decipher.el, play/gametree.el, play/handwrite.el:
15050 * play/hanoi.el, play/landmark.el, play/mpuz.el, play/pong.el:
15051 * play/solitaire.el, play/tetris.el:
15052 Remove leading * from defcustom and defface docs.
15053
15054 * calendar/diary-lib.el (diary-fancy-display): Only switch modes if
15055 necessary.
15056 (diary-fancy-overriding-map): New variable.
15057 (diary-fancy-display-mode): Set minor-mode-overriding-map-alist.
15058 Use view-mode.
15059
15060 * vc-rcs.el (vc-rcs-annotate-command): Use forward-line rather than
15061 goto-line.
15062
15063 2009-09-03 Glenn Morris <rgm@gnu.org>
15064
15065 * arc-mode.el (archive-mode):
15066 * dos-fns.el (set-default-process-coding-system):
15067 * man.el (Man-getpage-in-background):
15068 * menu-bar.el (menu-bar-describe-menu):
15069 * server.el (server-process-filter):
15070 * startup.el (command-line):
15071 * tar-mode.el (tar-header-block-tokenize, tar-extract):
15072 * w32-fns.el (set-default-process-coding-system):
15073 * x-dnd.el (x-dnd-handle-file-name):
15074 * international/mule-cmds.el (mule-menu-keymap)
15075 (set-default-coding-systems, language-info-alist, set-language-info)
15076 (set-language-environment, standard-display-european-internal)
15077 (set-locale-environment):
15078 * international/mule-diag.el (mule-diag):
15079 * mail/emacsbug.el (report-emacs-bug):
15080 * mail/rmail.el (rmail-mode):
15081 * mail/sendmail.el (mail-setup):
15082 Use default-value rather than default-enable-multibyte-characters.
15083
15084 * progmodes/f90.el: Move all safe properties into the defcustoms.
15085 (f90-get-correct-indent, f90-indent-region, f90-abbrev-start): Use memq.
15086
15087 * calendar/appt.el (appt-check):
15088 * calendar/diary-lib.el (diary-set-header, diary-live-p)
15089 (diary-check-diary-file, diary-list-entries)
15090 (diary-include-other-diary-files, diary-simple-display)
15091 (diary-fancy-display, diary-print-entries)
15092 (diary-mark-included-diary-files, diary-make-entry):
15093 Don't call substitute-in-file-name on diary-file.
15094
15095 2009-09-03 Eduard Wiebe <usenet@pusto.de>
15096 Stefan Monnier <monnier@iro.umontreal.ca>
15097
15098 * mail/footnote.el (footnote-prefix): Make it a defcustom.
15099 (footnote-mode-map): Move initialization into the declaration.
15100 (footnote-minor-mode-map): Define it rather than changing global-map.
15101 (footnote-mode): Use define-minor-mode.
15102
15103 2009-09-02 Michael Albinus <michael.albinus@gmx.de>
15104
15105 * net/tramp.el (tramp-handle-file-attributes-with-ls)
15106 (tramp-do-file-attributes-with-perl)
15107 (tramp-do-file-attributes-with-stat): Rename from
15108 `tramp-handle-file-attributes-with-*'.
15109 (tramp-handle-file-attributes): Use them.
15110 (tramp-do-directory-files-and-attributes-with-perl)
15111 (tramp-do-directory-files-and-attributes-with-stat): Rename from
15112 `tramp-handle-directory-files-and-attributes-with-*'.
15113 (tramp-handle-directory-files-and-attributes): Use them.
15114 (tramp-method-out-of-band-p): Additional parameter SIZE.
15115 (tramp-do-copy-or-rename-file, tramp-handle-file-local-copy)
15116 (tramp-handle-write-region): Use it.
15117 (tramp-handle-insert-directory): Use "?\ " for compatibility reasons.
15118 (tramp-handle-vc-registered): Check, whether the first run did
15119 return files to be tested.
15120 (tramp-advice-make-auto-save-file-name): Do not call directly
15121 `tramp-handle-make-auto-save-file-name', because this would bypass
15122 the locking mechanism.
15123
15124 * net/tramp-compat.el (top): Autoload used functions from tramp.el.
15125 (file-remote-p, process-file, start-file-process, set-file-times)
15126 (tramp-compat-file-attributes): Compatibility functions shall not
15127 call directly `tramp-handle-*', because this would bypass the
15128 locking mechanism.
15129 (tramp-compat-number-sequence): New defun.
15130
15131 2009-09-02 Glenn Morris <rgm@gnu.org>
15132
15133 * calendar/time-date.el (time-to-seconds): In Emacs, make it an obsolete
15134 alias for float-time.
15135 (time-to-number-of-days): In Emacs, use float-time.
15136 * net/newst-backend.el (time-add): Suppress warnings from compat
15137 function.
15138 * time.el (emacs-uptime, emacs-init-time):
15139 * net/rcirc.el (rcirc-keepalive, rcirc-handler-ctcp-KEEPALIVE):
15140 Use float-time rather than time-to-seconds.
15141
15142 * minibuffer.el (completion-initials-expand): Fix typo.
15143
15144 * faces.el (modeline, modeline-inactive, modeline-highlight)
15145 (modeline-buffer-id):
15146 * info.el (info-menu-5): Mark these face aliases as obsolete.
15147
15148 2009-09-01 Nick Roberts <nickrob@snap.net.nz>
15149
15150 * progmodes/gdb-mi.el (gdb-current-context-command): Move the
15151 space ...
15152 (gdb-gud-context-call): ... to here for pre GDB 7.0 when there is
15153 no "--thread" option.
15154 (gdb-stopped): Don't print "Switched to thread" message when it is
15155 unchanged.
15156
15157 2009-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
15158
15159 * minibuffer.el (completion-try-completion)
15160 (completion-all-completions): Remove ill-defined (and
15161 mistakenly installed and luckily never used nor documented)
15162 `completion-styles' property.
15163 (completion-initials-expand, completion-initials-all-completions)
15164 (completion-initials-try-completion): New functions.
15165 (completion-styles-alist): Add doc to each entry.
15166 Add new `initials' entry.
15167
15168 2009-09-01 Nick Roberts <nickrob@snap.net.nz>
15169
15170 * progmodes/gdb-mi.el (gdb-var-create-handler): Remove redundant
15171 MI command -var-evaluate-expression.
15172 (gdb-var-list-children-regexp): Update from regexp-1 in gdb-ui.el
15173 and tweak for case of string child.
15174 (gdb-var-list-children-handler): Update from handler-1 in gdb-ui.el.
15175
15176 2009-09-01 Glenn Morris <rgm@gnu.org>
15177
15178 * add-log.el (change-log-date-face, change-log-name-face)
15179 (change-log-email-face, change-log-file-face, change-log-list-face)
15180 (change-log-conditionals-face, change-log-function-face)
15181 (change-log-acknowledgement-face):
15182 * cus-edit.el (custom-invalid-face, custom-rogue-face)
15183 (custom-modified-face, custom-set-face, custom-changed-face)
15184 (custom-saved-face, custom-button-face, custom-button-pressed-face)
15185 (custom-documentation-face, custom-state-face, custom-comment-face)
15186 (custom-comment-tag-face, custom-variable-tag-face)
15187 (custom-variable-button-face, custom-face-tag-face)
15188 (custom-group-tag-face-1, custom-group-tag-face):
15189 * diff-mode.el (diff-header-face, diff-file-header-face)
15190 (diff-index-face, diff-hunk-header-face, diff-removed-face)
15191 (diff-added-face, diff-changed-face, diff-function-face)
15192 (diff-context-face, diff-nonexistent-face):
15193 * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
15194 * hilit-chg.el (highlight-changes-face, highlight-changes-delete-face):
15195 * info.el (Info-title-1-face, Info-title-2-face, Info-title-3-face)
15196 (Info-title-4-face):
15197 * isearch.el (isearch-lazy-highlight-face):
15198 * log-view.el (log-view-file-face, log-view-message-face):
15199 * paren.el (show-paren-match-face, show-paren-mismatch-face):
15200 * pcvs-info.el (cvs-header-face, cvs-filename-face, cvs-unknown-face)
15201 (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
15202 (cvs-msg-face):
15203 * smerge-mode.el (smerge-mine-face, smerge-other-face)
15204 (smerge-base-face, smerge-markers-face):
15205 * wid-edit.el (widget-documentation-face, widget-button-face)
15206 (widget-field-face, widget-single-line-field-face)
15207 (widget-inactive-face, widget-button-pressed-face):
15208 * woman.el (woman-italic-face, woman-bold-face, woman-unknown-face)
15209 (woman-addition-face):
15210 * eshell/em-ls.el (eshell-ls-directory-face, eshell-ls-symlink-face)
15211 (eshell-ls-executable-face, eshell-ls-readonly-face)
15212 (eshell-ls-unreadable-face, eshell-ls-special-face)
15213 (eshell-ls-missing-face, eshell-ls-archive-face)
15214 (eshell-ls-backup-face, eshell-ls-product-face)
15215 (eshell-ls-clutter-face):
15216 * eshell/em-prompt.el (eshell-prompt-face):
15217 * eshell/esh-test.el (eshell-test-ok-face, eshell-test-failed-face):
15218 * obsolete/old-whitespace.el (whitespace-highlight-face):
15219 * progmodes/antlr-mode.el (antlr-font-lock-default-face)
15220 (antlr-font-lock-keyword-face, antlr-font-lock-syntax-face)
15221 (antlr-font-lock-ruledef-face, antlr-font-lock-tokendef-face)
15222 (antlr-font-lock-ruleref-face, antlr-font-lock-tokenref-face)
15223 (antlr-font-lock-literal-face):
15224 * progmodes/ebrowse.el (ebrowse-tree-mark-face)
15225 (ebrowse-root-class-face, ebrowse-file-name-face)
15226 (ebrowse-default-face, ebrowse-member-attribute-face)
15227 (ebrowse-member-class-face, ebrowse-progress-face):
15228 * progmodes/make-mode.el (makefile-space-face):
15229 * progmodes/sh-script.el (sh-heredoc-face):
15230 * textmodes/flyspell.el (flyspell-incorrect-face)
15231 (flyspell-duplicate-face):
15232 * textmodes/tex-mode.el (tex-math-face, tex-verbatim-face):
15233 * textmodes/texinfo.el (texinfo-heading-face):
15234 Mark face aliases with "-face" suffix as obsolete.
15235
15236 * mail/feedmail.el (file-name-buffer-file-type-alist): Define for
15237 compiler.
15238
15239 * net/eudc-bob.el (eudc-bob-generic-menu, eudc-bob-image-menu)
15240 (eudc-bob-sound-menu): Use defvar rather than defconst, since
15241 easy-menu-define wants to modify these.
15242
15243 * net/net-utils.el (nslookup): Use make-comint rather than comint-run.
15244
15245 * net/browse-url.el (browse-url-file-url):
15246 * term/internal.el (dos-codepage-setup):
15247 Use default-value rather than default-enable-multibyte-characters.
15248
15249 * progmodes/etags.el (etags-goto-tag-location):
15250 * progmodes/flymake.el (flymake-highlight-line)
15251 (flymake-goto-file-and-line, flymake-goto-line):
15252 * progmodes/gdb-mi.el (gdb-mouse-until, gdb-mouse-jump)
15253 (gdb-goto-breakpoint):
15254 * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
15255 * progmodes/python.el (python-find-function)
15256 (python-pdbtrack-track-stack-file):
15257 * progmodes/verilog-mode.el (verilog-surelint-off):
15258 * term/ns-win.el (ns-open-file-select-line):
15259 * textmodes/bibtex.el (bibtex-validate, bibtex-validate-globally):
15260 Use forward-line rather than goto-line.
15261
15262 * textmodes/reftex-cite.el (reftex-offer-bib-menu):
15263 * textmodes/reftex-index.el (reftex-display-index):
15264 * textmodes/reftex-ref.el (reftex-offer-label-menu):
15265 * textmodes/reftex-toc.el (reftex-toc):
15266 Remove unnecessary bindings of default-major-mode (all are followed by
15267 major-mode check and possible mode switch).
15268
15269 2009-08-31 Nick Roberts <nickrob@snap.net.nz>
15270
15271 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
15272 Handle watchpoints (bug#4282).
15273 (def-gdb-thread-buffer-command): Enable thread to be selected by
15274 clicking without selecting threads buffer first.
15275 (gdb-current-context-command): Use selected frame so that "up",
15276 "down" etc work in the GUD buffer.
15277 (gdb-update): Find selected frame before rendering stack buffer.
15278 (gdb-frame-handler): Set gdb-frame-number for stack buffer.
15279
15280 2009-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
15281
15282 * progmodes/sym-comp.el (displayed-completions): Remove.
15283 (symbol-complete): Use minibuffer-complete.
15284
15285 2009-08-31 Glenn Morris <rgm@gnu.org>
15286
15287 * emacs-lisp/byte-run.el (define-obsolete-face-alias): New macro.
15288
15289 * apropos.el (apropos-symbols-internal):
15290 Handle (obsolete) face aliases.
15291
15292 * faces.el (describe-face): Adjust the output format to be more like
15293 describe-variable, and to mention (obsolete) face aliases.
15294 Adjust the whitespace so that help-setup-xref works.
15295
15296 * calendar/calendar.el (calendar-today-face, diary-face, holiday-face):
15297 * calendar/diary-lib.el (diary-button-face):
15298 Mark these face aliases as obsolete.
15299
15300 * calendar/calendar.el (calendar-today): Doc fix.
15301
15302 2009-08-31 Nick Roberts <nickrob@snap.net.nz>
15303
15304 * progmodes/gdb-mi.el (gdb-control-all-threads)
15305 (gdb-control-current-thread): Force tool bar update.
15306 (gdb-non-stop-handler): New function.
15307 (gdb-init-1): Use it to test if non-stop mode is supported.
15308 Remove unused gdbmi buffer type.
15309
15310 2009-08-30 Kevin Rodgers <kevin.d.rodgers@gmail.com>
15311
15312 * progmodes/grep.el (grep-read-files): Strip trailing <N> from
15313 buffer names not visiting a file (e.g. cloned buffers). (Bug#4210)
15314
15315 2009-08-30 Nick Roberts <nickrob@snap.net.nz>
15316
15317 * comint.el (comint-exec-1): Check command is non-null first.
15318 Part of gdb-mi.el change (2009-08-28).
15319
15320 2009-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
15321
15322 * emacs-lisp/lisp.el (lisp-complete-symbol): Use minibuffer-complete.
15323
15324 2009-08-30 Juanma Barranquero <lekktu@gmail.com>
15325
15326 * subr.el (do-after-load-evaluation): Fix last change: use `mapc'
15327 instead of `dolist' to avoid a recursive require when bootstrapping.
15328
15329 2009-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
15330
15331 * emacs-lisp/lisp.el (field-complete): Use minibuffer-complete.
15332
15333 * net/ldap.el (ldap-search-internal): Use with-current-buffer and push.
15334
15335 * net/imap.el (imap-send-command): Simplify.
15336 (imap-wait-for-tag): point-max -> buffer-size.
15337
15338 * net/ange-ftp.el (internal-ange-ftp-mode): Use define-derived-mode.
15339
15340 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't use symbol-value
15341 with constant argument.
15342
15343 * emacs-lisp/debug.el (debugger-setup-buffer): Make it multibyte.
15344
15345 * emacs-lisp/cl.el (cl-macro-environment): Don't define it here.
15346
15347 * emacs-lisp/checkdoc.el (checkdoc-force-history-flag):
15348 Change default, since most of our files don't have a history.
15349 (checkdoc-display-status-buffer): Don't use a hidden buffer to show to
15350 the user.
15351
15352 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
15353 Add comint-run.
15354
15355 * calc/calc.el: Improve commenting convention.
15356 (calc-digit-map, toplevel): Simplify.
15357
15358 * comint.el (comint-insert-input): Be careful to only set point if we
15359 don't delegate to some other command.
15360
15361 * proced.el (proced-signal-list): Make it an alist.
15362 (proced-grammar-alist): Capitalize names.
15363 (proced-send-signal): Use a non-hidden buffer (since it's displayed).
15364 Disable undo manually and make it read-only.
15365 Use completion-annotate-function.
15366
15367 * minibuffer.el (minibuffer-message): If the current buffer is not
15368 a minibuffer, insert the message in the echo area rather than at the
15369 end of the buffer.
15370 (completion-annotate-function): New variable.
15371 (minibuffer-completion-help): Use it.
15372 (completion--embedded-envvar-table): Environment vars are
15373 always case-sensitive.
15374
15375 2009-08-30 Glenn Morris <rgm@gnu.org>
15376
15377 * progmodes/fortran.el (fortran-start-prog-re): New constant, extracted
15378 from fortran-current-defun.
15379 (fortran-beginning-of-subprogram): Be more precise about finding the
15380 start, to avoid an infinite loop in end-of-defun. (Bug#4259)
15381 (fortran-end-of-subprogram): Simplify.
15382 (fortran-current-defun): Use fortran-start-prog-re.
15383
15384 2009-08-29 Juanma Barranquero <lekktu@gmail.com>
15385
15386 * subr.el (do-after-load-evaluation): Simplify.
15387
15388 2009-08-29 Dan Nicolaescu <dann@ics.uci.edu>
15389
15390 * vc.el (vc-print-log-internal): Move RCS/CVS specific code ...
15391
15392 * vc-rcs.el (vc-rcs-print-log-cleanup): ... here. New function.
15393 (vc-rcs-print-log): Use it.
15394
15395 * vc-cvs.el (vc-cvs-print-log): Use vc-rcs-print-log-cleanup.
15396
15397 2009-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
15398
15399 * paths.el (abbrev-file-name): Move to abbrev.el.
15400 * abbrev.el (abbrev-file-name): Move from paths.el.
15401 Obey user-emacs-directory.
15402 * calc/calc.el (calc-settings-file): Don't autoload and instead obey
15403 user-emacs-directory.
15404 * dos-fns.el (dos-reevaluate-defcustoms): Don't reevaluate
15405 abbrev-file-name and calc-settings-file any more.
15406 * startup.el (command-line): Recompute abbrev-file-name and
15407 abbreviated-home-dir.
15408 (normal-no-mouse-startup-screen): Improve the generic code and get rid
15409 of the special code for when C-h bindings haven't been changed.
15410 (display-startup-echo-area-message): Use with-current-buffer.
15411 (command-line-1): Use a list of strings, rather than a list of lists
15412 of strings for longopts.
15413
15414 * files.el (get-free-disk-space): Use / for default-directory.
15415
15416 * textmodes/ispell.el (ispell-accept-output, ispell-command-loop):
15417 Use with-current-buffer.
15418
15419 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p):
15420 Recognize immutable variables like most-positive-fixnum.
15421 (byte-compile-setq-default): Check and warn if trying to assign
15422 to an immutable variable, or a non-variable.
15423
15424 * progmodes/cc-vars.el (c-comment-continuation-stars):
15425 * progmodes/cc-engine.el (c-looking-at-bos):
15426 * progmodes/cc-cmds.el (c-toggle-auto-state)
15427 (c-forward-into-nomenclature, c-backward-into-nomenclature)
15428 (c-comment-line-break-function): Add version of obsolescence.
15429
15430 2009-08-28 Juri Linkov <juri@jurta.org>
15431
15432 * files.el (magic-fallback-mode-alist): Add ZIP magic number
15433 associated with `archive-mode'.
15434
15435 * image.el (image-type-header-regexps): Use only JPEG magic number
15436 to determine JPEG images, and don't use `image-jpeg-p' because
15437 Emacs can display non-JFIF non-Exif JPEG images.
15438
15439 2009-08-28 Juanma Barranquero <lekktu@gmail.com>
15440
15441 * arc-mode.el (archive-mode):
15442 * emacs-lisp/re-builder.el (re-builder-unload-function):
15443 Protect against the default value of `major-mode' being nil.
15444
15445 2009-08-28 Juanma Barranquero <lekktu@gmail.com>
15446
15447 * international/ucs-normalize.el (ucs-normalize-sort, quick-check-list):
15448 Fix typos in docstrings.
15449
15450 * progmodes/js.el (js--macro-decl-re): Doc fix.
15451 (js--plain-method-re, js--split-name): Refloc docstring.
15452 (js--class-styles, js--make-merged-item, js--splice-into-items):
15453 Fix typos in docstrings; reflow docstrings.
15454 (js--maybe-join, js--function-prologue-beginning, js--flush-caches)
15455 (js--variable-decl-matcher, js--inside-pitem-p)
15456 (js--parse-state-at-point, js--get-all-known-symbols)
15457 (js--symbol-history, js-find-symbol, js--js-references)
15458 (js--moz-interactor, js--js-encode-value, js--read-tab):
15459 Fix typos in docstrings.
15460
15461 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
15462
15463 * textmodes/reftex.el (reftex-get-file-buffer-force):
15464 * progmodes/verilog-mode.el (verilog-batch-execute-func):
15465 * emulation/viper.el (viper-go-away, viper-set-hooks):
15466 * emacs-lisp/re-builder.el (re-builder-unload-function):
15467 * emacs-lisp/bytecomp.el (byte-compile-file):
15468 * ses.el (ses-unload-function):
15469 * hexl.el (hexl-find-file):
15470 * files.el (normal-mode):
15471 * ehelp.el (with-electric-help):
15472 * autoinsert.el (auto-insert-alist):
15473 * arc-mode.el (archive-mode):
15474 Use (default-value 'major-mode) instead of default-major-mode.
15475
15476 * textmodes/ispell.el (ispell-check-version, ispell-send-string):
15477 * international/mule.el (load-with-code-conversion):
15478 * emacs-lisp/debug.el (debug):
15479 * ediff-vers.el (ediff-rcs-get-output-buffer):
15480 * dired.el (dired-internal-noselect): Don't let-bind
15481 default-major-mode around code that doesn't use it.
15482 E.g. buffer creation via get-buffer-create doesn't use it.
15483
15484 2009-08-28 Michael Albinus <michael.albinus@gmx.de>
15485
15486 * net/tramp.el (all): Replace "'(lambda" by "(lambda".
15487 (tramp-handle-file-local-copy): Unset `file-name-handler-alist'
15488 when writing the temp file. Otherwise, epa-file gets confused.
15489 (tramp-register-file-name-handlers): Make it a defun. Move also
15490 `epa-file-handler' to the front of `file-name-handler-alist'.
15491
15492 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
15493
15494 * net/tramp.el (tramp-shell-prompt-pattern): Allow a prompt to
15495 start right after a ^M.
15496 (tramp-root-regexp, tramp-completion-file-name-regexp-unified)
15497 (tramp-completion-file-name-regexp-separate)
15498 (tramp-completion-file-name-regexp-url): Use \\` and \\'.
15499 (tramp-handle-file-attributes, tramp-set-file-uid-gid):
15500 Don't modify last-coding-system-used by accident.
15501 (tramp-completion-file-name-handler): Apply the checks here,
15502 instead during registration.
15503 (tramp-register-file-name-handlers): Renamed from
15504 `tramp-register-file-name-handler'. Register both
15505 `tramp-file-name-handler' and `tramp-completion-file-name-handler'.
15506 (tramp-register-completion-file-name-handler): Remove. (Bug#4260)
15507
15508 2009-08-28 Nick Roberts <nickrob@snap.net.nz>
15509
15510 * progmodes/gdb-mi.el (gdb-use-separate-io-buffer):
15511 Remove variable ...
15512 (gdb-init-1, gdb-display-separate-io-buffer)
15513 (gdb-frame-separate-io-buffer, gdb-setup-windows): ... and
15514 references to it.
15515 (gdb-inferior-io-mode): Use make-comint-in-buffer.
15516 (gdb-inferior-filter): Use comint-output-filter to stop
15517 echoing and remove ^M characters.
15518
15519 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
15520
15521 * emulation/viper-init.el (viper-restore-cursor-type):
15522 * emulation/cua-base.el (cua--update-indications):
15523 Replace default-cursor-type with (default-value 'cursor-type).
15524
15525 * mail/sendmail.el (mail-recover-1):
15526 * international/mule-diag.el (describe-current-coding-system-briefly)
15527 (describe-current-coding-system):
15528 * international/mule-cmds.el (select-safe-coding-system)
15529 (select-message-coding-system)
15530 (set-language-environment-coding-systems, set-locale-environment):
15531 * hexl.el (hexl-insert-multibyte-char):
15532 * dos-w32.el (find-buffer-file-type-coding-system):
15533 * simple.el (what-cursor-position):
15534 Replace uses of default-buffer-file-coding-system
15535 with (default-value 'buffer-file-coding-system).
15536
15537 * emacs-lisp/edebug.el (edebug-display, edebug-outside-excursion):
15538 Replace uses of default-cursor-in-non-selected-windows
15539 with (default-value 'cursor-in-non-selected-windows).
15540 Use with-current-buffer.
15541
15542 * mail/feedmail.el: Use CL macros.
15543 (feedmail-run-the-queue, feedmail-send-it-immediately):
15544 * dos-w32.el (find-buffer-file-type): Replace uses of
15545 default-buffer-file-type with (default-value 'buffer-file-type).
15546
15547 2009-08-28 Glenn Morris <rgm@gnu.org>
15548
15549 * calendar/diary-lib.el (diary-list-entries, diary-goto-entry)
15550 (diary-show-all-entries, diary-mark-entries, diary-make-entry):
15551 Use default-value of major-mode rather than default-major-mode.
15552
15553 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
15554
15555 * Makefile.in (update-elcfiles): Report left over elc files.
15556
15557 * mail/mailalias.el (build-mail-aliases): Use with-temp-buffer,
15558 expand-file-name and with-current-buffer.
15559 (mail-get-names, mail-directory): Use with-current-buffer.
15560
15561 * vc.el (vc-read-revision): New function.
15562 (vc-version-diff, vc-merge): Use it.
15563
15564 2009-08-27 Sam Steingold <sds@gnu.org>
15565
15566 * simple.el (kill-do-not-save-duplicates): New user option.
15567 (kill-new): When it is non-nil, and the new string is the same as
15568 the latest kill, set replace to t to avoid duplicates in kill-ring.
15569
15570 2009-08-27 Julian Scheid <julians37@gmail.com> (tiny change)
15571
15572 * net/tramp.el (tramp-handle-process-file): Do not flush all
15573 caches when `process-file-side-effects' is set.
15574 (tramp-handle-vc-registered): Use `tramp-get-file-exists-command'
15575 instead of `tramp-find-file-exists-command'.
15576 Unset `process-file-side-effects'.
15577
15578 2009-08-27 Michael Albinus <michael.albinus@gmx.de>
15579
15580 * net/tramp.el (tramp-methods): New method "rsyncc".
15581 (top): Add completion function for "rsyncc".
15582 (tramp-message-show-message): New defvar.
15583 (tramp-message, tramp-error): Use it.
15584 (tramp-do-copy-or-rename-file-directly): Extend check for direct
15585 remote copying.
15586 (tramp-do-copy-or-rename-file-out-of-band): Handle new
15587 `tramp-methods' entry `copy-env' of "rsyncc".
15588 (tramp-vc-registered-read-file-names): New defconst.
15589 (tramp-vc-registered-file-names): New defvar.
15590 (tramp-handle-vc-registered): Implement optimization strategy.
15591 (tramp-run-real-handler): Add `tramp-vc-file-name-handler'.
15592 (tramp-vc-file-name-handler): New defun.
15593 (tramp-get-ls-command, tramp-get-test-command)
15594 (tramp-get-file-exists-command, tramp-get-remote-ln)
15595 (tramp-get-remote-perl, tramp-get-remote-stat)
15596 (tramp-get-remote-id): Remove superfluous `with-current-buffer'.
15597
15598 * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
15599 (tramp-cache-inhibit-cache): Extend doc string. It allows also
15600 timestamps.
15601 (tramp-get-file-property): Check for timestamps in
15602 `tramp-cache-inhibit-cache'.
15603 (tramp-set-file-property): Write timestamp.
15604
15605 2009-08-27 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
15606
15607 * language/japan-util.el (japanese-symbol-table): Add entries for
15608 cp932-2-byte.
15609
15610 * international/characters.el: Add category `j' to cp932-2-byte.
15611
15612 2009-08-27 Kenichi Handa <handa@m17n.org>
15613
15614 * international/fontset.el (build-default-fontset-data): New macro.
15615 (setup-default-fontset): Use build-default-fontset-data for CJK,
15616 tibetan, ethiopic, and ipa.
15617
15618 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
15619
15620 * cus-start.el (default-major-mode): Customize `major-mode' instead.
15621 (enable-multibyte-characters): Not customizable any more.
15622
15623 * subr.el (default-mode-line-format, default-header-line-format)
15624 (default-line-spacing, default-abbrev-mode, default-ctl-arrow)
15625 (default-direction-reversed, default-truncate-lines)
15626 (default-left-margin, default-tab-width, default-case-fold-search)
15627 (default-left-margin-width, default-right-margin-width)
15628 (default-left-fringe-width, default-right-fringe-width)
15629 (default-fringes-outside-margins, default-scroll-bar-width)
15630 (default-vertical-scroll-bar, default-indicate-empty-lines)
15631 (default-indicate-buffer-boundaries, default-fringe-indicator-alist)
15632 (default-fringe-cursor-alist, default-scroll-up-aggressively)
15633 (default-scroll-down-aggressively, default-fill-column)
15634 (default-cursor-type, default-buffer-file-type)
15635 (default-cursor-in-non-selected-windows)
15636 (default-buffer-file-coding-system, default-major-mode)
15637 (default-enable-multibyte-characters): Mark as obsolete.
15638
15639 2009-08-27 Dan Nicolaescu <dann@ics.uci.edu>
15640
15641 * vc-dir.el (vc-dir-update): Remove debug helper.
15642
15643 * vc-cvs.el (vc-cvs-update-changelog): Fix typo.
15644
15645 2009-08-26 Sam Steingold <sds@gnu.org>
15646
15647 * simple.el (save-interprogram-paste-before-kill): New user option.
15648 (kill-new): When `save-interprogram-paste-before-kill' is non-nil,
15649 save the interprogram-paste into kill-ring before overriding it
15650 with the Emacs kill.
15651
15652 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
15653
15654 * vc.el (vc-trunk-p): Rename to vc-rcs-trunk-p and move to vc-rcs.el.
15655 (vc-minor-part): Rename to vc-rcs-minor-part and move to vc-rcs.el.
15656 (vc-default-previous-revision): Rename to vc-rcs-previous-revision
15657 and move to vc-rcs.el.
15658 (vc-default-next-revision): Rename to vc-rcs-next-revision and
15659 move to vc-rcs.el.
15660 (vc-cvs-update-changelog): Move to vc-cvs.el, use vc-call-backend.
15661 (vc-rcs-update-changelog): Remove.
15662 (vc-update-changelog-rcs2log): Rename to vc-rcs-update-changelog
15663 and move to vc-rcs.el.
15664
15665 * vc-rcs.el (vc-rcs-latest-on-branch-p, vc-rcs-checkin)
15666 (vc-rcs-checkout, vc-rcs-rollback): Adjust for the vc-rcs-trunk-p
15667 renaming.
15668 (vc-rcs-trunk-p, vc-rcs-minor-part, vc-rcs-previous-revision)
15669 (vc-rcs-next-revision, vc-rcs-update-changelog): Move here from
15670 vc.el, renamed to be RCS specific.
15671
15672 * vc-cvs.el (vc-cvs-previous-revision, vc-cvs-next-revision):
15673 New functions.
15674 (vc-cvs-update-changelog): Move here from vc.el.
15675
15676 * vc-sccs.el (vc-sccs-previous-revision, vc-sccs-next-revision):
15677 New functions.
15678
15679 2009-08-26 Stefan Monnier <monnier@iro.umontreal.ca>
15680
15681 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix up last change.
15682
15683 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
15684
15685 * vc-git.el (vc-git-register): Use "git add" for directories.
15686 (vc-git-stash, vc-git-stash-show): New functions.
15687 (vc-git-extra-menu-map): Bind them.
15688
15689 * vc-dir.el (vc-dir-node-directory, vc-dir-update): Get the parent
15690 directory correctly in case the item is a directory itself.
15691
15692 * vc.el: Document the desired behavior for reverted files in the
15693 `added' state.
15694 (vc-default-prettify-state-info): Remove function, unused.
15695
15696 * vc-bzr.el (vc-bzr-prettify-state-info): Remove function, unused.
15697
15698 2009-08-26 Glenn Morris <rgm@gnu.org>
15699
15700 * bindings.el (standard-mode-line-format): Reposition dashes in
15701 which-func entry. (Bug#4217)
15702
15703 * files.el (enable-local-variables, enable-local-eval)
15704 (safe-local-variable-values, safe-local-eval-forms): Mark as risky in
15705 the defcustoms.
15706 (auto-mode-alist, ignored-local-variables)
15707 (save-some-buffers-action-alist): Move risky declarations to the
15708 definitions.
15709 (dabbrev-case-fold-search, dabbrev-case-replace, display-time-string)
15710 (font-lock-defaults, format-alist, imenu--index-alist)
15711 (imenu-generic-expression, input-method-alist, minor-mode-alist)
15712 (mode-line-buffer-identification, mode-line-client, mode-line-modes)
15713 (mode-line-modified, mode-line-mule-info, mode-line-position)
15714 (mode-line-process, mode-line-remote, outline-level)
15715 (parse-time-rules, rmail-output-file-alist)
15716 (special-display-buffer-names, vc-mode):
15717 Move risky declarations to the relevant files.
15718 * bindings.el (mode-line-client, mode-line-mule-info, mode-line-remote)
15719 (mode-line-modified, mode-line-process, mode-line-position)
15720 (mode-line-modes, mode-line-buffer-identification, minor-mode-alist)
15721 * font-core.el (font-lock-defaults):
15722 * format.el (format-alist):
15723 * vc-hooks.el (vc-mode):
15724 * window.el (special-display-buffer-names):
15725 * international/mule-cmds.el (input-method-alist):
15726 Define riskiness here (dumped file) rather than in files.el.
15727 * dabbrev.el (dabbrev-case-fold-search, dabbrev-case-replace):
15728 * imenu.el (imenu-generic-expression, imenu--index-alist):
15729 * outline.el (outline-level):
15730 * time.el (display-time-string):
15731 * calendar/parse-time.el (parse-time-rules):
15732 * mail/rmailout.el (rmail-output-file-alist):
15733 Autoload riskiness here, rather than placing in files.el.
15734
15735 2009-08-26 Andreas Schwab <schwab@linux-m68k.org>
15736
15737 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Signal overflow.
15738
15739 2009-08-25 Michael Albinus <michael.albinus@gmx.de>
15740
15741 * simple.el (process-file-side-effects): New defvar.
15742
15743 * dired-aux.el (dired-show-file-type):
15744 * vc.el (vc-diff-internal):
15745 * vc-arch.el (vc-arch-diff):
15746 * vc-bzr.el (vc-bzr-sha1, vc-bzr-revision-completion-table):
15747 * vc-cvs.el (vc-cvs-state, vc-cvs-diff, vc-cvs-revision-table):
15748 * vc-git.el (vc-git-registered, vc-git-working-revision)
15749 (vc-git-find-revision, vc-git-diff, vc-git-revision-table)
15750 (vc-git--empty-db-p):
15751 * vc-hooks.el (vc-user-login-name):
15752 * vc-svn.el (vc-svn-registered, vc-svn-state)
15753 (vc-svn-dir-extra-headers, vc-svn-find-revision):
15754 * progmodes/grep.el (grep-probe): Let-bind
15755 `process-file-side-effects' with nil.
15756
15757 * net/dbus.el (dbus-ping): Add optional parameter TIMEOUT.
15758
15759 * net/tramp-gvfs.el (top): Use timeout of 100 msec pinging GVFS
15760 daemon. Replace ping by checking for running service for bluez
15761 and zeroconf. (Bug#4239)
15762
15763 2009-08-25 Kevin Ryde <user42@zip.com.au>
15764
15765 * net/dig.el (dig): Add autoload cookie.
15766
15767 2009-08-25 Glenn Morris <rgm@gnu.org>
15768
15769 * emacs-lisp/bytecomp.el (byte-compile-eval): Fix test for cl in
15770 load-history for absolute file-names.
15771 (byte-compile-file-form-require): Warn about use of the cl package.
15772
15773 * format.el (format-alist): Doc fix.
15774
15775 * play/bubbles.el (top-level): Don't require cl at run-time.
15776
15777 * progmodes/verilog-mode.el (top-level): Don't require lucid (and hence
15778 run-time cl).
15779
15780 2009-08-24 Dmitry Dzhus <dima@sphinx.net.ru>
15781
15782 * progmodes/gdb-mi.el (gdb-mapcar*): Replacement for `mapcar*'
15783 from cl package.
15784 (gdb-table-add-row, gdb-table-string): Use `gdb-mapcar*'.
15785
15786 2009-08-24 Jay Belanger <jay.p.belanger@gmail.com>
15787
15788 * calc/calc-alg.el (math-trig-rewrite)
15789 (math-hyperbolic-trig-rewrite): New functions.
15790 (calc-simplify): Simplify trig functions when asked.
15791
15792 2009-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
15793
15794 * diff-mode.el (diff-find-source-location): Avoid goto-line.
15795
15796 2009-08-24 Kenichi Handa <handa@m17n.org>
15797
15798 * language/ind-util.el (mapthread): Delete it.
15799 (combinatorial): New function.
15800 (indian--puthash-cv): Use combinatorial instead of mapthread.
15801
15802 2009-08-22 Kevin Ryde <user42@zip.com.au>
15803
15804 * emacs-lisp/checkdoc.el (checkdoc-force-history-flag)
15805 (checkdoc-arguments-in-order-flag): Add safe-local-variable booleanp.
15806 (checkdoc-symbol-words): Add safe-local-variable for list of strings.
15807 Clarify docstring that the value is strings not symbols.
15808 (checkdoc-list-of-strings-p): New function.
15809
15810 2009-08-22 Glenn Morris <rgm@gnu.org>
15811
15812 * files.el (auto-mode-alist):
15813 * hippie-exp.el (he-concat-directory-file-name):
15814 * lpr.el (lpr-windows-system, printer-name):
15815 * ls-lisp.el (ls-lisp-emulation, ls-lisp-use-insert-directory-program):
15816 * ps-print.el (ps-windows-system):
15817 * startup.el (command-line):
15818 * emulation/viper-ex.el (viper-glob-function):
15819 * international/mule-cmds.el (set-language-environment-coding-systems):
15820 * net/ange-ftp.el (ange-ftp-write-region):
15821 * obsolete/fast-lock.el (fast-lock-cache-name):
15822 Remove code for defunct system-types emx, macos, mswindows, next-mach,
15823 unisoft-unix, vax-vms, win32, w32.
15824
15825 * calendar/diary-lib.el (diary-mark-entries-1): Only mark all days of a
15826 given name if the pattern is not more specific.
15827
15828 * calendar/lunar.el (lunar-phase-names): New option.
15829 (lunar-phase): Doc fix.
15830 (lunar-cycles-per-year): New constant.
15831 (lunar-index): New function.
15832 (lunar-phase-list, diary-lunar-phases): Use lunar-index.
15833 (lunar-phase-name): Use lunar-phase-names.
15834 (calendar-lunar-phases): Use format.
15835 (lunar-new-moon-on-or-after): Use lunar-cycles-per-year.
15836
15837 * progmodes/cperl-mode.el (cperl-imenu-name-and-position):
15838 Copy imenu-example--name-and-position function here for own use.
15839 (cperl-xsub-scan): Use cperl-imenu-name-and-position.
15840
15841 * bs.el (bs--redisplay):
15842 * cus-edit.el (custom-redraw):
15843 * ibuffer.el (ibuffer-bury-buffer):
15844 * server.el (server-goto-line-column):
15845 * startup.el (command-line-1):
15846 * strokes.el (strokes-xpm-for-stroke):
15847 * term.el (term-display-buffer-line):
15848 * view.el (View-goto-line):
15849 * calc/calc.el (calc-do, calc-trail-buffer):
15850 * play/gamegrid.el (gamegrid-add-score-insecure):
15851 * progmodes/ada-mode.el (ada-compile-goto-error):
15852 * progmodes/ada-xref.el (ada-xref-find-in-modified-ali):
15853 (ebrowse-select-1st-to-9nth):
15854 * progmodes/cperl-mode.el (cperl-time-fontification):
15855 * progmodes/ebrowse.el (ebrowse-toggle-file-name-display)
15856 * progmodes/gud.el (gud-display-line):
15857 (idlwave-shell-display-line):
15858 * progmodes/idlw-shell.el (idlwave-shell-goto-frame)
15859 * progmodes/make-mode.el (makefile-browser-toggle):
15860 (vhdl-speedbar-port-copy, vhdl-compose-components-package):
15861 * progmodes/vhdl-mode.el (vhdl-speedbar-find-file)
15862 * textmodes/picture.el (picture-draw-rectangle):
15863 * textmodes/reftex-index.el (reftex-index-goto-letter):
15864 (reftex-select-jump-to-previous):
15865 * textmodes/reftex-sel.el (reftex-find-start-point)
15866 * textmodes/reftex-toc.el (reftex-toc, reftex-toc-restore-region):
15867 (rst-straighten-deco-spacing, rst-section-tree, rst-toc):
15868 * textmodes/rst.el (rst-promote-region, rst-straighten-decorations)
15869 * textmodes/tex-mode.el (tex-compilation-parse-errors):
15870 * textmodes/two-column.el (2C-associated-buffer):
15871 Use forward-line rather than goto-line.
15872
15873 * emulation/vi.el (vi-goto-line): Don't warn about non-interactive
15874 goto-line.
15875
15876 * international/ucs-normalize.el (nfd, decomposition-translation-alist)
15877 (decomposition-char-recursively, alist-list-to-vector, quick-check-list)
15878 (quick-check-list-to-regexp): Declare.
15879
15880 * progmodes/make-mode.el (makefile-browser-insert-selection):
15881 Use goto-char rather than goto-line.
15882
15883 * progmodes/prolog.el (compilation-error-regexp-alist)
15884 (compilation-forget-errors): Declare.
15885
15886 2009-08-22 Juri Linkov <juri@jurta.org>
15887
15888 * progmodes/grep.el (lgrep, rgrep): At the beginning
15889 set `dir' to `default-directory' unless `dir' is a non-nil
15890 readable directory. (Bug#4052)
15891 (lgrep, rgrep): Change a weird way to report an error
15892 from using `read-string' to using `error'.
15893 Instead of using interactive arguments in the function body,
15894 add new argument `confirm'.
15895
15896 2009-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
15897
15898 * textmodes/remember.el (remember-buffer):
15899 * progmodes/cperl-mode.el (cperl-vc-header-alist):
15900 * calendar/icalendar.el (icalendar-convert-diary-to-ical)
15901 (icalendar-extract-ical-from-buffer):
15902 * net/newst-treeview.el (newsticker-groups-filename):
15903 * net/newst-backend.el (newsticker-cache-filename):
15904 * speedbar.el (speedbar-update-speed, speedbar-navigating-speed)
15905 (speedbar-ignored-path-expressions, speedbar-ignored-path-regexp)
15906 (speedbar-add-ignored-path-regexp, speedbar-line-path)
15907 (speedbar-buffers-line-path, speedbar-path-line)
15908 (speedbar-buffers-line-path):
15909 * epg.el (epg-passphrase-callback-function, epg-start-sign-keys)
15910 (epg-sign-keys):
15911 * epa.el (epa-display-verify-result):
15912 * progmodes/pascal.el (pascal-outline): Add version of obsolescence.
15913
15914 2009-08-21 Glenn Morris <rgm@gnu.org>
15915
15916 * progmodes/js.el (inferior-moz-process): Fix declaration.
15917
15918 * imenu.el (imenu-example--name-and-position): Fix obsolescence message.
15919
15920 * obsolete/rnewspost.el (news-mail-reply):
15921 Use goto-char rather than goto-line.
15922
15923 * term/ns-win.el (ns-open-file-select-line):
15924 Use line-beginning-position rather than goto-line.
15925
15926 * apropos.el (apropos-command):
15927 * ehelp.el (electric-helpify):
15928 * printing.el (pr-show-setup):
15929 * strokes.el (strokes-help):
15930 * tutorial.el (tutorial--describe-nonstandard-key)
15931 (tutorial--detailed-help):
15932 * woman.el (woman-mini-help, woman-display-extended-fonts):
15933 * calc/calc-help.el (calc-describe-key):
15934 * emulation/edt.el (edt-electric-helpify):
15935 * international/mule-diag.el (mule-diag):
15936 * play/yow.el (apropos-zippy):
15937 * progmodes/python.el (python-describe-symbol):
15938 * progmodes/vhdl-mode.el (vhdl-doc-variable, vhdl-doc-mode):
15939 * textmodes/table.el (*table--cell-describe-mode)
15940 (*table--cell-describe-bindings):
15941 Use help-print-return-message rather than the now obsolete alias.
15942
15943 * calendar/cal-move.el (calendar-cursor-to-nearest-date)
15944 (calendar-cursor-to-visible-date):
15945 * play/5x5.el (5x5-position-cursor):
15946 * play/decipher.el (decipher):
15947 * play/gomoku.el (gomoku-goto-xy):
15948 * play/landmark.el (lm-goto-xy):
15949 * play/mpuz.el (mpuz-paint-errors, mpuz-paint-statistics)
15950 (mpuz-paint-digit):
15951 Use forward-line, not goto-line.
15952
15953 * mail/rmail.el (rmail-obsolete): Delete custom group.
15954 (rmail-pop-password, rmail-pop-password-required): Make into aliases.
15955 (rmail-remote-password, rmail-remote-password-required):
15956 Remove unneeded :set-after and :set properties.
15957
15958 2009-08-21 Michael Albinus <michael.albinus@gmx.de>
15959
15960 * net/dbus.el (top): Initialize only when `dbusbind' is loaded.
15961
15962 2009-08-21 Dan Nicolaescu <dann@ics.uci.edu>
15963
15964 * loadup.el: Remove leftover macos code.
15965
15966 * vc-git.el (vc-git-annotate-command): Run asynchronously.
15967 Explicitly pass the date format to git blame so that user local
15968 so that the output format can be parsed.
15969
15970 2009-08-20 Michael Albinus <michael.albinus@gmx.de>
15971
15972 * net/dbus.el (top): Don't check for (getenv
15973 "DBUS_SESSION_BUS_ADDRESS"). It's done in dbusbind.c now.
15974
15975 2009-08-19 Magnus Henoch <magnus.henoch@gmail.com>
15976
15977 * log-edit.el (log-edit-strip-single-file-name): New var.
15978 (log-edit-insert-changelog): Use it. Bug#3571
15979
15980 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
15981
15982 * subr.el (read-passwd): Use read-key so keypad keys work as well.
15983 Bug#3287
15984
15985 * help.el (help-print-return-message): Rename from
15986 print-help-return-message.
15987
15988 * log-view.el (log-view-mode-map): Remove `q' binding, and unreliable
15989 cvs-mode-map parent hack.
15990 (log-view-mode): Derive from special-mode.
15991
15992 * linum.el (linum-mode): window-size-change-functions is redundant.
15993 Adapt to new window-configuration-change-hook behavior.
15994 (linum-after-size, linum-after-config): Remove.
15995
15996 * imenu.el (imenu-example--name-and-position)
15997 (imenu-example--lisp-extract-index-name)
15998 (imenu-example--create-lisp-index, imenu-example--create-c-index):
15999 Mark as obsolete.
16000
16001 * progmodes/prolog.el (inferior-prolog-error-regexp-alist): New var.
16002 (inferior-prolog-mode): Use it.
16003 (inferior-prolog-load-file): Reset list of errors.
16004
16005 2009-08-19 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
16006
16007 * language/tibetan.el ("Tibetan"): Fix sample-text entry.
16008
16009 * language/tai-viet.el ("TaiViet"): Fix sample-text entry.
16010
16011 2009-08-19 Michael Albinus <michael.albinus@gmx.de>
16012
16013 * net/dbus.el (top): Apply `dbus-init-bus' only if the session bus
16014 is running already.
16015
16016 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
16017
16018 * subr.el (listify-key-sequence-1): Use normal syntax since those
16019 integers are nowadays always represented by the same (positive) number
16020 on all platforms.
16021 (read-key-empty-map): New const.
16022 (read-key-delay): New var.
16023 (read-key): New function.
16024 (force-mode-line-update): Use with-current-buffer.
16025 (locate-user-emacs-file): Don't forget to abbreviate the file name.
16026 (start-process-shell-command, start-file-process-shell-command):
16027 Discourage the use of command-args.
16028
16029 2009-08-19 Glenn Morris <rgm@gnu.org>
16030
16031 * emacs-lisp/authors.el (authors-fixed-entries): Remove cvtmail.
16032
16033 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
16034
16035 * simple.el (choose-completion-string): Don't rely on
16036 minibuffer-completing-file-name and ad-hoc checks to decide whether
16037 to continue completion or not.
16038
16039 * minibuffer.el (minibuffer-hide-completions): New function.
16040 (completion--do-completion): Use it.
16041 (completions-annotations): New face.
16042 (completion--insert-strings): Use it.
16043 (completion-pcm--delim-wild-regex): Add docstring.
16044 (completion-pcm--string->pattern): Add support for 0-width delimiters
16045 in completion-pcm--delim-wild-regex.
16046
16047 2009-08-18 Stefan Monnier <monnier@iro.umontreal.ca>
16048
16049 * international/ucs-normalize.el (ucs-normalize-hfs-nfd-post-read-conversion):
16050 Remove unused var `buffer-modified-p'.
16051
16052 * minibuffer.el (completion--do-completion): Move point for the #b001
16053 case as well (bug#4176).
16054 (minibuffer-complete, minibuffer-complete-word): Don't move point.
16055
16056 2009-08-18 Michael Albinus <michael.albinus@gmx.de>
16057
16058 * net/dbus.el (dbus-init-bus): Declare. Apply it for the :system
16059 and :session buses.
16060
16061 2009-08-18 Kenichi Handa <handa@m17n.org>
16062
16063 * international/ucs-normalize.el (ucs-normalize-version):
16064 Change to 1.1.
16065 (ucs-normalize-hfs-nfd-pre-write-conversion): New function.
16066 (utf-8-hfs): Make it perform normalization on encoding too.
16067
16068 * textmodes/paragraphs.el: Change to utf-8. Adjust coding cookie.
16069 (sentence-end-without-space): Delete duplicated chars.
16070 (sentence-end-base): Likewise.
16071
16072 * textmodes/sgml-mode.el: Change to utf-8. Adjust coding cookie.
16073 (html-mode): Delete duplicated chars from sentence-end-base.
16074
16075 * textmodes/texinfo.el: Change to utf-8. Adjust coding cookie.
16076 (texinfo-mode): Delete duplicated chars from sentence-end-base.
16077
16078 2009-08-17 Chong Yidong <cyd@stupidchicken.com>
16079
16080 * files.el (hack-one-local-variable): If the mode function is for
16081 a minor mode, pass it an argument (Bug#4148).
16082
16083 2009-08-17 Michael Albinus <michael.albinus@gmx.de>
16084
16085 * net/tramp.el (tramp-register-completion-file-name-handler):
16086 Check also for (member 'partial-completion completion-styles).
16087
16088 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
16089
16090 * progmodes/cperl-mode.el (cperl-electric-paren): Don't expand
16091 abbrev (Bug#3943).
16092
16093 2009-08-16 Ilya Zakharevich <ilyaz@cpan.org>
16094
16095 * progmodes/cperl-mode.el: Merge upstream 6.2.
16096 (cperl-mode-syntax-table): Modify syntax entry for ["'`].
16097 (cperl-forward-re): Check cperl-brace-recursing.
16098 (cperl-highlight-charclass): New function.
16099 (cperl-find-pods-heres): Use it.
16100 (cperl-fill-paragraph): Synch to save-excursion placement used upstream.
16101 (cperl-beautify-regexp-piece): Fix column calculation.
16102 (cperl-make-regexp-x): Handle case where point is between "q" and "rs".
16103 (cperl-beautify-level): Don't process entire regexp.
16104 (cperl-build-manpage, cperl-perldoc): Bind Man-switches before
16105 calling man.
16106 (cperl-tips-faces, cperl-mode, cperl-electric-backspace): Doc fix.
16107 (cperl-init-faces): Build a list in the normal way.
16108
16109 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
16110
16111 * calendar/parse-time.el (parse-time-string-chars): Save match
16112 data.
16113
16114 2009-08-16 Stefan Monnier <monnier@iro.umontreal.ca>
16115
16116 * progmodes/sql.el (sql-product-alist): Add :name tag to entries.
16117 (sql-product): Use it.
16118 (sql-mode-menu): Auto-generate the menu based on sql-product-alist.
16119 (sql-set-product): Add completion.
16120 (sql-highlight-oracle-keywords, sql-highlight-postgres-keywords)
16121 (sql-highlight-linter-keywords, sql-highlight-ms-keywords)
16122 (sql-highlight-ansi-keywords, sql-highlight-sybase-keywords)
16123 (sql-highlight-informix-keywords, sql-highlight-interbase-keywords)
16124 (sql-highlight-ingres-keywords, sql-highlight-solid-keywords)
16125 (sql-highlight-mysql-keywords, sql-highlight-sqlite-keywords)
16126 (sql-highlight-db2-keywords): Remove.
16127 (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
16128 (sql-highlight-product): Use derived-mode-p.
16129 (sql-set-sqli-buffer): Use with-current-buffer.
16130 (sql-connect-informix, sql-connect-ingres, sql-connect-oracle):
16131 Simplify.
16132
16133 * emacs-lisp/lisp-mode.el (lisp-indent-region): Remove unused function.
16134
16135 * term.el: Fix commenting convention, turn comments into docstrings.
16136
16137 2009-08-16 E. Jay Berkenbilt <ejb@ql.org> (tiny change)
16138
16139 * whitespace.el (whitespace-style): Doc fix (Bug#3661).
16140
16141 2009-08-16 Jan Seeger <jan.seeger@thenybble.de> (tiny change)
16142
16143 * calendar/parse-time.el (parse-time-string-chars): Compute using
16144 character classes, to handle non-ascii characters (Bug#3190).
16145
16146 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
16147
16148 * progmodes/sh-script.el (sh-maybe-here-document): Avoid inserting
16149 another heredoc if the user adds another < (Bug#3226).
16150
16151 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
16152 Don't initialize based on window-system (Bug#4124).
16153
16154 * facemenu.el (facemenu-read-color): Use a completion function
16155 that accepts any defined color, such as RGB triplets (Bug#3677).
16156
16157 * files.el (get-free-disk-space): Change fallback default
16158 directory to /. Expand DIR argument before switching to fallback.
16159 Suggested by Kevin Ryde (Bug#2631, Bug#3911).
16160
16161 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
16162
16163 * files.el (load-library): Doc fix.
16164
16165 2009-08-15 Michael Kifer <kifer@cs.stonybrook.edu>
16166
16167 * emulation/viper-cmd.el (viper-insert-isearch-string): New function.
16168 (viper-if-string): Redefine C-s in the minibuffer to insert the last
16169 incremental search string.
16170
16171 * ediff-init.el (ediff-coding-system): Use escape-quoted in case of
16172 XEmacs.
16173
16174 * ediff-merg.el (ediff-merge-region-is-non-clash-to-skip)
16175 (ediff-merge-region-is-non-clash)
16176 (ediff-skip-merge-region-if-changed-from-default-p): Use defun.
16177 Also check if the job is really a merge job.
16178
16179 * ediff.el (ediff-current-file): New function.
16180
16181 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
16182
16183 * progmodes/js.el: Edit docstrings throughout to follow Emacs
16184 conventions.
16185 (js-insert-and-indent): Delete function.
16186 (js-mode-map): Don't bind keys to js-insert-and-indent.
16187 (js-beginning-of-defun): Rename from js--beginning-of-defun.
16188 (js-end-of-defun): Rename from js--end-of-defun.
16189 (js-auto-indent-flag): Delete variable.
16190
16191 2009-08-14 Chong Yidong <cyd@stupidchicken.com>
16192
16193 * progmodes/js.el: Remove proclaim statement.
16194 Defvar which-func-imenu-joiner-function to silence compiler.
16195
16196 * files.el (auto-mode-alist): Use js-mode for .js files.
16197
16198 * progmodes/js2-mode.el: Remove file.
16199
16200 * Makefile.in (ELCFILES): Add js.el, and remove js2-mode.el.
16201
16202 * speedbar.el (speedbar-supported-extension-expressions): Add .js.
16203
16204 * progmodes/hideshow.el (hs-special-modes-alist): Add js-mode entry.
16205
16206 2009-08-14 Daniel Colascione <dan.colascione@gmail.com>
16207 Karl Landstrom <karl.landstrom@brgeight.se>
16208
16209 * progmodes/js.el: New file.
16210
16211 2009-08-14 Mark A. Hershberger <mah@everybody.org>
16212
16213 * timezone.el (timezone-parse-date): Add ability to understand ISO
16214 basic format (minimal separators) dates in addition to the
16215 already-supported extended format dates.
16216
16217 2009-08-14 Eli Zaretskii <eliz@gnu.org>
16218
16219 * international/ucs-normalize.el: Add a `coding' file variable.
16220
16221 * Makefile.in (ELCFILES): Add international/ucs-normalize.elc.
16222
16223 2009-08-14 Sam Steingold <sds@gnu.org>
16224
16225 * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
16226
16227 2009-08-13 Chong Yidong <cyd@stupidchicken.com>
16228
16229 * faces.el (help-argument-name): Define it here instead of
16230 help-fns.el, because in daemon mode help-fns.el may be loaded when
16231 faces are still uninitialized (Bug#1078).
16232
16233 * help-fns.el (help-argument-name): Move defface to faces.el.
16234
16235 2009-08-13 Nick Roberts <nickrob@snap.net.nz>
16236
16237 * progmodes/gdb-mi.el (gdb-inferior-io-mode): Use start-process to
16238 create buffer with a pty but no process so that GDB can make the
16239 inferior the controlling process.
16240
16241 2009-08-13 Taichi Kawabata <kawabata.taichi@gmail.com>
16242
16243 * international/ucs-normalize.el: New file.
16244
16245 2009-08-13 Richard Stallman <rms@gnu.org>
16246
16247 * mail/rmail.el (rmail-get-attr-names):
16248 Accept an attribute header that is too short.
16249
16250 * mail/rmail.el (rmail-forget-messages):
16251 Ignore nil elt in rmail-message-vector. Use dotimes.
16252
16253 * progmodes/compile.el (compilation-goto-locus):
16254 Use next-error-move-function.
16255
16256 * simple.el (next-error-move-function): New variable.
16257
16258 2009-08-12 Juri Linkov <juri@jurta.org>
16259
16260 * progmodes/grep.el (lgrep): Ensure that `default-directory' is
16261 always non-nil. (Bug#4052)
16262
16263 * replace.el (read-regexp): Return empty string when
16264 `default-value' is nil.
16265 (keep-lines-read-args): Don't use empty string as the
16266 default value for `read-regexp'. (Bug#2495)
16267
16268 2009-08-12 Juri Linkov <juri@jurta.org>
16269
16270 * international/mule-cmds.el (ucs-insert): Change arguments
16271 from `arg' to `character', `count', `inherit' to be the same
16272 as in `insert-char'. Doc fix. (Bug#4039)
16273
16274 * international/mule-conf.el (utf-16be-with-signature): Doc fix.
16275
16276 2009-08-12 Juri Linkov <juri@jurta.org>
16277
16278 * files-x.el: New file.
16279
16280 * files.el: Move code that deals with adding/deleting
16281 file/directory-local variables to files-x.el.
16282
16283 * Makefile.in (ELCFILES): Add files-x.elc.
16284
16285 2009-08-11 Dmitry Dzhus <dima@sphinx.net.ru>
16286
16287 * progmodes/gdb-mi.el (gdb-line-posns): New helper which helps not
16288 to use `goto-line'.
16289 (gdb-place-breakpoints, gdb-get-location): Rewritten without
16290 `goto-line'.
16291 (gdb-invalidate-disassembly): Do not refresh upon receiving
16292 'update signal. Instead, update all disassembly buffers only after
16293 threads list.
16294 (gdb): Send -target-detach when buffer is killed (Bug#3794).
16295 (gdb-starting): Moved -data-list-register-names...
16296 (gdb-stopped): ...here so it's sent when first thread stops.
16297 (gdb-registers-handler-custom): Do nothing if register names are
16298 unknown yet.
16299
16300 * progmodes/gud.el (gud-stop-subjob): Rewritten without macros
16301 from `gdb-mi.el' to avoid extra tangling.
16302
16303 * progmodes/gdb-mi.el (gdb-gud-context-call): Reverting previous
16304 change which breaks `gud-def' definitions used in `gdb'.
16305 (gdb-update-gud-running): No extra fuss for updating frame number.
16306
16307 2009-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
16308
16309 * international/mule-cmds.el (mule-keymap, mule-menu-keymap)
16310 (describe-language-environment-map, setup-language-environment-map)
16311 (set-coding-system-map): Move initialization into declaration.
16312 (set-language-info-alist): Last arg to define-key-after can be skipped.
16313
16314 * international/quail.el (quail-completion-1): Simplify.
16315 (quail-define-rules): Use slightly more compact code.
16316 (quail-insert-decode-map): Propertize keys, compact columns.
16317
16318 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
16319 Add goto-line.
16320
16321 2009-08-10 Miles Bader <miles@gnu.org>
16322
16323 * progmodes/js2-mode.el (js2-warning, js2-error, js2-jsdoc-tag)
16324 (js2-jsdoc-type, js2-jsdoc-value, js2-function-param)
16325 (js2-instance-member, js2-private-member, js2-private-function-call)
16326 (js2-jsdoc-html-tag-name, js2-jsdoc-html-tag-delimiter)
16327 (js2-magic-paren, js2-external-variable):
16328 Remove "-face" suffix from face names.
16329 (js2-jsdoc-highlight-helper, js2-highlight-jsdoc)
16330 (js2-highlight-undeclared-vars, js2-peek-token)
16331 (js2-parse-function-params, js2-mode-show-errors)
16332 (js2-mode-show-warnings, js2-make-magic-delimiter)
16333 (js2-mode-highlight-magic-parens): Update to use new face names.
16334
16335 2009-08-09 Michael Albinus <michael.albinus@gmx.de>
16336
16337 * net/tramp.el (tramp-get-ls-command-with-dired): New defun.
16338 (tramp-handle-insert-directory): Handle "--dired". (Bug#4075)
16339
16340 2009-08-09 Chong Yidong <cyd@stupidchicken.com>
16341
16342 * subr.el: Provide hashtable-print-readable.
16343
16344 * progmodes/hideshow.el (hs-special-modes-alist): Don't use
16345 hs-c-like-adjust-block-beginning.
16346 (hs-hide-block-at-point): Stop hiding at the beginning of
16347 hs-block-end-regexp (Bug#700).
16348
16349 2009-08-09 Dmitry Dzhus <dima@sphinx.net.ru>
16350
16351 * progmodes/gdb-mi.el (gdb-gud-context-call): Does not need to be
16352 a macro.
16353 (gdb-registers-handler-custom): Do not fail when register names
16354 are unavailable.
16355
16356 2009-08-08 Dmitry Dzhus <dima@sphinx.net.ru>
16357
16358 * progmodes/gdb-mi.el (gdb-control-all-threads)
16359 (gdb-control-current-thread): Interactive setters for
16360 `gdb-gud-control-all-threads' to use in menu.
16361 (gdb-show-run-p): Show «Go» when process is not active.
16362 (gud-tool-bar-map): Add non-stop/A,T indicator. Uses
16363 gud/thread.xpm and gud/all.xpm.
16364
16365 2009-08-08 Yoni Rabkin <yoni@rabkins.net>
16366
16367 * net/net-utils.el (net-utils-font-lock-keywords): New var.
16368 (nslookup-font-lock-keywords): Make it a variable.
16369 (net-utils-mode): New mode for viewing diagnostic network output.
16370 (net-utils-remove-ctrl-m-filter): Set inhibit-read-only.
16371 (net-utils-run-simple): New function.
16372 (ifconfig, iwconfig, netstat, arp, route): Use it.
16373
16374 2009-08-08 Dmitry Dzhus <dima@sphinx.net.ru>
16375
16376 * progmodes/gdb-mi.el (gdb-read-memory-custom)
16377 (gdb-memory-set-address, def-gdb-set-positive-number)
16378 (def-gdb-memory-format, def-gdb-memory-unit): Update memory buffer
16379 after changing settings.
16380 (gdb-invalidate-disassembly): Update when first shown.
16381 (gdb-edit-locals-value): Fixed.
16382 (gdb-registers-handler-custom): Print registers in right order and
16383 allow changing register values (only for current thread yet).
16384 (gdb-breakpoints-mode-map): Don't assume threads buffer is present.
16385 (gdb-threads-mode-map): Don't assume breakpoints buffer is present.
16386 (gdb-disassembly-handler-custom, gdb-stack-list-frames-custom)
16387 (gdb-locals-handler-custom, gdb-registers-handler-custom): Thread
16388 info in mode name.
16389 (gdb-registers-mode-map): TAB to switch to locals.
16390
16391 2009-08-08 Eli Zaretskii <eliz@gnu.org>
16392
16393 * mail/rmail.el (rmail-add-mbox-headers)
16394 (rmail-set-message-counters-counter): Search for
16395 rmail-unix-mail-delimiter instead of just "From ". (Bug#4076)
16396
16397 2009-08-08 Glenn Morris <rgm@gnu.org>
16398
16399 * Makefile.in (ELCFILES): Update.
16400
16401 2009-08-07 Eli Zaretskii <eliz@gnu.org>
16402
16403 * mail/sendmail.el (mail-yank-original): Set
16404 buffer-file-coding-system from the one used by the message whose
16405 text is yanked.
16406
16407 * calc/calc-graph.el (calc-graph-plot): Set calc-graph-last-device
16408 to "windows" when "pgnuplot" is used.
16409 (calc-graph-command, calc-gnuplot-command, calc-graph-init): Don't
16410 call accept-process-output if "pgnuplot" is used.
16411 (calc-graph-init): Don't send -display and -geometry to
16412 "pgnuplot". If "pgnuplot" is used, glean gnuplot version by
16413 running "pgnuplot -V" with shell-command-to-string.
16414
16415 * calc/calc.el (calc-gnuplot-name) [windows-nt]: Use "pgnuplot" as
16416 the default.
16417
16418 2009-08-07 Eli Zaretskii <eliz@gnu.org>
16419
16420 * Makefile.in (ELCFILES): org/org-export-latex.elc renamed to
16421 org/org-latex.elc.
16422
16423 2009-08-07 Dan Nicolaescu <dann@ics.uci.edu>
16424
16425 * vc-dispatcher.el (vc-resynch-window): Update comment.
16426
16427 * term.el (term-handle-ansi-escape): Add comments with the
16428 terminfo capabilities implemented.
16429
16430 2009-08-06 Dmitry Dzhus <dima@sphinx.net.ru>
16431
16432 * progmodes/gdb-mi.el (gdb-var-create-regexp): Removed.
16433 (gdb-var-create-handler): Rewritten using JSON parser.
16434 (gdb-propertize-header): Moved earlier.
16435 (gdb-set-header): Removed to avoid duplication.
16436 (gdb-thread-list-handler-custom, gdb-invalidate-disassembly):
16437 Refresh disassembly buffers only after threads list have been
16438 update.
16439 (gdb-threads-header, gdb-registers-header): Per-buffer header line
16440 variables.
16441
16442 2009-08-04 Juri Linkov <juri@jurta.org>
16443
16444 * files.el: Commands to add/delete file/directory-local variables.
16445 (read-file-local-variable, read-file-local-variable-value)
16446 (read-file-local-variable-mode, modify-file-local-variable)
16447 (modify-file-local-variable-prop-line)
16448 (modify-dir-local-variable): New functions.
16449 (add-file-local-variable, delete-file-local-variable)
16450 (add-file-local-variable-prop-line, delete-file-local-variable-prop-line)
16451 (add-dir-local-variable, delete-dir-local-variable)
16452 (copy-file-locals-to-dir-locals, copy-dir-locals-to-file-locals)
16453 (copy-dir-locals-to-file-locals-prop-line): New commands.
16454
16455 2009-08-04 Chong Yidong <cyd@stupidchicken.com>
16456
16457 * abbrev.el (insert-abbrev-table-description): Prettify output.
16458 Suggested by Karl Chen.
16459
16460 2009-08-04 Dmitry Dzhus <dima@sphinx.net.ru>
16461
16462 * progmodes/gdb-mi.el (gdb-frame-number): Initialize with nil.
16463 (gdb-overlay-arrow-position): Rename to `gdb-disassembly-position'.
16464 (gdb-overlay-arrow-position, gdb-thread-position)
16465 (gdb-disassembly-position): Declare variables.
16466 (gdb-wait-for-pending): Function now.
16467 (gdb-add-subscriber, gdb-delete-subscriber, gdb-get-subscribers)
16468 (gdb-emit-signal, gdb-buf-publisher): Declare before first use so
16469 compilation goes smoothly.
16470 (gdb, gdb-non-stop, gdb-buffers): New customization groups.
16471 (gdb-non-stop-setting): New customization setting which replaces
16472 `gdb-non-stop' so changing it doesn't break active GDB session.
16473 (gdb-stack-buffer-locations, gdb-stack-buffer-addresses)
16474 (gdb-thread-buffer-verbose-names, gdb-thread-buffer-arguments)
16475 (gdb-thread-buffer-locations, gdb-thread-buffer-addresses)
16476 (gdb-show-threads-by-default): New customization options.
16477 (gdb-buffer-type, gdb-buffer-shows-main-thread-p): New helper
16478 routines.
16479 (gdb-get-buffer-create): Send buffers update signal when they are
16480 created.
16481 (gdb-invalidate-locals, gdb-invalidate-registers)
16482 (gdb-invalidate-breakpoints)
16483 (gdb-invalidate-threads, gdb-invalidate-disassembly)
16484 (gdb-invalidate-memory): Accept update signal.
16485 (gdb-current-context-command): Use --frame option.
16486 (gdb-update-gud-running, gdb-running, gdb-setq-thread-number):
16487 Implement `gdb-frame-number' selection logic.
16488 (gdb-show-run-p, gdb-show-stop-p): Helper functions which decide
16489 whether to show GUD toolbar buttons.
16490 (gdb-thread-exited): Unselect current thread when it exits.
16491 (gdb-stopped): Typo fixed (now really runs `gdb-stopped-hooks').
16492 (gdb-mark-line): Routine which sets overlay arrow or inverses
16493 video on fringeless displays.
16494 (gdb-table, gdb-table-add-row, gdb-table-string): Structure used
16495 to build aligned columns of data in GDB buffers and set text
16496 properties line-by-line.
16497 (gdb-invalidate-breakpoints)
16498 (gdb-breakpoints-list-handler-custom)
16499 (gdb-thread-list-handler-custom, gdb-disassembly-handler-custom)
16500 (gdb-stack-list-frames-custom, gdb-locals-handler-custom)
16501 (gdb-registers-handler-custom): Align data columns.
16502 (gdb-locals-handler-custom): Now prints data like in variable
16503 declarations.
16504 (gdb-jump-to, gdb-file-button, gdb-insert-file-location-button):
16505 Removed confusing buttons.
16506 (gdb-invalidate-threads): Append --frame.
16507 (gdb-threads-mode-map, gdb-breakpoints-mode-map): TAB to switch
16508 between breakpoints/threads buffers.
16509 (gdb-set-window-buffer): Now can ignore dedicated windows.
16510 (gdb-propertize-header): Use `gdb-set-window-buffer'.
16511 (def-gdb-thread-buffer-simple-command): Numerous typos fixed.
16512 (def-gdb-thread-buffer-gud-command): Replaces
16513 `def-gdb-thread-buffer-gdb-command' and uses standard GUD commands
16514 for fine thread control.
16515 (gdb-preempt-existing-or-display-buffer): New function used to
16516 display bound buffers without breaking window layout.
16517 (gdb-frame-location): Replaces `gdb-insert-frame-location'.
16518 (gdb-select-frame): New version of `gdb-frames-select' which now
16519 sets `gdb-frame-number' so commands may use --frame option instead
16520 of inner debugger state.
16521 (gdb-frame-handler): Do not set `gdb-frame-number'.
16522 (gdb-threads-mode-map): Select threads with mouse.
16523
16524 * progmodes/gud.el (gdb-gud-context-call): Declare function to
16525 avoid compilation warning.
16526 (gud-menu-map, gud-minor-mode-map): Use `gdb-show-run-p` and
16527 `gdb-show-stop-p`.
16528
16529 * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create):
16530 Argument `key' renamed to `buffer-type'.
16531 (gdb-current-context-buffer-name): Do not add thread info to
16532 buffer name when no thread is selected.
16533 (gdbmi-record-list, gdb-shell): Try to handle GDB `shell'
16534 command (bug 3794).
16535 (gdb-thread-selected): Handle `=thread-selected' notification.
16536 (gdb-wait-for-pending): New macro to deal with congestion problems.
16537 (gdb-breakpoints-list-handler-custom): Don't fail on pending
16538 breakpoints.
16539 (gdb-invalidate-disassembly): Use 'fullname instead of 'file.
16540 This fixes problem similar to one described in bug 3947.
16541 (gud-menu-map): More menu items.
16542 (gdb-init-1): Reset `gdb-thread-number' to nil.
16543
16544 * progmodes/gud.el (gud-stop-subjob, gud-menu-map): Respect GDB
16545 non-stop settings.
16546
16547 * progmodes/gdb-mi.el (gdb-thread-number): Initialize with nil.
16548 (gdb-current-context-command): Do not append --thread if
16549 `gdb-thread-number' is nil.
16550 (gdb-running-threads-count, gdb-stopped-threads-count): New
16551 variables.
16552 (gdb-non-stop, gdb-gud-control-all-threads, gdb-switch-reasons)
16553 (gdb-stopped-hooks, gdb-switch-when-another-stopped): New
16554 customization options.
16555 (gdb-gud-context-command, gdb-gud-context-call): New wrappers for
16556 GUD commands.
16557 (gdb): `gud-def' definitions changed to use `gdb-gud-context-call'.
16558 (gdb-init-1): Activate non-stop mode if `gdb-non-stop' is enabled.
16559 (gdb-setq-thread-number, gdb-update-gud-running): New functions to
16560 set `gdb-thread-number' and update `gud-running' properly.
16561 (gdb-running): Update threads list when new threads appear.
16562 (gdb-stopped): Support non-stop operation and new thread switching
16563 logic.
16564 (gdb-jsonify-buffer, gdb-json-read-buffer, gdb-json-string)
16565 (gdb-json-partial-output): New set of JSON routines.
16566 (def-gdb-auto-update-trigger): New `signal-list' optional
16567 argument.
16568 (gdb-thread-list-handler-custom): Update `gud-running',
16569 `gdb-stopped-threads-count' and `gdb-running-threads-count'.
16570 (def-gdb-thread-buffer-gdb-command, gdb-interrupt-thread)
16571 (gdb-continue-thread, gdb-step-thread): New commands for fine
16572 thread execution control.
16573 (gud-menu-map): New menu items to switch non-stop options.
16574 (gdb-reset): Cleanup `gdb-thread-position' overlay arrow marker.
16575 (gdb-send): Mimic RET properly (bug 3794).
16576
16577 * progmodes/gdb-mi.el (gdb-rules-name-maker)
16578 (gdb-rules-buffer-mode, gdb-rules-update-trigger): Accessors for
16579 gdb-buffer-rules.
16580 (def-gdb-auto-update-handler): New nopreserve optional argument.
16581 (gdb-stack-list-frames-custom): Print stack from top to bottom.
16582
16583 * progmodes/gdb-mi.el (gdb-pc-address): Removed unused variable.
16584 (gdb-threads-list, gdb-breakpoints-list): New assoc lists.
16585 (gdb-parent-mode): New mode to derive other GDB modes from.
16586 (gdb-display-disassembly-for-thread)
16587 (gdb-frame-disassembly-for-thread): New commands for threads
16588 buffer.
16589
16590 * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create)
16591 (gdb-init-1, gdb-bind-function-to-buffer, gdb-add-subscriber)
16592 (gdb-get-subscribers, gdb-emit-signal, gdb-buf-publisher)
16593 (gdb-update): We now store all GDB buffers in a list so that they
16594 can be updated by traversing a list instead of calling invalidate
16595 triggers explicitly.
16596 (def-gdb-trigger-and-handler): New macro to define trigger-handler
16597 pair for GDB buffer.
16598 (gdb-stack-buffer-name): Add thread information.
16599 (gdb-add-pending, gdb-pending-p, gdb-delete-pending): Macros to
16600 handle pending triggers.
16601 (gdb-threads-mode-map, def-gdb-thread-buffer-command)
16602 (def-gdb-thread-buffer-simple-command)
16603 (gdb-display-stack-for-thread, gdb-display-locals-for-thread)
16604 (gdb-display-registers-for-thread, gdb-frame-stack-for-thread)
16605 (gdb-frame-locals-for-thread, gdb-frame-registers-for-thread):
16606 New commands which show buffers bound to thread.
16607 (gdb-stack-list-locals-regexp): Removed unused regexp.
16608
16609 * progmodes/gdb-mi.el (gdb-breakpoints-buffer-name)
16610 (gdb-locals-buffer-name, gdb-registers-buffer-name)
16611 (gdb-memory-buffer-name, gdb-stack-buffer-name): Do not switch
16612 to (gud-comint-buffer) in *-buffer-name functions
16613 because (gdb-get-target-string) already does that.
16614 (gdb-locals-handler-custom, gdb-registers-handler-custom)
16615 (gdb-changed-registers-handler): Rewritten without regexps.
16616
16617 * progmodes/gdb-mi.el: Basic thread selection support.
16618 (gdb-thread-number): New variable.
16619 (gdb-current-context-command): New macro which adds --thread
16620 option to command.
16621 (gdb-threads-mode-map): Select thread with SPC.
16622 (gdb-thread-list-handler-custom): Mark current thread with overlay
16623 arrow. Synchronize GDB thread and Emacs thread.
16624 (gdb-select-thread): New command which selects current thread.
16625 (gdb-invalidate-frames, gdb-invalidate-locals)
16626 (gdb-invalidate-registers): Use --thread option.
16627
16628 2009-08-04 Michael Albinus <michael.albinus@gmx.de>
16629
16630 * net/tramp.el (top): Make check for tramp-gvfs loading more
16631 robust. (Bug#3977)
16632 (tramp-handle-insert-file-contents): `unwind-protect' must be
16633 inside `with-parsed-tramp-file-name'.
16634
16635 * net/tramp-gvfs.el (top): Remove superfluous message when loading
16636 fails.
16637
16638 2009-08-03 Nick Roberts <nickrob@snap.net.nz>
16639
16640 * progmodes/gud.el (jdb): Set gud-jdb-classpath-string to current
16641 directory if CLASSPATH is not set.
16642
16643 2009-08-03 Michael Albinus <michael.albinus@gmx.de>
16644
16645 * net/tramp.el (tramp-rfn-eshadow-update-overlay-regexp):
16646 New defconst.
16647 (tramp-rfn-eshadow-update-overlay): Use it. (Bug#4004)
16648
16649 2009-08-02 Kevin Ryde <user42@zip.com.au>
16650
16651 * net/newst-backend.el (newsticker--raw-url-list-defaults):
16652 Update freshmeat link. Delete newsforge.com as it seems gone.
16653
16654 2009-08-02 Chong Yidong <cyd@stupidchicken.com>
16655
16656 * select.el (x-set-selection): Doc fix (Bug#4021).
16657
16658 * w32-fns.el (x-set-selection): Doc fix (Bug#4021).
16659
16660 * help-fns.el (describe-variable): Treat list return values from
16661 dir-locals-find-file properly (Bug#4005).
16662
16663 2009-08-02 Julian Scheid <julians37@googlemail.com> (tiny change)
16664
16665 * net/tramp.el (tramp-debug-message): Print also microseconds.
16666
16667 2009-08-02 Michael Albinus <michael.albinus@gmx.de>
16668
16669 * net/tramp.el (tramp-handle-insert-file-contents): Optimize, when BEG
16670 or END is non-nil.
16671 (tramp-handle-vc-registered): Use `tramp-cache-inhibit-cache'.
16672 (tramp-get-debug-buffer): Change `outline-regexp' according to new
16673 format.
16674
16675 * net/tramp-cache.el (tramp-cache-inhibit-cache): New defvar.
16676 (tramp-get-file-property): Use it.
16677
16678 * autorevert.el (auto-revert-handler): Allow
16679 `auto-revert-tail-mode' for remote files.
16680
16681 2009-08-02 Jason Rumney <jasonr@gnu.org>
16682
16683 * minibuffer.el (read-file-name): Treat confirm options to
16684 MUSTMATCH as nil when invoking x-file-dialog. (Bug#3969)
16685
16686 2009-08-02 Chong Yidong <cyd@stupidchicken.com>
16687
16688 * font-lock.el (font-lock-string-face, font-lock-builtin-face)
16689 (font-lock-variable-name-face, font-lock-constant-face): Darken
16690 the colors for light backgrounds.
16691
16692 2009-08-01 Eli Zaretskii <eliz@gnu.org>
16693
16694 * mail/rmailsum.el (rmail-header-summary): Ignore letter-case of
16695 month names. (Bug#3987)
16696
16697 2009-07-31 Chong Yidong <cyd@stupidchicken.com>
16698
16699 * simple.el (line-move-finish): Pass whole number to
16700 line-move-to-column.
16701 (line-move-visual): Perform hscroll to the recorded position.
16702
16703 2009-07-30 Jay Belanger <jay.p.belanger@gmail.com>
16704
16705 * calc/calc-mode.el (calc-matrix-brackets): Remove "P" from prompt.
16706
16707 2009-07-29 Alan Mackenzie <acm@muc.de>
16708
16709 * progmodes/cc-defs.el (c-version): Bump to 5.31.7.
16710
16711 2009-07-29 Dmitry Dzhus <dima@sphinx.net.ru>
16712
16713 * progmodes/gdb-mi.el (gdb-goto-breakpoint)
16714 (gdb-place-breakpoints): Use full path when setting breakpoints.
16715
16716 2009-07-29 Jay Belanger <jay.p.belanger@gmail.com>
16717
16718 * calc/calc.el (calc-mode-map): Add keybinding for
16719 `calc-transpose-lines'.
16720
16721 2009-07-29 Vincent Belaïche <vincent.belaiche@gmail.com>
16722
16723 * calc/calc-misc.el (calc-transpose-lines): New function.
16724
16725 2009-07-28 Michael Albinus <michael.albinus@gmx.de>
16726
16727 * net/tramp.el (tramp-do-copy-or-rename-file): Add messages.
16728 Simplify check for out-of-band methods.
16729 (tramp-do-copy-or-rename-file-out-of-band): Allow both files to be
16730 remote. Remove messages which are in `tramp-do-copy-or-rename-file'.
16731
16732 2009-07-28 Dan Nicolaescu <dann@ics.uci.edu>
16733
16734 * vc-git.el (vc-git-checkin): Fix typo.
16735
16736 2009-07-28 Steve Yegge <steve.yegge@gmail.com>
16737
16738 * progmodes/js2-mode.el: New file.
16739
16740 2009-07-28 Nick Roberts <nickrob@snap.net.nz>
16741
16742 * progmodes/gud.el (jdb): Add gud-pstar to dump object information.
16743 (gud-menu-map): Adjust tooltip accordingly.
16744
16745 2009-07-27 Dan Nicolaescu <dann@ics.uci.edu>
16746
16747 * vc-bzr.el (vc-bzr-print-log): Pass multiple arguments to bzr log.
16748 (vc-bzr-log-view-mode): Adjust log-view-file-re.
16749
16750 * add-log.el (change-log-mode-map): Add a menu.
16751
16752 2009-07-27 Michael Albinus <michael.albinus@gmx.de>
16753
16754 * net/dbus.el (dbus-call-method-non-blocking): Handle the case the
16755 function returns nil.
16756 (dbus-handle-event): Handle special return value :ignore.
16757 Reported by Jan Moringen <jan.moringen@uni-bielefeld.de>.
16758
16759 2009-07-26 Chong Yidong <cyd@stupidchicken.com>
16760
16761 * view.el (view-mode-enable): Don't define Helper-return-blurb if
16762 it's not needed.
16763
16764 2009-07-25 Eli Zaretskii <eliz@gnu.org>
16765
16766 Fix Bug#3888:
16767
16768 * w32-vars.el (x-select-enable-clipboard): Doc fix.
16769
16770 * term/pc-win.el (x-display-name, x-colors)
16771 (x-select-enable-clipboard, x-select-text): Doc fix.
16772
16773 * term/common-win.el (x-display-name, x-colors): Doc fix.
16774
16775 * term/ns-win.el (x-select-text, x-setup-function-keys, x-colors)
16776 (xw-defined-colors): Doc fix.
16777
16778 * w32-fns.el (x-select-text, x-setup-function-keys)
16779 (x-get-selection, x-set-selection): Doc fix.
16780
16781 * term/x-win.el (x-select-text, x-setup-function-keys)
16782 (x-select-enable-clipboard, xw-defined-colors): Doc fix.
16783
16784 * select.el (x-set-selection): Doc fix.
16785
16786 2009-07-25 Michael Albinus <michael.albinus@gmx.de>
16787
16788 * net/zeroconf.el (zeroconf-init): Check for "GetVersionString"
16789 instead of "IsNSSSupportAvailable". Avahi ought to work also when
16790 "IsNSSSupportAvailable" method is not available. Reported by
16791 Steve Youngs <steve@sxemacs.org>.
16792
16793 2009-07-24 Kenichi Handa <handa@m17n.org>
16794
16795 * international/characters.el: Fix setting of category ?C, ?|, ?K,
16796 and ?H. Fix setting of case for Latin Extended and Greek Extended.
16797 (build-unicode-category-table): Fix range checks.
16798
16799 2009-07-24 Dan Nicolaescu <dann@ics.uci.edu>
16800
16801 * vc-dispatcher.el (vc-resynch-buffers-in-directory): Make sure
16802 the buffer we try to sync is current when calling
16803 vc-resynch-buffer.
16804
16805 * vc-dir.el (vc-dir-resynch-file): Make sure vc-dir-update does
16806 not show up to date files.
16807
16808 2009-07-24 Glenn Morris <rgm@gnu.org>
16809
16810 * emacs-lisp/elint.el (elint-current-buffer, elint-defun):
16811 Add autoload cookies. If necessary, initialize.
16812 (elint-log): Handle non-file buffers.
16813 (elint-initialize): Add optional argument to reinitialize.
16814 (elint-find-builtin-variables): Save excursion.
16815
16816 2009-07-23 Dan Nicolaescu <dann@ics.uci.edu>
16817
16818 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
16819 for Lint.
16820
16821 2009-07-22 Dan Nicolaescu <dann@ics.uci.edu>
16822
16823 * vc.el (vc-print-log-internal): New function, split out from ...
16824 (vc-print-log): ... here.
16825 (vc-dir-move-to-goal-column): Declare.
16826
16827 * vc-git.el (vc-git-add-signoff): New variable.
16828 (vc-git-checkin): Use it.
16829 (vc-git-toggle-signoff): New function.
16830 (vc-git-extra-menu-map): Bind it to menu.
16831 (vc-git--run-command-string): Accept a nil FILE argument.
16832 (vc-git-stash-list): New function.
16833 (vc-git-dir-extra-headers): Use it.
16834
16835 2009-07-23 Glenn Morris <rgm@gnu.org>
16836
16837 * help-fns.el (describe-variable): Describe ignored and risky local
16838 variables in a similar way to that in which we describe safe ones.
16839
16840 * emacs-lisp/bytecomp.el (byte-compile-from-buffer)
16841 (byte-compile-output-file-form, byte-compile-output-docform)
16842 (byte-compile-file-form-defmumble, byte-compile-output-as-comment):
16843 Give some more local variables with common names a "bytecomp-" prefix,
16844 so as not to shadow things during compilation.
16845 * emacs-lisp/cl-macs.el (load-time-value)
16846 * emacs-lisp/cl.el (cl-compiling-file): Update for the name-change
16847 `outbuffer' to `bytecomp-outbuffer'.
16848
16849 * emacs-lisp/elint.el (elint-standard-variables): Remove most members,
16850 since the next two variables cover them automatically now.
16851 (elint-builtin-variables, elint-autoloaded-variables): New.
16852 (elint-unknown-builtin-args): Remove all members, since they can be
16853 parsed automatically now.
16854 (elint-extra-errors): New.
16855 (elint-env-add-env, elint-env-add-macro): Use cadr.
16856 (elint-current-buffer): Use or. Change final message.
16857 (elint-get-top-forms): Use line-end-position.
16858 (elint-init-env): Use cadr. Handle autoload, declare-function,
16859 and defalias.
16860 (elint-add-required-env): Doc fix. Use or. Standardize error.
16861 (regexp-assoc): Remove unused function.
16862 (elint-top-form): Set elint-current-pos, to record the start of the
16863 top-level form, for compilation-mode.
16864 (elint-form): Trap errors in macro expansion. Use dolist.
16865 (elint-unbound-variable): Use elint-builtin-variables and
16866 elint-autoloaded-variables.
16867 (elint-get-args): Use cadr, or.
16868 (elint-check-cond-form): Use dolist, cadr.
16869 (elint-check-condition-case-form): Doc fix. Use cadr.
16870 Use elint-extra-errors.
16871 (elint-log): New function.
16872 (elint-error, elint-warning): Use elint-log for a bytecomp-style format.
16873 Distinguish errors and warnings.
16874 (elint-log-message): Use with-current-buffer. Inhibit read-only.
16875 Use a bytecomp-style format.
16876 (elint-clear-log): Preserve default-directory. Inhibit read-only.
16877 (elint-get-log-buffer): Use compilation mode. Disable undo.
16878 Don't truncate lines.
16879 (elint-initialize): Set builtin and autoloaded variable lists.
16880 Only process elint-unknown-builtin-args if non-nil.
16881 (elint-find-builtin-variables, elint-find-autoloaded-variables):
16882 New functions.
16883 (elint-find-builtin-args): Doc fix. Handle "BODY...)".
16884
16885 2009-07-22 Kevin Ryde <user42@zip.com.au>
16886
16887 * net/newst-backend.el (newsticker--parse-atom-1.0)
16888 (newsticker--parse-rss-0.91, newsticker--parse-rss-0.92)
16889 (newsticker--parse-rss-1.0):
16890 * progmodes/idlwave.el (idlwave-mode):
16891 * progmodes/idlw-shell.el (idlwave-shell-mode):
16892 * progmodes/vera-mode.el (vera-mode):
16893 * progmodes/verilog-mode.el (verilog-auto-inst, verilog-auto):
16894 * progmodes/vhdl-mode.el (vhdl-mode):
16895 * textmodes/table.el (table-generate-source)
16896 (table--warn-incompatibility):
16897 Hyperlink urls in docstrings with URL `...'.
16898
16899 2009-07-22 Glenn Morris <rgm@gnu.org>
16900
16901 * emacs-lisp/advice.el, emacs-lisp/checkdoc.el:
16902 * emacs-lisp/debug.el, emacs-lisp/elp.el, emacs-lisp/gulp.el:
16903 * emacs-lisp/lisp.el, emacs-lisp/pp.el, emacs-lisp/trace.el:
16904 Remove leading * from defcustom docs.
16905
16906 * simple.el (blink-matching-paren-distance): Bump to 100k. (Bug#3889)
16907
16908 * emacs-lisp/shadow.el (shadows-compare-text-p): Remove leading * from
16909 defcustom doc.
16910 (list-load-path-shadows): Optionally, just return shadows as a string.
16911
16912 * mail/emacsbug.el (report-emacs-bug): Include any load-path shadows.
16913
16914 2009-07-21 Chong Yidong <cyd@stupidchicken.com>
16915
16916 * mail/rmailedit.el (rmail-edit-mode): Use
16917 auto-save-include-big-deletions.
16918
16919 * mail/rmail.el (rmail-variables): Use
16920 auto-save-include-big-deletions.
16921
16922 * files.el (auto-save-mode): Revert 2009-07-21 and 2009-07-16
16923 changes.
16924
16925 2009-07-21 Jay Belanger <jay.p.belanger@gmail.com>
16926
16927 * calc/calc.el (calc-undo-length): New variable.
16928 (calc-quit): Truncate rather than eliminate `calc-undo-list'.
16929
16930 2009-07-21 Richard Stallman <rms@gnu.org>
16931
16932 * files.el (auto-save-mode): Handle buffer-save-size = -2
16933 for toggling mode.
16934
16935 2009-07-21 Glenn Morris <rgm@gnu.org>
16936
16937 * textmodes/ispell.el (ispell-looking-back): Update declaration.
16938
16939 * calendar/todo-mode.el (calendar-current-date): Update declaration.
16940
16941 * ps-print.el (ps-jitify, ps-lazify): Remove aliases only used to
16942 silence compiler. Instead...
16943 (jit-lock-fontify-now, lazy-lock-fontify-region): ...Declare.
16944 (ps-print-ensure-fontified): Update for above function name changes.
16945
16946 * printing.el (pr-mh-get-msg-num, pr-mh-show)
16947 (pr-mh-start-of-uncleaned-message): Remove aliases only used to
16948 silence compiler. Instead...
16949 (mh-get-msg-num, mh-show, mh-start-of-uncleaned-message): ...Declare.
16950 (mh-show-buffer): Only define for compiler.
16951 (pr-mh-current-message): Update for above function name changes.
16952
16953 * files.el (abort-if-file-too-large): Explicitly pass `filename'
16954 as an argument.
16955 (find-file-noselect, insert-file-1): Update for above change.
16956
16957 * mail/rmail.el (rmail-retry-ignored-headers): Bump :version.
16958
16959 * mail/mailclient.el (mailclient-send-it): Fix message.
16960
16961 * emacs-lisp/edebug.el (cl-debug-env): Only define for compiler.
16962 (edebug-eval): Check cl-debug-env is bound.
16963 (print-level, print-circle): Don't redefine built-in variables.
16964
16965 * emacs-lisp/cust-print.el: Remove leading * from defcustom docs.
16966 (custom-print-vectors): Remove old comments from doc.
16967
16968 * emerge.el (menu-bar-emerge-menu): Remove unused variable.
16969 (emerge-version): Make the variable an obsolete alias for the
16970 emacs-version variable. Make the function obsolete.
16971 (emerge-fast-keymap, emerge-edit-keymap): Make a separate menu for
16972 Emerge options, rather than merging in into the main Options menu.
16973 (emerge-options-menu): Adjust menu text. Use buttons for skip prefers
16974 and auto advance modes. Disable edit/fast items when not relevant.
16975
16976 2009-07-20 Dan Nicolaescu <dann@ics.uci.edu>
16977
16978 * term/vt420.el (terminal-init-vt420): Fix typo.
16979
16980 2009-07-20 Sam Steingold <sds@gnu.org>
16981
16982 * progmodes/ada-mode.el (compile-auto-highlight): Remove the
16983 variable (removed from compile.el on 2004-03-11).
16984
16985 2009-07-20 Chong Yidong <cyd@stupidchicken.com>
16986
16987 * files.el (hack-local-variables-filter): Fix last change.
16988
16989 2009-07-19 Juri Linkov <juri@jurta.org>
16990
16991 * files.el (ignored-local-variables): Add `dir-local-variables-alist'.
16992 (dir-local-variables-alist): New buffer-local variable.
16993 (hack-local-variables-filter): If variable is not dir-local,
16994 i.e. `dir-name' is nil, then remove it from `dir-local-variables-alist',
16995 because file-local overrides dir-local.
16996 (c-postprocess-file-styles) <declare-function>:
16997 Remove obsolete declaration.
16998 (hack-dir-local-variables): Add dir-local variable/value pair to
16999 `dir-local-variables-alist' and remove duplicates. Doc fix.
17000
17001 * help-fns.el (describe-variable): Add information about
17002 file-local and dir-local variables.
17003
17004 2009-07-19 Chong Yidong <cyd@stupidchicken.com>
17005
17006 * files.el (hack-local-variables-filter): Rewrite.
17007
17008 2009-07-19 Glenn Morris <rgm@gnu.org>
17009
17010 * progmodes/verilog-mode.el (verilog-error-regexp-add-xemacs):
17011 Silence compiler by only defining on XEmacs.
17012
17013 * international/mule.el (auto-coding-regexp-alist): Only match
17014 BABYL... at the start of buffer, not of lines. (Bug#3790)
17015
17016 * calendar/cal-menu.el (cal-menu-set-date-title): Handle calls from
17017 non-calendar buffers (Bug#3862). Restore "not on a date" message.
17018 (cal-menu-context-mouse-menu): Doc fix.
17019
17020 * desktop.el (desktop-buffers-not-to-save): Set :version tag.
17021
17022 * simple.el (mail-user-agent): Doc fix. Set :version tag.
17023
17024 2009-07-18 Juri Linkov <juri@jurta.org>
17025
17026 * info.el: Virtual Info keyword finder.
17027 (add-to-list) <Info-virtual-files>: Add "\\`\\*Finder.*\\*\\'".
17028 (Info-finder-file): New variable.
17029 (Info-finder-find-file): New function.
17030 (finder-known-keywords, finder-package-info)
17031 (find-library-name, lm-commentary): Use defvar and
17032 declare-function to silence compiler warnings.
17033 (Info-finder-find-node): New function.
17034 (info-finder): New command.
17035
17036 * subr.el (process-kill-buffer-query-function): New function.
17037 (add-hook)<kill-buffer-query-functions>: Add hook
17038 `process-kill-buffer-query-function'.
17039
17040 2009-07-18 Alan Mackenzie <acm@muc.de>
17041
17042 * progmodes/cc-mode.el (c-before-hack-hook)
17043 (c-postprocess-file-styles): Give invocation of `c-set-style'
17044 DONT-OVERRIDE parameter of t. Already set style variables will
17045 thus not be overridden by style settings given by `c-file-syle'.
17046
17047 * files.el (hack-local-variables-filter): Remove entries with
17048 duplicate keys from `file-local-variables-alist'.
17049
17050 2009-07-18 Eli Zaretskii <eliz@gnu.org>
17051
17052 * simple.el (deactivate-mark, activate-mark, set-mark): Don't call
17053 x-set-selection if display-selections-p returns nil for the
17054 current frame.
17055
17056 2009-07-18 Chong Yidong <cyd@stupidchicken.com>
17057
17058 * simple.el (region-active-p, use-region-p): Doc fix (Bug#3873).
17059
17060 2009-07-18 Eli Zaretskii <eliz@gnu.org>
17061
17062 * desktop.el (desktop-buffers-not-to-save): Default value is nil.
17063 Accept nil in addition to a regexp.
17064 (desktop-files-not-to-save): Add "(ftp)$" to the default regexp.
17065 Accept nil in addition to a regexp.
17066 (desktop-save-buffer-p): Don't use desktop-buffers-not-to-save for
17067 buffers that have an associated file. Handle nil values of
17068 desktop-buffers-not-to-save and desktop-files-not-to-save.
17069 (Bug#3833)
17070
17071 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
17072 (x-disown-selection-internal): New functions.
17073
17074 2009-07-18 Nick Roberts <nickrob@snap.net.nz>
17075
17076 * progmodes/gdb-mi.el (speedbar-frame): Declare to avoid compiler
17077 warning.
17078 (gdb-breakpoints-header): Move forward to avoid compiler warning.
17079 (gdb-make-header-line-mouse-map): Remove duplicate definition.
17080
17081 2009-07-18 David De La Harpe Golden <david@harpegolden.net>
17082
17083 * simple.el (set-mark): Revert last change.
17084
17085 2009-07-17 Tassilo Horn <tassilo@member.fsf.org>
17086
17087 * doc-view.el (doc-view-initiate-display): Add yes-or-no-p if
17088 rendering of pngs is not possible instead of messaging a long
17089 description.
17090
17091 2009-07-17 David De La Harpe Golden <david@harpegolden.net>
17092
17093 * w32-fns.el (x-selection-owner-p): New function.
17094
17095 * mouse.el (mouse-drag-track): Call deactivate-mark earlier.
17096 (mouse-yank-at-click, mouse-yank-primary): If
17097 select-active-regions is non-nil, deactivate the mark before
17098 insertion.
17099
17100 * simple.el (deactivate-mark, set-mark): Only save selection if we
17101 own it.
17102
17103 2009-07-17 Kenichi Handa <handa@m17n.org>
17104
17105 * case-table.el (describe-buffer-case-table): Fix for the case
17106 that KEY is a cons.
17107
17108 2009-07-16 Dan Nicolaescu <dann@ics.uci.edu>
17109
17110 * vc-rcs.el (vc-rcs-find-file-hook):
17111 * vc-sccs.el (vc-sccs-find-file-hook): Fix cut and paste error.
17112
17113 2009-07-16 Michael Albinus <michael.albinus@gmx.de>
17114
17115 * net/tramp.el (tramp-wait-for-output): Handle the case when
17116 commands do not return a newline but a null byte before the shell
17117 prompt. (Bug#3858)
17118
17119 2009-07-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17120
17121 * term/ns-win.el (ns-set-alpha): Don't declare.
17122 (ns-set-background-alpha): Remove function.
17123
17124 2009-07-16 Kevin Ryde <user42@zip.com.au>
17125
17126 * emacs-lisp/copyright.el (copyright-update): Save match-data across
17127 y-or-n-p, for safety.
17128
17129 2009-07-16 Richard Stallman <rms@gnu.org>
17130
17131 * files.el (auto-save-mode): If buffer-saved-size is -2,
17132 don't clobber it.
17133
17134 * mail/rmail.el (rmail-variables): Set buffer-saved-size to -2.
17135 (rmail-retry-ignored-headers): Add more uninteresting fields.
17136
17137 2009-07-15 Jari Aalto <jari.aalto@cante.net>
17138
17139 * net/rcirc.el (rcirc): Use history variables.
17140 (rcirc-server-name-history, rcirc-nick-name-history)
17141 (rcirc-server-port-history): New variables.
17142
17143 2009-07-15 Kenichi Handa <handa@m17n.org>
17144
17145 * international/mule-cmds.el (set-language-environment-charset):
17146 If coding-system-charset-list returns `iso-2022' or `emacs-mule',
17147 ignore them.
17148
17149 * language/misc-lang.el ("IPA"): Change coding systems to utf-8.
17150 Delete unibyte-display.
17151
17152 2009-07-15 Chong Yidong <cyd@stupidchicken.com>
17153
17154 * simple.el (kill-visual-line): Obey kill-whole-line (Bug#3695).
17155
17156 2009-07-15 Chong Yidong <cyd@stupidchicken.com>
17157
17158 * simple.el (deactivate-mark): Optional argument FORCE.
17159 (set-mark): Use deactivate-mark.
17160
17161 * info.el (Info-search): No need to check transient-mark-mode
17162 before calling deactivate-mark.
17163
17164 * select.el (x-set-selection): Doc fix.
17165 (x-valid-simple-selection-p): Allow buffer values.
17166 (xselect--selection-bounds): Handle buffer values. Suggested by
17167 David De La Harpe Golden.
17168
17169 * mouse.el (mouse-set-region, mouse-drag-track): Call
17170 copy-region-as-kill before setting the mark, to let
17171 select-active-regions work.
17172
17173 2009-07-15 David De La Harpe Golden <david@harpegolden.net>
17174
17175 * simple.el (deactivate-mark): If select-active-regions is
17176 non-nil, copy the selection data into a string.
17177 (activate-mark): If select-active-regions is non-nil, set the
17178 selection to the current buffer.
17179 (set-mark): Update selection if select-active-regions is non-nil.
17180
17181 * select.el (x-valid-simple-selection-p): Allow buffer values.
17182
17183 2009-07-14 Stefan Monnier <monnier@iro.umontreal.ca>
17184
17185 * simple.el (mail-user-agent): Default to the upwardly-UI-compatible
17186 and more featureful message-mode.
17187
17188 2009-07-14 Chong Yidong <cyd@stupidchicken.com>
17189
17190 * select.el (x-set-selection): Doc fix.
17191 (x-valid-simple-selection-p): Disallow selection data consisting
17192 of a list or cons of integers, since that is not used.
17193 (xselect--selection-bounds, xselect--int-to-cons): New functions.
17194 (xselect-convert-to-string, xselect-convert-to-length)
17195 (xselect-convert-to-filename, xselect-convert-to-charpos)
17196 (xselect-convert-to-lineno, xselect-convert-to-colno): Use them.
17197
17198 2009-07-14 Dmitry Dzhus <dima@sphinx.net.ru>
17199
17200 * progmodes/gdb-mi.el (json-partial-output): Fix broken GDB/MI
17201 output in -break-info command (Emacs bug #3794).
17202
17203 2009-07-14 Glenn Morris <rgm@gnu.org>
17204
17205 * emacs-lisp/edebug.el (edebug-setup-hook, edebug-all-forms)
17206 (edebug-eval-macro-args, edebug-save-displayed-buffer-points)
17207 (edebug-print-length, edebug-print-level, edebug-print-circle)
17208 (edebug-sit-for-seconds, edebug-view-outside)
17209 (edebug-bounce-point, edebug-set-global-break-condition)
17210 (edebug-Go-nonstop-mode, edebug-trace-mode)
17211 (edebug-Trace-fast-mode, edebug-continue-mode)
17212 (edebug-Continue-fast-mode, edebug-forward-sexp, edebug-help)
17213 (edebug-visit-eval-list): Doc fixes.
17214
17215 * subr.el (def-edebug-spec): Doc fix.
17216
17217 2009-07-14 Kenichi Handa <handa@m17n.org>
17218
17219 * international/characters.el: Fix setting of category ?C.
17220
17221 2009-07-13 Jan Djärv <jan.h.d@swipnet.se>
17222
17223 * term/ns-win.el (x-select-font): defalias x-select-font to
17224 ns-popup-font-panel instead of generate-fontset-menu.
17225
17226 2009-07-12 Eli Zaretskii <eliz@gnu.org>
17227
17228 * desktop.el (desktop-buffers-not-to-save): Remove ".log". (Bug#3833)
17229
17230 2009-07-12 Peter Jolly <peter@jollys.org> (tiny change)
17231
17232 * arc-mode.el (archive-find-type): Allow for a PK00 string before
17233 the PK\003\004 header (Bug#3770).
17234
17235 2009-07-12 Guanpeng Xu <herberteuler@hotmail.com>
17236
17237 * pcomplete.el (pcomplete-comint-setup): Check for
17238 shell-dynamic-complete-filename too.
17239
17240 2009-07-11 Chong Yidong <cyd@stupidchicken.com>
17241
17242 * simple.el (temporary-goal-column): Change the value for
17243 line-move-visual to a cons cell.
17244 (line-move-visual): Record or set the window hscroll, if
17245 necessary (Bug#3494).
17246 (line-move-1): Handle cons value of temporary-goal-column.
17247
17248 2009-07-11 Kenichi Handa <handa@m17n.org>
17249
17250 * international/mule-diag.el (describe-character-set): Don't show
17251 width.
17252
17253 2009-07-10 Sam Steingold <sds@gnu.org>
17254
17255 * progmodes/compile.el (compilation-mode-font-lock-keywords):
17256 Omake sometimes indents the errors it prints, so allow all
17257 regexps to start with spaces.
17258
17259 2009-07-10 Eli Zaretskii <eliz@gnu.org>
17260
17261 * cus-edit.el (customize-changed-options-previous-release):
17262 Bump value to 22.1. (Bug#3804)
17263
17264 2009-07-08 Sam Steingold <sds@gnu.org>
17265
17266 * progmodes/grep.el (rgrep): Allow grep-find-ignored-directories
17267 to be a cons cell (test . ignored-directory) to selectively ignore
17268 some directories depending on the location of the search.
17269
17270 2009-07-08 Michael Albinus <michael.albinus@gmx.de>
17271
17272 * net/tramp.el (tramp-set-file-uid-gid): Handle the case the
17273 remote user is root, on the local host.
17274 (tramp-local-host-p): Either the local user or the remote user
17275 must be root. (Bug#3771)
17276
17277 2009-07-08 Nick Roberts <nickrob@snap.net.nz>
17278
17279 * progmodes/gdb-mi.el (gdb): Remove description of
17280 gdb-use-separate-io-buffer.
17281 (menu): Don't allow toggling of or enable
17282 gdb-use-separate-io-buffer from menubar.
17283
17284 2009-07-08 E. Jay Berkenbilt <ejb@ql.org> (tiny change)
17285
17286 * mail/unrmail.el (unrmail): Make sure the message ends with two
17287 newlines (Bug#3769).
17288
17289 2009-07-08 Glenn Morris <rgm@gnu.org>
17290
17291 * calendar/calendar.el (calendar-current-date): Rework previous change.
17292
17293 2009-07-08 Ed Reingold <reingold@emr.cs.iit.edu>
17294
17295 * calendar/calendar.el (calendar-current-date):
17296 Add an optional argument giving an offset from today.
17297
17298 2009-07-08 Glenn Morris <rgm@gnu.org>
17299
17300 * tutorial.el (tutorial--describe-nonstandard-key):
17301 Adjust the message for when a key has been unbound.
17302 (help-with-tutorial): Hide the arch-tag.
17303
17304 2009-07-08 Kenichi Handa <handa@m17n.org>
17305
17306 * international/fontset.el (setup-default-fontset): For each
17307 script, append (not set) font-specs.
17308
17309 * language/japanese.el (japanese-shift-jis-2004): Fix typo in the
17310 docstring.
17311
17312 2009-07-08 Nick Roberts <nickrob@snap.net.nz>
17313
17314 * progmodes/gdb-mi.el (gdb-init-1): Move sending
17315 -data-list-register-names to ...
17316 (gdb-starting): ... here because GDB 7.0 requires execution to
17317 have started when using this MI command.
17318 (gdb-set-header): New function to distinguish select and
17319 unselected tabs in gdb buffers.
17320 (gdb-propertize-header): New macro that uses gdb-set-header.
17321 (gdb-breakpoints-header, gdb-locals-header): Use it.
17322 (gdb-disassembly-mode-map): Add keybinding to kill buffer.
17323
17324 2009-07-07 Chong Yidong <cyd@stupidchicken.com>
17325
17326 * Makefile.in (ELCFILES): Remove fadr.elc.
17327
17328 2009-07-07 Dmitry Dzhus <dima@sphinx.net.ru>
17329
17330 * progmodes/gdb-mi.el (gdb-init-1): Disassembly buffer mode name
17331 may contain frame information, so `string-match' should be used.
17332 (gdb-update): Disassembly is invalidated through
17333 `gdb-get-selected-frame'.
17334 (gdb-pad-string): New function to pad string with spaces.
17335 (gdb-invalidate-disassembly): Invalidate only if the buffer
17336 exists.
17337 (gdb-disassembly-handler-custom): Column alignment.
17338 (gdb-disassembly-place-breakpoints): Clear old breakpoints before
17339 placing new ones.
17340 (gdb-toggle-breakpoint, gdb-delete-breakpoint): Now work from the
17341 end of line, too.
17342 (gdb-frame-handler): Match convention to for disassembly buffer
17343 mode name.
17344 (gdb-stack-list-frames-handler): Rewritten without regexps.
17345 (gdb-breakpoints-list-handler-custom): y/n instead of on/off; do
17346 not highlight breakpoints without line information.
17347 (gdb-input): Add trailing newline to command.
17348
17349 * progmodes/gdb-mi.el (gdb-init-1): Set mode name for disassembly
17350 buffer properly.
17351 (gdb-breakpoints-list-handler-custom): Replacement for
17352 `gdb-break-list-handler'. Using real parser instead of regexps
17353 now.
17354 (gdb-place-breakpoints): Replacement for `gdb-break-list-custom'.
17355 Use `gdb-breakpoints-list' instead of parsing breakpoints buffer
17356 to place breakpoints.
17357 (def-gdb-memory-unit): A new macro to define gdb-memory-unit-..
17358 functions.
17359 (gdb-disassembly-handler-custom): Show overlay arrow.
17360 (gdb-disassembly-place-breakpoints): Show breakpoints in
17361 disassembly buffer.
17362 (gdb-toggle-breakpoint, gdb-delete-breakpoint)
17363 (gdb-goto-breakpoint): Using `gdb-breakpoint' text properties
17364 instead of parsing breakpoints buffer. Fixed old menu references
17365 in `gud-menu-map'.
17366
17367 * fadr.el: Remove.
17368
17369 * progmodes/gdb-mi.el: Port memory buffer from gdb-ui.el.
17370 (gdb-memory-address): New variable which holds top address of
17371 memory page shown in memory buffer.
17372 (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit): New
17373 customization variables.
17374 New functions:
17375 (gdb-display-memory-buffer, gdb-frame-memory-buffer): Functions to
17376 display the memory buffer.
17377 (gdb-memory-set-address, gdb-memory-set-repeat-count): Set memory
17378 buffer display parameters.
17379 (def-gdb-memory-format, gdb-memory-format-binary)
17380 (gdb-memory-format-octal, gdb-memory-format-unsigned)
17381 (gdb-memory-format-signed, gdb-memory-format-hexadecimal):
17382 Functions for setting memory buffer format.
17383 (gdb-memory-unit-word, gdb-memory-unit-halfword)
17384 (gdb-memory-unit-giant, gdb-memory-unit-byte): Functions to set
17385 unit size used in memory buffer.
17386 (gdb-memory-show-next-page, gdb-memory-show-previous-page): Switch
17387 to next/previous page of memory buffer.
17388 Now using (bindat-get-field) instead of fadr functions.
17389
17390 2009-07-07 Sam Steingold <sds@gnu.org>
17391
17392 * vc-cvs.el (vc-cvs-merge-news): Fix message parsing for
17393 non-top-level files.
17394
17395 2009-07-07 Kenichi Handa <handa@m17n.org>
17396
17397 * international/mule-cmds.el (reset-language-environment): Put
17398 the highset priority to the charset iso-8859-1.
17399
17400 2009-07-06 Chong Yidong <cyd@stupidchicken.com>
17401
17402 * progmodes/hideshow.el (hs-hide-block-at-point): Don't move point
17403 to the end of the line when locating the block (Bug#700).
17404
17405 2009-07-06 Michael Albinus <michael.albinus@gmx.de>
17406
17407 * net/tramp.el (tramp-handle-write-region): Flush file properties
17408 in case of short track.
17409
17410 2009-07-06 Michael McNamara <mac@mail.brushroad.com>
17411
17412 * progmodes/verilog-mode.el (verilog-error-regexp-emacs-alist):
17413 Coded custom representation of verilog error regular expressions
17414 to work with Emacs-22's new format.
17415 (verilog-error-regexp-xemacs-alist): Coded custom representation
17416 of verilog error regular expressions to work with XEmacs format.
17417 (verilog-error-regexp-add-xemacs): Hook routine to install verilog
17418 error recognition into XEmacs.
17419 (verilog-error-regexp-add-emacs): Hook routine to install verilog
17420 error recognition into Emacs-22.
17421
17422 2009-07-06 Chong Yidong <cyd@stupidchicken.com>
17423
17424 * woman.el: Remove stand-alone closing parentheses.
17425 (woman-file-name, woman2-format-paragraphs)
17426 (woman-leave-blank-lines): Code cleanup.
17427 (woman-use-own-frame): Change default to nil.
17428 (woman-italic, woman-bold, woman-unknown, woman-addition): Change
17429 defaults to inherit from default faces.
17430 (woman2-process-escapes): Consume the newline after a stand-alone
17431 filler character (Bug#3651).
17432
17433 2009-07-06 Glenn Morris <rgm@gnu.org>
17434
17435 * ffap.el (ffap-version): Make it an obsolete alias for emacs-version.
17436 (top-level): Move provide to the end.
17437 (ffap): Remove defunct URL from custom group.
17438
17439 * subr.el (eval-after-load): Doc fix.
17440
17441 2009-07-06 Vincent Belaïche <vincent.belaiche@gmail.com>
17442
17443 * calc/calc-embed.el (calc-embedded-make-info): Don't force when
17444 `calc-embedded-word' is called twice.
17445
17446 2009-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
17447
17448 * files.el (find-alternate-file-other-window, find-alternate-file):
17449 Obey confirm-nonexistent-file-or-buffer.
17450
17451 2009-07-05 Michael Albinus <michael.albinus@gmx.de>
17452
17453 * dired-aux.el (dired-show-file-type): Handle remote files.
17454
17455 2009-07-05 Jari Aalto <jari.aalto@cante.net>
17456
17457 * desktop.el (desktop-globals-to-save):
17458 Add file-name-history (Bug#2750).
17459
17460 2009-07-05 Chong Yidong <cyd@stupidchicken.com>
17461
17462 * add-log.el (add-log-current-defun-header-regexp): Doc fix (Bug#2217).
17463
17464 2009-07-04 Johan Bockgård <bojohan@gnu.org>
17465
17466 * eshell/esh-arg.el (eshell-parse-argument-hook): Put `number'
17467 property on entire argument since this is what eshell-lisp-command
17468 expects.
17469
17470 2009-07-03 Michael Albinus <michael.albinus@gmx.de>
17471
17472 * net/tramp-gvfs.el (tramp-gvfs-methods)
17473 (tramp-gvfs-zeroconf-domain)
17474 (tramp-bluez-discover-devices-timeout): Add version flag.
17475 (tramp-gvfs-handler-mounted-unmounted)
17476 (tramp-gvfs-connection-mounted-p): Polish handling of
17477 incompatibilities between GVFS 0.2 and 1.0.
17478
17479 2009-07-03 Jan Djärv <jan.h.d@swipnet.se>
17480
17481 * cus-start.el (all): Add make-pointer-invisible.
17482
17483 2009-07-03 Jay Belanger <jay.p.belanger@gmail.com>
17484
17485 * calc/calc-math.el (math-use-emacs-fn): Make sure that the number is
17486 formatted correctly.
17487
17488 2009-07-02 Juri Linkov <juri@jurta.org>
17489
17490 * info.el: Virtual Info files and nodes.
17491 (Info-virtual-files, Info-virtual-nodes): New variables.
17492 (Info-current-node-virtual): New variable.
17493 (Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
17494 New functions.
17495 (Info-file-supports-index-cookies): Use Info-virtual-file-p
17496 to check for a virtual file instead of checking a fixed list
17497 of node names.
17498 (Info-find-file): Use Info-virtual-fun and Info-virtual-call
17499 instead of ad-hoc processing of "dir" and (apropos history toc).
17500 (Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
17501 instead of ad-hoc processing of "dir" and (apropos history toc).
17502 Reread a file when moving from a virtual node.
17503 (add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
17504 (Info-directory-toc-nodes, Info-directory-find-file)
17505 (Info-directory-find-node): New functions.
17506 (add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
17507 (Info-history): Move part of code to
17508 `Info-history-find-node'.
17509 (Info-history-toc-nodes, Info-history-find-file)
17510 (Info-history-find-node): New functions.
17511 (add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
17512 (Info-toc): Move part of code to `Info-toc-find-node'.
17513 (Info-toc-find-node): New function.
17514 (Info-toc-insert): Rename from `Info-insert-toc'. Don't insert
17515 the current Info file name to references because now the node
17516 "*TOC*" belongs to the same Info manual.
17517 (Info-toc-build): Rename from `Info-build-toc'.
17518 (Info-toc-nodes): Rename input argument `file' to `filename'.
17519 Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
17520 instead of ad-hoc processing of ("dir" apropos history toc).
17521 (Info-index-nodes): Use Info-virtual-file-p
17522 to check for a virtual file instead of checking a fixed list
17523 of node names.
17524 (Info-index-node): Add check for `Info-current-node-virtual'.
17525 Raise `save-match-data' higher up the tree to contain
17526 `search-forward' too (bug fix).
17527 (add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
17528 (Info-virtual-index-nodes): New variable.
17529 (Info-virtual-index-find-node, Info-virtual-index): New functions.
17530 (add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
17531 (Info-apropos-file, Info-apropos-nodes): New variables.
17532 (Info-apropos-toc-nodes, Info-apropos-find-file)
17533 (Info-apropos-find-node, Info-apropos-matches): New functions.
17534 (info-apropos): Move part of code to `Info-apropos-find-node' and
17535 `Info-apropos-matches'.
17536 (Info-mode-map): Bind "I" to `Info-virtual-index'.
17537 (Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
17538 for a virtual file instead of checking a fixed list of node names.
17539
17540 * simple.el (async-shell-command): New command.
17541
17542 * bindings.el (esc-map): Bind "&" to `async-shell-command'.
17543
17544 * net/tramp-gvfs.el (tramp-gvfs-connection-mounted-p): Use `elt'
17545 instead of `mount-info'.
17546
17547 2009-07-02 Michael Albinus <michael.albinus@gmx.de>
17548
17549 * net/tramp-gvfs.el (tramp-gvfs-handler-mounted-unmounted)
17550 (tramp-gvfs-connection-mounted-p): Handle changed mount-info interface.
17551
17552 2009-07-02 Kenichi Handa <handa@m17n.org>
17553
17554 * international/mule.el (set-keyboard-coding-system): Force *-unix
17555 coding-system to avoid eol conversion.
17556
17557 2009-07-01 Michael Albinus <michael.albinus@gmx.de>
17558
17559 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
17560 Add handler for `process-file', `shell-command' and
17561 `start-file-process'.
17562 (tramp-gvfs-handle-shell-command)
17563 (tramp-gvfs-handle-start-file-process)
17564 (tramp-gvfs-handle-process-file): New defuns.
17565 (tramp-synce-list-devices): Simplify check for existence of property.
17566
17567 2009-07-01 Jan Djärv <jan.h.d@swipnet.se>
17568
17569 * startup.el (command-line-x-option-alist): Add -mm and --maximized.
17570
17571 2009-07-01 Eduard Wiebe <usenet@pusto.de> (tiny change)
17572
17573 * language/korean.el (set-language-info-alist): Add korean-cp949,
17574 cp949 to spec.
17575
17576 2009-07-01 Kenichi Handa <handa@m17n.org>
17577
17578 * Makefile.in (ELCFILES): Delete encoded-kb.elc.
17579
17580 * international/encoded-kb.el: Deleted.
17581
17582 * international/mule.el (set-keyboard-coding-system): Perform the
17583 necessary setup here instead of calling encoded-kbd-setup-display.
17584
17585 2009-07-01 Glenn Morris <rgm@gnu.org>
17586
17587 * progmodes/f90.el (f90-break-delimiters, f90-no-break-re): Doc fixes.
17588
17589 2009-07-01 Evangelos Evangelou <vangelis@email.unc.edu> (tiny change)
17590
17591 * progmodes/f90.el (f90-no-break-re): Add "(/" and "/)". (Bug#3730)
17592
17593 2009-06-30 Michael Albinus <michael.albinus@gmx.de>
17594
17595 * net/tramp.el (tramp-do-copy-or-rename-file-directly):
17596 Handle also the 'rename case, when setting file modes. (Bug#3712)
17597 (tramp-default-file-modes): Remove execute permissions.
17598
17599 * net/tramp-gvfs.el (tramp-gvfs-methods): Add "synce" method.
17600 (top): Add a default for "synce" in `tramp-default-user-alist'.
17601 Add completion function for "synce" method.
17602 (tramp-hal-service, tramp-hal-path-manager)
17603 (tramp-hal-interface-manager, tramp-hal-interface-device):
17604 New defconst.
17605 (tramp-gvfs-connection-mounted-p): Handle empty user name for synce.
17606 (tramp-synce-list-devices, tramp-synce-parse-device-names):
17607 New defuns.
17608
17609 * net/trampver.el: Update release number.
17610
17611 2009-06-30 Kenichi Handa <handa@m17n.org>
17612
17613 * international/fontset.el (setup-default-fontset): Add CJK fonts
17614 for symbols and the other miscellaneous characters.
17615
17616 * language/korea-util.el (setup-korean-environment-internal):
17617 Make char-width-table suitable for Korean environments.
17618 (exit-korean-environment): Cancel above.
17619
17620 * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
17621 ("Chinese-CNS", "Chinese-EUC-TW", "Chinese-GBK"): Add a
17622 setup-function to make char-width-table suitable for respective
17623 environments, and an exit-function to cancel that.
17624
17625 * language/japan-util.el (setup-japanese-environment-internal):
17626 Call use-cjk-char-width-table with arg `ja_JP'.
17627
17628 * international/characters.el (cjk-char-width-table): Delete it.
17629 (cjk-char-width-table-list): New variable.
17630 (use-cjk-char-width-table): New arg local-name.
17631 (use-default-char-width-table): Fix for the case that Emacs is
17632 already using the default char-width-table.
17633
17634 2009-06-29 Michael Albinus <michael.albinus@gmx.de>
17635
17636 * net/tramp.el (tramp-do-copy-or-rename-file-directly): Set file
17637 modes mandatory. (Bug#3712)
17638
17639 2009-06-29 Alan Mackenzie <acm@muc.de>
17640
17641 * progmodes/cc-cmds.el (c-mask-paragraph): Remove a spurious
17642 correction between the visible width of TABs and their number of bytes.
17643
17644 2009-06-29 Chong Yidong <cyd@stupidchicken.com>
17645
17646 * server.el (server-buffer-done): Prevent kill-buffer from
17647 prompting by clearing the buffer modification flag (Bug#3696).
17648
17649 2009-06-28 Michael McNamara <mac@mail.brushroad.com>
17650
17651 * progmodes/verilog-mode.el (verilog-beg-of-statement)
17652 (verilog-endcomment-reason-re): Support unique case and priority case.
17653 (verilog-basic-complete-re): Support localparam lineup.
17654 (verilog-beg-of-statement-1): Fix for robustness, unique case.
17655 (verilog-set-auto-endcomments): Fix for unique case, always_comb
17656 commenting.
17657 (verilog-leap-to-case-head): Now support *nested* unique &
17658 priority case statements.
17659 (verilog-auto-lineup): Make just declarations the default (as it
17660 had been).
17661 (verilog-leap-to-case-head): Support priority/unique case statements.
17662 (verilog-auto-lineup): Rework to give users radio buttons to
17663 select the various styles of automatic lineup.
17664 (verilog-error-regexp-alist): Rework to support the XEmacs style
17665 of error regular expressions from compilers, lint tools &
17666 simulators. Note that GNU Emacs has made it impossible for a mode
17667 to load such things.
17668 (electric-verilog-terminate-line, verilog-indent-declaration)
17669 (verilog-auto-wiure): Rework for radio button selection of
17670 auto-lineup selection of specification of auto lineup.
17671 (verilog-beg-of-statement-1): Redesign to support proper operation
17672 in additional code, based on testing with auto-lineup.
17673 (verilog-calculate-indent, assignments & declarations)
17674 (verilog-backward-token): Enhance to support auto-lineup of
17675 assignments & declarations.
17676 (verilog-in-directive-p, verilog-at-struct-p): New function for
17677 easy test of whether we are.
17678 (verilog-pretty-declarations, verilog-pretty-expr): Massive rework
17679 to support safe execution at almost anyline.
17680 (verilog-calc-1): Properly support indenting deep inside generate
17681 blocks.
17682 (verilog-init-font): Remove definition & use of verilog-init-font,
17683 as it is redundant with font-lock-defaults.
17684 (verilog-mode): Alter the definition of verilog-font-lock-defaults
17685 to avoid circular calls if syntax-ppss is a function (as is the
17686 case now in 22.x GNU Emacs) as that function would sometimes call
17687 itself, leading to (nearly) infinite recursion.
17688 (verilog-ovm-begin-re, verilog-ovm-end-re)
17689 (verilog-ovm-statement-re, verilog-leap-to-head)
17690 (verilog-backward-token): Add support for OVM macros. Some are
17691 complete statements, and others open and close scopes like begin
17692 and end.
17693 (verilog-defun-level-not-generate-re, verilog-defun-level-re)
17694 (verilog-defun-level-generate-only-re): Really fix the defun-list
17695 compilation issue.
17696 (verilog-calc-1, verilog-beg-of-statement): Enhance support for
17697 coverpoint, constraint and cross statements.
17698 (verilog-defun-level-list, verilog-generate-defun-level-list)
17699 (verilog-all-defun-level-list): Redo these specifications - it is
17700 too hard to support eval-when compile aggregation of lists also
17701 built at when-compile time.
17702 (verilog-defun-level-list): Place defconsts of variables used in
17703 building regular expressions which are built in eval-when-compile
17704 bodies in the same eval-when-compile body to facilitate compile
17705 without load.
17706 (verilog-beg-block-re-ordered): Support indenting
17707 virtual/protected tasks and functions.
17708 (verilog-defun-level-list, verilog-in-generate-region-p)
17709 (verilog-backward-ws&directives, verilog-calc-1): Speed up
17710 indentation of some module items (generate items).
17711 (verilog-forward-sexp, verilog-leap-to-head): Support stepping
17712 across virtual/protected tasks and functions.
17713
17714 2009-06-28 Wilson Snyder <wsnyder@wsnyder.org>
17715
17716 * progmodes/verilog-mode.el (verilog-auto-arg, verilog-auto-arg-sort):
17717 Allow sorting AUTOARG lists. Suggested by Andrea Fedeli.
17718 (verilog-read-sub-decls-line): Fix AUTOWIRE signals getting lost
17719 in concatenations. Reported by Yishay Belkind.
17720 (verilog-auto-ascii-enum): Support one-hot state machines in
17721 AUTOASCIIENUM. Suggested by Lloyd Gomez.
17722 (verilog-auto-inst, verilog-auto-inst-port): Include interface
17723 modport in AUTOINST and add vl-modport for users. Reported by
17724 David Rogoff.
17725 (verilog-auto-inout-module, verilog-auto-inst)
17726 (verilog-decls-get-interfaces, verilog-insert-definition)
17727 (verilog-insert-one-definition, verilog-read-decls)
17728 (verilog-read-sub-decls, verilog-read-sub-decls-sig)
17729 (verilog-sig-modport, verilog-signals-combine-bus)
17730 (verilog-subdecls-get-interfaces): Fix expansion of SystemVerilog
17731 interfaces in AUTOINOUTMODULE, AUTOINOUTCOMP, and AUTOINST.
17732 Suggested by David Rogoff.
17733 (verilog-repair-open-comma): Fix non-insertion of comma when
17734 `DEFINE occurs in V2K argument list. Reported by Lane Brooks.
17735 (verilog-make-width-expression): Simplify [A-1:0] expression
17736 widths to just {A{1'b0}}.
17737 (verilog-mode): Cleanup checkdoc warnings.
17738 (verilog-auto-inout-module, verilog-signals-matching-dir-re):
17739 Add third optional regexp to AUTOINOUTMODULE to allow selecting only
17740 inputs/outputs or data type. Suggested by Vasu Kandadi.
17741 (next-error-last-buffer): Fix byte-compiler warning.
17742 (verilog-auto, verilog-auto-insert-lisp, verilog-auto-inst)
17743 (verilog-delete-auto): Add AUTOINSERTLISP to insert arbitrary lisp
17744 or shell command text during AUTO expansion. Suggested by Tad Truex.
17745 (verilog-read-sub-decls-expr, verilog-read-sub-decls-line)
17746 (verilog-read-sub-decls-sig, verilog-symbol-detick-text):
17747 Fix dotted nets {a.b,c.d} and excaped identifiers being mis-included
17748 in AUTOINOUT. Reported by Matthew Lovell.
17749 (verilog-read-always-signals-recurse): Fix AUTORESET "if (a<=b)"
17750 causing use of <= assignments. Reported by Alex Reed.
17751 (verilog-read-decls): Fix triand, trior, wand, wor to be
17752 recognized by AUTOWIRE. Reported by Spencer Isaacson.
17753 (verilog-extended-complete-re): Support import "DPI-C" functions.
17754 (verilog-read-always-signals-recurse): Fix AUTORESET of "x <=
17755 y[a+1:a+1]" to not include a in reset list. Reported by Dan Dever.
17756 (verilog-insert-date, verilog-insert-year)
17757 (verilog-sk-header-tmpl): Fix verilog-header inserting error on
17758 Windows systems. Reported by Michael Potts.
17759 (verilog-read-module-name): Fix AUTOINST when the child module
17760 declaration's name is a tick define. Reported by Elliot Mednick.
17761 (verilog-read-decls): Fix V2K parameter bit subscripts getting
17762 passed to next parameter's definition. Reported by Bruce T.
17763 (verilog-read-decls): Fix detecting "parameter int" when using
17764 AUTOINSTPARAM. Reported by Bruce T.
17765 (verilog-goto-defun): Fix goto not finding modules unless first
17766 perform a verilog-auto expansion. Suggested by Lawrence Butcher.
17767 (verilog-mode): Expand -f flag arguments on entry to mode so
17768 verilog-goto-defun will work. Reported by Lawrence Butcher.
17769 (verilog-getopt): Expand environment variables in -f file
17770 arguments. Suggested by Lawrence Butcher.
17771 (verilog-set-define): Fix "Symbol's value as variable is void"
17772 when reading enumerations.
17773 (verilog-auto-ascii-enum): Fix duplicate labels in AUTOASCIIENUM.
17774 Suggested by Stephen Peltan.
17775 (verilog-read-defines): Fix reading of enumerations in include
17776 files. Reported by Steve Peltan.
17777
17778 2009-06-28 David De La Harpe Golden <david@harpegolden.net>
17779
17780 * files.el (trash-directory): Fix defcustom type.
17781
17782 2009-06-28 Juri Linkov <juri@jurta.org>
17783
17784 * help-fns.el (describe-function-1): Correctly locate adviced
17785 functions in hyperlink (Bug#2438).
17786
17787 2009-06-28 Chong Yidong <cyd@stupidchicken.com>
17788
17789 * files.el (trash-directory): Change default to nil.
17790 (move-file-to-trash): If trash-directory is nil and
17791 system-move-file-to-trash is unbound, perform freedesktop-style
17792 trashing.
17793
17794 2009-06-28 David De La Harpe Golden <david@harpegolden.net>
17795
17796 * files.el (move-file-to-trash): Add freedesktop trash
17797 support (Bug#973).
17798
17799 2009-06-28 Glenn Morris <rgm@gnu.org>
17800
17801 * autorevert.el (global-auto-revert-non-file-buffers)
17802 (global-auto-revert-mode): Doc fixes.
17803
17804 2009-06-27 Johan Bockgård <bojohan@gnu.org>
17805
17806 * emacs-lisp/cl-specs.el (defstruct): Fix :conc-name spec.
17807
17808 2009-06-27 Chong Yidong <cyd@stupidchicken.com>
17809
17810 * faces.el (x-handle-named-frame-geometry): Ensure that we have
17811 opened an X connection before calling x-get-resource (Bug#3194).
17812
17813 * play/doctor.el: Remove reference to obsolete website.
17814 (make-doctor-variables): Correct grammar mistake (Bug#2633).
17815
17816 2009-06-26 Dan Nicolaescu <dann@ics.uci.edu>
17817
17818 Remove find-file-not-found-hook VC method. (Bug#2757)
17819 * vc-hooks.el (vc-file-not-found-hook)
17820 (vc-default-find-file-not-found-hook): Remove functions.
17821 (find-file-not-found-functions): Do not add vc-file-not-found-hook.
17822 * vc-rcs.el (vc-rcs-find-file-not-found-hook): Remove function.
17823 * vc.el:
17824 * vc-hg.el:
17825 * vc-git.el: Do not mention find-file-not-found-hook VC method.
17826
17827 2009-06-25 Agustín Martín <agustin.martin@hispalinux.es>
17828
17829 * textmodes/ispell.el: Add `ispell-looking-back' XEmacs
17830 compatibility function for `looking-back'.
17831
17832 * textmodes/flyspell.el (sgml-mode-flyspell-verify):
17833 Use `ispell-looking-back'.
17834
17835 2009-06-24 Michael Albinus <michael.albinus@gmx.de>
17836
17837 * net/tramp-gvfs.el (tramp-gvfs-handle-make-directory): Use `dir'
17838 rather than `filename'.
17839
17840 2009-06-23 Miles Bader <miles@gnu.org>
17841
17842 * face-remap.el (text-scale-set): New function.
17843
17844 2009-06-23 Glenn Morris <rgm@gnu.org>
17845
17846 * pcmpl-rpm.el (pcomplete/rpm): Doc fix.
17847
17848 * bindings.el (mode-line-modified): Fix case of "Buffer is modified".
17849
17850 * textmodes/ispell.el (ispell-local-dictionary): Doc fix.
17851
17852 * progmodes/gdb-mi.el (gud-remove, gud-break): Update declarations.
17853
17854 * calendar/cal-dst.el (calendar-time-zone-daylight-rules):
17855 Simplify Persian conditionals.
17856
17857 * calc/calc-graph.el (calc-graph-plot): Avoid assignment to free
17858 variable `filename'.
17859
17860 * comint.el (comint-insert-input): Doc fix.
17861
17862 * Makefile.in (ELCFILES): Fix typo in previous change.
17863
17864 2009-06-23 Miles Bader <miles@gnu.org>
17865
17866 * cus-start.el: Add entry for `recenter-redisplay'.
17867
17868 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
17869
17870 * vc-hooks.el (vc-stay-local-p, vc-state, vc-working-revision):
17871 Add an optional argument for the backend, use it instead of
17872 calling vc-backend.
17873 (vc-mode-line): Add an optional argument for the backend.
17874 Pass the backend to vc-state and vc-working-revision. Move code for
17875 special handling for vc-state being a buffer to ...
17876
17877 * vc-rcs.el (vc-rcs-find-file-hook):
17878 * vc-sccs.el (vc-sccs-find-file-hook): ... here. New functions.
17879
17880 * vc-svn.el (vc-svn-state, vc-svn-dir-status, vc-svn-checkout)
17881 (vc-svn-print-log, vc-svn-diff): Pass 'SVN to vc-state,
17882 vc-stay-local-p and vc-mode-line calls.
17883
17884 * vc-cvs.el (vc-cvs-state, vc-cvs-checkout, vc-cvs-print-log)
17885 (vc-cvs-diff, vc-cvs-annotate-command)
17886 (vc-cvs-make-version-backups-p, vc-cvs-stay-local-p)
17887 (vc-cvs-dir-status): Pass 'CVS to vc-state, vc-stay-local-p and
17888 vc-mode-line calls.
17889
17890 * vc.el (vc-deduce-fileset): Use vc-deduce-fileset instead of
17891 direct comparison.
17892 (vc-next-action, vc-transfer-file, vc-rename-file): Also pass the
17893 backend when calling vc-mode-line.
17894 (vc-register): Do not create a closure for calling the vc register
17895 function, call it directly.
17896
17897 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
17898
17899 * emacs-lisp/elp.el (elp-output-insert-symname): Add a link face
17900 to make it obvious item can be clicked.
17901
17902 * vc-mtn.el (vc-mtn-after-dir-status, vc-mtn-dir-status): New functions.
17903
17904 2009-06-23 Kenichi Handa <handa@m17n.org>
17905
17906 * language/korea-util.el (korean-key-bindings): Change the binding
17907 of F9 to hangul-to-hanja-conversion. Bind Hangul_Hanja to the
17908 same command.
17909
17910 2009-06-22 Michael Albinus <michael.albinus@gmx.de>
17911
17912 Sync with Tramp 2.1.16.
17913
17914 * Makefile.in (ELCFILES): Add net/tramp-gvfs.elc.
17915
17916 * net/tramp.el (top): Require tramp-gvfs. Catch `tramp-loading',
17917 when a loading of a package fails. Completion function for rsync
17918 is `tramp-completion-function-alist-ssh'.
17919 (all): Replace all calls of `split-string' and
17920 `tramp-split-string' by `tramp-compat-split-string'.
17921 (tramp-default-method): Use `tramp-compat-process-running-p'.
17922 (tramp-default-proxies-alist): Allow also Lisp forms.
17923 (tramp-remote-path): Add choice "Private Directories".
17924 (tramp-wrong-passwd-regexp): Remove "Tramp connection closed" option.
17925 (tramp-domain-regexp): Allow also "-", "_" and ".".
17926 (tramp-end-of-output): Remove newlines, and add "$" at the end.
17927 (tramp-file-name-handler-alist): Add handler for `dired-uncache'.
17928 (tramp-debug-message): Insert header line in debug buffer.
17929 (tramp-handle-directory-files-and-attributes-with-stat):
17930 Care about filenames with spaces, or starting with "-".
17931 (tramp-handle-dired-uncache): New defun.
17932 (tramp-handle-insert-directory): Don't flush the directory from
17933 cache, this is handled by `dired-uncache' now.
17934 (tramp-handle-insert-file-contents): Improve error handling.
17935 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
17936 Quote `tramp-end-of-output'.
17937 (tramp-action-password): Improve trace message.
17938 (tramp-check-for-regexp): Both echoes must be present, before removing.
17939 (tramp-open-connection-setup-interactive-shell): Trace coding system.
17940 (tramp-compute-multi-hops): Eval cons cells of
17941 `tramp-default-proxies-alist'.
17942 (tramp-maybe-open-connection): Use the same command pattern for
17943 first hop and further hops.
17944 (tramp-wait-for-output): Remove handling of newlines.
17945 (tramp-get-remote-path): Handle also `tramp-own-remote-path'.
17946 (tramp-split-string): Remove function. It is handled in
17947 tramp-compat now.
17948
17949 * net/tramp-cmds.el (tramp-bug):
17950 Recommend `tramp-cleanup-all-connections' in the bug mail.
17951
17952 * net/tramp-compat.el (tramp-compat-split-string)
17953 (tramp-compat-process-running-p): New defuns.
17954
17955 * net/tramp-fish.el (tramp-fish-file-name-handler-alist): Add handler
17956 for `dired-uncache'.
17957
17958 * net/tramp-gvfs.el: New package.
17959
17960 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
17961 Add handler for `dired-uncache'.
17962 (tramp-smb-handle-file-local-copy): Cleanup in case of error.
17963
17964 * net/trampver.el: Update release number. Make version check fit
17965 for SXEmacs 22.
17966
17967 2009-06-22 Jim Meyering <meyering@redhat.com>
17968
17969 Automatically handle .xz suffix (XZ-compressed files), too.
17970 * jka-cmpr-hook.el (jka-compr-compression-info-list): Add xz.
17971 XZ is the successor to LZMA: <http://tukaani.org/xz/>
17972
17973 2009-06-22 Dmitry Dzhus <dima@sphinx.net.ru>
17974 Nick Roberts <nickrob@snap.net.nz>
17975
17976 * progmodes/gdb-mi.el: Pull further modified changes from Dmitry's
17977 repository (http://sphinx.net.ru/hg/gdb-mi/).
17978
17979 2009-06-22 Glenn Morris <rgm@gnu.org>
17980
17981 * files.el (dir-locals-collect-mode-variables): Allow for any number of
17982 `mode' and `eval' entries. (Bug#3430)
17983
17984 * Makefile.in (ELCFILES): Add fadr.elc.
17985
17986 * calendar/appt.el (appt-make-list): Fix off-by-one error caused by
17987 differing behavior of \n and ^ in strings. (Bug#3385)
17988
17989 * emacs-lisp/cl-indent.el: Remove leading "*" from defcustom docs.
17990
17991 * emacs-lisp/lisp-mode.el (lisp-indent-offset): Fix safe-local-variable
17992 property.
17993 (lisp-indent-function): Make it a defcustom.
17994
17995 2009-06-21 Nick Roberts <nickrob@snap.net.nz>
17996
17997 * progmodes/gdb-ui.el: Replace with ...
17998 * progmodes/gdb-mi.el: ... this file.
17999 * progmodes/gud.el: Modify for gdb-mi.el.
18000
18001 2009-06-21 Dmitry Dzhus <dima@sphinx.net.ru>
18002
18003 * fadr.el: New file.
18004
18005 See ChangeLog.14 for earlier changes.
18006
18007 ;; Local Variables:
18008 ;; coding: utf-8
18009 ;; End:
18010
18011 Copyright (C) 2009, 2010 Free Software Foundation, Inc.
18012
18013 This file is part of GNU Emacs.
18014
18015 GNU Emacs is free software: you can redistribute it and/or modify
18016 it under the terms of the GNU General Public License as published by
18017 the Free Software Foundation, either version 3 of the License, or
18018 (at your option) any later version.
18019
18020 GNU Emacs is distributed in the hope that it will be useful,
18021 but WITHOUT ANY WARRANTY; without even the implied warranty of
18022 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18023 GNU General Public License for more details.
18024
18025 You should have received a copy of the GNU General Public License
18026 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.