* lisp/term/common-win.el (xw-defined-colors): Simplify the 'ns case.
[bpt/emacs.git] / lisp / ChangeLog
1 2010-10-26 Glenn Morris <rgm@gnu.org>
2
3 * term/common-win.el (xw-defined-colors): Simplify the 'ns case.
4
5 2010-10-26 Adrian Robert <Adrian.B.Robert@gmail.com>
6
7 * term/ns-win.el (ns-new-frame, ns-show-prefs): Don't add to
8 global map.
9 * term/common-win.el (x-setup-function-keys): Remove most of the
10 keymappings. Comment on the remaining ones.
11
12 2010-10-26 Peter Oliver <p.d.oliver@mavit.org.uk> (tiny change)
13
14 * server.el (server-port): New option. (Bug#854)
15 (server-start): Use server-port.
16
17 2010-10-26 Glenn Morris <rgm@gnu.org>
18
19 * term/ns-win.el (ns-version-string): Remove unused declaration.
20 (ns-invocation-args): Change to x-invocation-args.
21 (ns-handle-switch, ns-handle-numeric-switch, ns-handle-iconic)
22 (ns-handle-name-switch, ns-ignore-2-arg): Remove.
23 (ns-handle-nxopen, ns-handle-nxopentemp, ns-ignore-1-arg):
24 Use x-invocation-args instead of ns-invocation-args.
25 (ns-initialize-window-system, handle-args-function-alist):
26 Use x-handle-args instead of ns-handle-args.
27 * term/common-win.el (x-handle-args): Also handle nextstep arguments.
28 * startup.el (command-line-ns-option-alist): Replace
29 ns-handle-name-switch, ns-handle-switch, ns-handle-numeric-switch,
30 ns-handle-iconic with the x- equivalents.
31
32 * term/common-win.el (x-select-enable-clipboard):
33 * term/pc-win.el (x-select-enable-clipboard): Doc fix.
34
35 * term/ns-win.el: No need to require cl when compiling.
36 (x-display-name, x-setup-function-keys, x-select-text, x-colors)
37 (xw-defined-colors): Use the common-win definitions.
38 (ns-alternatives-map): Make it an obsolete alias for x-alternatives-map.
39 (ns-handle-iconic): Make it an alias for x-handle-iconic.
40 * term/common-win.el (x-select-text, x-alternatives-map)
41 (x-setup-function-keys, x-colors, xw-defined-colors): Handle 'ns case.
42 * loadup.el [ns]: Load common-win.
43
44 2010-10-26 Daiki Ueno <ueno@unixuser.org>
45
46 * epa-mail.el (epa-mail-encrypt): Handle local-part only
47 recipients; expand mail aliases (Bug#7280).
48
49 2010-10-25 Glenn Morris <rgm@gnu.org>
50
51 * term/common-win.el (x-handle-switch): Simplify with pop.
52 Optionally handle numeric switches.
53 (x-handle-numeric-switch): Just call x-handle-switch.
54 (x-handle-initial-switch, x-handle-xrm-switch, x-handle-geometry)
55 (x-handle-name-switch, x-handle-display, x-handle-args):
56 Simplify with pop.
57
58 * term/ns-win.el: Do not require easymenu.
59 (menu-bar-edit-menu) <copy, paste, paste-from-menu, separator-undo>:
60 <spell>: Move adjustments to menu-bar.el.
61 * menu-bar.el (menu-bar-edit-menu) <copy, paste, paste-from-menu>:
62 <separator-undo, spell>: Move ns-win's adjustments here.
63 * loadup.el [ns]: Do not load easymenu.
64
65 2010-10-24 Chong Yidong <cyd@stupidchicken.com>
66
67 * image.el (image-checkbox-checked, image-checkbox-unchecked):
68 Delete (Bug#7222).
69
70 * startup.el (fancy-startup-tail): Instead of using inline images,
71 refer to image files from etc/.
72
73 * wid-edit.el (checkbox): Likewise.
74 (widget-image-find): Center image specs.
75
76 2010-10-24 Glenn Morris <rgm@gnu.org>
77
78 * term/ns-win.el (x-select-text): Doc fix.
79 * w32-fns.el (x-alternatives-map, x-setup-function-keys)
80 (x-select-text): Move to term/common-win.
81 * term/w32-win.el (xw-defined-colors): Move to common-win.
82 * term/x-win.el (xw-defined-colors, x-alternatives-map)
83 (x-setup-function-keys, x-select-text): Move to common-win.
84 * term/common-win.el (x-select-text, x-alternatives-map)
85 (x-setup-function-keys, xw-defined-colors): Merge x- and w32-
86 definitions here.
87
88 2010-10-24 T.V. Raman <tv.raman.tv@gmail.com> (tiny change)
89
90 * net/mairix.el (mairix-searches-mode-map):
91 * mail/mspools.el (mspools-mode-map): Fix 2010-10-10 change.
92
93 2010-10-24 Michael McNamara <mac@mail.brushroad.com>
94
95 * verilog-mode.el (verilog-directive-re): Make this variable
96 auto-built for efficiency of execution and updating.
97 (verilog-extended-complete-re): Support 'pure' fucntion & task
98 declarations (these have no bodies).
99 (verilog-beg-of-statement): general cleanup to enable support of
100 'pure' fucntion & task declarations (these have no bodies). These
101 efforts together fix Verilog bug210 from veripool; which was also
102 noticed by Steve Pearlmutter.
103 (verilog-directive-re, verilog-directive-begin, verilog-indent-re)
104 (verilog-directive-nest-re, verilog-set-auto-endcomments): Support
105 `elsif. Reported by Shankar Giri.
106 (verilog-forward-ws&directives, verilog-in-attribute-p): Fixes for
107 attribute handling for lining up declarations and assignments.
108 (verilog-beg-of-statement-1): Fix issue where continued declaration
109 is indented differently if it is after a begin..end clock.
110 (verilog-in-attribute-p, verilog-skip-backward-comments)
111 (verilog-skip-forward-comment-p): Support proper treatment of
112 attributes by indent code. Reported by Jeff Steele.
113 (verilog-in-directive-p): Fix comment to correctly describe
114 function.
115 (verilog-backward-up-list, verilog-in-struct-region-p)
116 (verilog-backward-token, verilog-in-struct-p)
117 (verilog-in-coverage-p, verilog-do-indent)
118 (verilog-pretty-declarations): Use verilog-backward-up-list as
119 wrapper around backward-up-list inorder to properly skip comments.
120 Reported by David Rogoff.
121 (verilog-property-re, verilog-endcomment-reason-re)
122 (verilog-beg-of-statement, verilog-set-auto-endcomments)
123 (verilog-calc-1 ): Fix for assert a; else b; indentation (new form
124 of if). Reported by Max Bjurling and
125 (verilog-calc-1): Fix for clocking block in modport
126 declaration. Reported by Brian Hunter.
127
128 2010-10-24 Wilson Snyder <wsnyder@wsnyder.org>
129
130 * verilog-mode.el (verilog-auto-inst, verilog-gate-ios)
131 (verilog-gate-keywords, verilog-read-sub-decls)
132 (verilog-read-sub-decls-gate, verilog-read-sub-decls-gate-ios)
133 (verilog-read-sub-decls-line, verilog-read-sub-decls-sig): Support
134 AUTOINST for gate primitives, bug284. Reported by Mark Johnson.
135 (verilog-read-decls): Fix spaces in V2K module parameters causing
136 mis-identification as interfaces, bug287.
137 (verilog-read-decls): Fix not treating "parameter string" as a
138 parameter in AUTOINSTPARAM.
139 (verilog-read-always-signals-recurse, verilog-read-decls): Fix not
140 treating `elsif similar to `endif inside AUTOSENSE.
141 (verilog-do-indent): Implement correct automatic or static task or
142 function end comment highlight. Reported by Steve Pearlmutter.
143 (verilog-font-lock-keywords-2): Fix highlighting of single
144 character pins, bug264. Reported by Michael Laajanen.
145 (verilog-auto-inst, verilog-read-decls, verilog-read-sub-decls)
146 (verilog-read-sub-decls-in-interfaced, verilog-read-sub-decls-sig)
147 (verilog-subdecls-get-interfaced, verilog-subdecls-new): Support
148 interfaces with AUTOINST, bug270. Reported by Luis Gutierrez.
149 (verilog-pretty-expr): Fix interactive arguments, bug272. Reported
150 by Mark Johnson.
151 (verilog-auto-tieoff, verilog-auto-tieoff-ignore-regexp): Add
152 'verilog-auto-tieoff-ignore-regexp' for AUTOTIEOFF,
153 bug269. Suggested by Gary Delp.
154 (verilog-mode-map, verilog-preprocess, verilog-preprocess-history)
155 (verilog-preprocessor, verilog-set-compile-command): Create
156 verilog-preprocess and verilog-preprocessor to show preprocessed
157 output.
158 (verilog-get-beg-of-line, verilog-get-end-of-line)
159 (verilog-modi-file-or-buffer, verilog-modi-name)
160 (verilog-modi-point, verilog-within-string): Move defmacro's
161 before first use to avoid warning. Reported by Steve Pearlmutter.
162 (verilog-colorize-buffer, verilog-colorize-include-files-buffer)
163 (verilog-colorize-region, verilog-highlight-buffer)
164 (verilog-highlight-includes, verilog-highlight-modules)
165 (verilog-highlight-region, verilog-mode): Rename colorize to
166 highlight to match other packages. Disable module highlighting,
167 as received speed complaints, reenable for experimentation only
168 using new verilog-highlight-modules.
169 (verilog-read-decls): Fix regexp stack overflow in very large
170 AUTO_TEMPLATEs, bug250.
171 (verilog-auto, verilog-delete-auto, verilog-save-buffer-state)
172 (verilog-scan): Create verilog-save-buffer-state to standardize
173 making insignificant changes that shouldn't call hooks.
174 (verilog-save-no-change-functions, verilog-save-scan-cache)
175 (verilog-scan, verilog-scan-cache-ok-p, verilog-scan-region):
176 Create verilog-save-no-change-functions to wrap verilog-scan
177 preservation, and fix to work with nested preserved calls.
178 (verilog-auto-inst, verilog-auto-inst-dot-name): Support .name
179 port syntax for AUTOWIRE, and with new verilog-auto-inst-dot-name
180 generate .name with AUTOINST, bug245. Suggested by David Rogoff.
181 (verilog-submit-bug-report): Update variable list to be complete.
182 (verilog-auto, verilog-colorize-region): Fix AUTO expansion
183 breaking on-the-fly font-locking.
184 (verilog-colorize-buffer, verilog-colorize-include-files)
185 (verilog-colorize-include-files-buffer, verilog-colorize-region)
186 (verilog-load-file-at-mouse, verilog-load-file-at-point)
187 (verilog-mode, verilog-read-inst-module-matcher): With point on a
188 AUTOINST cell instance name, middle mouse button now finds-file on
189 it. Suggested by Brad Dobbie.
190 (verilog-alw-get-temps, verilog-auto-reset)
191 (verilog-auto-sense-sigs, verilog-read-always-signals)
192 (verilog-read-always-signals-recurse): Fix loop indexes being
193 AUTORESET. AUTORESET now assumes any variables in the
194 initialization section of a for() should be ignored. Reported by
195 Dan Dever.
196 (verilog-error-font-lock-keywords)
197 (verilog-error-regexp-emacs-alist)
198 (verilog-error-regexp-xemacs-alist): Fix error detection of
199 Cadence HAL, reported by David Asher. Repair drift between the
200 three similar error variables.
201 (verilog-modi-lookup, verilog-modi-lookup-cache)
202 (verilog-modi-lookup-last-current, verilog-modi-lookup-last-mod)
203 (verilog-modi-lookup-last-modi, verilog-modi-lookup-last-tick):
204 Fix slow verilog-auto expansion on very large files.
205 (verilog-read-sub-decls-expr, verilog-read-sub-decls-line): Fix
206 AUTOOUTPUT treating "1*2" as a signal name in submodule connection
207 "{1*2{...". Broke in last revision.
208 (verilog-read-sub-decls-expr): Fix AUTOOUTPUT not detecting
209 submodule connections with replications "{#{a},#{b}}".
210
211 2010-10-24 Juanma Barranquero <lekktu@gmail.com>
212
213 * progmodes/dcl-mode.el (dcl-electric-reindent-regexps):
214 Fix typo in docstring.
215
216 2010-10-24 Kenichi Handa <handa@m17n.org>
217
218 * face-remap.el (text-scale-adjust): Call read-event with a proper
219 prompt.
220
221 2010-10-24 Chong Yidong <cyd@stupidchicken.com>
222
223 * emacs-lisp/unsafep.el: Don't mark functions that display
224 messages as safe. Suggested by Johan Bockgård.
225
226 2010-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
227
228 * emacs-lisp/regexp-opt.el (regexp-opt-group, regexp-opt-charset):
229 Turn comments into docstrings.
230
231 * minibuffer.el (completion--replace): Move point where it belongs
232 when there's a common suffix (bug#7215).
233
234 2010-10-24 Chong Yidong <cyd@stupidchicken.com>
235
236 Merge read-color and facemenu-read-color (Bug#7242).
237
238 * faces.el (read-color): Use the completion code from
239 facemenu-read-color. Require match in completion. Doc fix.
240
241 * facemenu.el (facemenu-read-color): Alias for read-color.
242 (facemenu-set-foreground, facemenu-set-background): Use
243 read-color.
244
245 * frame.el (set-background-color, set-foreground-color)
246 (set-cursor-color, set-mouse-color, set-border-color): Use
247 read-color.
248
249 2010-10-24 Leo <sdl.web@gmail.com>
250
251 * eshell/em-unix.el (eshell-remove-entries): Use the TRASH
252 argument of delete-file and delete-directory (Bug#7011).
253
254 2010-10-24 Chong Yidong <cyd@stupidchicken.com>
255
256 * emacs-lisp/package.el (package-menu-mode-map): Inherit from
257 button-buffer-map.
258
259 2010-10-24 Ralf Angeli <angeli@caeruleus.net>
260
261 * emacs-lisp/package.el (package--generate-package-list): Make the
262 *Packages* buffer read-only.
263
264 2010-10-24 Alan Mackenzie <acm@muc.de>
265
266 * progmodes/cc-fonts.el (c-font-lock-declarations): Cache the
267 result of `c-beginning-of-decl-1' between invocations of a lambda
268 function (Bug #7265).
269
270 2010-10-24 Daiki Ueno <ueno@unixuser.org>
271
272 * epg-config.el (epg-gpg-program): Try to use "gpg2" if "gpg"
273 executable is not available on the system (Bug#7268).
274
275 2010-10-24 Glenn Morris <rgm@gnu.org>
276
277 * select.el (selection-coding-system, next-selection-coding-system):
278 Sync doc with C versions.
279
280 * w32-vars.el (x-select-enable-clipboard):
281 * term/x-win.el (x-select-enable-clipboard): Move to common-win.
282 * term/common-win.el (x-select-enable-clipboard): Move here.
283
284 * term/tty-colors.el (tty-defined-color-alist): Remove duplicate
285 definition of C variable.
286
287 * frame.el (show-trailing-whitespace, auto-hscroll-mode)
288 (display-hourglass, hourglass-delay, cursor-in-non-selected-windows):
289 Don't redefine things that are defined in C.
290 * cus-start.el: Also handle :risky, :safe, :set, and :tag.
291 (show-trailing-whitespace, auto-hscroll-mode)
292 (display-hourglass, hourglass-delay, cursor-in-non-selected-windows):
293 Set up the appropriate custom properties.
294
295 2010-10-24 Chong Yidong <cyd@stupidchicken.com>
296
297 Bind "C-c ]" to ...
298 * progmodes/f90.el (f90-mode-map): ... f90-insert-end.
299 * nxml/nxml-mode.el (nxml-mode-map): ... nxml-finish-element.
300 * textmodes/tex-mode.el (tex-mode-map): ... latex-close-block.
301 * textmodes/sgml-mode.el (sgml-mode-map): ... sgml-close-tag.
302
303 2010-10-23 Glenn Morris <rgm@gnu.org>
304
305 * textmodes/flyspell.el (flyspell-mode): If there was an error,
306 say what it was.
307
308 * frame.el (auto-hscroll-mode, cursor-in-non-selected-windows):
309 Sync docs with C version.
310
311 * term/ns-win.el (xw-defined-colors):
312 * term/x-win.el (xw-defined-colors): Make docs identical to w32-win.
313
314 * term/pc-win.el (x-select-enable-clipboard):
315 * term/x-win.el (x-select-enable-clipboard):
316 * w32-vars.el (x-select-enable-clipboard): Make doc-strings identical.
317
318 * comint.el (comint-password-prompt-regexp): Make it less vague.
319 Bump version.
320
321 * help-fns.el (doc-file-to-man, doc-file-to-info): New commands.
322
323 * help.el (finder-by-keyword): Remove unnecessary autoload.
324
325 2010-10-22 Glenn Morris <rgm@gnu.org>
326
327 * loadup.el: Unconditionally load float-sup.
328 * paren.el (show-paren-delay):
329 * emacs-lisp/float-sup.el:
330 * emulation/cua-base.el (cua-prefix-override-inhibit-delay):
331 * obsolete/lazy-lock.el (lazy-lock-defer-time, lazy-lock-stealth-nice)
332 (lazy-lock-stealth-verbose): Assume float support.
333 * ps-print.el: Assume float support on Emacs.
334 * emacs-lisp/timer.el (timer-next-integral-multiple-of-time):
335 Remove non-float branch.
336
337 * emacs-lisp/autoload.el (batch-update-autoloads): Update for
338 src/Makefile no longer being pre-processed.
339
340 2010-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
341
342 * emacs-lisp/find-func.el (find-library): Use test-completion.
343
344 2010-10-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
345
346 * newcomment.el (comment-dwim): Fix the intentation in the doc string.
347
348 010-10-21 Michael Albinus <michael.albinus@gmx.de>
349
350 * net/tramp-sh.el (tramp-do-file-attributes-with-stat): Do not use
351 space in stat format string.
352 (tramp-send-command): Unset $PS1 when using here documents, in
353 order not to get several prompts.
354 (tramp-get-inline-coding): Return `nil' in case of errors.
355
356 2010-10-21 Daiki Ueno <ueno@unixuser.org>
357
358 * hexl.el (hexl-mode, hexl-mode-exit):
359 Tweak revert-buffer-function to inhibit auto-mode-alist (Bug#7252).
360 (hexl-revert-buffer-function): New function.
361 (hexl-before-revert-hook, hexl-after-revert-hook): Abolish.
362
363 2010-10-19 Alan Mackenzie <acm@muc.de>
364
365 * progmodes/cc-langs.el (c-type-decl-prefix-key): C++ bit:
366 Move "\(const\|throw\|volatile\)\>" nearer the start of the regexp, so
367 that these keywords aren't wrongly matched as identifiers.
368
369 * progmodes/cc-mode.el (c-before-change, c-after-change): Move the
370 setting of c-new-BEG and c-new-END from c-before-change to
371 c-after-change. (Bug#7181)
372
373 2010-10-19 Chong Yidong <cyd@stupidchicken.com>
374
375 * cus-face.el (custom-theme-set-faces): Revert 2010-10-18 change.
376 Don't mark as safe.
377
378 * custom.el (custom-theme-set-variables): Likewise.
379 (load-theme): Add custom-theme-set-faces and
380 custom-theme-set-variables to safe-functions while loading.
381 (custom-enabled-themes): Mark as risky.
382
383 2010-10-18 Julien Danjou <julien@danjou.info>
384
385 * bindings.el: Remove end dashes in default mode-line-format.
386
387 2010-10-19 Chong Yidong <cyd@stupidchicken.com>
388
389 * bindings.el (global-map): Bind C-d to delete-char and deletechar
390 to delete-forward-char.
391
392 * simple.el (normal-erase-is-backspace-mode): Remap delete to
393 deletechar, and hence delete-forward-char.
394
395 2010-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
396
397 * repeat.el (repeat): Use read-key (bug#6256).
398
399 2010-10-19 Chong Yidong <cyd@stupidchicken.com>
400
401 * emacs-lisp/unsafep.el: Don't mark functions that display
402 messages as safe. Suggested by Johan Bockgård.
403
404 2010-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
405
406 * minibuffer.el (completion--replace): Move point where it belongs
407 when there's a common suffix (bug#7215).
408
409 2010-10-19 Kenichi Handa <handa@m17n.org>
410
411 * international/characters.el: Add category '|' (word breakable)
412 to fullwidth characters.
413
414 2010-10-19 Michael Albinus <michael.albinus@gmx.de>
415
416 * net/tramp-sh.el (tramp-do-file-attributes-with-stat)
417 (tramp-do-directory-files-and-attributes-with-stat): Use "e0" in
418 order to make stat results a float. Patch by Andreas Schwab
419 <schwab@linux-m68k.org>.
420
421 2010-10-18 Julien Danjou <julien@danjou.info>
422
423 * avoid.el (mouse-avoidance-ignore-p): Ignore mouse when it is
424 hidden by `make-pointer-invisible'.
425
426 2010-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
427
428 * files.el (locate-file-completion-table): Strip non-matching elements
429 before checking length of list (bug#7238).
430
431 2010-10-18 Chong Yidong <cyd@stupidchicken.com>
432
433 * custom.el (custom-theme-set-variables): Mark as a safe function.
434 (load-theme): Check forms using unsafep.
435
436 * cus-face.el (custom-theme-set-faces): Mark as a safe function.
437
438 2010-10-17 Agustín Martín <agustin.martin@hispalinux.es>
439
440 * textmodes/ispell.el (ispell-aspell-find-dictionary):
441 Fix aspell data file searching (bug#7230).
442
443 2010-10-16 Chong Yidong <cyd@stupidchicken.com>
444
445 * cus-theme.el (custom-theme--migrate-settings): New var.
446 (customize-create-theme): Allow editing the `user' theme.
447 (custom-theme-add-variable, custom-theme-add-var-1)
448 (custom-theme-add-face, custom-theme-add-face-1): Add a checkbox
449 to the front of each variable or face widget.
450 (custom-theme-write): Save theme settings in the correct order.
451 Optionally, remove saved settings from user customizations.
452 (custom-theme-write-variables, custom-theme-write-faces):
453 Save only the checked widgets.
454 (customize-themes): Add a link for migrating custom settings.
455
456 * custom.el (custom-declare-theme, provide-theme):
457 Use custom-theme-name-valid-p.
458 (custom-theme-name-valid-p): Remove checks that are now
459 unnecessary since themes no longer obey load-path.
460
461 * cus-edit.el (custom-variable-value-create): For the simple
462 style, hide documentation string when hidden.
463
464 2010-10-16 Chong Yidong <cyd@stupidchicken.com>
465
466 * cus-edit.el (custom-variable, custom-face): Combine the
467 :inhibit-magic and :display-style properties into a single
468 :custom-style property.
469 (custom-toggle-hide-variable, custom-toggle-hide-face):
470 New functions. If hiding an edited value, save it to :shown-value.
471 (custom-variable-value-create, custom-face-value-create): Use them.
472 (custom-magic-reset): Allow magic property to be unset.
473
474 * custom.el: Custom themes no longer use load-path.
475 (custom-theme-load-path): New option. Change built-in theme
476 directory to etc/.
477 (custom-enabled-themes): Add custom-theme-load-path dependency.
478 (custom-theme--load-path): New function.
479 (load-theme, custom-available-themes): Use it.
480
481 * cus-theme.el (describe-theme-1): Use custom-theme--load-path.
482 (customize-themes): Link to custom-theme-load-path variable.
483 (custom-theme-add-var-1, custom-theme-add-face-1): Use the
484 :custom-style property.
485
486 * themes/*.el: Moved to etc/.
487
488 2010-10-16 Ralf Angeli <angeli@caeruleus.net>
489
490 * textmodes/reftex-cite.el
491 (reftex-extract-bib-entries-from-thebibliography): Do not move
492 point when searching for \bibitem entries. Match entries with
493 spaces or tabs in front of arguments.
494
495 2010-10-16 Chong Yidong <cyd@stupidchicken.com>
496
497 * cus-theme.el (customize-create-theme): Delete overlays after
498 erasing. If given a THEME arg, display only the faces of that arg
499 instead of custom-theme--listed-faces.
500 (custom-theme-variable-menu, custom-theme-variable-action)
501 (custom-variable-reset-theme, custom-theme-delete-variable): Delete.
502 (custom-theme-add-variable, custom-theme-add-face): Apply value
503 from the theme settings, instead of the current value.
504 (custom-theme-add-var-1, custom-theme-add-face-1): New functions.
505 (custom-theme-visit-theme): Allow calling outside theme buffers.
506 (custom-theme-merge-theme): Don't enable the theme when merging.
507 (custom-theme-write-variables, custom-theme-write-faces): Use the
508 :shown-value properties to save buffer values, not global ones.
509 (customize-themes): Display a warning about user customizations.
510
511 * cus-edit.el (custom-variable-value-create)
512 (custom-face-value-create): Obey new special properties
513 :shown-value and :inhibit-magic.
514
515 2010-10-15 Michael Albinus <michael.albinus@gmx.de>
516
517 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell):
518 Suppress expansion of tabs to spaces. Reported by Dale Sedivec
519 <dale@codefu.org>.
520
521 2010-10-14 Kenichi Handa <handa@m17n.org>
522
523 * mail/rmail.el (rmail-show-message-1): Catch an error of
524 base64-decode-region and just show an error message (bug#7165).
525
526 * ps-mule.el (ps-mule-font-spec-list): Delete it. Not used anymore.
527 (ps-mule-begin-job): Fix for the case that only ENCODING is set in
528 a font-spec (bug#7197).
529
530 2010-10-14 Glenn Morris <rgm@gnu.org>
531
532 * mail/emacsbug.el (report-emacs-bug): Mention debbugs.gnu.org.
533
534 2010-10-14 Juanma Barranquero <lekktu@gmail.com>
535
536 * international/mule.el (define-coding-system):
537 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
538 * composite.el (compose-region): Fix typo in docstring.
539
540 2010-10-14 Chong Yidong <cyd@stupidchicken.com>
541
542 * cus-face.el (custom-theme-set-faces): Call custom-push-theme
543 only after checking the theme-face property.
544
545 * faces.el (face-spec-reset-face): Reset all attributes in one
546 single call to set-face-attribute.
547 (face-spec-match-p): Make it a defsubst.
548 (frame-set-background-mode): New arg KEEP-FACE-SPECS.
549 (x-create-frame-with-faces, tty-create-frame-with-faces)
550 (tty-set-up-initial-frame-faces): Don't recompute face specs in
551 frame-set-background-mode, since they are recomputed immediately
552 afterwards in face-set-after-frame-default.
553 (face-set-after-frame-default): Minor optimization.
554 (cursor): Provide non-trivial defface spec.
555
556 * custom.el (custom-theme-recalc-face): Simplify.
557
558 2010-10-14 Jay Belanger <jay.p.belanger@gmail.com>
559
560 * calc/calc-alg.el (math-var): Rename from `var'.
561 (math-is-polynomial, math-is-poly-rec): Replace `var'
562 with `math-var'.
563
564 * calc/calcalg2.el (math-var): Rename from `var'.
565 (calcFunc-table, math-scan-for-limits): Replace `var'
566 with `math-var'.
567
568 2010-10-13 Glenn Morris <rgm@gnu.org>
569
570 * subr.el (last): Deal with dotted lists (reported in bug#7174).
571
572 2010-10-13 Stephen Berman <stephen.berman@gmx.net>
573
574 * subr.el (last): Use `safe-length' instead of `length' (bug#7206).
575
576 2010-10-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
577
578 * net/tls.el (tls-program): Remove spurious %s from openssl.
579 (tls-starttls-switches): Remove starttls hack.
580 (open-tls-stream): Ditto.
581 (tls-find-starttls-argument): Ditto.
582
583 2010-10-13 Juanma Barranquero <lekktu@gmail.com>
584
585 * image.el (image-library-alist): Declare as obsolete alias.
586 (image-type-available-p): Use `dynamic-library-alist'.
587
588 * term/w32-win.el (dynamic-library-alist):
589 Use instead of `image-library-alist'.
590
591 2010-10-13 IRIE Shinsuke <irieshinsuke@yahoo.co.jp> (tiny change)
592
593 * subr.el (last): Make it faster. (Bug#7174)
594
595 2010-10-13 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> (tiny change)
596
597 * Makefile.in (compile-clean): Use `` instead of $(). (Bug#7178)
598
599 2010-10-12 Chong Yidong <cyd@stupidchicken.com>
600
601 * cus-theme.el (custom-theme--listed-faces): Add cursor face.
602 (describe-theme-1): Extract doc from unloaded themes.
603
604 * custom.el (custom-theme-name-valid-p): Don't list color-themes.
605
606 * themes/tango-theme.el:
607 * themes/tango-dark-theme.el:
608 * themes/wheatgrass-theme.el: New files.
609
610 2010-10-12 Chong Yidong <cyd@stupidchicken.com>
611
612 * cus-theme.el (describe-theme, customize-themes)
613 (custom-theme-save): New commands.
614 (custom-new-theme-mode-map): Bind C-x C-s.
615 (custom-new-theme-mode): Use custom--initialize-widget-variables.
616 (customize-create-theme): New optional arg THEME.
617 (custom-theme-revert): Use it.
618 (custom-theme-visit-theme): Remove dead code.
619 (custom-theme-merge-theme): Use custom-available-themes.
620 (custom-theme-write): Make interactive.
621 (custom-theme-write): Use custom-theme-name-valid-p.
622 (describe-theme-1, custom-theme-choose-revert)
623 (custom-theme-checkbox-toggle, custom-theme-selections-toggle):
624 New funs.
625 (custom-theme-allow-multiple-selections): New option.
626 (custom-theme-choose-mode): New major mode.
627
628 * custom.el (custom-theme-set-variables): Remove dead code.
629 Obey custom--inhibit-theme-enable.
630 (custom--inhibit-theme-enable): New var.
631 (provide-theme): Obey it.
632 (load-theme): Replace load with manual read/eval, in order to
633 check for correctness. Use custom-theme-name-valid-p.
634 (custom-theme-name-valid-p): New function.
635 (custom-available-themes): Use it.
636
637 * cus-edit.el (custom--initialize-widget-variables): New function.
638 (Custom-mode): Use it.
639
640 * cus-face.el (custom-theme-set-faces): Remove dead code.
641 Obey custom--inhibit-theme-enable.
642
643 * help-mode.el (help-theme-def, help-theme-edit): New buttons.
644
645 2010-10-12 Juanma Barranquero <lekktu@gmail.com>
646
647 * net/telnet.el (telnet-mode-map): Fix previous change (bug#7193).
648
649 2010-10-12 Jan Djärv <jan.h.d@swipnet.se>
650
651 * term/ns-win.el (ns-right-alternate-modifier): New defvar.
652 (ns-right-option-modifier): New alias for ns-right-alternate-modifier.
653 (mac-right-option-modifier): New alias for ns-right-option-modifier.
654
655 * cus-start.el (all): ns-right-alternate-modifier is new.
656
657 2010-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
658
659 * emacs-lisp/lisp.el (lisp-completion-at-point):
660 Use emacs-lisp-mode-syntax-table for the whole function.
661
662 2010-10-12 David Koppelman <koppel@ece.lsu.edu>
663
664 * hi-lock.el (hi-lock-font-lock-hook): Check font-lock-fontified
665 instead of font-lock-mode before adding keywords.
666 Remove hi-lock-mode off code. Remove inhibit hack.
667 (hi-lock-set-pattern): Only add keywords if font-lock-fontified
668 non-nil; removed hook inhibit hack.
669
670 2010-10-12 Glenn Morris <rgm@gnu.org>
671
672 * emacs-lisp/shadow.el (find-emacs-lisp-shadows): Rename it...
673 (load-path-shadows-find): ... to this.
674 (list-load-path-shadows): Update for above change.
675
676 * mail/mail-utils.el (mail-mbox-from): Also try return-path.
677
678 2010-10-11 Katsumi Yamaoka <yamaoka@jpl.org>
679
680 * mail/hashcash.el, net/imap.el, pgg-parse.el, pgg.el:
681 Fix comment for declare-function.
682
683 2010-10-11 Chong Yidong <cyd@stupidchicken.com>
684
685 * custom.el (custom-fix-face-spec): New function; code moved from
686 custom-face-edit-fix-value.
687 (custom-push-theme): Use it when checking if a face has been
688 changed outside customize.
689 (custom-available-themes): New function.
690 (load-theme): Use it.
691
692 * cus-edit.el (custom-face-edit-fix-value): Use custom-fix-face-spec.
693
694 * custom.el (custom-push-theme): Cleanup (use cond).
695 (disable-theme): Recompute the saved-face property.
696 (custom-theme-recalc-face): Follow face alias before setting prop.
697
698 * image.el (image-checkbox-checked, image-checkbox-unchecked):
699 New variables, containing checkbox images.
700
701 * startup.el (fancy-startup-tail):
702 * wid-edit.el (checkbox): Use them.
703
704 2010-10-10 Dan Nicolaescu <dann@ics.uci.edu>
705
706 * shell.el (shell-mode-map):
707 * progmodes/modula2.el (m2-mode-map):
708 * progmodes/inf-lisp.el (inferior-lisp-mode-map):
709 * play/mpuz.el (mpuz-mode-map):
710 * play/landmark.el (lm-mode-map):
711 * play/decipher.el (decipher-mode-map):
712 * play/5x5.el (5x5-mode-map):
713 * net/telnet.el (telnet-mode-map):
714 * net/quickurl.el (quickurl-list-mode-map):
715 * net/mairix.el (mairix-searches-mode-map):
716 * net/eudc-hotlist.el (eudc-hotlist-mode-map):
717 * net/dig.el (dig-mode-map):
718 * mail/mspools.el (mspools-mode-map):
719 * hexl.el (hexl-mode-map):
720 * emulation/ws-mode.el (wordstar-C-k-map, wordstar-mode-map)
721 (wordstar-C-o-map, wordstar-C-q-map):
722 * emacs-lisp/edebug.el (edebug-eval-mode-map):
723 * emacs-lisp/chart.el (chart-map):
724 * edmacro.el (edmacro-mode-map):
725 * erc/erc-list.el (erc-list-menu-mode-map):
726 * array.el (array-mode-map): Declare and define in one step.
727
728 * vc/log-view.el (log-view-mode-map): Bind revert-buffer.
729
730 2010-10-10 Daiki Ueno <ueno@unixuser.org>
731
732 * epa.el (epa-passphrase-callback-function): Display filename
733 passed as the 3rd arg.
734 * epa-file.el (epa-file-passphrase-callback-function):
735 Pass filename to epa-passphrase-callback-function.
736
737 2010-10-09 Chong Yidong <cyd@stupidchicken.com>
738
739 * cus-edit.el (custom-face-widget-to-spec)
740 (custom-face-get-current-spec, custom-face-state): New functions.
741 (custom-face-set, custom-face-mark-to-save)
742 (custom-face-value-create, custom-face-state-set): Use them.
743
744 * cus-theme.el (custom-theme--listed-faces): New var.
745 (customize-create-theme): Use *Custom Theme* as the buffer name.
746 Set revert-buffer-function. Optional arg BUFFER. Insert all
747 faces listed in custom-theme--listed-faces.
748 (custom-theme-revert): New function.
749 (custom-theme-add-variable, custom-theme-add-face): Insert at the
750 bottom of the list.
751 (custom-theme-write): Prompt for theme name if empty.
752 (custom-theme-write-variables): Use dolist.
753 (custom-theme-write-faces): Handle hidden (collapsed) widgets.
754
755 2010-10-09 Alan Mackenzie <acm@muc.de>
756
757 Enhance fontification of declarators to take account of the
758 presence/absence of "typedef".
759
760 * cc-engine.el (c-forward-type): New &optional param
761 "brace-block-too".
762 (c-forward-decl-or-cast-1): cdr of return value now indicates the
763 presence of either or both of a "struct"-like keyword and "typedef".
764
765 * cc-fonts.el (c-complex-decl-matchers): Remove the heuristic
766 fontification of declarators which follow a "}".
767 (c-font-lock-declarations): Fontify declarators according to the
768 presence/absence of "typedef".
769
770 * cc-langs.el (c-typedef-kwds c-typedef-key): New lang variable
771 for "typedef".
772 (c-typedef-decl-key): New lang variable built from
773 c-typedef-decl-kwds.
774
775 2010-10-09 Lars Magne Ingebrigtsen <larsi@gnus.org>
776
777 * ibuffer.el (ibuffer-mode-map): Don't redefine the cursor keys,
778 since that's too annoying. Move the filter groups commands to
779 TAB/backtab.
780
781 * epa.el (epa-passphrase-callback-function): Say what we're
782 querying the password for.
783
784 * ibuffer.el (ibuffer-visit-buffer): To mimick list-buffers
785 behaviour, don't bury the ibuffer buffer when visiting other buffers.
786
787 2010-10-08 Chong Yidong <cyd@stupidchicken.com>
788
789 * cus-edit.el (custom-commands, custom-buffer-create-internal)
790 (custom-magic-value-create): Pad button tags with spaces.
791 (custom-face-edit): New variable.
792 (custom-face-value-create): Determine whether to use the usual
793 face editor here, instead of using custom-face-selected.
794 Pass face defaults to custom-face-edit widget.
795 (custom-face-selected, custom-display-unselected): Delete widgets.
796 (custom-display-unselected-match): Function removed.
797 (custom-face-set, custom-face-mark-to-save):
798 Accept custom-face-edit widgets as the direct widget child.
799
800 * wid-edit.el (widget--completing-widget): New var.
801 (widget-default-complete): Bind it when doing completion.
802 (widget-string-complete, widget-file-complete): Use it.
803
804 2010-10-09 Glenn Morris <rgm@gnu.org>
805
806 * calendar/cal-hebrew.el (holiday-hebrew-rosh-hashanah)
807 (holiday-hebrew-passover, holiday-hebrew-tisha-b-av)
808 (holiday-hebrew-misc): Small simplifications.
809
810 * emacs-lisp/authors.el (authors-valid-file-names): Add b2m.c.
811
812 * net/browse-url.el: Don't require thingatpt, term, dired,
813 executable, or w3-auto when compiling.
814 (dired-get-filename, term-char-mode, term-send-down, term-send-string):
815 Declare.
816 (browse-url-text-emacs): Require term.
817
818 2010-10-08 Andreas Schwab <schwab@linux-m68k.org>
819
820 * net/browse-url.el (browse-url-xdg-open): Remove use of /bin/sh.
821
822 2010-10-08 Glenn Morris <rgm@gnu.org>
823
824 * emacs-lisp/cl-compat.el, emacs-lisp/lmenu.el: Move to obsolete/.
825
826 * emacs-lisp/shadow.el (lisp-shadow): Change prefix.
827 (shadows-compare-text-p): Make it an obsolete alias for...
828 (load-path-shadows-compare-text): ... new name.
829 (find-emacs-lisp-shadows): Update for above name change.
830 (load-path-shadows-same-file-or-nonexistent): New name for the old
831 shadow-same-file-or-nonexistent.
832
833 2010-10-08 Chong Yidong <cyd@stupidchicken.com>
834
835 * minibuffer.el (completion--some, completion--do-completion)
836 (minibuffer-complete-and-exit, minibuffer-completion-help)
837 (completion-basic-try-completion)
838 (completion-basic-all-completions)
839 (completion-pcm--find-all-completions): Use lexical-let to
840 avoid some false matches in variable completion (Bug#7056)
841
842 2010-10-08 Olof Ohlsson Sax <olof.ohlsson.sax@gmail.com> (tiny change)
843
844 * vc-svn.el (vc-svn-merge-news): Use --non-interactive. (Bug#7152)
845
846 2010-10-08 Leo <sdl.web@gmail.com>
847
848 * dnd.el (dnd-get-local-file-name): If MUST-EXIST is non-nil, only
849 return non-nil if the file exists (Bug#7090).
850
851 2010-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
852
853 * minibuffer.el (completion--replace):
854 Better preserve markers (bug#7138).
855
856 2010-10-08 Juanma Barranquero <lekktu@gmail.com>
857
858 * server.el (server-process-filter): Doc fix.
859
860 2010-10-08 Drew Adams <drew.adams@oracle.com>
861
862 * dired.el (dired-save-positions): Doc fix. (Bug#7119)
863
864 2010-10-08 Andreas Schwab <schwab@linux-m68k.org>
865
866 * Makefile.in (ELCFILES): Update.
867
868 2010-10-08 Glenn Morris <rgm@gnu.org>
869
870 * vc/ediff-wind.el (ediff-setup-control-frame):
871 * vc/ediff-ptch.el (ediff-default-backup-extension):
872 * vc/ediff-diff.el (ediff-shell, ediff-diff-options)
873 (ediff-exec-process): Remove system-types emx, windows-95.
874
875 * net/browse-url.el (browse-url-xdg-open): Shell-quote url. (Bug#7166)
876
877 2010-10-07 Chong Yidong <cyd@stupidchicken.com>
878
879 * cus-edit.el (custom-variable, custom-face): Doc fix.
880 (custom-face-edit): Add value-create attribute.
881 (custom-face-edit-value-create)
882 (custom-face-edit-value-visibility-action): New functions.
883 Hide unused face attributes by default, and add a visibility toggle.
884 (custom-face-edit-deactivate): Show empty values with shadow face.
885 (custom-face-selected): Only use this for face specs with default
886 attributes.
887 (custom-face-value-create): Cleanup.
888
889 * wid-edit.el (widget-checklist-value-create): Use dolist.
890 (widget-checklist-match-find): Make second arg optional.
891
892 2010-10-07 Glenn Morris <rgm@gnu.org>
893
894 * hilit-chg.el (hilit-chg-get-diff-info, hilit-chg-get-diff-list-hk):
895 Prefix things.
896
897 * emacs-lisp/shadow.el (shadow-font-lock-keywords)
898 (load-path-shadows-mode, list-load-path-shadows): Rename shadow-mode to
899 load-path-shadows-mode, update references.
900 (load-path-shadows-font-lock-keywords, load-path-shadows-find-file):
901 Rename variable and button.
902 (list-load-path-shadows): Update button caller.
903
904 2010-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
905
906 * emacs-lisp/smie.el (smie-bnf-classify): New function.
907 (smie-bnf-precedence-table): Use it to remember the closers/openers.
908 (smie-merge-prec2s): Handle those new entries.
909 (smie-prec2-levels): Only set precedence to nil for actual
910 openers/closers.
911 * progmodes/octave-mod.el (octave-smie-op-levels): Remove dummy entry
912 that is now unnecessary.
913
914 2010-10-07 Miles Bader <miles@gnu.org>
915
916 * emacs-lisp/regexp-opt.el (regexp-opt): Add `symbols' mode.
917
918 2010-10-07 Glenn Morris <rgm@gnu.org>
919
920 * mail/rmail.el (mail-sendmail-delimit-header, mail-header-end)
921 (mail-position-on-field): Remove declarations.
922 (mail-position-on-field): Autoload it.
923 (rmail-retry-failure): Replace use of mail-sendmail-delimit-header
924 and mail-header-end. Don't require sendmail.
925
926 * emacs-lisp/shadow.el (shadow-font-lock-keywords): New variable.
927 (shadow-mode): New mode.
928 (shadow-find-file): New button.
929 (list-load-path-shadows): Use shadow-mode and buttons.
930
931 * iimage.el (iimage-version): Remove.
932 (iimage-mode-image-search-path, iimage-mode-image-regex-alist):
933 Turn into defcustoms.
934 (iimage-mode-map): Give it a doc string.
935
936 * calendar/appt.el (appt-activate): Give a warning rather than an error
937 if there is no diary-file.
938
939 2010-10-06 Michael Albinus <michael.albinus@gmx.de>
940
941 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
942 Use `tramp-handle-find-backup-file-name'.
943
944 2010-10-06 Glenn Morris <rgm@gnu.org>
945
946 * font-core.el (font-lock-defaults-alist): Remove variable.
947 (font-lock-mode): Doc fix.
948 (font-lock-default-function): Do not consult font-lock-defaults-alist.
949 * font-lock.el (font-lock-refresh-defaults): Doc fix.
950 (font-lock-set-defaults): Doc fix.
951 Do not consult font-lock-defaults-alist.
952
953 * hilit-chg.el (hilit-chg-get-diff-list-hk): Declare `e' for compiler.
954
955 * emacs-lisp/cl.el: No longer provide cl-19.
956
957 2010-10-05 Michael Albinus <michael.albinus@gmx.de>
958
959 * net/tramp.el (tramp-handle-directory-files-and-attributes)
960 (tramp-handle-file-exists-p, tramp-handle-file-newer-than-file-p):
961 New defuns, taken from tramp-smb.el.
962 (tramp-coding-system-change-eol-conversion)
963 (tramp-set-process-query-on-exit-flag): Remove.
964
965 * net/tramp-compat.el (top): Do not check for byte-compiler objects.
966 (tramp-compat-coding-system-change-eol-conversion)
967 (tramp-compat-set-process-query-on-exit-flag): New defuns, taken
968 from tramp.el.
969
970 * net/tramp-gvfs.el:
971 * net/tramp-gw.el: Replace `tramp-set-process-query-on-exit-flag'
972 by `tramp-compat-set-process-query-on-exit-flag'.
973
974 * net/tramp-imap.el (tramp-imap-file-name-handler-alist):
975 Use `tramp-handle-directory-files-and-attributes',
976 `tramp-handle-file-exists-p' and
977 `tramp-handle-file-newer-than-file-p'.
978 (tramp-imap-handle-file-exists-p)
979 (tramp-imap-handle-file-executable-p)
980 (tramp-imap-handle-file-readable-p)
981 (tramp-imap-handle-directory-files-and-attributes)
982 (tramp-imap-handle-file-newer-than-file-p): Remove.
983
984 * net/tramp-sh.el: Replace `tramp-set-process-query-on-exit-flag'
985 by `tramp-compat-set-process-query-on-exit-flag' and
986 `tramp-coding-system-change-eol-conversion' by
987 `tramp-compat-coding-system-change-eol-conversion'.
988
989 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
990 Use `tramp-handle-directory-files-and-attributes',
991 `tramp-handle-file-exists-p' and
992 `tramp-handle-file-newer-than-file-p'.
993 (tramp-smb-handle-directory-files-and-attributes)
994 (tramp-smb-handle-file-exists-p)
995 (tramp-smb-handle-file-newer-than-file-p): Remove.
996 (tramp-smb-maybe-open-connection):
997 Replace `tramp-set-process-query-on-exit-flag' by
998 `tramp-compat-set-process-query-on-exit-flag'.
999
1000 2010-10-05 Glenn Morris <rgm@gnu.org>
1001
1002 * obsolete/rnews.el, obsolete/rnewspost.el: Remove files.
1003
1004 2010-10-04 Michael Albinus <michael.albinus@gmx.de>
1005
1006 Continue reorganization of load dependencies. (Bug#7156)
1007
1008 * net/tramp.el (tramp-handle-file-local-copy-hook)
1009 (tramp-delete-temp-file-function): Move down.
1010 (tramp-exists-file-name-handler): Move up.
1011 (tramp-register-file-name-handlers): Simplify autoload.
1012 (tramp-handle-write-region-hook, tramp-handle-directory-file-name)
1013 (tramp-handle-directory-files, tramp-handle-dired-uncache)
1014 (tramp-handle-file-modes, tramp-handle-file-name-as-directory)
1015 (tramp-handle-file-name-completion)
1016 (tramp-handle-file-name-directory)
1017 (tramp-handle-file-name-nondirectory, tramp-handle-file-regular-p)
1018 (tramp-handle-file-remote-p, tramp-handle-file-symlink-p)
1019 (tramp-handle-find-backup-file-name)
1020 (tramp-handle-insert-file-contents, tramp-handle-load)
1021 (tramp-handle-substitute-in-file-name)
1022 (tramp-handle-unhandled-file-name-directory)
1023 (tramp-mode-string-to-int, tramp-local-host-p)
1024 (tramp-make-tramp-temp-file): Move from tramp-sh.el.
1025
1026 * net/tramp-gvfs.el (top):
1027 * net/tramp-smb.el (top): Do not require 'tramp-sh.
1028
1029 * net/tramp-sh.el (all): Move several objects to tramp.el, see
1030 there. Rename `tramp-handle-*' to `tramp-sh-handle-*'.
1031
1032 2010-10-04 Glenn Morris <rgm@gnu.org>
1033
1034 * calendar/appt.el (appt-add): Ensure reminders are enabled.
1035 (appt-activate): Give status messages.
1036
1037 2010-10-03 Teodor Zlatanov <tzz@lifelogs.com>
1038
1039 * net/gnutls.el: Improve docs. Remove starttls and ssl emulation.
1040 Provide only `open-gnutls-stream' (formerly `open-ssl-stream') and
1041 `gnutls-negotiate' (formerly `starttls-negotiate').
1042 Remove trivial wrapper `starttls-open-stream'.
1043
1044 2010-10-03 Dan Nicolaescu <dann@ics.uci.edu>
1045
1046 Make 'g' (AKA revert-buffer) rerun the VC log, log-incoming and
1047 log-outgoing commands.
1048 * vc/vc.el (vc-log-internal-common): Add a new argument and use it
1049 to create a buffer local revert-buffer-function variable.
1050 (vc-print-log-internal, vc-log-incoming, vc-log-outgoing): Pass a
1051 revert-buffer-function lambda.
1052
1053 2010-10-03 Teodor Zlatanov <tzz@lifelogs.com>
1054
1055 * net/gnutls.el (starttls-negotiate): Use the plist interface to
1056 `gnutls-boot'. Make TYPE the only required parameter.
1057 Allow TRUSTFILES and KEYFILES to be lists.
1058 (open-ssl-stream): Use it.
1059
1060 2010-10-03 Glenn Morris <rgm@gnu.org>
1061
1062 * subr.el (directory-sep-char): Remove obsolete variable.
1063 * net/tramp-compat.el: Don't mess about with the byte-compiler unless
1064 it is "necessary".
1065
1066 * vc/vc-hooks.el (vc-header-alist): Remove obsolete variable.
1067 * vc/vc.el (vc-static-header-alist): Doc fix.
1068 * vc/vc-cvs.el (vc-cvs-header):
1069 * vc/vc-rcs.el (vc-rcs-header):
1070 * vc/vc-sccs.el (vc-sccs-header):
1071 * vc/vc-svn.el (vc-svn-header): Do not consult vc-header-alist.
1072 * obsolete/vc-mcvs.el (vc-mcvs-header):
1073 * progmodes/cperl-mode.el (cperl-mode): Only set vc-header-alist
1074 on XEmacs.
1075
1076 2010-10-03 Chong Yidong <cyd@stupidchicken.com>
1077
1078 * emacs-lisp/bytecomp.el (byte-compile-from-buffer):
1079 Remove obsolete use of binary-overwrite-mode (Bug#7001).
1080
1081 2010-10-03 Glenn Morris <rgm@gnu.org>
1082
1083 * obsolete/x-menu.el: Remove file, obsolete since 21.1
1084
1085 * textmodes/rst.el (rst-font-lock-keywords-function):
1086 Drop Emacs 20 code.
1087
1088 * textmodes/artist.el (artist-replace-char): Drop Emacs 20 code.
1089
1090 * printing.el: Drop Emacs 20 code.
1091
1092 * calendar/appt.el (appt-delete): Don't autoload it (you can't use it
1093 without having used appt.el already).
1094
1095 * subr.el (make-local-hook): Remove function obsolete since 21.1.
1096 * progmodes/cc-mode.el (make-local-hook): Don't do cc-bytecomp stuff.
1097 (c-basic-common-init, c-font-lock-init): Only call make-local-hook on
1098 XEmacs.
1099 * progmodes/cc-styles.el (make-local-hook): Don't do cc-bytecomp stuff.
1100 (c-make-styles-buffer-local): Only call make-local-hook on XEmacs.
1101
1102 * ps-def.el (leading-code-private-22, charset-bytes, charset-id)
1103 (charset-width, find-charset-region, chars-in-region, forward-point)
1104 (encode-coding-string, coding-system-p, ccl-execute-on-string)
1105 (define-ccl-program, multibyte-string-p, string-make-multibyte):
1106 Remove compatibility cruft (none of these are used by ps*.el).
1107
1108 2010-10-03 Kevin Rodgers <kevin.d.rodgers@gmail.com>
1109
1110 * subr.el (booleanp): Return t instead of a list (Bug#7086).
1111
1112 2010-10-03 Chong Yidong <cyd@stupidchicken.com>
1113
1114 * server.el (server-process-filter, server-return-error):
1115 Give emacsclient time to shut down after receiving an error string.
1116
1117 2010-10-02 Michael Albinus <michael.albinus@gmx.de>
1118
1119 * files.el (remote-file-name-inhibit-cache): New defcustom.
1120
1121 * time.el (display-time-file-nonempty-p):
1122 Use `remote-file-name-inhibit-cache'.
1123
1124 * net/tramp.el (tramp-completion-reread-directory-timeout):
1125 Fix docstring.
1126
1127 * net/tramp-cache.el (tramp-cache-inhibit-cache): Remove.
1128 (tramp-get-file-property): Replace `tramp-cache-inhibit-cache' by
1129 `remote-file-name-inhibit-cache'. Check also for an integer
1130 value. Add/increase counter when `tramp-verbose' >= 10.
1131 (tramp-set-file-property): Add/increase counter when
1132 `tramp-verbose' >= 10.
1133
1134 * net/tramp-cmds.el (tramp-cleanup-all-connections)
1135 (tramp-cleanup-all-buffers): Set tramp-autoload cookie.
1136 (tramp-bug): Set tramp-autoload cookie. Report all interned
1137 tramp-* variables. Report also `remote-file-name-inhibit-cache'.
1138 (tramp-reporter-dump-variable): Fix docstring. Mask non-7bit
1139 characters only in strings.
1140
1141 * net/tramp-compat.el (remote-file-name-inhibit-cache): Define due
1142 to backward compatibility.
1143
1144 * net/tramp-sh.el (tramp-handle-verify-visited-file-modtime)
1145 (tramp-handle-file-name-all-completions)
1146 (tramp-handle-vc-registered): Use `remote-file-name-inhibit-cache'.
1147 (tramp-open-connection-setup-interactive-shell):
1148 Call `tramp-cleanup-connection' directly.
1149
1150 2010-10-02 Glenn Morris <rgm@gnu.org>
1151
1152 * emacs-lisp/checkdoc.el (checkdoc-minor-keymap): Remove obsolete alias.
1153
1154 * subr.el (char-bytes): Remove obsolete function.
1155
1156 * isearch.el (isearch-return-char): Remove obsolete function.
1157
1158 * mouse.el: No longer provide mldrag.
1159 (mldrag-drag-mode-line, mldrag-drag-vertical-line):
1160 Remove obsolete aliases.
1161
1162 * comint.el (comint-kill-output): Remove obsolete alias.
1163
1164 * composite.el (decompose-composite-char): Remove obsolete function.
1165 * ps-def.el (decompose-composite-char): Remove unused function.
1166
1167 * iswitchb.el (iswitchb-default-keybindings): Remove obsolete function.
1168
1169 * outline.el (outline-visible): Remove obsolete function.
1170
1171 * term/pc-win.el (x-frob-font-slant, x-frob-font-weight):
1172 * faces.el (internal-find-face, internal-get-face)
1173 (frame-update-faces, frame-update-face-colors)
1174 (x-frob-font-weight, x-frob-font-slant)
1175 (internal-frob-font-weight, internal-frob-font-slant)
1176 (x-make-font-bold, x-make-font-demibold, x-make-font-unbold)
1177 (x-make-font-italic, x-make-font-oblique, x-make-font-unitalic)
1178 (x-make-font-bold-italic): Remove functions and aliases, obsolete
1179 since Emacs 21.1.
1180 * emulation/viper-util.el (viper-get-face):
1181 * obsolete/lucid.el (find-face, get-face): Use facep.
1182 * vc/ediff-init.el (ediff-valid-color-p, ediff-get-face):
1183 Remove unused functions.
1184 * vc/ediff-util.el (ediff-submit-report): Doc fix.
1185
1186 * emacs-lisp/bytecomp.el (byte-compile-file): Use kill-emacs-hook to
1187 delete tempfile if interrupted during compilation.
1188
1189 2010-10-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
1190
1191 * net/tls.el (tls-starttls-switches): Give up on using starttls with
1192 gnutls-cli.
1193 (tls-program): Add --insecure to be consistent with the defaults from
1194 openssl s_client. Now all three commands are insecure.
1195
1196 2010-10-01 Eli Zaretskii <eliz@gnu.org>
1197
1198 * makefile.w32-in (DEST, TAGS, TAGS-LISP, TAGS-nmake)
1199 (TAGS-LISP-nmake, TAGS-gmake, TAGS-LISP-gmake, TAGS-SH)
1200 (TAGS-LISP-SH, TAGS-CMD, TAGS-LISP-CMD): New targets.
1201
1202 2010-10-01 Glenn Morris <rgm@gnu.org>
1203
1204 * obsolete/sc.el: Remove file.
1205
1206 * files.el (temporary-file-directory): On darwin, also try
1207 DARWIN_USER_TEMP_DIR (see discussion in bug#7135).
1208
1209 2010-10-01 Juanma Barranquero <lekktu@gmail.com>
1210
1211 * server.el (server-start): Revert part of 2010-09-30T02:53:26Z!lekktu@gmail.com.
1212 Let's not break compatibility gratuitously, shall we?
1213
1214 2010-09-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
1215
1216 * net/tls.el (tls-starttls-switches): New variable.
1217 (tls-find-starttls-argument): Use it.
1218 (open-tls-stream): Ditto.
1219
1220 * net/netrc.el (netrc-credentials): Return the value of the "default"
1221 entry.
1222 (netrc-machine): Ditto.
1223
1224 2010-09-30 Eli Zaretskii <eliz@gnu.org>
1225
1226 * vc/vc-hooks.el (vc-default-mode-line-string): Doc fix.
1227
1228 2010-09-30 Juanma Barranquero <lekktu@gmail.com>
1229
1230 * server.el (server-start): Don't write pid to the authentication file.
1231 (server-create-tty-frame): Don't send pid.
1232 (server-process-filter): Send pid at the start of every connection.
1233
1234 2010-09-30 Glenn Morris <rgm@gnu.org>
1235
1236 * calendar/diary-lib.el (view-diary-entries, list-diary-entries)
1237 (show-all-diary-entries): Remove obsolete function aliases.
1238
1239 * calendar/appt.el (appt-issue-message, appt-visible, appt-msg-window):
1240 Remove options, obsolete since 22.1.
1241 (appt-display-format, appt-display-message): Remove
1242 backwards-compatibility code.
1243 (appt-check): No longer check appt-issue-message.
1244 (appt-make-list): No longer autoload it. Doc fix. No longer
1245 activate the package.
1246
1247 2010-09-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
1248
1249 * net/gnutls.el (starttls-negotiate): Loop a lot longer.
1250 (starttls-negotiate): Just call boot, and let the handshake be
1251 triggered from the read loop.
1252
1253 2010-09-29 Glenn Morris <rgm@gnu.org>
1254
1255 * calendar/diary-lib.el (diary-list-entries): Use temp buffers when
1256 not displaying the diary.
1257 (diary-add-to-list): If no buffer-file-name, fall back to diary-file.
1258 * calendar/appt.el (appt-check): No longer need to kill diary.
1259
1260 * calendar/diary-lib.el (diary-list-entries): Move the
1261 "Preparing..." message entirely here.
1262 (diary-simple-display, diary-fancy-display): Move "Preparing..."
1263 messages to diary-list-entries.
1264 (diary-include-other-diary-files): Use LIST-ONLY rather than setting
1265 diary-display-function.
1266
1267 * calendar/diary-lib.el (diary-include-other-diary-files):
1268 Trap some recursive includes.
1269
1270 * calendar/appt.el (appt-activate): Check diary file.
1271
1272 2010-09-29 Katsumi Yamaoka <yamaoka@jpl.org>
1273
1274 * pgg.el (pgg-run-at-time-1): Define it for XEmacs only; fix if/else
1275 construction.
1276
1277 * calendar/time-date.el: No need to require cl for Emacs 21.
1278
1279 2010-09-28 Glenn Morris <rgm@gnu.org>
1280
1281 * calendar/appt.el (appt-check): Minor simplification.
1282
1283 2010-09-28 Katsumi Yamaoka <yamaoka@jpl.org>
1284
1285 * mail/sendmail.el (mail-citation-prefix-regexp): Remove "}" from
1286 citation prefix.
1287
1288 2010-09-27 Andreas Schwab <schwab@linux-m68k.org>
1289
1290 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
1291 Avoid infinite recursion on erroneous lambda form. (Bug#7114)
1292
1293 2010-09-27 Kenichi Handa <handa@m17n.org>
1294
1295 * tar-mode.el (tar-header-block-tokenize): Decode filenames in
1296 "ustar" format.
1297
1298 2010-09-27 Kenichi Handa <handa@m17n.org>
1299
1300 * international/mule.el (define-coding-system): Docstring fixed.
1301
1302 * international/mule-diag.el (describe-character-set): Use princ
1303 with proper print-length and print-level instead of insert.
1304
1305 2010-09-27 Juanma Barranquero <lekktu@gmail.com>
1306
1307 * window.el (walk-windows): Doc fix (bug#7105).
1308
1309 2010-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
1310
1311 * emacs-lisp/float-sup.el (e): Remove.
1312
1313 2010-09-27 Teodor Zlatanov <tzz@lifelogs.com>
1314
1315 * net/gnutls.el (gnutls, gnutls-log-level): Add group and custom
1316 variable.
1317 (starttls-negotiate): Use it.
1318
1319 2010-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
1320
1321 * net/gnutls.el (starttls-negotiate): Stop looping when we get a t
1322 back.
1323
1324 2010-09-26 Stefan Monnier <monnier@iro.umontreal.ca>
1325
1326 * emacs-lisp/pcase.el (pcase-let*, pcase-let): plet -> pcase-let.
1327
1328 2010-09-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
1329
1330 * net/gnutls.el (starttls-negotiate): Avoid the cl.el decf function.
1331
1332 * net/netrc.el (netrc-store-data): New function.
1333
1334 2010-09-26 Teodor Zlatanov <tzz@lifelogs.com>
1335
1336 * net/gnutls.el: GnuTLS glue code to set up a connection.
1337
1338 2010-09-25 Julien Danjou <julien@danjou.info>
1339
1340 * notifications.el: Call dbus-register-signal only if it is bound.
1341
1342 2010-09-25 Glenn Morris <rgm@gnu.org>
1343
1344 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
1345 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
1346 * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
1347 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
1348 * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
1349 * eshell/esh-cmd.el, eshell/esh-ext.el, eshell/esh-io.el:
1350 * eshell/esh-mode.el, eshell/esh-proc.el, eshell/esh-test.el:
1351 * eshell/esh-util.el, eshell/esh-var.el:
1352 Remove leading `*' from docs of faces and defcustoms.
1353
1354 2010-09-25 Ulrich Mueller <ulm@gentoo.org>
1355
1356 * eshell/em-ls.el (eshell-ls-archive-regexp):
1357 * eshell/esh-util.el (eshell-tar-regexp):
1358 * ibuffer.el (ibuffer-compressed-file-name-regexp):
1359 * info.el (Info-suffix-list):
1360 * international/mule.el (auto-coding-alist):
1361 * woman.el (woman-file-regexp, woman-file-compression-regexp):
1362 * progmodes/etags.el (tags-compression-info-list):
1363 Support xz compression.
1364
1365 2010-09-25 Chong Yidong <cyd@stupidchicken.com>
1366
1367 * files.el (get-free-disk-space): Don't assume the "df" output
1368 columns line up (Bug#6995).
1369
1370 2010-09-25 Juanma Barranquero <lekktu@gmail.com>
1371
1372 * finder.el (finder-unknown-keywords):
1373 * progmodes/gdb-mi.el (gdb-jsonify-buffer, gdb-running-threads-count):
1374 * progmodes/etags.el (tags-table-including): Fix typos in docstrings.
1375
1376 2010-09-25 Juanma Barranquero <lekktu@gmail.com>
1377
1378 * server.el (server-start): Revert part of 2010-08-08 change. Using
1379 address 127.0.0.1 for local host is now done in Fmake_network_process.
1380
1381 2010-09-24 Glenn Morris <rgm@gnu.org>
1382
1383 * image-mode.el, progmodes/compile.el, progmodes/gud.el:
1384 * progmodes/mixal-mode.el, textmodes/bibtex-style.el:
1385 * textmodes/css-mode.el, textmodes/dns-mode.el:
1386 Move autoloaded auto-mode-alist entries to files.el.
1387 * files.el (auto-mode-alist): Move entries here.
1388
1389 2010-09-23 Glenn Morris <rgm@gnu.org>
1390
1391 * isearch.el (isearch-lazy-highlight-cleanup)
1392 (isearch-lazy-highlight-initial-delay)
1393 (isearch-lazy-highlight-interval)
1394 (isearch-lazy-highlight-max-at-a-time, isearch-lazy-highlight-face):
1395 * net/net-utils.el (ipconfig-program-options):
1396 Move aliases to options before the associated definitions.
1397
1398 2010-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
1399
1400 * newcomment.el (comment-normalize-vars): Better test validity of
1401 comment-end-skip.
1402
1403 2010-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
1404
1405 * emacs-lisp/float-sup.el (float-pi): New name for `pi'.
1406 (float-e): New name for `e'.
1407 (degrees-to-radians, radians-to-degrees):
1408 * calendar/solar.el (solar-longitude):
1409 * calculator.el (calculator-registers, calculator-funcall):
1410 * textmodes/artist.el (artist-spray-random-points):
1411 * play/bubbles.el (bubbles--initialize-images): Use new names.
1412
1413 2010-09-23 Eric M. Ludlam <zappo@gnu.org>
1414
1415 Update to CEDET 1.0's version of EIEIO.
1416
1417 * emacs-lisp/eieio.el (eieio-specialized-key-to-generic-key):
1418 New function.
1419 (eieio-defmethod, eieio-generic-form, eieio-generic-call): Use it.
1420 (eieio-default-eval-maybe): Eval val instead of unquoting only.
1421 (class-precedence-list): If class is nil, return nil.
1422 (eieio-generic-call): If class of first input arg is nil, don't
1423 look up static methods, and do check for primary methods.
1424 (initialize-instance): See if the default needs to be evaluated
1425 during the constructor.
1426 (eieio-perform-slot-validation-for-default): Don't do the check
1427 for values that will eventually be evaluated.
1428 (eieio-eval-default-p): New function.
1429 (eieio-default-eval-maybe): Use it.
1430
1431 2010-09-23 Jan Moringen <jan.moringen@uni-bielefeld.de>
1432
1433 * emacs-lisp/eieio.el (eieio-defclass): Allow :c3
1434 method-invocation-order.
1435 (eieio-c3-candidate, eieio-c3-merge-lists): New functions.
1436 (eieio-class-precedence-dfs): Compute class precedence list using
1437 dfs algorithm.
1438 (eieio-class-precedence-bfs): Compute class precedence list using
1439 bfs algorithm.
1440 (eieio-class-precedence-c3): Compute class precedence list using
1441 c3 algorithm.
1442 (class-precedence-list): New function.
1443 (eieiomt-method-list, eieiomt-sym-optimize): Use it.
1444 (inconsistent-class-hierarchy): New error symbol.
1445 (call-next-method): Stow the replacement argument list for future
1446 call-next-method invocations.
1447
1448 2010-09-23 Glenn Morris <rgm@gnu.org>
1449
1450 * calendar/appt.el (appt-check): If not displaying the diary,
1451 use (diary 1) to only get the entries we need.
1452 (appt-make-list): Sort diary-list-entries, if we cannot guarantee
1453 that it is in day order. (Bug#7019)
1454
1455 * calendar/appt.el (appt-check): Rather than showing the diary,
1456 just turn off invisible display, and only if needed.
1457
1458 * calendar/diary-lib.el (diary-list-entries): Doc fix. (Bug#7019)
1459
1460 2010-09-23 Glenn Morris <rgm@gnu.org>
1461
1462 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
1463 (byte-compile-defvar, byte-compile-cl-warn):
1464 Start warnings with lower-case, like the majority.
1465
1466 * files.el (auto-mode-alist): Add .xa, .xw, .xsw for ld-script-mode.
1467
1468 * files.el (auto-mode-alist): Prefer C-mode for .xs. (Bug#7071)
1469
1470 * progmodes/ld-script.el (auto-mode-alist): Move to files.el.
1471 * files.el (auto-mode-alist): Move ld-script entries here, further down
1472 the list.
1473
1474 * vc/add-log.el: Don't require timezone when compiling.
1475 (timezone-make-date-sortable): Autoload it.
1476 (change-log-sortable-date-at): Don't require timezone.
1477 Use `ignore-errors'.
1478
1479 * comint.el (comint-use-prompt-regexp-instead-of-fields):
1480 Move alias before definition, so it does not need autoloading.
1481
1482 * emulation/crisp.el, emulation/cua-base.el, emulation/edt.el:
1483 * emulation/pc-select.el, emulation/vip.el, international/iso-ascii.el:
1484 * international/kkc.el, international/ogonek.el, mail/feedmail.el:
1485 * net/browse-url.el, net/eudc-vars.el, net/net-utils.el:
1486 * net/rcompile.el, net/rlogin.el, textmodes/enriched.el:
1487 * textmodes/makeinfo.el, textmodes/page-ext.el, textmodes/picture.el:
1488 * textmodes/refer.el, textmodes/spell.el, textmodes/table.el:
1489 * textmodes/tex-mode.el, textmodes/two-column.el:
1490 Remove leading `*' from docs of defcustoms etc.
1491
1492 2010-09-23 Teodor Zlatanov <tzz@lifelogs.com>
1493
1494 * net/netrc.el (netrc-parse): Remove encrypt.el mentions.
1495
1496 2010-09-22 Dan Christensen <jdc@uwo.ca>
1497
1498 * calendar/time-date.el (date-to-time): Try using parse-time-string
1499 first before using the slower timezone-make-date-arpa-standard.
1500
1501 2010-09-22 Katsumi Yamaoka <yamaoka@jpl.org>
1502
1503 * calendar/time-date.el (format-seconds): Comment fix.
1504
1505 2010-09-22 Glenn Morris <rgm@gnu.org>
1506
1507 * emacs-lisp/package.el (package-menu-mode): `revert-buffer-function'
1508 is not automatically buffer-local.
1509
1510 2010-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
1511
1512 * emacs-lisp/smie.el (smie-debug--describe-cycle): Fix typo.
1513 (smie-indent-comment): Be more careful with comment-start-skip.
1514 (smie-indent-comment-close, smie-indent-comment-inside): New funs.
1515 (smie-indent-functions): Use them.
1516
1517 2010-09-21 Michael Albinus <michael.albinus@gmx.de>
1518
1519 * net/ange-ftp.el (ange-ftp-skip-msgs): Add "^504 ..." message.
1520
1521 2010-09-21 Jan Djärv <jan.h.d@swipnet.se>
1522
1523 * menu-bar.el (menu-bar-set-tool-bar-position): customize-set-variable
1524 tool-bar-position. Don't modify frame parameters here.
1525 (menu-bar-options-save): Add tool-bar-position.
1526
1527 * tool-bar.el (tool-bar-position): New defcustom (Bug#7049).
1528
1529 2010-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
1530
1531 * textmodes/reftex-parse.el (reftex-what-macro)
1532 (reftex-context-substring): Let-bind forward-sexp-function to nil
1533 since we don't need/want to treat \begin...\end as a block (bug#7053).
1534
1535 * emacs-lisp/lisp.el (up-list): Don't do nothing silently.
1536
1537 * simple.el (blink-matching-open): Use syntax-class.
1538
1539 * progmodes/pascal.el (pascal-mode): Use define-derived-mode.
1540 Set invisibility spec for pascal's outline mode.
1541 (pascal-outline-change): Clean up calling convention.
1542 (pascal-show-all, pascal-hide-other-defuns): Update callers.
1543
1544 * progmodes/prolog.el (prolog-smie-forward-token)
1545 (prolog-smie-backward-token): New functions.
1546 (prolog-mode-variables): Use them to parse "!," correctly.
1547 Set up smie-blink-matching for ".".
1548
1549 * textmodes/ispell.el (ispell-start, ispell-end): Rename from `start'
1550 and `end'.
1551 (ispell-region, ispell-process-line): Update users.
1552
1553 * textmodes/reftex-parse.el (reftex-what-macro): Don't hardcode
1554 point-min==1.
1555
1556 * textmodes/ispell.el: Fix commenting convention.
1557 (ispell-parse-output): Simplify, use push.
1558 (ispell-region): Use match-string-no-properties.
1559 (ispell-begin-skip-region-regexp): Use mapconcat to simplify.
1560 (ispell-minor-mode): Use define-minor-mode.
1561 (ispell-message): Remove unused var `skip-regexp'.
1562 (ispell-add-per-file-word-list): Use dynamic let-binding.
1563 Try and use the proper comment marker.
1564
1565 * mail/sendmail.el: Fix commenting convention.
1566 (sendmail-send-it): Use line-beginning-position.
1567
1568 * help-fns.el (describe-variable): Add original value, if applicable.
1569
1570 2010-09-20 Juanma Barranquero <lekktu@gmail.com>
1571
1572 * subr.el (y-or-n-p): Remove leftover code from 2010-09-17T13:30:30Z!monnier@iro.umontreal.ca.
1573
1574 * emacs-lisp/smie.el (smie-indent--hanging-p): Use `smie-indent--bolp'.
1575
1576 2010-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
1577
1578 * emacs-lisp/smie.el (smie-bnf-precedence-table): Improve error message.
1579 (smie-debug--prec2-cycle, smie-debug--describe-cycle): New functions.
1580 (smie-prec2-levels): Use them to better diagnose precedence cycles.
1581 (smie-blink-matching-check): Don't signal a mismatch if car is t.
1582 (smie-blink-matching-open): Rewrite to remove assumptions, so that
1583 something like "." can also be a closer.
1584 (smie--associative-p, smie-indent--hanging-p, smie-indent--bolp)
1585 (smie-indent--offset, smie-indent--offset-rule, smie-indent--column):
1586 Rename internal functions to use "--". Update callers.
1587
1588 * frame.el (make-frame-names-alist): Don't list frames on other displays.
1589
1590 * fringe.el (fringe-styles): New var.
1591 (fringe-mode, fringe-query-style): Use it.
1592
1593 2010-09-18 Michael R. Mauger <mmaug@yahoo.com>
1594
1595 * progmodes/sql.el: Version 2.8
1596 (sql-login-params): Update widget structure; changes still needed.
1597 (sql-product-alist): Add :list-all and :list-table features for
1598 SQLite, Postgres and MySQL products.
1599 (sql-redirect): Handle default value.
1600 (sql-execute, sql-execute-feature): New functions.
1601 (sql-read-table-name): New function.
1602 (sql-list-all, sql-list-table): New functions. User API.
1603 (sql-mode-map, sql-interactive-mode-map): Add key definitions
1604 for above functions.
1605 (sql-mode-menu, sql-interactive-mode-menu): Add menu definitions
1606 for above functions.
1607 (sql-postgres-login-params): Add user and database defaults.
1608 (sql-buffer-live-p): Bug fix.
1609 (sql-product-history): New variable.
1610 (sql-read-product): New function. Use it.
1611 (sql-set-product, sql-product-interactive): Use it.
1612 (sql-connection-history): New variable.
1613 (sql-read-connection): New function. Use it.
1614 (sql-connect): New function.
1615 (sql-for-each-login): Redesign function interface.
1616 (sql-make-alternate-buffer-name, sql-save-connection): Use it.
1617 (sql-get-login-ext, sql-get-login): Use it. Handle default values.
1618 (sql-comint): Check for program. Existing live buffer.
1619 (sql-comint-postgres): Add port parameter.
1620
1621 2010-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
1622
1623 * emacs-lisp/warnings.el: Fix commenting convention.
1624 (display-warning): Use special mode and make the buffer read-only.
1625
1626 2010-09-18 Jay Belanger <jay.p.belanger@gmail.com>
1627
1628 * calc/calc-prog.el (calc-read-parse-table-part): Don't "fix" the
1629 empty string when it follows a repeated or optional pattern.
1630
1631 2010-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
1632
1633 * indent.el (indent-according-to-mode): Apply syntax-propertize.
1634 (indent-region): Use indent-according-to-mode.
1635
1636 2010-09-18 Eli Zaretskii <eliz@gnu.org>
1637
1638 * fringe.el (fringe-mode): Doc fix.
1639
1640 2010-09-14 Kan-Ru Chen <kanru@kanru.info> (tiny change)
1641
1642 * textmodes/nroff-mode.el (nroff-view): Kill old buffer before
1643 refreshing the preview buffer.
1644
1645 2010-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
1646
1647 * textmodes/tex-mode.el (tex-syntax-propertize-rules)
1648 (latex-syntax-propertize-rules): New consts; replace
1649 tex-font-lock-syntactic-keywords.
1650 (tex-env-mark, latex-env-before-change): New functions.
1651 (latex-electric-env-pair-mode): New minor mode.
1652 (tex-font-lock-verb): Change arguments; do move point.
1653 (tex-font-lock-syntactic-face-function): Adjust to new verbatim
1654 representation as a form of comment.
1655 (tex-font-lock-keywords-1): Remove workaround, now unneeded.
1656 (doctex-syntax-propertize-rules): New const; replaces
1657 doctex-font-lock-syntactic-keywords.
1658 (tex-common-initialization, doctex-mode): Use syntax-propertize-rules.
1659
1660 * progmodes/fortran.el (fortran--font-lock-syntactic-keywords): Remove.
1661 (fortran-make-syntax-propertize-function): New function; replaces
1662 fortran-font-lock-syntactic-keywords.
1663 (fortran-mode): Use it.
1664 (fortran-line-length): Use it. Improve interactive spec.
1665
1666 * emacs-lisp/syntax.el (syntax-propertize-precompile-rules): New macro.
1667 (syntax-propertize-rules): Add var-ref case. Fix offset computation
1668 when adding surrounding \(..\).
1669
1670 * progmodes/js.el (js-mode): Fix last change (bug#7054).
1671
1672 2010-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
1673
1674 * obsolete/old-whitespace.el (whitespace-rescan-files-in-buffers):
1675 Use with-current-buffer.
1676
1677 * isearch.el (isearch-face): Rename from `isearch'.
1678 (isearch-highlight): Use new name.
1679
1680 2010-09-17 Eli Zaretskii <eliz@gnu.org>
1681
1682 * fringe.el (fringe-mode, fringe-query-style): Use 4 pixels, not
1683 5, for `half' width fringes. (Bug#6933)
1684
1685 2010-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
1686
1687 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar)
1688 (byte-compile-defvar): "foo/bar" does not lack a prefix.
1689
1690 * subr.el (y-or-n-p): Add the "(y or n)" that was lost somehow.
1691
1692 2010-09-17 Stephen Berman <stephen.berman@gmx.net>
1693
1694 * dframe.el (dframe-reposition-frame-emacs): Use tool-bar-pixel-width
1695 in calculating new frame position. Add more space between new and
1696 parent on the left (Bug#7048).
1697
1698 2010-09-17 Michael Albinus <michael.albinus@gmx.de>
1699
1700 * net/tramp-compat.el (tramp-compat-with-temp-message): Make it a
1701 defmacro.
1702
1703 2010-09-16 Chong Yidong <cyd@stupidchicken.com>
1704
1705 * mail/sendmail.el: Add "*unsent mail*" to same-window-buffer-names.
1706
1707 * term/x-win.el (x-cut-buffer-or-selection-value): Define as
1708 obsolete alias for x-selection-value.
1709
1710 * ido.el (ido-make-buffer-list): Fix error in 2010-08-22 merge.
1711
1712 2010-09-16 Michael Albinus <michael.albinus@gmx.de>
1713
1714 * net/tramp-cmds.el (tramp-cleanup-connection): Set tramp-autoload
1715 cookie.
1716
1717 2010-09-15 Michael Albinus <michael.albinus@gmx.de>
1718
1719 * net/tramp-compat.el (tramp-compat-with-temp-message)
1720 (tramp-compat-font-lock-add-keywords, tramp-compat-process-get)
1721 (tramp-compat-process-put): New defuns.
1722
1723 * net/tramp.el (top):
1724 * net/tramp-gvfs.el (top):
1725 * net/tramp-cache.el (top): Use `tramp-compat-font-lock-add-keywords'.
1726
1727 * net/tramp.el (tramp-progress-reporter-update):
1728 Use `tramp-compat-funcall'.
1729
1730 * net/tramp.el (tramp-process-actions):
1731 * net/tramp-gvfs.el (tramp-handle-vc-registered):
1732 * net/tramp-sh.el (tramp-gvfs-handler-askquestion)
1733 (tramp-get-remote-stat, tramp-get-remote-readlink):
1734 Use `tramp-compat-with-temp-message'.
1735
1736 * net/tramp-sh.el (top): Require 'cl.
1737 (tramp-handle-start-file-process): Use `tramp-compat-process-get'.
1738 (tramp-open-connection-setup-interactive-shell):
1739 Use `tramp-compat-process-put'.
1740
1741 2010-09-15 Alan Mackenzie <acm@muc.de>
1742
1743 * progmodes/cc-engine.el (c-forward-<>-arglist-recur): Correct the
1744 indentation.
1745 (c-forward-<>-arglist-recur): Fix an infinite recursion.
1746
1747 2010-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
1748
1749 * emacs-lisp/bytecomp.el (byte-compile-warning-types): New type
1750 `lexical' for warnings related to lexical scoping.
1751 (byte-compile-file-form-defvar, byte-compile-defvar): Warn about
1752 global vars which don't have a prefix and could hence affect lexical
1753 scoping in unrelated files.
1754
1755 2010-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
1756
1757 * net/imap.el: Revert back to version
1758 cb950ed8ff3e0f40dac437a51b269166f9ffb60d, since some of the changes
1759 seem problematic.
1760
1761 2010-09-14 Juanma Barranquero <lekktu@gmail.com>
1762
1763 * obsolete/old-whitespace.el (whitespace-unload-function):
1764 Explicitly pass `obarray' to `unintern' to avoid a warning.
1765
1766 2010-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
1767
1768 * emacs-lisp/byte-run.el (set-advertised-calling-convention):
1769 Add `when' argument. Update callers.
1770
1771 * subr.el (unintern): Declare the obarray arg mandatory.
1772
1773 2010-09-14 Glenn Morris <rgm@gnu.org>
1774
1775 * calendar/diary-lib.el (diary-list-entries-hook, diary-sort-entries):
1776 Doc fixes.
1777
1778 * calendar/diary-lib.el (diary-included-files): New variable.
1779 (diary-list-entries): Maybe initialize diary-included-files.
1780 (diary-include-other-diary-files): Append to diary-included-files.
1781 * calendar/appt.el (appt-update-list): Also check the members of
1782 diary-included-files. (Bug#6999)
1783 (appt-check): Doc fix.
1784
1785 2010-09-14 David Reitter <david.reitter@gmail.com>
1786
1787 * simple.el (line-move-visual): Do not truncate goal column to
1788 integer size. (Bug#7020)
1789
1790 2010-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
1791
1792 * repeat.el (repeat): Allow repeating when the last event is a click.
1793 Suggested by Drew Adams (bug#6256).
1794
1795 2010-09-14 Sascha Wilde <wilde@sha-bang.de>
1796
1797 * vc/vc-hg.el (vc-hg-state,vc-hg-working-revision):
1798 Replace setting HGRCPATH to "" by some less invasive --config options.
1799
1800 2010-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
1801
1802 * font-lock.el (font-lock-beginning-of-syntax-function):
1803 Mark as obsolete.
1804
1805 2010-09-14 Glenn Morris <rgm@gnu.org>
1806
1807 * menu-bar.el (menu-bar-options-save): Fix handling of menu-bar
1808 and tool-bar modes. (Bug#6211)
1809 (menu-bar-mode): Move setting of standard-value after the
1810 minor-mode definition, otherwise it seems to have no effect.
1811
1812 2010-09-14 Masatake YAMATO <yamato@redhat.com>
1813
1814 * progmodes/antlr-mode.el (antlr-font-lock-additional-keywords):
1815 Fix typo. (Bug#6976)
1816
1817 2010-09-14 Vinicius Jose Latorre <viniciusjl@ig.com.br>
1818
1819 * whitespace.el: Allow cleaning up blanks without blank
1820 visualization (Bug#6651). Adjust help window for
1821 whitespace-toggle-options (Bug#6479). Allow to use fill-column
1822 instead of whitespace-line-column (from EmacsWiki). New version 13.1.
1823 (whitespace-style): Add new value 'face. Adjust docstring.
1824 (whitespace-space, whitespace-hspace, whitespace-tab):
1825 Adjust foreground property face.
1826 (whitespace-line-column): Adjust docstring and type declaration.
1827 (whitespace-style-value-list, whitespace-toggle-option-alist)
1828 (whitespace-help-text): Adjust const initialization.
1829 (whitespace-toggle-options, global-whitespace-toggle-options):
1830 Adjust docstring.
1831 (whitespace-display-window, whitespace-interactive-char)
1832 (whitespace-style-face-p, whitespace-color-on): Adjust code.
1833 (whitespace-help-scroll): New fun.
1834
1835 2010-09-14 Katsumi Yamaoka <yamaoka@jpl.org>
1836
1837 * calendar/time-date.el (format-seconds): Comment fix.
1838
1839 2010-09-13 Michael R. Mauger <mmaug@yahoo.com>
1840
1841 * progmodes/sql.el: Version 2.7.
1842 (sql-buffer-live-p): Improve detection.
1843 (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
1844 (sql-set-sqli-buffer): Use it.
1845 (sql-product-interactive): Run `sql-set-sqli-hook'.
1846 (sql-rename-buffer): Code cleanup.
1847 (sql-redirect, sql-redirect-value): New functions. More to come.
1848
1849 2010-09-13 Juanma Barranquero <lekktu@gmail.com>
1850
1851 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.
1852 * makefile.w32-in (LOADDEFS): Add $(lisp)/net/tramp-loaddefs.el.
1853 (TRAMP_SRC): New macro.
1854 ($(lisp)/net/tramp-loaddefs.el): New target.
1855
1856 2010-09-13 Michael Albinus <michael.albinus@gmx.de>
1857
1858 Major code cleanup. Split tramp.el into tramp.el and tramp-sh.el.
1859
1860 * Makefile.in (TRAMP_SRC): Remove tramp-fish.el. Add tramp-sh.el.
1861
1862 * net/tramp.el (top): Don't show loading message. Require just
1863 'tramp-compat, everything else is required there.
1864 Use `ignore-errors' where appropriate.
1865 (tramp-inline-compress-start-size, tramp-copy-size-limit)
1866 (tramp-terminal-type, tramp-end-of-output)
1867 (tramp-initial-end-of-output, tramp-completion-function-alist-rsh)
1868 (tramp-completion-function-alist-ssh)
1869 (tramp-completion-function-alist-telnet)
1870 (tramp-completion-function-alist-su)
1871 (tramp-completion-function-alist-putty, tramp-remote-path)
1872 (tramp-remote-process-environment, tramp-sh-extra-args)
1873 (tramp-actions-before-shell, tramp-uudecode)
1874 (tramp-perl-file-truename, tramp-perl-file-name-all-completions)
1875 (tramp-perl-file-attributes)
1876 (tramp-perl-directory-files-and-attributes)
1877 (tramp-perl-encode-with-module, tramp-perl-decode-with-module)
1878 (tramp-perl-encode, tramp-perl-decode)
1879 (tramp-vc-registered-read-file-names, tramp-file-mode-type-map)
1880 (tramp-file-name-handler-alist, tramp-make-tramp-temp-file)
1881 (tramp-handle-make-symbolic-link, tramp-handle-load)
1882 (tramp-handle-file-name-as-directory)
1883 (tramp-handle-file-name-directory)
1884 (tramp-handle-file-name-nondirectory, tramp-handle-file-truename)
1885 (tramp-handle-file-exists-p, tramp-handle-file-attributes)
1886 (tramp-do-file-attributes-with-ls)
1887 (tramp-do-file-attributes-with-perl)
1888 (tramp-do-file-attributes-with-stat)
1889 (tramp-handle-set-visited-file-modtime)
1890 (tramp-handle-verify-visited-file-modtime)
1891 (tramp-handle-set-file-modes, tramp-handle-set-file-times)
1892 (tramp-set-file-uid-gid, tramp-remote-selinux-p)
1893 (tramp-handle-file-selinux-context)
1894 (tramp-handle-set-file-selinux-context)
1895 (tramp-handle-file-executable-p, tramp-handle-file-readable-p)
1896 (tramp-handle-file-newer-than-file-p, tramp-handle-file-modes)
1897 (tramp-handle-file-directory-p, tramp-handle-file-regular-p)
1898 (tramp-handle-file-symlink-p, tramp-handle-file-writable-p)
1899 (tramp-handle-file-ownership-preserved-p)
1900 (tramp-handle-directory-file-name, tramp-handle-directory-files)
1901 (tramp-handle-directory-files-and-attributes)
1902 (tramp-do-directory-files-and-attributes-with-perl)
1903 (tramp-do-directory-files-and-attributes-with-stat)
1904 (tramp-handle-file-name-all-completions)
1905 (tramp-handle-file-name-completion, tramp-handle-add-name-to-file)
1906 (tramp-handle-copy-file, tramp-handle-copy-directory)
1907 (tramp-handle-rename-file, tramp-do-copy-or-rename-file)
1908 (tramp-do-copy-or-rename-file-via-buffer)
1909 (tramp-do-copy-or-rename-file-directly)
1910 (tramp-do-copy-or-rename-file-out-of-band)
1911 (tramp-handle-make-directory, tramp-handle-delete-directory)
1912 (tramp-handle-delete-file)
1913 (tramp-handle-dired-recursive-delete-directory)
1914 (tramp-handle-dired-compress-file, tramp-handle-dired-uncache)
1915 (tramp-handle-insert-directory)
1916 (tramp-handle-unhandled-file-name-directory)
1917 (tramp-handle-expand-file-name)
1918 (tramp-handle-substitute-in-file-name)
1919 (tramp-handle-executable-find, tramp-process-sentinel)
1920 (tramp-handle-start-file-process, tramp-handle-process-file)
1921 (tramp-handle-call-process-region, tramp-handle-shell-command)
1922 (tramp-handle-file-local-copy, tramp-handle-file-remote-p)
1923 (tramp-handle-insert-file-contents)
1924 (tramp-handle-insert-file-contents-literally)
1925 (tramp-handle-find-backup-file-name)
1926 (tramp-handle-make-auto-save-file-name, tramp-handle-write-region)
1927 (tramp-vc-registered-file-names, tramp-handle-vc-registered)
1928 (tramp-sh-file-name-handler, tramp-vc-file-name-handler)
1929 (tramp-maybe-send-script, tramp-set-auto-save, tramp-run-test)
1930 (tramp-run-test2, tramp-find-executable, tramp-set-remote-path)
1931 (tramp-find-file-exists-command, tramp-open-shell)
1932 (tramp-find-shell, tramp-barf-if-no-shell-prompt)
1933 (tramp-open-connection-setup-interactive-shell)
1934 (tramp-local-coding-commands, tramp-remote-coding-commands)
1935 (tramp-find-inline-encoding, tramp-call-local-coding-command)
1936 (tramp-inline-compress-commands, tramp-find-inline-compress)
1937 (tramp-compute-multi-hops, tramp-maybe-open-connection)
1938 (tramp-send-command, tramp-wait-for-output)
1939 (tramp-send-command-and-check, tramp-barf-unless-okay)
1940 (tramp-send-command-and-read, tramp-mode-string-to-int)
1941 (tramp-convert-file-attributes, tramp-check-cached-permissions)
1942 (tramp-file-mode-from-int, tramp-file-mode-permissions)
1943 (tramp-shell-case-fold, tramp-make-copy-program-file-name)
1944 (tramp-method-out-of-band-p, tramp-local-host-p)
1945 (tramp-get-remote-path, tramp-get-remote-tmpdir)
1946 (tramp-get-ls-command, tramp-get-ls-command-with-dired)
1947 (tramp-get-test-command, tramp-get-test-nt-command)
1948 (tramp-get-file-exists-command, tramp-get-remote-ln)
1949 (tramp-get-remote-perl, tramp-get-remote-stat)
1950 (tramp-get-remote-readlink, tramp-get-remote-trash)
1951 (tramp-get-remote-id, tramp-get-remote-uid, tramp-get-remote-gid)
1952 (tramp-get-local-uid, tramp-get-local-gid)
1953 (tramp-get-inline-compress, tramp-get-inline-coding): Move to
1954 tramp-sh.el.
1955 (tramp-methods, tramp-default-method-alist)
1956 (tramp-default-user-alist, tramp-foreign-file-name-handler-alist):
1957 Move initialization to tramp-sh.el.
1958 (tramp-temp-name-prefix): Make it a defconst.
1959 (tramp-dissect-file-name): Don't check anymore for multi-hop
1960 methods.
1961 (tramp-debug-outline-regexp): Add a docstring.
1962 (tramp-debug-outline-level): Rename from `tramp-outline-level'.
1963 (tramp-get-debug-buffer): Use it.
1964
1965 * net/tramp-cache.el (top): Set tramp-autoload cookie for
1966 initialization forms.
1967 (tramp-set-connection-property): Don't protect `tramp-message'
1968 call, it isn't necessary any longer.
1969 (tramp-dump-connection-properties): Use `ignore-errors'.
1970
1971 * net/tramp-compat.el (top): Require 'advice, 'format-spec,
1972 'password-cache and 'auth-source.
1973
1974 * net/tramp-gvfs.el (top):
1975 * net/tramp-smb.el (top): Require 'tramp-sh.
1976
1977 * net/tramp-gw.el (tramp-gw-open-network-stream): Use `ignore-errors'.
1978
1979 * net/tramp-sh.el: New file, derived from tramp.el.
1980 (top): Initialize `tramp-methods', `tramp-default-method-alist',
1981 `tramp-default-user-alist', `tramp-foreign-file-name-handler-alist'.
1982 Remove "scp1_old", "scp2_old", "ssh1_old", "ssh2_old".
1983 Use `ignore-errors' where appropriate.
1984 (tramp-sh-file-name-handler-alist): Rename from
1985 `tramp-file-name-handler-alist'.
1986 (tramp-send-command-and-check): Return t or nil. Remove all
1987 `zerop' checks, where called.
1988 (tramp-handle-set-file-modes)
1989 (tramp-do-copy-or-rename-file-directly)
1990 (tramp-handle-delete-directory, tramp-handle-delete-file)
1991 (tramp-maybe-send-script): Use `tramp-barf-unless-okay'.
1992 (tramp-sh-file-name-handler, tramp-send-command-and-check)
1993 (tramp-get-remote-ln): Set tramp-autoload cookie.
1994
1995 * net/tramp-fish.el: Remove file.
1996
1997 2010-09-13 Daiki Ueno <ueno@unixuser.org>
1998
1999 * epa-file.el (epa-file-insert-file-contents): If visiting, bind
2000 buffer-file-name to avoid file-locking. (Bug#7026)
2001
2002 2010-09-13 Julien Danjou <julien@danjou.info>
2003
2004 * notifications.el (notifications-notify): Add support for
2005 image-path and sound-name.
2006 (notifications-specification-version): Add this variable.
2007
2008 2010-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
2009
2010 * subr.el (y-or-n-p): New function, moved from src/fns.c; use read-key.
2011
2012 2010-09-12 Leo <sdl.web@gmail.com>
2013
2014 * net/rcirc.el (rcirc-server-commands, rcirc-client-commands)
2015 (rcirc-completion-start): New variables.
2016 (rcirc-nick-completions): Rename to rcirc-completions.
2017 (rcirc-nick-completion-start-offset): Delete.
2018 (rcirc-completion-at-point): New function for constructing
2019 completion data for both nicks and irc commands. Add to
2020 completion-at-point-functions in rcirc mode.
2021 (rcirc-complete): Rename from rcirc-nick-complete; use
2022 rcirc-completion-at-point.
2023 (defun-rcirc-command): Update rcirc-client-commands.
2024
2025 2010-09-11 Glenn Morris <rgm@gnu.org>
2026
2027 * emacs-lisp/bytecomp.el (byte-compile-file): Create .elc files
2028 atomically, to avoid parallel build errors. (Bug#4196)
2029
2030 2010-09-11 Michael R. Mauger <mmaug@yahoo.com>
2031
2032 * progmodes/sql.el: Version 2.6
2033 (sql-dialect): Synonym for "sql-product".
2034 (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
2035 (sql-set-sqli-buffer, sql-show-sqli-buffer, sql-interactive-mode):
2036 Set "sql-buffer" to buffer name not buffer object so multiple sql
2037 interactive buffers work properly. Reverts misguided changes in
2038 earlier work.
2039 (sql-comint): Make sure different buffer name is used if "*SQL*"
2040 buffer is for a different product.
2041 (sql-make-alternate-buffer-name): Fix bug with "sql-database"
2042 login param.
2043 (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql)
2044 (sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase)
2045 (sql-db2, sql-linter, sql-product-interactive, sql-rename-buffer):
2046 Accept new buffer name or prompt for one.
2047 (sql-port): Default to zero.
2048 (sql-comint-mysql): Handle "sql-port" as a numeric.
2049 (sql-port-history): Delete unused variable.
2050 (sql-get-login): Default "sql-port" to a number.
2051 (sql-product-alist): Correct Postgres prompt and terminator regexp.
2052 (sql-sqlite-program): Dynamically detect presence of "sqlite" or
2053 "sqlite3" executables.
2054 (sql-sqlite-login-params): Add "*.sqlite[23]?" database name pattern.
2055 (sql-buffer-live-p): New function.
2056 (sql-mode-menu, sql-send-string): Use it.
2057 (sql-mode-oracle-font-lock-keywords): Improve SQL*Plus REMARK
2058 syntax pattern.
2059 (sql-mode-postgres-font-lock-keywords): Support Postgres V9.
2060 (sql-mode-sqlite-font-lock-keywords): Hilight sqlite commands.
2061
2062 2010-09-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
2063
2064 * net/netrc.el (netrc-credentials): New convenience function.
2065
2066 2010-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
2067
2068 * textmodes/texinfo.el (texinfo-syntax-propertize-function): New fun
2069 to replace texinfo-font-lock-syntactic-keywords.
2070 (texinfo-mode): Use it.
2071
2072 * textmodes/tex-mode.el (tex-common-initialization, doctex-mode):
2073 Use syntax-propertize-function.
2074
2075 * textmodes/sgml-mode.el (sgml-syntax-propertize-function): New var to
2076 replace sgml-font-lock-syntactic-keywords.
2077 (sgml-mode): Use it.
2078
2079 * textmodes/reftex.el (font-lock-syntactic-keywords): Don't declare
2080 since we don't use it.
2081
2082 * textmodes/bibtex.el (bibtex-mode): Use syntax-propertize-function.
2083
2084 * progmodes/vhdl-mode.el (vhdl-mode): Use syntax-propertize-function
2085 if available.
2086 (vhdl-fontify-buffer): Adjust.
2087
2088 * progmodes/tcl.el (tcl-syntax-propertize-function): New var to
2089 replace tcl-font-lock-syntactic-keywords.
2090 (tcl-mode): Use it.
2091
2092 * progmodes/simula.el (simula-syntax-propertize-function): New var to
2093 replace simula-font-lock-syntactic-keywords.
2094 (simula-mode): Use it.
2095
2096 * progmodes/sh-script.el (sh-st-symbol): Remove.
2097 (sh-font-lock-close-heredoc, sh-font-lock-open-heredoc): Add eol arg.
2098 (sh-font-lock-flush-syntax-ppss-cache, sh-font-lock-here-doc): Remove.
2099 (sh-font-lock-quoted-subshell): Assume we've already matched $(.
2100 (sh-font-lock-paren): Set syntax-multiline.
2101 (sh-font-lock-syntactic-keywords): Remove.
2102 (sh-syntax-propertize-function): New function to replace it.
2103 (sh-mode): Use it.
2104
2105 * progmodes/ruby-mode.el (ruby-here-doc-beg-re):
2106 Define while compiling.
2107 (ruby-here-doc-end-re, ruby-here-doc-beg-match)
2108 (ruby-font-lock-syntactic-keywords, ruby-comment-beg-syntax)
2109 (syntax-ppss, ruby-in-ppss-context-p, ruby-in-here-doc-p)
2110 (ruby-here-doc-find-end, ruby-here-doc-beg-syntax)
2111 (ruby-here-doc-end-syntax): Only define when
2112 syntax-propertize is not available.
2113 (ruby-syntax-propertize-function, ruby-syntax-propertize-heredoc):
2114 New functions.
2115 (ruby-in-ppss-context-p): Update to new syntax of heredocs.
2116 (electric-indent-chars): Silence bytecompiler.
2117 (ruby-mode): Use prog-mode, syntax-propertize-function, and
2118 electric-indent-chars.
2119
2120 * progmodes/python.el (python-syntax-propertize-function): New var to
2121 replace python-font-lock-syntactic-keywords.
2122 (python-mode): Use it.
2123 (python-quote-syntax): Simplify and adjust to new use.
2124
2125 * progmodes/perl-mode.el (perl-syntax-propertize-function): New fun to
2126 replace perl-font-lock-syntactic-keywords.
2127 (perl-syntax-propertize-special-constructs): New fun to replace
2128 perl-font-lock-special-syntactic-constructs.
2129 (perl-font-lock-syntactic-face-function): New fun.
2130 (perl-mode): Use it.
2131
2132 * progmodes/octave-mod.el (octave-syntax-propertize-sqs): New function
2133 to replace octave-font-lock-close-quotes.
2134 (octave-syntax-propertize-function): New function to replace
2135 octave-font-lock-syntactic-keywords.
2136 (octave-mode): Use it.
2137
2138 * progmodes/mixal-mode.el (mixal-syntax-propertize-function): New var;
2139 replaces mixal-font-lock-syntactic-keywords.
2140 (mixal-mode): Use it.
2141
2142 * progmodes/make-mode.el (makefile-syntax-propertize-function):
2143 New var; replaces makefile-font-lock-syntactic-keywords.
2144 (makefile-mode): Use it.
2145 (makefile-imake-mode): Adjust.
2146
2147 * progmodes/js.el (js--regexp-literal): Define while compiling.
2148 (js-syntax-propertize-function): New var; replaces
2149 js-font-lock-syntactic-keywords.
2150 (js-mode): Use it.
2151
2152 * progmodes/gud.el (gdb-script-syntax-propertize-function): New var;
2153 replaces gdb-script-font-lock-syntactic-keywords.
2154 (gdb-script-mode): Use it.
2155
2156 * progmodes/fortran.el (fortran-mode): Use syntax-propertize-function.
2157 (fortran--font-lock-syntactic-keywords): New var.
2158 (fortran-line-length): Update syntax-propertize-function and
2159 fortran--font-lock-syntactic-keywords.
2160
2161 * progmodes/cperl-mode.el (cperl-mode): Use syntax-propertize-function.
2162
2163 * progmodes/cfengine.el (cfengine-mode):
2164 Use syntax-propertize-function.
2165 (cfengine-font-lock-syntactic-keywords): Remove.
2166
2167 * progmodes/autoconf.el (autoconf-mode):
2168 Use syntax-propertize-function.
2169 (autoconf-font-lock-syntactic-keywords): Remove.
2170
2171 * progmodes/ada-mode.el (ada-set-syntax-table-properties)
2172 (ada-after-change-function, ada-initialize-syntax-table-properties)
2173 (ada-handle-syntax-table-properties): Only define when
2174 syntax-propertize is not available.
2175 (ada-mode): Use syntax-propertize-function.
2176
2177 * font-lock.el (font-lock-syntactic-keywords): Make obsolete.
2178 (font-lock-fontify-syntactic-keywords-region): Move handling of
2179 font-lock-syntactically-fontified to...
2180 (font-lock-default-fontify-region): ...here.
2181 Let syntax-propertize-function take precedence.
2182 (font-lock-fontify-syntactically-region): Cal syntax-propertize.
2183
2184 * emacs-lisp/syntax.el (syntax-propertize-function)
2185 (syntax-propertize-chunk-size, syntax-propertize--done)
2186 (syntax-propertize-extend-region-functions): New vars.
2187 (syntax-propertize-wholelines, syntax-propertize-multiline)
2188 (syntax-propertize--shift-groups, syntax-propertize-via-font-lock)
2189 (syntax-propertize): New functions.
2190 (syntax-propertize-rules): New macro.
2191 (syntax-ppss-flush-cache): Set syntax-propertize--done.
2192 (syntax-ppss): Call syntax-propertize.
2193
2194 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Skip named groups.
2195
2196 2010-09-10 Agustín Martín <agustin.martin@hispalinux.es>
2197
2198 * textmodes/ispell.el (ispell-init-process): Improve comments.
2199 XEmacs compatibility changes regarding (add-hook) 'local option
2200 and (set-process-query-on-exit-flag).
2201
2202 2010-09-09 Michael Albinus <michael.albinus@gmx.de>
2203
2204 * net/tramp-cache.el (tramp-parse-connection-properties):
2205 Set tramp-autoload cookie.
2206
2207 2010-09-09 Glenn Morris <rgm@gnu.org>
2208
2209 * image.el (imagemagick-types-inhibit): Add :type, :version, :group.
2210 (imagemagick-register-types): Doc fix.
2211
2212 2010-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
2213
2214 * progmodes/octave-mod.el (electric-indent-chars): Silence bytecomp.
2215
2216 * progmodes/js.el (require): Require is already "eval-and-compile".
2217 (js--re-search-forward): Avoid `eval'. Preserve the error data.
2218 (js--re-search-backward): Use js--re-search-forward.
2219
2220 * progmodes/fortran.el (fortran-line-length): Don't recompute
2221 syntactic keywords redundantly a second time.
2222
2223 * progmodes/ada-mode.el: Replace "(set '" with setq.
2224 (ada-mode): Simplify.
2225 (ada-create-case-exception, ada-adjust-case-interactive)
2226 (ada-adjust-case-region, ada-format-paramlist, ada-indent-current)
2227 (ada-search-ignore-string-comment, ada-move-to-start)
2228 (ada-move-to-end): Use with-syntax-table.
2229
2230 * font-lock.el (save-buffer-state): Remove `varlist' arg.
2231 (font-lock-unfontify-region, font-lock-default-fontify-region):
2232 Update usage correspondingly.
2233 (font-lock-fontify-syntactic-keywords-region):
2234 Set parse-sexp-lookup-properties buffer-locally here.
2235 (font-lock-fontify-syntactically-region): Remove unused `ppss' arg.
2236
2237 * simple.el (blink-matching-open): Don't burp if we can't find a match.
2238
2239 2010-09-08 Glenn Morris <rgm@gnu.org>
2240
2241 * emacs-lisp/bytecomp.el (byte-compile-report-ops):
2242 Error if not compiled with -DBYTE_CODE_METER.
2243
2244 * emacs-lisp/bytecomp.el (byte-recompile-directory):
2245 Ignore dir-locals-file.
2246
2247 2010-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
2248
2249 * progmodes/compile.el (compilation-error-regexp-alist-alist):
2250 Not a const.
2251 (compilation-error-regexp-alist-alist): Rule out ": " in file names
2252 for the `gnu' messages.
2253 (compilation-set-skip-threshold): New command.
2254 (compilation-start): Use \' rather than $.
2255 (compilation-forget-errors): Use clrhash.
2256
2257 2010-09-08 Agustín Martín <agustin.martin@hispalinux.es>
2258
2259 * textmodes/ispell.el (ispell-valid-dictionary-list):
2260 Simplify logic.
2261
2262 2010-09-08 Michael Albinus <michael.albinus@gmx.de>
2263
2264 Migrate to Tramp 2.2. Rearrange load dependencies.
2265 (Bug#1529, Bug#5448, Bug#5705)
2266
2267 * Makefile.in (TRAMP_DIR, TRAMP_SRC): New variables.
2268 ($(TRAMP_DIR)/tramp-loaddefs.el): New target.
2269 (LOADDEFS): Add $(lisp)/net/tramp-loaddefs.el.
2270
2271 * net/tramp.el (top): Remove all other tramp-* loads except
2272 tramp-compat.el. Remove all changes to tramp-unload-hook for
2273 other tramp-* packages. Rearrange defun order. Change calls of
2274 `tramp-compat-call-process', `tramp-compat-decimal-to-octal',
2275 `tramp-compat-octal-to-decimal' to new function names.
2276 (tramp-terminal-type, tramp-initial-end-of-output)
2277 (tramp-methods, tramp-foreign-file-name-handler-alist)
2278 (tramp-tramp-file-p, tramp-completion-mode-p)
2279 (tramp-send-command-and-check, tramp-get-remote-path)
2280 (tramp-get-remote-tmpdir, tramp-get-remote-ln)
2281 (tramp-shell-quote-argument): Set tramp-autoload cookie.
2282 (with-file-property, with-connection-property): Move to
2283 tramp-cache.el.
2284 (tramp-local-call-process, tramp-decimal-to-octal)
2285 (tramp-octal-to-decimal): Move to tramp-compat.el.
2286 (tramp-handle-shell-command): Do not require 'shell.
2287 (tramp-compute-multi-hops): No special handling for tramp-gw-*
2288 symbols.
2289 (tramp-unload-tramp): Do not call `tramp-unload-file-name-handlers'.
2290
2291 * net/tramp-cache.el (top): Require 'tramp. Add to
2292 `tramp-unload-hook'.
2293 (tramp-cache-data, tramp-get-file-property)
2294 (tramp-set-file-property, tramp-flush-file-property)
2295 (tramp-flush-directory-property, tramp-get-connection-property)
2296 (tramp-set-connection-property, tramp-flush-connection-property)
2297 (tramp-cache-print, tramp-list-connections): Set tramp-autoload
2298 cookie.
2299 (with-file-property, with-connection-property): New defuns, moved
2300 from tramp.el.
2301 (tramp-flush-file-function): Use `with-parsed-tramp-file-name'
2302 macro.
2303
2304 * net/tramp-cmds.el (top): Add to `tramp-unload-hook'.
2305 (tramp-version): Set tramp-autoload cookie.
2306
2307 * net/tramp-compat.el (top): Require 'tramp-loaddefs. Remove all
2308 changes to tramp-unload-hook for other tramp-* packages. Add to
2309 `tramp-unload-hook'.
2310 (tramp-compat-decimal-to-octal, tramp-compat-octal-to-decimal)
2311 (tramp-compat-call-process): New defuns, moved from tramp.el.
2312
2313 * net/tramp-fish.el (top) Require just 'tramp. Add objects to
2314 `tramp-methods' and `tramp-foreign-file-name-handler-alist'. Add
2315 to `tramp-unload-hook'. Change call of
2316 `tramp-compat-decimal-to-octal' to new function name.
2317 (tramp-fish-method): Make it a defconst.
2318 (tramp-fish-file-name-p): Make it a defsubst.
2319 (tramp-fish-method, tramp-fish-file-name-handler)
2320 (tramp-fish-file-name-p): Set tramp-autoload cookie.
2321
2322 * net/tramp-ftp.el (top) Add objects to `tramp-methods' and
2323 `tramp-foreign-file-name-handler-alist'. Add to
2324 `tramp-unload-hook'.
2325 (tramp-ftp-method): Make it a defconst.
2326 (tramp-ftp-file-name-p): Make it a defsubst.
2327 (tramp-ftp-method, tramp-ftp-file-name-handler)
2328 (tramp-ftp-file-name-p): Set tramp-autoload cookie.
2329
2330 * net/tramp-gvfs.el (top) Add objects to `tramp-methods' and
2331 `tramp-foreign-file-name-handler-alist'. Add to
2332 `tramp-unload-hook'. Change checks, whether package can be
2333 loaded.
2334 (tramp-gvfs-file-name-p): Make it a defsubst.
2335 (tramp-gvfs-methods, tramp-gvfs-file-name-handler)
2336 (tramp-gvfs-file-name-p): Set tramp-autoload cookie.
2337 (tramp-gvfs-handle-file-directory-p): New defun.
2338 (tramp-gvfs-file-name-handler-alist): Use it.
2339
2340 * net/tramp-gw.el (top) Add objects to `tramp-methods' and
2341 `tramp-foreign-file-name-handler-alist'. Add to
2342 `tramp-unload-hook'.
2343 (tramp-gw-tunnel-method, tramp-gw-default-tunnel-port)
2344 (tramp-gw-socks-method, tramp-gw-default-socks-port): Make it a
2345 defconst.
2346 (tramp-gw-tunnel-method, tramp-gw-socks-method)
2347 (tramp-gw-open-connection): Set tramp-autoload cookie.
2348
2349 * net/tramp-imap.el (top) Require just 'tramp. Add objects to
2350 `tramp-methods' and `tramp-foreign-file-name-handler-alist'. Add
2351 to `tramp-unload-hook'. Change checks, whether package can be
2352 loaded.
2353 (tramp-imap-file-name-p): Make it a defsubst.
2354 (tramp-imap-method, tramp-imaps-method)
2355 (tramp-imap-file-name-handler)
2356 (tramp-imap-file-name-p): Set tramp-autoload cookie.
2357
2358 * net/tramp-smb.el (top) Require just 'tramp. Add objects to
2359 `tramp-methods' and `tramp-foreign-file-name-handler-alist'. Add
2360 to `tramp-unload-hook'. Change checks, whether package can be
2361 loaded. Change call of `tramp-compat-decimal-to-octal' to new
2362 function name.
2363 (tramp-smb-tunnel-method): Make it a defconst.
2364 (tramp-smb-file-name-p): Make it a defsubst.
2365 (tramp-smb-method, tramp-smb-file-name-handler)
2366 (tramp-smb-file-name-p): Set tramp-autoload cookie.
2367
2368 * net/tramp-uu.el (top) Add to `tramp-unload-hook'.
2369 (tramp-uuencode-region): Set tramp-autoload cookie.
2370
2371 * net/trampver.el (top) Add to `tramp-unload-hook'.
2372 (tramp-version, tramp-bug-report-address): Set tramp-autoload
2373 cookie. Update release number.
2374
2375 2010-09-07 Agustín Martín <agustin.martin@hispalinux.es>
2376
2377 * textmodes/ispell.el (ispell-start-process): Make sure original
2378 arg list is properly initialized (Bug#6993, Bug#6994).
2379
2380 2010-09-06 Alexander Klimov <alserkli@inbox.ru> (tiny change)
2381
2382 * files.el (directory-abbrev-alist): Use \` as default regexp.
2383
2384 * emacs-lisp/rx.el (rx-any): Don't explode ranges that end in special
2385 chars like - or ] (bug#6984).
2386 (rx-any-condense-range): Explode 2-char ranges.
2387
2388 2010-09-06 Glenn Morris <rgm@gnu.org>
2389
2390 * desktop.el (desktop-path): Bump :version after 2009-09-15 change.
2391
2392 2010-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
2393
2394 * textmodes/bibtex.el:
2395 * proced.el: Update to new email for Roland Winkler <winkler@gnu.org>.
2396
2397 2010-09-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
2398
2399 * net/imap.el (imap-message-map): Remove optional buffer parameter,
2400 since no callers use it.
2401 (imap-message-get): Ditto.
2402 (imap-message-put): Ditto.
2403 (imap-mailbox-map): Ditto.
2404 (imap-mailbox-put): Ditto.
2405 (imap-mailbox-get): Ditto.
2406 (imap-mailbox-get): Revert last change for this function.
2407
2408 2010-09-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
2409
2410 * net/imap.el (imap-fetch-safe): Remove function, and alter all
2411 callers to use `imap-fetch' instead. According to the comments, this
2412 should be safe, since all other IMAP clients use the 1:* syntax.
2413 (imap-enable-exchange-bug-workaround): Remove.
2414 (imap-debug): Remove -- doesn't seem very useful.
2415
2416 2010-09-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
2417
2418 * net/imap.el (imap-log): New convenience function used throughout
2419 instead of repeating the same code all over the place.
2420
2421 2010-09-05 David De La Harpe Golden <david@harpegolden.net>
2422
2423 * mouse.el (mouse-save-then-kill): Save region to kill-ring
2424 when mouse-drag-copy-region is non-nil (Bug#6956).
2425
2426 2010-09-05 Chong Yidong <cyd@stupidchicken.com>
2427
2428 * dired.el (dired-ls-sorting-switches, dired-sort-by-name-regexp):
2429 Improve regexps (Bug#6987).
2430 (dired-sort-toggle): Search more robustly for -t flag.
2431
2432 * files.el (get-free-disk-space): Search more robustly for
2433 "available" column. Suggested by Ehud Karni
2434 <ehud@unix.mvs.co.il>.
2435
2436 2010-09-05 Juanma Barranquero <lekktu@gmail.com>
2437
2438 * international/uni-bidi.el:
2439 * international/uni-category.el:
2440 * international/uni-combining.el:
2441 * international/uni-decimal.el:
2442 * international/uni-mirrored.el:
2443 * international/uni-name.el: Regenerate.
2444
2445 2010-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
2446
2447 * electric.el (electric-indent-post-self-insert-function):
2448 Don't reindent with a sloppy indentation function.
2449
2450 * emacs-lisp/syntax.el (syntax-ppss): More sanity check to catch
2451 border case in change-log-mode.
2452
2453 2010-09-04 Chong Yidong <cyd@stupidchicken.com>
2454
2455 * progmodes/compile.el (compilation-error-regexp-alist-alist):
2456 Remove ruby regexp; handle Ruby errors with gcc-include and gnu.
2457 Recognize leading tab in gcc-include regexp. Ignore names with
2458 leading "from" or "in" in gnu regexp (Bug#6937).
2459
2460 2010-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
2461
2462 Avoid global recursive calls to kill-buffer-hooks; fit into 80 cols.
2463 * textmodes/ispell.el (ispell-process-buffer-name): Remove.
2464 (ispell-start-process): Avoid setq and simplify logic.
2465 (ispell-init-process): Setup kill-buffer-hook locally when needed.
2466 (kill-buffer-hook): Don't use it globally with code that uses
2467 expand-file-name since that may call kill-buffer via
2468 code_conversion_restore.
2469
2470 2010-09-04 Noorul Islam K M <noorul@noorul.com> (tiny change)
2471
2472 * emacs-lisp/package.el (package-directory-list): Only call
2473 file-name-nondirectory on a string.
2474
2475 2010-09-02 Chong Yidong <cyd@stupidchicken.com>
2476
2477 * emacs-lisp/package.el (package--download-one-archive):
2478 Ensure that archive-contents is valid before saving it.
2479 (package-activate-1, package-mark-obsolete, define-package)
2480 (package-compute-transaction, package-list-maybe-add): Use push.
2481
2482 2010-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
2483
2484 Use SMIE's blink-paren for octave-mode.
2485 * progmodes/octave-mod.el (octave-font-lock-close-quotes):
2486 Backslashes do not escape single-quotes, single-quotes do.
2487 (octave-block-else-regexp, octave-block-end-regexp)
2488 (octave-block-match-alist): Remove.
2489 (octave-smie-bnf-table): New var, with old content.
2490 (octave-smie-op-levels): Use it.
2491 (octave-smie-closer-alist): New var.
2492 (octave-mode): Use it. Setup smie-blink-matching and electric-indent.
2493 (octave-blink-matching-block-open): Remove.
2494 (octave-reindent-then-newline-and-indent, octave-electric-semi)
2495 (octave-electric-space): Let self-insert-command run expand-abbrev and
2496 blink parens.
2497
2498 * electric.el (electricity): New group.
2499 (electric-indent-chars): New var.
2500 (electric-indent-post-self-insert-function): New fun.
2501 (electric-indent-mode): New minor mode.
2502 (electric-pair-skip-self): New custom.
2503 (electric-pair-post-self-insert-function): New function.
2504 (electric-pair-mode): New minor mode.
2505
2506 * calc/calc-aent.el (calcAlg-blink-matching-check): New fun, to replace
2507 calcAlg-blink-matching-open.
2508 (calc-alg-ent-map, calc-alg-ent-esc-map): Initialize in the declaration.
2509 (calc-do-alg-entry): Only touch the part of the keymap that varies.
2510 Use the new blink-matching-check-function.
2511
2512 Provide blink-matching support to SMIE.
2513 * emacs-lisp/smie.el (smie-bnf-closer-alist): New function.
2514 (smie-blink-matching-triggers, smie-blink-matching-inners): New vars.
2515 (smie-blink-matching-check, smie-blink-matching-open): New functions.
2516
2517 * simple.el (newline): Fix last change to properly remove itself from
2518 the hook.
2519
2520 2010-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
2521
2522 * simple.el (newline): Eliminate optimization.
2523 Use post-self-insert-hook to set hard-newline and things before
2524 running post-self-insert-hook.
2525 (blink-matching-check-mismatch): New function.
2526 (blink-matching-check-function): New variable.
2527 (blink-matching-open): Use them.
2528 Skip back forward over prefix chars skipped by forward-sexp.
2529 Don't check if the parens are backslash escaped.
2530 (blink-paren-post-self-insert-function): Check backslash escaping here.
2531
2532 2010-09-02 Chong Yidong <cyd@stupidchicken.com>
2533
2534 * emacs-lisp/package.el (package-menu-mode-map):
2535 Change package-menu-revert bindings to revert-buffer.
2536 (package-menu-mode): Set revert-buffer-function.
2537 (package-menu-revert): Doc fix.
2538
2539 2010-09-02 Agustín Martín <agustin.martin@hispalinux.es>
2540
2541 * textmodes/ispell.el (ispell-init-process): Use "~/" as
2542 `default-directory' unless using Ispell per-directory personal
2543 dictionaries and not in a mini-buffer under XEmacs.
2544 (kill-buffer-hook): Do not kill ispell process on exit when
2545 `ispell-process-directory' is "~/". (Bug#6143)
2546
2547 2010-09-02 Jan Djärv <jan.h.d@swipnet.se>
2548
2549 * simple.el (kill-new): Call interprogram-cut-function with only
2550 one argument.
2551
2552 * term.el (term-mouse-paste): Don't call x-get-cutbuffer.
2553 Remove cut buffer from error message.
2554
2555 * term/x-win.el (x-select-text):
2556 * term/pc-win.el (x-selection-value):
2557 * term/ns-win.el (x-selection-value):
2558 * eshell/em-term.el:
2559 * w32-fns.el (x-get-selection-value):
2560 * mouse-sel.el (mouse-sel-set-selection-function):
2561 * frame.el (display-selections-p): Remove cut-buffer in documentation.
2562
2563 * term/x-win.el: Update documentation for x-last-selected-text-*.
2564 (x-last-selected-text-cut, x-last-selected-text-cut-encoded)
2565 (x-last-cut-buffer-coding, x-cut-buffer-max): Remove.
2566 (x-select-text): Remove argument PUSH, update documentation. Remove
2567 cut-buffer code.
2568 (x-selection-value-internal): Was previously x-selection-value.
2569 (x-selection-value): Rename from x-cut-buffer-or-selection-value.
2570 Update documentation, remove cut-buffer code. Call
2571 x-selection-value-internal.
2572 (x-clipboard-yank): Call x-selection-value-internal.
2573 (x-initialize-window-system): Remove setting of x-cut-buffer-max.
2574
2575 * term/pc-win.el (x-last-selected-text):
2576 x-cut-buffer-or-selection-value renamed to x-selection-value
2577 (x-select-text): Remove argument PUSH, update documentation.
2578
2579 * term/ns-win.el (x-setup-function-keys, ns-last-selected-text):
2580 x-cut-buffer-or-selection-value renamed to x-selection-value
2581 (x-selection-value): Renamed from x-cut-buffer-or-selection-value.
2582 (x-select-text): Remove argument PUSH, update documentation.
2583
2584 * emacs-lisp/cl-macs.el (x-get-cutbuffer, x-get-cut-buffer): Remove.
2585
2586 * w32-fns.el (x-last-selected-text):
2587 x-cut-buffer-or-selection-value renamed to x-selection-value.
2588 (x-cut-buffer-max): Remove.
2589 (x-select-text): Remove argument PUSH, update documentation.
2590
2591 * simple.el (interprogram-cut-function): Remove mention of PUSH.
2592
2593 * select.el (x-get-cut-buffer, x-set-cut-buffer): Remove.
2594
2595 * mouse-sel.el (mouse-sel-get-selection-function):
2596 x-cut-buffer-or-selection-value renamed to x-selection-value.
2597 (x-select-text): Remove optional push.
2598
2599 2010-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
2600
2601 * simple.el (blink-paren-function): Move from C to here.
2602 (blink-paren-post-self-insert-function): New function.
2603 (post-self-insert-hook): Use it.
2604
2605 * emacs-lisp/pcase.el (pcase-split-memq):
2606 Fix overenthusiastic optimisation.
2607 (pcase-u1): Handle the case of a lambda pred.
2608
2609 2010-08-31 Kenichi Handa <handa@m17n.org>
2610
2611 * international/mule-cmds.el (standard-display-european-internal):
2612 Setup standard-display-table for 8-bit characters by storing 8-bit
2613 characters in the element vector.
2614
2615 * disp-table.el (standard-display-8bit):
2616 Setup standard-display-table for 8-bit characters by storing 8-bit
2617 characters in the element vector.
2618 (standard-display-european): Likewise.
2619
2620 2010-08-31 Masatake YAMATO <yamato@redhat.com>
2621
2622 * textmodes/nroff-mode.el (nroff-view): New command.
2623 (nroff-mode-map): Bind it to C-c C-c.
2624
2625 2010-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
2626
2627 * emacs-lisp/smie.el (smie-down-list): New command.
2628
2629 Remove old indentation and navigation code on octave-mode.
2630 * progmodes/octave-mod.el (octave-mode-map): Remap down-list to
2631 smie-down-list rather than add a binding for octave-down-block.
2632 (octave-mark-block, octave-blink-matching-block-open):
2633 Rely on forward-sexp-function.
2634 (octave-fill-paragraph): Don't narrow, so you can use
2635 indent-according-to-mode.
2636 (octave-block-begin-regexp, octave-block-begin-or-end-regexp): Remove.
2637 (octave-in-block-p, octave-re-search-forward-kw)
2638 (octave-re-search-backward-kw, octave-indent-calculate)
2639 (octave-end-as-array-index-p, octave-block-end-offset)
2640 (octave-scan-blocks, octave-forward-block, octave-backward-block)
2641 (octave-down-block, octave-backward-up-block, octave-up-block)
2642 (octave-before-magic-comment-p, octave-indent-line): Remove.
2643
2644 2010-08-31 Chong Yidong <cyd@stupidchicken.com>
2645
2646 * emacs-lisp/package.el (package--read-archive-file): Just use
2647 `read', to avoid copying an additional string.
2648 (package-menu-mode): Set header-line-format here.
2649 (package-menu-refresh, package-menu-revert): Signal an error if
2650 not in the Package Menu.
2651 (package-menu-package-list): New var.
2652 (package--generate-package-list): Operate on the current buffer;
2653 don't assume that it is *Packages*, since the user may rename it.
2654 Allow persistent package listings and sort keys using
2655 package-menu-package-list and package-menu-package-sort-key.
2656 (package-menu--version-predicate): Fix version calculation.
2657 (package-menu-sort-by-column): Don't select the window.
2658 (package--list-packages): Create the *Packages* buffer.
2659 Set package-menu-package-list-key.
2660 (list-packages): Sorting by status is now the default.
2661 (package-buffer-info): Use match-string-no-properties.
2662 (define-package): Add a &rest argument for future proofing, but
2663 don't use it yet.
2664 (package-install-from-buffer, package-install-buffer-internal):
2665 Merge into a single function, package-install-from-buffer.
2666 (package-install-file): Change caller.
2667
2668 * finder.el: Load finder-inf using `require'.
2669 (finder-list-matches): Sorting by status is now the default.
2670 (finder-compile-keywords): Simpify printing.
2671
2672 2010-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
2673
2674 * progmodes/octave-mod.el (octave-font-lock-keywords): Use regexp-opt.
2675 (octave-mode-map): Remove special bindings for forward/backward-block
2676 and octave-backward-up-block. Use smie-close-block.
2677 (octave-continuation-marker-regexp): New var.
2678 (octave-continuation-regexp): Use it.
2679 (octave-operator-table, octave-smie-op-levels)
2680 (octave-operator-regexp, octave-smie-indent-rules): New vars.
2681 (octave-smie-backward-token, octave-smie-forward-token): New funs.
2682 (octave-mode): Use SMIE.
2683 (octave-close-block): Delete.
2684
2685 2010-08-30 Eli Zaretskii <eliz@gnu.org>
2686
2687 * menu-bar.el (menu-bar-edit-menu) <"Paste">: Check selection in
2688 CLIPBOARD, not in PRIMARY. (Bug#6944)
2689
2690 2010-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
2691
2692 * emacs-lisp/smie.el (smie-indent-offset-rule): Let :parent take
2693 a list of parents.
2694 (smie-indent-column): Allow indirection through variables.
2695
2696 * composite.el (save-buffer-state): Delete, unused.
2697 * font-lock.el (save-buffer-state): Use with-silent-modifications.
2698 (font-lock-default-fontify-region): Use with-syntax-table.
2699 * jit-lock.el (with-buffer-unmodified): Remove.
2700 (with-buffer-prepared-for-jit-lock): Use with-silent-modifications.
2701
2702 Use `declare' in defmacros.
2703 * window.el (save-selected-window):
2704 * subr.el (with-temp-file, with-temp-message, with-syntax-table):
2705 * progmodes/python.el (def-python-skeleton):
2706 * net/dbus.el (dbus-ignore-errors):
2707 * jka-cmpr-hook.el (with-auto-compression-mode):
2708 * international/mule.el (with-category-table):
2709 * emacs-lisp/timer.el (with-timeout):
2710 * emacs-lisp/lisp-mnt.el (lm-with-file):
2711 * emacs-lisp/eieio.el (with-slots):
2712 * emacs-lisp/easymenu.el (easy-menu-define):
2713 * emacs-lisp/debug.el (debugger-env-macro):
2714 * emacs-lisp/cl-compat.el (Multiple-value-bind, Multiple-value-setq)
2715 (Multiple-value-call, Multiple-value-prog1):
2716 * emacs-lisp/cl-seq.el (cl-parsing-keywords, cl-check-key)
2717 (cl-check-test-nokey, cl-check-test, cl-check-match): Move indent and
2718 edebug rule to definition.
2719 * emacs-lisp/lisp-mode.el (save-selected-window)
2720 (with-current-buffer, combine-after-change-calls)
2721 (with-output-to-string, with-temp-file, with-temp-buffer)
2722 (with-temp-message, with-syntax-table, read-if, eval-after-load)
2723 (dolist, dotimes, when, unless):
2724 * emacs-lisp/byte-run.el (inline): Remove indent rule, redundant.
2725
2726 2010-08-29 Chong Yidong <cyd@stupidchicken.com>
2727
2728 * finder.el: Require `package'.
2729 (finder-known-keywords): Tweak descriptions. Retire `oop' keyword.
2730 (finder-package-info): Var deleted.
2731 (finder-keywords-hash, finder--builtins-alist): New vars.
2732 (finder-compile-keywords): Compute package--builtins and
2733 finder-keywords-hash instead of finder-keywords-hash, respecting
2734 the "Package" header.
2735 (finder-unknown-keywords, finder-list-matches):
2736 Use finder-keywords-hash and package--list-packages.
2737 (finder-mode): Don't set font-lock-defaults.
2738 (finder-exit): We don't use "*Finder-package*" and "*Finder
2739 Category*" buffers anymore.
2740
2741 * emacs-lisp/package.el (package--builtins-base): Var deleted.
2742 (package--builtins): Set default value to nil.
2743 (package-initialize): Load precomputed value of package--builtins
2744 from finder-inf.el.
2745 (package-alist, package-compute-transaction)
2746 (package-download-transaction): Improve docstring.
2747 (package-read-all-archive-contents): Do not change
2748 package--builtins here.
2749 (list-packages): Make package-list-packages an alias for this.
2750 Sort by status by default.
2751 (package--list-packages): Add optional PACKAGES arg.
2752 (describe-package-1): Use font-lock-face property. For built-in
2753 packages, insert file commentary.
2754 (package--generate-package-list): Rename from
2755 package-list-packages-internal; all callers changed. Add optional
2756 PACKAGES arg. Add alphabetical sort fallbacks.
2757 (package-menu--version-predicate, package-menu--status-predicate)
2758 (package-menu--description-predicate)
2759 (package-menu--name-predicate): New functions.
2760
2761 * info.el (Info-finder-find-node): Search package-alist instead of
2762 finder-package-info.
2763
2764 2010-08-29 Chong Yidong <cyd@stupidchicken.com>
2765
2766 * subr.el (version-regexp-alist): Don't use "a" and "b" for
2767 "alpha" and "beta".
2768 (version-to-list): Handle versions like "10.3d".
2769
2770 2010-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
2771
2772 * emacs-lisp/macroexp.el (macroexpand-all-1): Use pcase.
2773 (macroexp-accumulate): Use `declare'.
2774
2775 2010-08-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
2776
2777 * whitespace.el (whitespace-style): Adjust type declaration.
2778
2779 2010-08-26 Magnus Henoch <magnus.henoch@gmail.com>
2780
2781 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Do not pass
2782 empty argument to gvfs-copy.
2783
2784 2010-08-26 Chong Yidong <cyd@stupidchicken.com>
2785
2786 * net/tramp-compat.el (tramp-compat-delete-file): Rewrite to
2787 handle new TRASH arg of `delete-file'.
2788
2789 2010-08-26 Christian Lynbech <christian.lynbech@tieto.com> (tiny change)
2790
2791 * net/tramp.el (tramp-handle-insert-directory): Don't use
2792 `forward-word', its default syntax could be changed.
2793
2794 2010-08-26 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
2795 Michael Albinus <michael.albinus@gmx.de>
2796
2797 Implement compression for inline methods.
2798
2799 * net/tramp.el (tramp-inline-compress-start-size): New defcustom.
2800 (tramp-copy-size-limit): Allow also nil.
2801 (tramp-inline-compress-commands): New defconst.
2802 (tramp-find-inline-compress, tramp-get-inline-compress)
2803 (tramp-get-inline-coding): New defuns.
2804 (tramp-get-remote-coding, tramp-get-local-coding): Remove,
2805 replaced by `tramp-get-inline-coding'.
2806 (tramp-handle-file-local-copy, tramp-handle-write-region)
2807 (tramp-method-out-of-band-p): Use `tramp-get-inline-coding'.
2808
2809 2010-08-26 Noah Lavine <noah549@gmail.com> (tiny change)
2810
2811 Detect ssh 'ControlMaster' argument automatically in some cases.
2812
2813 * net/tramp.el (tramp-detect-ssh-controlmaster): New defun.
2814 (tramp-default-method): Use it.
2815
2816 2010-08-26 Karel Klíč <kklic@redhat.com>
2817
2818 * net/tramp.el (tramp-file-name-for-operation):
2819 Add file-selinux-context.
2820
2821 2010-08-26 Łukasz Stelmach <lukasz.stelmach@iem.pw.edu.pl> (tiny change)
2822
2823 * play/cookie1.el (read-cookie): Fix off-by-one error (bug#6921).
2824
2825 2010-08-26 Chong Yidong <cyd@stupidchicken.com>
2826
2827 * simple.el (beginning-of-buffer, end-of-buffer): Doc fix
2828 (Bug#6907).
2829
2830 2010-08-26 Nathan Weizenbaum <nweiz@cressida.sea.corp.google.com> (tiny change)
2831
2832 * progmodes/js.el: Make indentation more customizable (Bug#6914).
2833 (js-paren-indent-offset, js-square-indent-offset)
2834 (js-curly-indent-offset): New options.
2835 (js--proper-indentation): Use them.
2836
2837 2010-08-26 Daniel Colascione <dan.colascione@gmail.com>
2838
2839 * progmodes/sh-script.el (sh-get-indent-info): Use syntax-ppss
2840 instead of inspecting font-lock properties (Bug#6916).
2841
2842 2010-08-26 David Reitter <david.reitter@gmail.com>
2843
2844 * server.el (server-visit-files): Run pre-command-hook and
2845 post-command-hook for each buffer while it is current (Bug#6910).
2846 (server-execute): Do not run hooks here.
2847
2848 2010-08-26 Michael Albinus <michael.albinus@gmx.de>
2849
2850 Sync with Tramp 2.1.19.
2851
2852 * net/tramp-cmds.el (tramp-cleanup-all-connections)
2853 (tramp-reporter-dump-variable, tramp-load-report-modules)
2854 (tramp-append-tramp-buffers): Use `tramp-compat-funcall'.
2855 (tramp-bug): Recommend setting of `tramp-verbose' to 9.
2856
2857 * net/tramp-compat.el (top): Do not autoload
2858 `tramp-handle-file-remote-p'. Load tramp-util.el and tramp-vc.el
2859 only when `start-file-process' is not bound.
2860 (byte-compile-not-obsolete-vars): Define if not bound.
2861 (tramp-compat-funcall): New defmacro.
2862 (tramp-compat-line-beginning-position)
2863 (tramp-compat-line-end-position)
2864 (tramp-compat-temporary-file-directory)
2865 (tramp-compat-make-temp-file, tramp-compat-file-attributes)
2866 (tramp-compat-copy-file, tramp-compat-copy-directory)
2867 (tramp-compat-delete-file, tramp-compat-delete-directory)
2868 (tramp-compat-number-sequence, tramp-compat-process-running-p):
2869 Use it.
2870 (tramp-advice-file-expand-wildcards): Do not use
2871 `tramp-handle-file-remote-p'.
2872 (tramp-compat-make-temp-file): Simplify fallback implementation.
2873 (tramp-compat-copy-file): Add PRESERVE-SELINUX-CONTEXT.
2874 (tramp-compat-copy-tree): Remove function.
2875 (tramp-compat-delete-file): New defun.
2876 (tramp-compat-delete-directory): Provide implementation for older
2877 Emacsen.
2878 (tramp-compat-file-attributes): Handle only
2879 `wrong-number-of-arguments' error.
2880
2881 * net/tramp-fish.el (tramp-fish-handle-copy-file):
2882 Add PRESERVE_SELINUX_CONTEXT.
2883 (tramp-fish-handle-delete-file): Add TRASH arg.
2884 (tramp-fish-handle-directory-files-and-attributes):
2885 Do not use `tramp-fish-handle-file-attributes.
2886 (tramp-fish-handle-file-local-copy)
2887 (tramp-fish-handle-insert-file-contents)
2888 (tramp-fish-maybe-open-connection): Use `with-progress-reporter'.
2889
2890 * net/tramp-gvfs.el (top): Require url-util.
2891 (tramp-gvfs-mount-point): Remove.
2892 (tramp-gvfs-file-name-handler-alist): Add `file-selinux-context'
2893 and `set-file-selinux-context'.
2894 (tramp-gvfs-stringify-dbus-message, tramp-gvfs-send-command)
2895 (tramp-gvfs-handle-file-selinux-context)
2896 (tramp-gvfs-handle-set-file-selinux-context): New defuns.
2897 (with-tramp-dbus-call-method): Format trace message.
2898 (tramp-gvfs-handle-copy-file): Handle PRESERVE-SELINUX-CONTEXT.
2899 (tramp-gvfs-handle-copy-file, tramp-gvfs-handle-rename-file):
2900 Implement backup call, when operation on local files fails.
2901 Use progress reporter. Flush properties of changed files.
2902 (tramp-gvfs-handle-delete-file): Add TRASH arg. Use
2903 `tramp-compat-delete-file'.
2904 (tramp-gvfs-handle-expand-file-name): Expand "~/".
2905 (tramp-gvfs-handle-make-directory): Make more traces.
2906 (tramp-gvfs-handle-write-region): Protect deleting tmpfile.
2907 (tramp-gvfs-url-file-name): Hexify file name in url.
2908 (tramp-gvfs-fuse-file-name): Take also prefix (like dav shares)
2909 into account for the resulting file name.
2910 (tramp-gvfs-handler-askquestion): Preserve current message, in
2911 order to let progress reporter continue afterwards. (Bug#6257)
2912 Return dummy mountpoint, when the answer is "no".
2913 See `tramp-gvfs-maybe-open-connection'.
2914 (tramp-gvfs-handler-mounted-unmounted)
2915 (tramp-gvfs-connection-mounted-p): Test also for new mountspec
2916 attribute "default_location". Set "prefix" property.
2917 Handle default-location.
2918 (tramp-gvfs-mount-spec): Return both prefix and mountspec.
2919 (tramp-gvfs-maybe-open-connection): Test, whether mountpoint
2920 exists. Raise an error, if not (due to a corresponding answer
2921 "no" in interactive questions, for example).
2922 Use `tramp-compat-funcall'.
2923
2924 * net/tramp-imap.el (top): Autoload `epg-make-context'.
2925 (tramp-imap-handle-copy-file): Add PRESERVE-SELINUX-CONTEXT.
2926 (tramp-imap-do-copy-or-rename-file)
2927 (tramp-imap-handle-insert-file-contents)
2928 (tramp-imap-handle-file-local-copy): Use `with-progress-reporter'.
2929 (tramp-imap-handle-delete-file): Add TRASH arg.
2930
2931 * net/tramp-smb.el (tramp-smb-handle-copy-file):
2932 Add PRESERVE-SELINUX-CONTEXT.
2933 (tramp-smb-handle-copy-file)
2934 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
2935 (tramp-smb-handle-write-region, tramp-smb-maybe-open-connection):
2936 Use `with-progress-reporter'.
2937 (tramp-smb-handle-delete-file): Add TRASH arg.
2938
2939 * net/tramp.el (tramp-methods): Move hostname to the end in all
2940 ssh `tramp-login-args'. Add `tramp-async-args' attribute where
2941 appropriate.
2942 (tramp-verbose): Describe verbose level 9.
2943 (tramp-completion-function-alist)
2944 (tramp-file-name-regexp, tramp-chunksize)
2945 (tramp-local-coding-commands, tramp-remote-coding-commands)
2946 (with-connection-property, tramp-completion-mode-p)
2947 (tramp-action-process-alive, tramp-action-out-of-band)
2948 (tramp-check-for-regexp, tramp-file-name-p, tramp-equal-remote)
2949 (tramp-exists-file-name-handler): Fix docstring.
2950 (tramp-remote-process-environment): Use `format' instead of
2951 `concat'. Protect version string by apostroph.
2952 (tramp-shell-prompt-pattern): Do not use a shy group in case of
2953 XEmacs.
2954 (tramp-file-name-regexp-unified)
2955 (tramp-completion-file-name-regexp-unified): On W32 systems, do
2956 not regard the volume letter as remote filename. (Bug#5447)
2957 (tramp-perl-file-attributes)
2958 (tramp-perl-directory-files-and-attributes): Don't pass "$3".
2959 (tramp-vc-registered-read-file-names): Read input as
2960 here-document, otherwise the command could exceed maximum length
2961 of command line.
2962 (tramp-file-name-handler-alist): Add `file-selinux-context' and
2963 `set-file-selinux-context'.
2964 (tramp-debug-message): Add `tramp-compat-funcall' to ignored
2965 backtrace functions.
2966 (tramp-error-with-buffer): Don't show the connection buffer when
2967 we are in completion mode.
2968 (tramp-progress-reporter-update, tramp-remote-selinux-p)
2969 (tramp-handle-file-selinux-context)
2970 (tramp-handle-set-file-selinux-context, tramp-process-sentinel)
2971 (tramp-connectable-p, tramp-open-shell, tramp-get-remote-trash):
2972 New defuns.
2973 (with-progress-reporter): New defmacro.
2974 (tramp-debug-outline-regexp): New defconst.
2975 (top, tramp-rfn-eshadow-setup-minibuffer)
2976 (tramp-rfn-eshadow-update-overlay, tramp-handle-set-file-times)
2977 (tramp-handle-dired-compress-file, tramp-handle-shell-command)
2978 (tramp-completion-mode-p, tramp-check-for-regexp)
2979 (tramp-open-connection-setup-interactive-shell)
2980 (tramp-compute-multi-hops, tramp-read-passwd, tramp-clear-passwd)
2981 (tramp-time-diff, tramp-coding-system-change-eol-conversion)
2982 (tramp-set-process-query-on-exit-flag, tramp-unload-tramp):
2983 Use `tramp-compat-funcall'.
2984 (tramp-handle-make-symbolic-link): Flush file properties.
2985 (tramp-handle-load, tramp-handle-file-local-copy)
2986 (tramp-handle-insert-file-contents, tramp-handle-write-region)
2987 (tramp-handle-vc-registered, tramp-maybe-send-script)
2988 (tramp-find-shell): Use `with-progress-reporter'.
2989 (tramp-do-file-attributes-with-stat): Add space in format string,
2990 in order to work around a bug in pdksh. Reported by Gilles Pion
2991 <gpion@lfdj.com>.
2992 (tramp-handle-verify-visited-file-modtime): Do not send a command
2993 when the connection is not established.
2994 (tramp-handle-set-file-times): Simplify the check for utc.
2995 (tramp-handle-directory-files-and-attributes)
2996 (tramp-get-remote-path): Use `copy-tree'.
2997 (tramp-completion-handle-file-name-all-completions): Ensure, that
2998 non remote files are still checked. Oops.
2999 (tramp-handle-copy-file, tramp-do-copy-or-rename-file):
3000 Handle PRESERVE-SELINUX-CONTEXT.
3001 (tramp-do-copy-or-rename-file): Add progress reporter.
3002 (tramp-do-copy-or-rename-file-directly): Do not use
3003 `tramp-handle-file-remote-p'.
3004 (tramp-do-copy-or-rename-file-out-of-band):
3005 Use `tramp-compat-delete-directory'.
3006 (tramp-do-copy-or-rename-file-out-of-band)
3007 (tramp-compute-multi-hops, tramp-maybe-open-connection):
3008 Use `format-spec-make'.
3009 (tramp-handle-delete-file): Add TRASH arg.
3010 (tramp-handle-dired-uncache): Flush directory cache, not only file
3011 cache.
3012 (tramp-handle-expand-file-name)
3013 (tramp-completion-handle-file-name-all-completions)
3014 (tramp-completion-handle-file-name-completion):
3015 Use `tramp-connectable-p'.
3016 (tramp-handle-start-file-process): Set connection property "vec".
3017 Use it, in order to invalidate file caches. Check only for
3018 `remote-tty' process property.
3019 Implement tty setting. (Bug#4604, Bug#6360)
3020 (tramp-file-name-for-operation): Add `call-process-region' and
3021 `set-file-selinux-context'.
3022 (tramp-find-foreign-file-name-handler)
3023 (tramp-advice-make-auto-save-file-name)
3024 (tramp-set-auto-save-file-modes): Remove superfluous check for
3025 `stringp'. This is done inside `tramp-tramp-file-p'.
3026 (tramp-file-name-handler): Trace 'quit. Catch the error for some
3027 operations when we are in completion mode. This gives the user
3028 the chance to correct the file name in the minibuffer.
3029 (tramp-completion-mode-p): Use `non-essential'.
3030 (tramp-handle-file-name-all-completions): Backward/ XEmacs
3031 compatibility: Use `completion-ignore-case' if
3032 `read-file-name-completion-ignore-case' does not exist.
3033 (tramp-get-debug-buffer): Use `tramp-debug-outline-regexp'.
3034 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
3035 `tramp-open-shell'.
3036 (tramp-action-password): Hide password prompt before next run.
3037 (tramp-process-actions): Widen connection buffer for the trace.
3038 (tramp-open-connection-setup-interactive-shell): Set `remote-tty'
3039 process property. Trace stty settings if `tramp-verbose' >= 9.
3040 Apply workaround for IRIX64 bug. Move argument of last
3041 `tramp-send-command' where it belongs to.
3042 (tramp-maybe-open-connection): Use `async-args' and `gw-args' in
3043 front of `login-args'.
3044 (tramp-get-ls-command, tramp-get-ls-command-with-dired): Run tests
3045 on "/dev/null" instead of "/".
3046 (tramp-get-ls-command-with-dired): Make test for "--dired"
3047 stronger.
3048 (tramp-set-auto-save-file-modes): Adapt version check.
3049 (tramp-set-process-query-on-exit-flag): Fix wrong parentheses.
3050 (tramp-handle-process-file): Call the program in a subshell, in
3051 order to preserve working directory.
3052 (tramp-handle-shell-command): Don't use hard-wired "/bin/sh" but
3053 `tramp-remote-sh' from `tramp-methods'.
3054 (tramp-get-ls-command): Make test for "--color=never" stronger.
3055 (tramp-check-for-regexp): Use (forward-line 1).
3056
3057 * net/trampver.el: Update release number.
3058
3059 2010-08-26 Chong Yidong <cyd@stupidchicken.com>
3060
3061 * help.el (help-map): Bind `C-h P' to describe-package.
3062
3063 * menu-bar.el (menu-bar-describe-menu): Add describe-package.
3064
3065 * emacs-lisp/package.el (package-refresh-contents): Catch errors
3066 when downloading archives.
3067 (describe-package-1): Add package commentary.
3068 (package-install-button-action): New function.
3069 (package-menu-mode-map): Bind ? to package-menu-describe-package.
3070 (package-menu-view-commentary): Function removed.
3071 (package-list-packages-internal): Hide the `package' package too.
3072
3073 2010-08-25 Kenichi Handa <handa@m17n.org>
3074
3075 * language/misc-lang.el ("Arabic"): New language environment.
3076 Setup composition-function-table for Arabic characters.
3077
3078 * international/fontset.el (setup-default-fontset): Fix typo for
3079 arabic OTF spec (fini->fina).
3080
3081 2010-08-25 Jan Djärv <jan.h.d@swipnet.se>
3082
3083 * menu-bar.el (menu-bar-set-tool-bar-position): Set frame parameter
3084 on all frames.
3085
3086 2010-08-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
3087
3088 * whitespace.el: Allow cleaning up blanks without blank
3089 visualization (Bug#6651). Adjust help window for
3090 whitespace-toggle-options (Bug#6479). Allow to use fill-column
3091 instead of whitespace-line-column (from EmacsWiki). New version
3092 13.1.
3093 (whitespace-style): Added new value 'face. Adjust docstring.
3094 (whitespace-space, whitespace-hspace, whitespace-tab): Adjust
3095 foreground property face.
3096 (whitespace-line-column): Adjust docstring and type declaration.
3097 (whitespace-style-value-list, whitespace-toggle-option-alist)
3098 (whitespace-help-text): Adjust const initialization.
3099 (whitespace-toggle-options, global-whitespace-toggle-options):
3100 Adjust docstring.
3101 (whitespace-display-window, whitespace-interactive-char)
3102 (whitespace-style-face-p, whitespace-color-on): Adjust code.
3103 (whitespace-help-scroll): New fun.
3104
3105 2010-08-24 Chong Yidong <cyd@stupidchicken.com>
3106
3107 * emacs-lisp/package.el (list-packages): Alias for
3108 package-list-packages.
3109
3110 2010-08-24 Kevin Ryde <user42@zip.com.au>
3111
3112 * textmodes/flyspell.el (flyspell-check-tex-math-command): Doc fix
3113 (Bug#5651).
3114
3115 * progmodes/ruby-mode.el (ruby): Add defgroup.
3116
3117 2010-08-24 Chong Yidong <cyd@stupidchicken.com>
3118
3119 * progmodes/python.el: Add Ipython support (Bug#5390).
3120 (python-shell-prompt-alist)
3121 (python-shell-continuation-prompt-alist): New options.
3122 (python--set-prompt-regexp): New function.
3123 (inferior-python-mode, run-python, python-shell): Require
3124 ansi-color. Use python--set-prompt-regexp to set the comint
3125 prompt based on the Python interpreter.
3126 (python--prompt-regexp): New var.
3127 (python-check-comint-prompt)
3128 (python-comint-output-filter-function): Use it.
3129 (run-python): Use a pipe (Bug#5694).
3130
3131 2010-08-24 Fabian Ezequiel Gallina <galli.87@gmail.com> (tiny change)
3132
3133 * progmodes/python.el (python-send-region): Send a different
3134 Python command if Ipython is in use.
3135 (python-check-version): Use a Python command to find the version.
3136
3137 2010-08-24 Chong Yidong <cyd@stupidchicken.com>
3138
3139 * mouse.el (mouse-yank-primary): Avoid setting primary when
3140 deactivating the mark (Bug#6872).
3141
3142 2010-08-23 Chris Foote <chris@foote.com.au> (tiny change)
3143
3144 * progmodes/python.el (python-block-pairs): Allow use of "finally"
3145 with "else" (Bug#3991).
3146
3147 2010-08-23 Michael Albinus <michael.albinus@gmx.de>
3148
3149 * net/dbus.el: Accept UNIX domain sockets as bus address.
3150 (top): Don't initialize `dbus-registered-objects-table' anymore,
3151 this is done in dbusbind,c.
3152 (dbus-check-event): Adapt test for bus.
3153 (dbus-return-values-table, dbus-unregister-service)
3154 (dbus-event-bus-name, dbus-introspect, dbus-register-property):
3155 Adapt doc string.
3156
3157 2010-08-23 Juanma Barranquero <lekktu@gmail.com>
3158
3159 * ido.el (ido-use-virtual-buffers): Fix typo in docstring.
3160
3161 2010-08-22 Juri Linkov <juri@jurta.org>
3162
3163 * simple.el (read-extended-command): New function with the logic
3164 for `completing-read' moved to Elisp from `execute-extended-command'.
3165 Use `function-called-at-point' in `minibuffer-default-add-function'
3166 to get a command name for M-n (bug#5364, bug#5214).
3167
3168 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
3169
3170 * startup.el (command-line-1): Issue warning for ignored arguments
3171 --unibyte, etc (Bug#6886).
3172
3173 2010-08-22 Leo <sdl.web@gmail.com>
3174
3175 * net/rcirc.el (rcirc-add-or-remove): Accept a list of elements.
3176 (ignore, bright, dim, keyword): Split list of nicknames before
3177 passing to rcirc-add-or-remove (Bug#6894).
3178
3179 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
3180
3181 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix (Bug#6880).
3182
3183 2010-08-22 Leo <sdl.web@gmail.com>
3184
3185 Fix buffer-list rename&refresh after killing a buffer in ido.
3186 * ido.el: Revert Óscar's.
3187 (ido-kill-buffer-at-head): Exit the minibuffer with ido-exit=refresh.
3188 Remember the buffers at head, rather than their name.
3189 * iswitchb.el (iswitchb-kill-buffer): Re-make the list.
3190
3191 2010-08-22 Kirk Kelsey <kirk.kelsey@0x4b.net> (tiny change)
3192 Stefan Monnier <monnier@iro.umontreal.ca>
3193
3194 * progmodes/make-mode.el (makefile-fill-paragraph): Account for the
3195 extra backslash added to each line (bug#6890).
3196
3197 2010-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
3198
3199 * subr.el (read-key): Don't echo keystrokes (bug#6883).
3200
3201 2010-08-22 Glenn Morris <rgm@gnu.org>
3202
3203 * menu-bar.el (menu-bar-games-menu): Add landmark.
3204
3205 2010-08-22 Glenn Morris <rgm@gnu.org>
3206
3207 * align.el (align-regexp): Make group and spacing arguments
3208 use the interactive defaults when non-interactive. (Bug#6698)
3209
3210 * mail/rmail.el (rmail-forward): Replace mail-text-start with its
3211 expansion, so as not to need sendmail.
3212 (mail-text-start): Remove declaration.
3213 (rmail-retry-failure): Require sendmail.
3214
3215 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
3216
3217 * subr.el (read-key): Don't hide the menu-bar entries (bug#6881).
3218
3219 2010-08-22 Michael Albinus <michael.albinus@gmx.de>
3220
3221 * progmodes/flymake.el (flymake-start-syntax-check-process):
3222 Use `start-file-process' in order to let it run also on remote hosts.
3223
3224 2010-08-22 Kenichi Handa <handa@m17n.org>
3225
3226 * files.el: Add `word-wrap' as safe local variable.
3227
3228 2010-08-22 Glenn Morris <rgm@gnu.org>
3229
3230 * woman.el (woman-translate): Case matters. (Bug#6849)
3231
3232 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
3233
3234 * simple.el (kill-region): Doc fix (Bug#6787).
3235
3236 2010-08-22 Glenn Morris <rgm@gnu.org>
3237
3238 * calendar/diary-lib.el (diary-header-line-format):
3239 Fit it to the window, not the frame.
3240
3241 2010-08-22 Andreas Schwab <schwab@linux-m68k.org>
3242
3243 * subr.el (ignore-errors): Add debug declaration.
3244
3245 2010-08-22 Geoff Gole <geoffgole@gmail.com> (tiny change)
3246
3247 * whitespace.el (whitespace-color-off): Remove post-command-hook
3248 locally.
3249
3250 2010-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
3251
3252 * vc/add-log.el (add-log-file-name): Don't get confused by symlinks.
3253
3254 2010-08-21 Chong Yidong <cyd@stupidchicken.com>
3255
3256 * cus-edit.el (custom-group-value-create): Add extra newline
3257 before end line (Bug#6876).
3258
3259 2010-08-21 Chong Yidong <cyd@stupidchicken.com>
3260
3261 * mouse.el (mouse-save-then-kill): Don't save region to kill ring
3262 when extending it. Before killing on the second click, check if
3263 the buffer is the correct one. Doc fix.
3264 (mouse-secondary-save-then-kill): Allow usage without first
3265 calling mouse-start-secondary, by defaulting to point. Don't save
3266 an empty secondary selection. Doc fix.
3267
3268 2010-08-21 Vinicius Jose Latorre <viniciusjl@ig.com.br>
3269
3270 * whitespace.el: Fix slow cursor movement (Bug#6172). Reported by
3271 Christoph Groth <cwg@falma.de> and Liu Xin <x_liu@neusoft.com>.
3272 New version 13.0.
3273 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
3274 Adjust initialization.
3275 (whitespace-bob-marker, whitespace-eob-marker)
3276 (whitespace-buffer-changed): New vars.
3277 (whitespace-cleanup, whitespace-color-on, whitespace-color-off)
3278 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp)
3279 (whitespace-post-command-hook, whitespace-display-char-on):
3280 Adjust code.
3281 (whitespace-looking-back, whitespace-buffer-changed): New funs.
3282 (whitespace-space-regexp, whitespace-tab-regexp): Fun eliminated.
3283
3284 2010-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
3285
3286 * files.el (locate-file-completion-table): Only list the .el and .elc
3287 extensions if there's no other choice (bug#5955).
3288
3289 * facemenu.el (facemenu-self-insert-data): New var.
3290 (facemenu-post-self-insert-function, facemenu-set-self-insert-face):
3291 New functions.
3292 (facemenu-add-face): Use them.
3293
3294 * simple.el (blink-matching-open): Obey forward-sexp-function.
3295
3296 2010-08-18 Stefan Monnier <monnier@iro.umontreal.ca>
3297
3298 * simple.el (prog-mode-map): New var.
3299 (prog-indent-sexp): New command.
3300
3301 * progmodes/octave-mod.el (octave-mode-menu): Make toggle buttons.
3302
3303 * progmodes/prolog.el (smie): Require.
3304
3305 * emacs-lisp/smie.el (smie-default-backward-token)
3306 (smie-default-forward-token): Strip properties.
3307 (smie-next-sexp): Be more careful with associative operators.
3308 (smie-forward-sexp-command): Generalize.
3309 (smie-backward-sexp-command): Simplify.
3310 (smie-closer-alist): New var.
3311 (smie-close-block): New command.
3312 (smie-indent-debug-log): New var.
3313 (smie-indent-offset-rule): Add a few more cases.
3314 (smie-indent-column): New function.
3315 (smie-indent-after-keyword): Use it.
3316 (smie-indent-keyword): Use it.
3317 Fix up the opener code's point position.
3318 (smie-indent-comment): Only applies at BOL.
3319 (smie-indent-debug): New command.
3320
3321 * emacs-lisp/autoload.el (make-autoload): Preload the macros's
3322 declarations that are useful before running the macro.
3323
3324 2010-08-18 Joakim Verona <joakim@verona.se>
3325
3326 * image.el (imagemagick-types-inhibit): New variable.
3327 (imagemagick-register-types): New function.
3328 * image-mode.el (image-transform-properties): New function.
3329 (image-transform-set-scale, image-transform-fit-to-height)
3330 (image-transform-set-rotation, image-transform-set-resize)
3331 (image-transform-fit-to-width, image-transform-fit-to-height):
3332 New functions.
3333 (image-toggle-display-image): Support image transforms.
3334
3335 2010-08-18 Katsumi Yamaoka <yamaoka@jpl.org>
3336
3337 * image.el (create-animated-image): Don't add heuristic mask to image
3338 (Bug#6839).
3339
3340 2010-08-18 Jan Djärv <jan.h.d@swipnet.se>
3341
3342 * term/ns-win.el (ns-get-pasteboard, ns-set-pasteboard):
3343 Use QCLIPBOARD instead of QPRIMARY (Bug#6677).
3344
3345 2010-08-17 Stefan Monnier <monnier@iro.umontreal.ca>
3346
3347 * emacs-lisp/lisp.el (up-list): Obey forward-sexp-function if set.
3348
3349 Font-lock '...' strings, plus various simplifications and fixes.
3350 * progmodes/octave-mod.el (octave-font-lock-keywords): Use regexp-opt.
3351 (octave-font-lock-close-quotes): New function.
3352 (octave-font-lock-syntactic-keywords): New var.
3353 (octave-mode): Use it. Set beginning-of-defun-function.
3354 (octave-mode-map): Don't override the <foo>-defun commands.
3355 (octave-mode-menu): Pass it directly to easy-menu-define;
3356 remove (now generic) <foo>-defun commands; use info-lookup-symbol.
3357 (octave-block-match-alist): Fix up last change so that
3358 octave-close-block uses the more specific keyword.
3359 (info-lookup-mode): Silence byte-compiler.
3360 (octave-beginning-of-defun): Not interactive any more.
3361 Optimize slightly.
3362 (octave-end-of-defun, octave-mark-defun, octave-in-defun-p): Remove.
3363 (octave-indent-defun, octave-send-defun): Use mark-defun instead.
3364 (octave-completion-at-point-function): Make sure point is within
3365 beg..end.
3366 (octave-reindent-then-newline-and-indent):
3367 Use reindent-then-newline-and-indent.
3368 (octave-add-octave-menu): Remove.
3369
3370 2010-08-17 Jan Djärv <jan.h.d@swipnet.se>
3371
3372 * mail/emacsbug.el (report-emacs-bug-insert-to-mailer)
3373 (report-emacs-bug-can-use-xdg-email): New functions.
3374 (report-emacs-bug): Set can-xdg-email to result of
3375 report-emacs-bug-can-use-xdg-email. If can-xdg-email bind
3376 \C-cm to report-emacs-bug-insert-to-mailer and add help text
3377 about it.
3378
3379 * net/browse-url.el (browse-url-default-browser): Add cond
3380 for browse-url-xdg-open.
3381 (browse-url-can-use-xdg-open, browse-url-xdg-open): New functions.
3382
3383 2010-08-17 Glenn Morris <rgm@gnu.org>
3384
3385 * progmodes/cc-engine.el (c-new-BEG, c-new-END)
3386 (c-fontify-recorded-types-and-refs): Define for compiler.
3387 * progmodes/cc-mode.el (c-new-BEG, c-new-END): Move definitions
3388 before use.
3389
3390 * calendar/icalendar.el (icalendar--convert-recurring-to-diary):
3391 Fix format call.
3392
3393 2010-08-17 Michael Albinus <michael.albinus@gmx.de>
3394
3395 * net/tramp.el (tramp-handle-make-symbolic-link): Flush file
3396 properties.
3397 (tramp-handle-process-file): Call the program in a subshell, in
3398 order to preserve working directory.
3399 (tramp-action-password): Hide password prompt before next run.
3400 (tramp-process-actions): Widen connection buffer for the trace.
3401
3402 2010-08-16 Deniz Dogan <deniz.a.m.dogan@gmail.com>
3403
3404 * net/rcirc.el (rcirc-log-process-buffers): New option.
3405 (rcirc-print): Use it.
3406 (rcirc-generate-log-filename): New function.
3407 (rcirc-log-filename-function): Change default to
3408 rcirc-generate-log-filename (Bug#6828).
3409
3410 2010-08-16 Chong Yidong <cyd@stupidchicken.com>
3411
3412 * simple.el (deactivate-mark): If select-active-regions is `only',
3413 only set selection for temporarily active regions.
3414
3415 * cus-start.el: Change defcustom for select-active-regions.
3416
3417 2010-08-15 Chong Yidong <cyd@stupidchicken.com>
3418
3419 * mouse.el (mouse--drag-set-mark-and-point): New function.
3420 (mouse-drag-track): Use LOCATION arg to push-mark.
3421 Use mouse--drag-set-mark-and-point to take click-count into
3422 consideration when updating point and mark (Bug#6840).
3423
3424 2010-08-15 Chong Yidong <cyd@stupidchicken.com>
3425
3426 * progmodes/compile.el (compilation-error-regexp-alist-alist):
3427 Give the Ruby rule a lower priority than Gnu (Bug#6778).
3428
3429 2010-08-14 Štěpán Němec <stepnem@gmail.com> (tiny change)
3430
3431 * font-lock.el (lisp-font-lock-keywords-2):
3432 Add combine-after-change-calls, condition-case-no-debug,
3433 with-demoted-errors, and with-silent-modifications (Bug#6025).
3434
3435 2010-08-14 Kevin Ryde <user42@zip.com.au>
3436
3437 * emacs-lisp/copyright.el (copyright-update-year)
3438 (copyright-update): Temporary switch-to-buffer to ensure the
3439 buffer change being queried is visible (Bug#5394).
3440
3441 2010-08-14 Tom Tromey <tromey@redhat.com>
3442
3443 * progmodes/etags.el (tags-file-name): Mark safe if stringp
3444 (Bug#6733).
3445
3446 2010-08-14 Eli Zaretskii <eliz@gnu.org>
3447
3448 * mouse.el (mouse-yank-primary): Fix mouse-2 on MS-Windows and
3449 MS-DOS. (Bug#6689)
3450
3451 2010-08-13 Jan Djärv <jan.h.d@swipnet.se>
3452
3453 * menu-bar.el (menu-bar-set-tool-bar-position): New function.
3454 (menu-bar-showhide-tool-bar-menu-customize-enable-left)
3455 (menu-bar-showhide-tool-bar-menu-customize-enable-right)
3456 (menu-bar-showhide-tool-bar-menu-customize-enable-top)
3457 (menu-bar-showhide-tool-bar-menu-customize-enable-bottom):
3458 Call menu-bar-set-tool-bar-position.
3459
3460 2010-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
3461
3462 * progmodes/octave-mod.el (octave-mode-syntax-table): Use the new "c"
3463 comment style (bug#6834).
3464 * progmodes/scheme.el (scheme-mode-syntax-table):
3465 * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Remove spurious
3466 "b" flag in "' 14b" syntax.
3467
3468 * progmodes/octave-mod.el (octave-mode-map): Remove special bindings
3469 for (un)commenting the region and performing completion.
3470 (octave-mode-menu): Use standard commands for help and completion.
3471 (octave-mode-syntax-table): Support %{..%} comments (sort of).
3472 (octave-mode): Use define-derived-mode.
3473 Set completion-at-point-functions and don't set columns.
3474 Don't disable adaptive-fill-regexp.
3475 (octave-describe-major-mode, octave-comment-region)
3476 (octave-uncomment-region, octave-comment-indent)
3477 (octave-indent-for-comment): Remove.
3478 (octave-indent-calculate): Rename from calculate-octave-indent.
3479 (octave-indent-line, octave-fill-paragraph): Update caller.
3480 (octave-initialize-completions): No need to make an alist.
3481 (octave-completion-at-point-function): New function.
3482 (octave-complete-symbol): Use it.
3483 (octave-insert-defun): Use define-skeleton.
3484
3485 * progmodes/octave-mod.el (octave-mode): Set comment-add.
3486 (octave-mode-map): Use comment-dwim (bug#6829).
3487
3488 2010-08-12 Antoine Levitt <antoine.levitt@gmail.com> (tiny change)
3489
3490 * cus-edit.el (custom-save-variables, custom-save-faces): Fix up
3491 indentation of inserted comment.
3492
3493 2010-08-11 Jan Djärv <jan.h.d@swipnet.se>
3494
3495 * faces.el (region): Add type gtk that uses gtk colors.
3496
3497 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
3498 Handle theme-name change.
3499
3500 2010-08-10 Michael R. Mauger <mmaug@yahoo.com>
3501
3502 * progmodes/sql.el: Version 2.5
3503 (sql-product-alist): Add :prompt-cont-regexp property for several
3504 database products.
3505 (sql-prompt-cont-regexp): New variable.
3506 (sql-output-newline-count, sql-output-by-send):
3507 New variables. Record number of newlines in input text.
3508 (sql-send-string): Handle multiple filters and count newlines.
3509 (sql-send-magic-terminator): Count terminator newline.
3510 (sql-interactive-remove-continuation-prompt): Filters output to
3511 remove continuation prompts; one for each newline.
3512 (sql-interactive-mode): Set up new variables, prompt regexp and
3513 output filter.
3514 (sql-mode-sqlite-font-lock-keywords): Correct some keywords.
3515 (sql-make-alternate-buffer-name): Correct buffer name in edge cases.
3516
3517 2010-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
3518
3519 * emacs-lisp/pcase.el: New file.
3520
3521 2010-08-10 Michael Albinus <michael.albinus@gmx.de>
3522
3523 * net/tramp.el (tramp-vc-registered-read-file-names): Read input
3524 as here-document, otherwise the command could exceed maximum
3525 length of command line.
3526 (tramp-handle-vc-registered): Call script accordingly.
3527 Reported by Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>.
3528
3529 2010-08-10 Kenichi Handa <handa@m17n.org>
3530
3531 * language/hebrew.el: Exclude U+05C3 (Hebrew SOF PASUQ) from the
3532 composable pattern.
3533
3534 2010-08-09 Chong Yidong <cyd@stupidchicken.com>
3535
3536 * emacs-lisp/package.el (package-version-split)
3537 (package--version-first-nonzero, package-version-compare):
3538 Functions removed.
3539 (package-directory-list, package-load-all-descriptors)
3540 (package--built-in, package-activate, define-package)
3541 (package-installed-p, package-compute-transaction)
3542 (package-read-all-archive-contents)
3543 (package--add-to-archive-contents, package-buffer-info)
3544 (package-tar-file-info, package-list-packages-internal):
3545 Use version-to-list and version-list-*.
3546
3547 * emacs-lisp/package-x.el (package-upload-buffer-internal):
3548 Use version-to-list.
3549 (package-upload-buffer-internal): Use version-list-<=.
3550
3551 2010-08-09 Kenichi Handa <handa@m17n.org>
3552
3553 * language/hebrew.el: Exclude U+05BD (Hebrew MAQAF) from the
3554 composable pattern.
3555
3556 2010-08-08 Chong Yidong <cyd@stupidchicken.com>
3557
3558 * tutorial.el (tutorial--default-keys): C-d is now bound to
3559 delete-forward-char (Bug#6826).
3560
3561 * mouse.el (mouse-drag-track): Remove accidentally-removed check
3562 for `double' value of mouse-1-click-follows-link (Bug#6807).
3563
3564 2010-08-08 Johan Bockgård <bojohan@gnu.org>
3565
3566 * replace.el (replace-highlight): Bind isearch-forward and
3567 isearch-error, ensuring that highlighting is updated if the user
3568 switches the search direction (Bug#6808).
3569
3570 * isearch.el (isearch-lazy-highlight-forward): New var.
3571 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
3572 (isearch-lazy-highlight-update): Use it.
3573
3574 2010-08-08 Kenichi Handa <handa@m17n.org>
3575
3576 * international/mule.el (define-charset): Store NAME as :base property.
3577 (ctext-non-standard-encodings-table): Pay attention to charset aliases.
3578 (ctext-pre-write-conversion): Sort ctext-standard-encodings by the
3579 current priority. Force using the designation of the specific
3580 charset by adding `charset' text property. Improve the whole algorithm.
3581
3582 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
3583
3584 * emulation/pc-select.el (pc-selection-mode-hook)
3585 (copy-region-as-kill-nomark, beginning-of-buffer-mark)
3586 (pc-selection-mode): Fix typos in docstrings.
3587
3588 2010-08-08 Kenichi Handa <handa@m17n.org>
3589
3590 * language/cyrillic.el: Don't add "microsoft-cp1251" to
3591 ctext-non-standard-encodings-alist here.
3592
3593 * international/mule.el (ctext-non-standard-encodings-alist):
3594 Add "koi8-r" and "microsoft-cp1251".
3595 (ctext-standard-encodings): New variable.
3596 (ctext-non-standard-encodings-table): List only elements for
3597 non-standard encodings.
3598 (ctext-pre-write-conversion): Adjust for the above change.
3599 Check ctext-standard-encodings.
3600
3601 * international/mule-conf.el (compound-text): Doc fix.
3602 (ctext-no-compositions): Doc fix.
3603 (compound-text-with-extensions): Doc fix.
3604
3605 2010-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
3606
3607 * simple.el (exchange-dot-and-mark): Mark obsolete, finally.
3608
3609 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
3610
3611 * progmodes/which-func.el (which-func-format): Split help-echo text
3612 into lines, like other mode-line tooltips.
3613
3614 * server.el (server-start): When using TCP sockets, force IPv4
3615 and use a literal 127.0.0.1 for localhost. (Related to bug#6781.)
3616
3617 2010-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
3618
3619 * bindings.el (complete-symbol): Run completion-at-point as a fallback.
3620
3621 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
3622
3623 * term.el (term-delimiter-argument-list): Reflow docstring.
3624 (term-read-input-ring, term-write-input-ring, term-send-input)
3625 (term-bol, term-erase-in-display, serial-supported-or-barf):
3626 Fix typos in docstrings.
3627
3628 2010-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
3629
3630 * bindings.el (function-key-map): Add a S-tab => backtab fallback.
3631
3632 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
3633
3634 * dabbrev.el (dabbrev-completion): Fix typo in docstring.
3635
3636 2010-08-08 MON KEY <monkey@sandpframing.com> (tiny change)
3637
3638 * emacs-lisp/syntax.el (syntax-ppss-toplevel-pos):
3639 Fix typo in docstring (bug#6747).
3640
3641 2010-08-08 Leo <sdl.web@gmail.com>
3642
3643 * eshell/esh-io.el (eshell-get-target): Better detection of
3644 read-only file (Bug#6762).
3645
3646 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
3647
3648 * align.el (align-default-spacing): Doc fix.
3649 (align-region-heuristic, align-regexp): Fix typos in docstrings.
3650
3651 2010-08-08 Stephen Peters <speters@itasoftware.com>
3652
3653 * calendar/icalendar.el
3654 (icalendar--split-value): Fix splitting regexp. (Bug#6766)
3655 (icalendar--get-weekday-numbers): New.
3656 (icalendar--convert-recurring-to-diary): Handle multiple byday
3657 values in weekly rules. (Bug#6766)
3658
3659 2010-08-08 Ulf Jasper <ulf.jasper@web.de>
3660
3661 * calendar/icalendar.el (icalendar-uid-format): Doc fix.
3662 (icalendar--create-uid, icalendar-export-region)
3663 (icalendar--parse-summary-and-rest): Code formatting.
3664
3665 2010-08-08 Jay Belanger <jay.p.belanger@gmail.com>
3666
3667 * calc/calc.el (calc-trail-mode,calc-refresh): Use `face' property
3668 to italicize headers.
3669 (calc-highlight-selections-with-faces): New variable.
3670 (calc-selected-face, calc-nonselected-face): New faces.
3671
3672 * calc/calccomp.el (math-comp-highlight-string): Use
3673 `calc-highlight-selections-with-faces' to determine how to highlight
3674 sub-formulas.
3675
3676 * calc/calc-sel.el (calc-show-selections): Change message to when
3677 using faces to highlight selections.
3678
3679 2010-08-07 Michael R. Mauger <mmaug@yahoo.com>
3680
3681 * progmodes/sql.el (sql-mode-sqlite-font-lock-keywords):
3682 Add SQLite 3 keywords, functions and datatypes.
3683 (sql-interactive-mode): Remove `comint-process-echoes' set to t
3684 (Bug#6686).
3685
3686 2010-08-07 Chong Yidong <cyd@stupidchicken.com>
3687
3688 * simple.el (select-active-regions): Move to keyboard.c.
3689 (deactivate-mark): Used saved-region-selection.
3690 (select-active-region): Function removed.
3691 (activate-mark, set-mark, push-mark-command)
3692 (handle-shift-selection): Don't call it.
3693 (keyboard-quit): Avoid adding the region to the window selection.
3694
3695 * mouse.el (mouse-drag-track): Remove hacks to deal with old
3696 select-active-regions implementation.
3697 (mouse-yank-at-click): Doc fix.
3698
3699 * cus-start.el: Add custom declaration for select-active-regions.
3700
3701 2010-08-07 Eli Zaretskii <eliz@gnu.org>
3702
3703 * simple.el (delete-forward-char): Doc fix.
3704
3705 * tutorial.el (help-with-tutorial): Hack safe file-local variables
3706 after reading the tutorial.
3707
3708 2010-08-06 Alan Mackenzie <bug-cc-mode@gnu.org>
3709
3710 * progmodes/cc-cmds.el (c-mask-paragraph, c-fill-paragraph): Fix
3711 for the case that a C style comment has its delimiters alone on
3712 their respective lines.
3713
3714 2010-08-06 Michael Albinus <michael.albinus@gmx.de>
3715
3716 * net/tramp.el (tramp-handle-start-file-process): Set connection
3717 property "vec".
3718 (tramp-process-sentinel): Use it for flushing the cache. We
3719 cannot do it via the process buffer, the buffer could be deleted
3720 already when running the sentinel.
3721
3722 2010-08-06 Jürgen Hötzel <juergen@archlinux.org> (tiny change)
3723
3724 * comint.el (comint-mode): Make directory tracking functions
3725 functional on remote files. (Bug#6764)
3726
3727 2010-08-06 Dan Nicolaescu <dann@ics.uci.edu>
3728
3729 * vc/diff-mode.el (diff-mode-shared-map): Bind g to revert-buffer.
3730
3731 2010-08-05 Eli Zaretskii <eliz@gnu.org>
3732
3733 * emacs-lisp/find-gc.el (find-gc-source-files): Rename
3734 unexec.c => unexcoff.c.
3735
3736 * emacs-lisp/authors.el (authors-fixed-entries): Rename
3737 unexec.c => unexcoff.c.
3738
3739 2010-08-05 Michael Albinus <michael.albinus@gmx.de>
3740
3741 * net/tramp.el (tramp-handle-dired-uncache): Flush directory
3742 cache, not only file cache.
3743 (tramp-process-sentinel): New defun.
3744 (tramp-handle-start-file-process): Use it, in order to invalidate
3745 file caches.
3746
3747 2010-08-03 Leo <sdl.web@gmail.com>
3748
3749 * server.el (server-start): Simplify loop.
3750
3751 2010-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
3752
3753 * frame.el (screen-height, screen-width, set-screen-width)
3754 (set-screen-height): Remove ancient compatibility aliases.
3755
3756 * textmodes/fill.el (justify-current-line): Don't add 1 to nspaces
3757 when justifying. It seems useless and harmful for ncols=1 (bug#6738).
3758
3759 * emacs-lisp/timer.el (timer-event-handler): Protect against timers
3760 that change current buffer.
3761
3762 2010-08-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3763
3764 * mouse.el (mouse-fixup-help-message): Match "mouse-2" only at the
3765 beginning of the string. Use `string-match-p'. (Bug#6765)
3766
3767 2010-08-01 Jan Djärv <jan.h.d@swipnet.se>
3768
3769 * cus-start.el (x-gtk-use-system-tooltips): New variable.
3770
3771 2010-08-01 Chong Yidong <cyd@stupidchicken.com>
3772
3773 * emacs-lisp/package.el (package--list-packages): Fix column alignment.
3774 (package--builtins): Tweak descriptions.
3775 (package-print-package): Upcase descriptions if necessary.
3776 Show all built-in packages in font-lock-builtin-face.
3777 (package-list-packages-internal): Omit "emacs" package.
3778 Show status of built-in packages as "built-in".
3779
3780 2010-07-31 Chong Yidong <cyd@stupidchicken.com>
3781
3782 * mouse.el (mouse-save-then-kill): Doc fix. Deactivate mark
3783 before killing to preserve the primary selection (Bug#6701).
3784
3785 * term/x-win.el (x-select-text): Doc fix.
3786
3787 2010-07-31 Nathaniel Flath <flat0103@gmail.com>
3788
3789 Enhance Java Mode to handle Java 5.0 (Tiger) and Java 6 (Mustang).
3790 The following functions were modified or created:
3791
3792 * progmodes/cc-vars.el (c-offsets-alist, c-inside-block-syms)
3793 (objc-font-lock-extra-types):
3794 * progmodes/cc-mode.el (c-basic-common-init):
3795 * progmodes/cc-langs.el (c-make-mode-syntax-table)
3796 (c++-make-template-syntax-table)
3797 (c-identifier-syntax-modifications, c-symbol-start, c-operators)
3798 (c-<-op-cont-regexp, c->-op-cont-regexp, c-class-decl-kwds)
3799 (c-brace-list-decl-kwds, c-modifier-kwds, c-prefix-spec-kwds-re)
3800 (c-type-list-kwds, c-decl-prefix-re, c-opt-type-suffix-key):
3801 * progmodes/cc-fonts.el (c-make-inverse-face)
3802 (c-basic-matchers-after):
3803 * progmodes/cc-engine.el (c-forward-keyword-clause)
3804 (c-forward-<>-arglist, c-forward-<>-arglist-recur)
3805 (c-forward-name, c-forward-type, c-forward-decl-or-cast-1)
3806 (c-guess-continued-construct, c-guess-basic-syntax):
3807
3808 2010-07-31 Jan Djärv <jan.h.d@swipnet.se>
3809
3810 * faces.el (face-all-attributes): Improve documentation (Bug#6767).
3811
3812 2010-07-31 Eli Zaretskii <eliz@gnu.org>
3813
3814 * files.el (bidi-paragraph-direction): Define safe local values.
3815
3816 * language/hebrew.el ("Hebrew"): Add TUTORIAL.he to
3817 language-info-alist. Remove outdated FIXME in a comment.
3818
3819 2010-07-31 Alan Mackenzie <acm@muc.de>
3820
3821 * progmodes/cc-cmds.el (c-mask-paragraph): Fix bug #6688:
3822 Auto-fill broken in C/C++ modes.
3823
3824 2010-07-29 Jan Djärv <jan.h.d@swipnet.se>
3825
3826 * menu-bar.el (menu-bar-showhide-tool-bar-menu-customize-enable-left)
3827 (menu-bar-showhide-tool-bar-menu-customize-disable)
3828 (menu-bar-showhide-tool-bar-menu-customize-enable-right)
3829 (menu-bar-showhide-tool-bar-menu-customize-enable-bottom)
3830 (menu-bar-showhide-tool-bar-menu-customize-enable-top): New functions
3831 (menu-bar-showhide-tool-bar-menu): If tool bar is moveable,
3832 make a menu for Options => toolbar that can move it.
3833
3834 2010-07-29 Chong Yidong <cyd@stupidchicken.com>
3835
3836 * emacs-lisp/package-x.el (package--make-rss-entry):
3837 (package-maint-add-news-item, package--update-news)
3838 (package-upload-buffer-internal): New arg ARCHIVE-URL.
3839
3840 * emacs-lisp/package.el (package-archive-url): Rename from
3841 package-archive-id.
3842 (package-install): Doc fix.
3843 (package-download-single, package-download-tar, package-install)
3844 (package-menu-view-commentary): Callers changed.
3845
3846 2010-07-29 Michael Albinus <michael.albinus@gmx.de>
3847
3848 * net/tramp.el (tramp-handle-start-file-process): Check only for
3849 `remote-tty' process property.
3850 (tramp-open-shell): Don't check for tty.
3851 (tramp-open-connection-setup-interactive-shell): Set `remote-tty'
3852 process property.
3853
3854 * progmodes/gdb-mi.el (gdb-init-1): Check also for tty on a remote
3855 host.
3856
3857 2010-07-28 Chong Yidong <cyd@stupidchicken.com>
3858
3859 * emacs-lisp/package.el (package-load-list, package-archives)
3860 (package-archive-contents, package-user-dir)
3861 (package-directory-list, package--builtins, package-alist)
3862 (package-activated-list, package-obsolete-alist): Mark as risky.
3863
3864 2010-07-28 Phil Hagelberg <phil@evri.com>
3865
3866 Add support for non-default package repositories.
3867 * emacs-lisp/package.el (package-archive-base): Var deleted.
3868 (package-archives): New variable.
3869 (package-archive-contents): Doc fix.
3870 (package-load-descriptor): Do nothing if descriptor file is missing.
3871 (package--write-file-no-coding): New function.
3872 (package-unpack-single): Use it.
3873 (package-archive-id): New function.
3874 (package-download-single, package-download-tar)
3875 (package-menu-view-commentary): Use it.
3876 (package-installed-p): Make second argument optional.
3877 (package-read-all-archive-contents): New function.
3878 (package-initialize): Use it.
3879 (package-read-archive-contents): Add ARCHIVE argument.
3880 (package--add-to-archive-contents): New function.
3881 (package-install): Don't call package-read-archive-contents.
3882 (package--download-one-archive): Store archive file in a
3883 subdirectory of package-user-dir.
3884 (package-menu-execute): Remove spurious line movement.
3885
3886 2010-07-28 Jan Djärv <jan.h.d@swipnet.se>
3887
3888 * cus-start.el (tool-bar-style): Add text-image-horiz.
3889
3890 2010-07-28 Michael Albinus <michael.albinus@gmx.de>
3891
3892 * progmodes/gud.el (gud-common-init): Check for remoteness of
3893 `file', and not of `default-directory'.
3894
3895 2010-07-28 Michael Albinus <michael.albinus@gmx.de>
3896
3897 * net/tramp.el (tramp-methods): Move hostname to the end in all
3898 ssh `tramp-login-args'.
3899 (tramp-verbose): Describe verbose level 9.
3900 (tramp-open-shell): Check for tty if `tramp-verbose' >= 9.
3901 (tramp-open-connection-setup-interactive-shell): Trace stty
3902 settings if `tramp-verbose' >= 9.
3903 (tramp-handle-start-file-process): Implement tty setting.
3904 (Bug#4604, Bug#6360)
3905
3906 * net/tramp-cmds.el (tramp-bug): Recommend setting of
3907 `tramp-verbose' to 9.
3908
3909 2010-07-27 Aaron S. Hawley <ashawley@burlingtontelecom.net>
3910
3911 * emacs-lisp/re-builder.el (reb-re-syntax, reb-lisp-mode)
3912 (reb-lisp-syntax-p, reb-change-syntax, reb-cook-regexp):
3913 Remove references to package `lisp-re' (bug#4369).
3914
3915 2010-07-27 Tom Tromey <tromey@redhat.com>
3916
3917 * progmodes/js.el (js-mode):
3918 * progmodes/make-mode.el (makefile-mode):
3919 * progmodes/simula.el (simula-mode):
3920 * progmodes/tcl.el (tcl-mode): Derive from prog-mode.
3921
3922 2010-07-27 Juanma Barranquero <lekktu@gmail.com>
3923
3924 * help-fns.el (find-lisp-object-file-name): Doc fix (bug#6494).
3925
3926 * time.el (display-time-day-and-date): Remove spurious * in docstring.
3927 (display-time-world-buffer-name, display-time-world-mode-map):
3928 Fix typos in docstrings.
3929
3930 2010-07-27 Shyam Karanatt <shyam@swathanthran.in> (tiny change)
3931
3932 * image-mode.el (image-display-size): New function.
3933 (image-forward-hscroll, image-next-line, image-eol, image-eob)
3934 (image-mode-fit-frame): Use it (Bug#6639).
3935
3936 2010-07-27 Chong Yidong <cyd@stupidchicken.com>
3937
3938 * dired.el (dired-buffers-for-dir): Handle list values of
3939 dired-directory (Bug#6636).
3940
3941 2010-07-26 Sam Steingold <sds@gnu.org>
3942
3943 * mouse.el (mouse-yank-primary, mouse-yank-secondary):
3944 Do not call `x-get-selection' the second time, reuse the value.
3945
3946 2010-07-26 Daiki Ueno <ueno@unixuser.org>
3947
3948 * epa-mail.el (epa-mail-mode-map): Add alternative key bindings
3949 which consist of control chars only. Suggested by Richard Stallman.
3950
3951 2010-07-25 Daiki Ueno <ueno@unixuser.org>
3952
3953 * epa-file.el (epa-file-insert-file-contents): Check if LOCAL-FILE
3954 exists before passing an error to find-file-not-found-functions
3955 (bug#6723).
3956
3957 2010-07-23 Lukas Huonker <l.huonker@gmail.com>
3958
3959 * play/tetris.el (tetris-tty-colors, tetris-x-colors, tetris-blank):
3960 Remove leading nil element, adjust values.
3961 (tetris-shapes, tetris-shape-scores):
3962 Change representation of shapes and remove some redundancy.
3963 (tetris-get-shape-cell, tetris-shape-width, tetris-draw-next-shape)
3964 (tetris-draw-shape, tetris-erase-shape, tetris-test-shape):
3965 Adjust for working with new representation of shapes.
3966 (tetris-shape-rotations): New function.
3967 (tetris-move-bottom, tetris-move-left, tetris-move-right)
3968 (tetris-rotate-prev, tetris-rotate-next):
3969 Adjust for working with the new version of tetris-test-shape.
3970
3971 2010-07-23 Markus Triska <markus.triska@gmx.at>
3972
3973 * progmodes/ps-mode.el: Use comint (bug#5954).
3974 (ps-run-mode-map): Adapt for comint-mode; omit "\r", [return]..
3975 (ps-mode-other-newline): Simplify.
3976 (ps-run-mode): Derive from comint-mode instead of
3977 fundamental-mode, yielding input history etc.
3978 (ps-run-start, ps-run-quit, ps-run-clear, ps-run-region)
3979 (ps-run-send-string): Adapt for comint-mode.
3980 (ps-run-newline): Remove now unneeded function.
3981
3982 2010-07-23 Michael Albinus <michael.albinus@gmx.de>
3983
3984 * net/tramp.el (tramp-methods): Move hostname to the end in all
3985 plink `tramp-login-args'.
3986
3987 2010-07-23 Michael Albinus <michael.albinus@gmx.de>
3988
3989 * net/tramp.el (tramp-open-shell): New defun.
3990 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
3991 Use it.
3992
3993 2010-07-23 Michael Albinus <michael.albinus@gmx.de>
3994
3995 * net/tramp.el (tramp-file-name-regexp-unified)
3996 (tramp-completion-file-name-regexp-unified): On W32 systems, do
3997 not regard the volume letter as remote filename. (Bug#5447)
3998
3999 2010-07-23 Juanma Barranquero <lekktu@gmail.com>
4000
4001 * custom.el (custom-declare-variable): Give a clearer error message
4002 when the docstring is missing (bug#6476).
4003
4004 2010-07-22 Michael R. Mauger <mmaug@yahoo.com>
4005
4006 * progmodes/sql.el: Version 2.4. Improved Login prompting.
4007 (sql-login-params): New widget definition.
4008 (sql-oracle-login-params, sql-mysql-login-params)
4009 (sql-solid-login-params, sql-sybase-login-params)
4010 (sql-informix-login-params, sql-ingres-login-params)
4011 (sql-ms-login-params, sql-postgres-login-params)
4012 (sql-interbase-login-params, sql-db2-login-params)
4013 (sql-linter-login-params): Use it.
4014 (sql-sqlite-login-params): Use it; Define "database" parameter as
4015 a file name.
4016 (sql-sqlite-program): Change to "sqlite3".
4017 (sql-comint-sqlite): Make sure database name is complete.
4018 (sql-for-each-login): New function.
4019 (sql-connect, sql-save-connection): Use it.
4020 (sql-get-login-ext): New function.
4021 (sql-get-login): Use it.
4022 (sql-make-alternate-buffer-name): Handle :file parameters.
4023
4024 2010-07-22 Juanma Barranquero <lekktu@gmail.com>
4025
4026 * dired.el (dired-no-confirm): Document value t and fix defcustom to
4027 accept it (bug#6597). Suggested by Drew Adams <drew.adams@oracle.com>.
4028
4029 2010-07-22 Teemu Likonen <tlikonen@iki.fi> (tiny change)
4030
4031 * dired.el (dired-mode-map): Use command remapping (bug#6632).
4032
4033 2010-07-22 Lawrence Mitchell <wence@gmx.li>
4034
4035 * term/vt100.el (vt100-wide-mode): Fix :init-value keyword (bug#6620).
4036
4037 2010-07-21 Michael Albinus <michael.albinus@gmx.de>
4038
4039 * net/tramp.el (tramp-get-ls-command)
4040 (tramp-get-ls-command-with-dired): Run tests on "/dev/null"
4041 instead of "/".
4042
4043 2010-07-20 Michael R. Mauger <mmaug@yahoo.com>
4044
4045 * progmodes/sql.el: Version 2.3.
4046 (sql-connection-alist): Changed keys from symbols to strings;
4047 enhanced the widget definition.
4048 (sql-mode-menu): Added submenu to select connections.
4049 (sql-interactive-mode-menu): Added "Save Connection" item.
4050 (sql-add-product): Fixed menu item.
4051 (sql-get-product-feature): Improved error handling.
4052 (sql--alt-buffer-part, sql--alt-if-not-empty): Removed.
4053 (sql-make-alternate-buffer-name): Simplified.
4054 (sql-product-interactive): Handle missing product.
4055 (sql-connect): Support string keys, minor improvements.
4056 (sql-save-connection): New function.
4057 (sql-connection-menu-filter): New function.
4058
4059 2010-07-20 Michael Albinus <michael.albinus@gmx.de>
4060
4061 * net/tramp.el (tramp-file-name-handler): Trace 'quit.
4062 (tramp-open-connection-setup-interactive-shell): Apply
4063 workaround for IRIX64 bug. Move argument of last
4064 `tramp-send-command' where it belongs to.
4065
4066 2010-07-20 Michael Albinus <michael.albinus@gmx.de>
4067
4068 * net/tramp.el (tramp-perl-file-attributes)
4069 (tramp-perl-directory-files-and-attributes): Don't pass "$3".
4070 (tramp-maybe-open-connection): Use `async-args' and `gw-args' in
4071 front of `login-args'.
4072
4073 2010-07-19 Juanma Barranquero <lekktu@gmail.com>
4074
4075 * time.el (display-time-world-mode): Define with `define-derived-mode'.
4076 Set `show-trailing-whitespace' to nil.
4077 (display-time-world-display): Simplify.
4078
4079 2010-07-18 Alan Mackenzie <acm@muc.de>
4080
4081 Enhance `c-file-style' in file/directory local variables.
4082 * progmodes/cc-mode.el (c-count-cfss): New function.
4083 (c-before-hack-hook): Call `c-set-style' differently according to
4084 whether c-file-style was set in file or directory local
4085 variables.
4086
4087 2010-07-18 Michael R. Mauger <mmaug@yahoo.com>
4088
4089 * progmodes/sql.el: Version 2.2.
4090 (sql-product, sql-user, sql-database, sql-server, sql-port): Use
4091 defcustom :safe keyword rather than putting safe-local-variable
4092 property.
4093 (sql-password): Use defcustom :risky keyword rather than putting
4094 risky-local-variable property.
4095 (sql-oracle-login-params, sql-sqlite-login-params)
4096 (sql-solid-login-params, sql-sybase-login-params)
4097 (sql-informix-login-params, sql-ingres-login-params)
4098 (sql-ms-login-params, sql-postgres-login-params)
4099 (sql-interbase-login-params, sql-db2-login-params)
4100 (sql-linter-login-params): Add `port' option.
4101 (sql-get-product-feature): Added NO-INDIRECT parameter.
4102 (sql-comint-oracle, sql-comint-sybase)
4103 (sql-comint-informix, sql-comint-sqlite, sql-comint-mysql)
4104 (sql-comint-solid, sql-comint-ingres, sql-comint-ms)
4105 (sql-comint-postgres, sql-comint-interbase, sql-comint-db2)
4106 (sql-comint-linter): Renamed sql-connect-* functions to
4107 sql-comint-*.
4108 (sql-product-alist, sql-mode-menu): Renamed as above and
4109 :sqli-connect-func to :sqli-comint-func.
4110 (sql-connection): New variable.
4111 (sql-interactive-mode): Set it.
4112 (sql-connection-alist): New variable.
4113 (sql-connect): New function.
4114 (sql--alt-buffer-part, sql--alt-if-not-empty)
4115 (sql-make-alternate-buffer-name): Improved alternative buffer name.
4116
4117 2010-07-17 Thierry Volpiatto <thierry.volpiatto@gmail.com>
4118
4119 * image-mode.el (image-bookmark-make-record): Do not set context
4120 in an image (Bug#6650).
4121
4122 2010-07-17 Chong Yidong <cyd@stupidchicken.com>
4123
4124 * simple.el (select-active-region): New function.
4125 (push-mark-command, set-mark, activate-mark)
4126 (handle-shift-selection): Use it.
4127 (deactivate-mark): Don't check for size of region.
4128
4129 * mouse.el (mouse-drag-track): Use select-active-region.
4130
4131 2010-07-17 Michael Albinus <michael.albinus@gmx.de>
4132
4133 * net/tramp.el (tramp-get-ls-command-with-dired): Make test for
4134 "--dired" stronger.
4135
4136 2010-07-17 Chong Yidong <cyd@stupidchicken.com>
4137
4138 * term/x-win.el (x-select-enable-primary): Change default to nil.
4139 (x-select-enable-clipboard): Add :version keyword.
4140
4141 * mouse.el (mouse-drag-copy-region):
4142 * simple.el (select-active-regions): Likewise.
4143
4144 2010-07-16 Reiner Steib <Reiner.Steib@gmx.de>
4145
4146 * vc/vc.el (vc-coding-system-inherit-eol): New defvar.
4147 (vc-coding-system-for-diff): Use it to decide whether to inherit
4148 from the file the EOL format for reading the diffs of that file.
4149 (Bug#4451)
4150
4151 2010-07-16 Eli Zaretskii <eliz@gnu.org>
4152
4153 * mail/rmailmm.el (rmail-mime-save): Make the temp buffer
4154 unibyte, so compressed attachments are not compressed again.
4155
4156 2010-07-16 Michael Albinus <michael.albinus@gmx.de>
4157
4158 * net/tramp.el (tramp-handle-shell-command): Don't use hard-wired
4159 "/bin/sh" but `tramp-remote-sh' from `tramp-methods'.
4160 (tramp-find-shell): Simplify setting connection property.
4161 (tramp-get-ls-command): Make test for "--color=never" stronger.
4162
4163 2010-07-15 Simon South <ssouth@member.fsf.org>
4164
4165 * progmodes/delphi.el (delphi-previous-indent-of): Indent case
4166 blocks within record declarations (i.e. variant parts) correctly.
4167
4168 2010-07-15 Simon South <ssouth@member.fsf.org>
4169
4170 * progmodes/delphi.el (delphi-token-at): Give newlines precedence
4171 over literal tokens when parsing so newlines aren't "absorbed" by
4172 single-line comments. Corrects the indentation of case blocks
4173 that have a comment on the first line.
4174
4175 2010-07-14 Karl Fogel <kfogel@red-bean.com>
4176
4177 * bookmark.el (bookmark-load-hook): Fix doc string as suggested
4178 by Drew Adams (Bug#5504).
4179
4180 2010-07-14 Jan Djärv <jan.h.d@swipnet.se>
4181
4182 * xt-mouse.el (xterm-mouse-event-read): Fix for characters > 127
4183 now that Unicode is used (Bug#6594).
4184
4185 2010-07-14 Chong Yidong <cyd@stupidchicken.com>
4186
4187 * term/x-win.el (x-select-enable-clipboard): Default to t.
4188 (x-initialize-window-system): Don't overwrite Paste menu item.
4189
4190 * simple.el (select-active-regions): Default to t.
4191 (push-mark-command): Don't overwrite primary with empty string.
4192
4193 * mouse.el: Bind mouse-2 to mouse-yank-primary.
4194 (mouse-drag-copy-region): Default to nil.
4195
4196 * menu-bar.el (menu-bar-enable-clipboard): Don't overwrite
4197 Cut/Copy/Paste menu bar items.
4198
4199 2010-07-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
4200
4201 Allow C-w when setting a bookmark in a Gnus Article buffer (Bug#5975).
4202 Patch applied by Karl Fogel.
4203
4204 * bookmark.el (bookmark-set): Don't set `bookmark-yank-point'
4205 and `bookmark-current-buffer' if they have been already set in
4206 another buffer (e.g gnus-art).
4207
4208 2010-07-13 Karl Fogel <kfogel@red-bean.com>
4209 Thierry Volpiatto <thierry.volpiatto@gmail.com>
4210
4211 Preparation for setting bookmarks in Gnus article buffers (Bug#5975).
4212
4213 * bookmark.el (bookmark-make-record-default): Allow unneeded
4214 information to be omitted from the record.
4215
4216 Adjust declarations and calls:
4217
4218 * info.el (bookmark-make-record-default): Adjust declaration.
4219 (Info-bookmark-make-record): Adjust call.
4220
4221 * woman.el (bookmark-make-record-default): Adjust declaration.
4222 (woman-bookmark-make-record): Adjust call.
4223
4224 * man.el (bookmark-make-record-default): Adjust declaration.
4225 (Man-bookmark-make-record): Adjust call.
4226
4227 * image-mode.el (bookmark-make-record-default): Adjust declaration.
4228
4229 * doc-view.el (bookmark-make-record-default): Adjust declaration.
4230
4231 2010-07-13 Karl Fogel <kfogel@red-bean.com>
4232
4233 * bookmark.el (bookmark-show-annotation): Use `when' instead of `if'.
4234 This is also from Thierry Volpiatto's patch in bug #6444. However,
4235 because it was extraneous to the functional change in that patch,
4236 and causes a re-indendation, I am committing it separately.
4237
4238 2010-07-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
4239
4240 * bookmark.el (bookmark-show-annotation): Ensure annotations show,
4241 e.g. in Info bookmarks, by using `switch-to-buffer-other-window'.
4242 Patch applied by Karl Fogel (Bug#6444).
4243
4244 2010-07-13 Chong Yidong <cyd@stupidchicken.com>
4245
4246 * frame.el (make-frame): Fix typo in 2010-06-30 change (Bug#6625).
4247
4248 2010-07-13 Adrian Robert <Adrian.B.Robert@gmail.com>
4249
4250 * term/ns-win.el: Bind M-~ to 'ns-prev-frame (due to Matthew
4251 Dempsky; bug#5084). Remove incorrect binding for S-tab.
4252 (ns-alternatives-map): Change S-tab binding to backtab
4253 (bug#6616).
4254
4255 * simple.el (normal-erase-is-backspace-setup-frame): Set mode on
4256 under ns.
4257
4258 2010-07-12 Andreas Schwab <schwab@linux-m68k.org>
4259
4260 * language/tai-viet.el ("TaiViet"): Try to fix re-encoding bugs.
4261 (Bug#5806)
4262
4263 * language/tv-util.el (tai-viet-re): Remove format.
4264
4265 2010-07-12 Kenichi Handa <handa@m17n.org>
4266
4267 * language/hebrew.el: Remove no-byte-compile declaration.
4268 Change coding: tag to utf-8. Register hebrew-shape-gstring in
4269 composition-function-table for 3-character looking back.
4270 (hebrew-font-get-precomposed): New function.
4271 (hebrew-shape-gstring): Utilize precomposed glyphs if available.
4272
4273 2010-07-11 Chong Yidong <cyd@stupidchicken.com>
4274
4275 * mouse.el (mouse-drag-track): Handle select-active-regions
4276 (Bug#6612).
4277
4278 2010-07-11 Magnus Henoch <magnus.henoch@gmail.com>
4279
4280 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Do not pass
4281 empty argument to gvfs-copy.
4282
4283 2010-07-10 Glenn Morris <rgm@gnu.org>
4284
4285 * calendar/calendar.el (calendar-week-end-day): New function.
4286 * calendar/cal-tex.el (cal-tex-cursor-month): Remove unused vars.
4287 Respect calendar-week-start-day. (Bug#6606)
4288 (cal-tex-insert-day-names, cal-tex-insert-blank-days)
4289 (cal-tex-insert-blank-days-at-end): Respect calendar-week-start-day.
4290 (cal-tex-first-blank-p, cal-tex-last-blank-p): Simplify, and
4291 respect calendar-week-start-day.
4292
4293 2010-07-10 Chong Yidong <cyd@stupidchicken.com>
4294
4295 * simple.el (use-region-p): Doc fix (Bug#6607).
4296
4297 2010-07-10 Aleksei Gusev <aleksei.gusev@gmail.com> (tiny change)
4298
4299 * progmodes/compile.el (compilation-error-regexp-alist-alist): Add
4300 regexps for cucumber and ruby.
4301
4302 2010-07-08 Daiki Ueno <ueno@unixuser.org>
4303
4304 * epa-file.el (epa-file-error, epa-file--find-file-not-found-function)
4305 (epa-file-insert-file-contents): Hack to prevent
4306 find-file from opening empty buffer when decryption failed
4307 (bug#6568).
4308
4309 2010-07-07 Agustín Martín <agustin.martin@hispalinux.es>
4310
4311 * textmodes/ispell.el (ispell-alternate-dictionary):
4312 Use file-readable-p.
4313 Return nil if no word-list is found at default locations.
4314 (ispell-complete-word-dict): Default to nil.
4315 (ispell-command-loop): Use 'word-list' when using lookup-words.
4316 (lookup-words): Use ispell-complete-word-dict or
4317 ispell-alternate-dictionary. Check for word-list availability
4318 and handle errors if needed with better messages (Bug#6539).
4319 (ispell-complete-word): Use ispell-complete-word-dict or
4320 ispell-alternate-dictionary.
4321
4322 2010-07-07 Christoph Scholtes <cschol2112@gmail.com>
4323
4324 * progmodes/python.el (python-font-lock-keywords): Add Python 2.7
4325 builtins (BufferError, BytesWarning, WindowsError; callables
4326 bin, bytearray, bytes, format, memoryview, next, print; __package__).
4327
4328 2010-07-07 Glenn Morris <rgm@gnu.org>
4329
4330 * play/zone.el (top-level): Do not require timer, tabify, or cl.
4331 (zone-shift-left): Ignore intangibility, and any errors from
4332 forward-char.
4333 (zone-shift-right): Remove no-op end-of-line. Ignore intangibility.
4334 (zone-pgm-putz-with-case): Use upcase-region rather than inserting,
4335 deleting, and copying text properties.
4336 (zone-line-specs, zone-pgm-stress): Check forward-line exit status.
4337 (zone-pgm-rotate): Handle odd buffers like that of gomoku, where getting
4338 to point-max is hard.
4339 (zone-fret, zone-fill-out-screen): Replace cl's do with dotimes.
4340 (zone-fill-out-screen): Ignore intangibility.
4341
4342 2010-07-05 Chong Yidong <cyd@stupidchicken.com>
4343
4344 * menu-bar.el (menu-bar-mode):
4345 * tool-bar.el (tool-bar-mode): Replace default-frame-alist element
4346 if it has been set.
4347
4348 * mouse.el (mouse-drag-track): Call mouse-start-end to handle
4349 word/line selection (Bug#6565).
4350
4351 2010-07-04 Juanma Barranquero <lekktu@gmail.com>
4352
4353 * net/dbus.el (dbus-send-signal): Declare function.
4354
4355 2010-07-04 Michael Albinus <michael.albinus@gmx.de>
4356
4357 * net/dbus.el: Implement signal "PropertiesChanged" (from D-Bus 1.3.1).
4358 (dbus-register-property): New optional argument EMITS-SIGNAL.
4359 (dbus-property-handler): Send signal "PropertiesChanged" if requested.
4360
4361 2010-07-03 Chong Yidong <cyd@stupidchicken.com>
4362
4363 * mouse.el (mouse-drag-overlay): Variable deleted.
4364 (mouse-move-drag-overlay, mouse-show-mark): Functions deleted.
4365 (mouse--remap-link-click-p): New function.
4366 (mouse-drag-track): Handle dragging by using temporary Transient
4367 Mark mode, instead of a special overlay.
4368 (mouse-kill-ring-save, mouse-save-then-kill): Don't call
4369 mouse-show-mark.
4370
4371 * mouse-sel.el (mouse-sel-selection-alist): mouse-drag-overlay
4372 deleted.
4373
4374 2010-07-02 Juri Linkov <juri@jurta.org>
4375
4376 * autoinsert.el (auto-insert-alist): Fix readability
4377 by using dotted pair notation for lambda.
4378
4379 2010-07-02 Juri Linkov <juri@jurta.org>
4380
4381 * faces.el (read-face-name): Rename arg `string-describing-default'
4382 to `default'. Doc fix. Display the default value in quotes
4383 in the prompt. With empty input, return the `default' arg,
4384 unless the default value is a string (in which case return nil).
4385 (describe-face): Replace the string `default' arg of `read-face-name'
4386 with the symbol `default'.
4387
4388 2010-07-02 Chong Yidong <cyd@stupidchicken.com>
4389
4390 * emulation/viper-cmd.el (viper-delete-backward-char)
4391 (viper-del-backward-char-in-insert)
4392 (viper-del-backward-char-in-replace, viper-change)
4393 (viper-backward-indent): Replace delete-backward-char with
4394 delete-char (Bug#6552).
4395
4396 2010-07-01 Chong Yidong <cyd@stupidchicken.com>
4397
4398 * ruler-mode.el (ruler--save-header-line-format): Fix typos.
4399
4400 2010-06-30 Chong Yidong <cyd@stupidchicken.com>
4401
4402 * frame.el (make-frame): Add default-frame-alist to the PARAMETERS
4403 argument passed to frame-creation-function (Bug#5378).
4404
4405 * faces.el (x-handle-named-frame-geometry)
4406 (x-handle-reverse-video, x-create-frame-with-faces)
4407 (face-set-after-frame-default, tty-create-frame-with-faces): Don't
4408 separately consult default-frame-alist. It is now passed as the
4409 PARAMETER argument.
4410
4411 2010-06-30 Andreas Schwab <schwab@linux-m68k.org>
4412
4413 * startup.el (command-line): Don't call tool-bar-setup in a
4414 tty-only build.
4415
4416 2010-06-30 Chong Yidong <cyd@stupidchicken.com>
4417
4418 * ruler-mode.el (ruler--save-header-line-format): New fun.
4419 (ruler-mode): Use it as a setter function, so as not to overwrite
4420 ruler-mode-header-line-format-old if Ruler mode is on (Bug#5370).
4421
4422 2010-06-29 Chong Yidong <cyd@stupidchicken.com>
4423
4424 * vc/vc.el (vc-deduce-backend): New fun. Handle diff buffers.
4425 (vc-root-diff, vc-print-root-log, vc-log-incoming)
4426 (vc-log-outgoing): Use it.
4427 (vc-diff-internal): Set diff-vc-backend.
4428
4429 * vc/diff-mode.el (diff-vc-backend): New var.
4430
4431 2010-06-28 Jan Djärv <jan.h.d@swipnet.se>
4432
4433 * dynamic-setting.el (font-setting-change-default-font): Remove
4434 call to message.
4435
4436 2010-06-28 Kenichi Handa <handa@m17n.org>
4437
4438 * international/quail.el (quail-insert-kbd-layout): Fix the
4439 showing of untranslated characters.
4440
4441 2010-06-28 Chong Yidong <cyd@stupidchicken.com>
4442
4443 * simple.el (delete-active-region): New option.
4444 (delete-backward-char): Implement in Lisp.
4445 (delete-forward-char): New command.
4446
4447 * mouse.el (mouse-region-delete-keys): Deleted.
4448 (mouse-show-mark): Simplify.
4449
4450 * bindings.el (global-map): Bind delete and DEL, the former to
4451 delete-forward-char.
4452
4453 2010-06-27 Lennart Borgman <lennart.borgman@gmail.com>
4454
4455 * progmodes/ruby-mode.el (ruby-mode-map): Don't bind TAB.
4456 (ruby-mode): Bind indent-line-function (Bug#5119).
4457
4458 2010-06-27 Chong Yidong <cyd@stupidchicken.com>
4459
4460 * startup.el (command-line): Recognize "0" X resource value.
4461
4462 2010-06-27 Chong Yidong <cyd@stupidchicken.com>
4463
4464 * startup.el (command-line): Use X resources to set the value of
4465 menu-bar-mode and tool-bar-mode, before calling frame-initialize.
4466
4467 * menu-bar.el (menu-bar-mode):
4468 * tool-bar.el (tool-bar-mode): Don't change default-frame-alist.
4469 Set init-value to t.
4470
4471 * frame.el (frame-notice-user-settings): Don't change
4472 default-frame-alist based on menu-bar-mode and tool-bar-mode, or
4473 vice versa (Bug#2249).
4474
4475 2010-06-26 Eli Zaretskii <eliz@gnu.org>
4476
4477 * w32-fns.el (w32-convert-standard-filename): Doc fix.
4478
4479 2010-06-25 Agustín Martín <agustin.martin@hispalinux.es>
4480
4481 * textmodes/flyspell.el (flyspell-check-previous-highlighted-word):
4482 Make sure `flyspell-word' re-checks word after function run (Bug#6504).
4483
4484 * textmodes/ispell.el (ispell-init-process): Make sure ispell and
4485 default directories are expanded (Bug#6143).
4486
4487 2010-06-24 Juri Linkov <juri@jurta.org>
4488
4489 * minibuffer.el (completions-format): Change default from nil to
4490 `horizontal'. Remove `nil' value from :type. Doc fix. (Bug#6459)
4491
4492 2010-06-24 Juri Linkov <juri@jurta.org>
4493
4494 * vc/vc.el (vc-diff-internal): Set `revert-buffer-function'
4495 buffer-locally to lambda that re-runs the vc diff command.
4496 (Bug#6447)
4497
4498 2010-06-24 Chong Yidong <cyd@stupidchicken.com>
4499
4500 * kmacro.el (kmacro-call-macro): Don't issue hint message if the
4501 echo area is in use (Bug#3412).
4502
4503 2010-06-22 Glenn Morris <rgm@gnu.org>
4504
4505 * textmodes/texinfmt.el (texinfo-format-region)
4506 (texinfo-raise-lower-sections, texinfo-format-separate-node)
4507 (texinfo-itemize-item, texinfo-multitable-item, texinfo-alias)
4508 (texinfo-format-option, texinfo-noindent):
4509 Use line-beginning-position and line-end-position.
4510
4511 * calc/calc-aent.el, calc/calc-ext.el, calc/calc-lang.el:
4512 * calc/calc-store.el, calc/calc-units.el, calc/calc.el:
4513 * calc/calccomp.el: Add explicit utf-8 coding cookies to files with
4514 utf-8 characters.
4515
4516 2010-06-21 Karl Fogel <kfogel@red-bean.com>
4517
4518 * play/zone.el (zone-fall-through-ws): Fix next-line ->
4519 forward-line fallout.
4520
4521 2010-07-06 Chong Yidong <cyd@stupidchicken.com>
4522
4523 * mouse.el (mouse-appearance-menu): Add docstring.
4524
4525 * help.el (describe-key): Print up-event using key-description.
4526
4527 2010-07-03 Michael Albinus <michael.albinus@gmx.de>
4528
4529 * net/zeroconf.el (zeroconf-resolve-service)
4530 (zeroconf-service-resolver-handler): Use `dbus-byte-array-to-string'.
4531 (zeroconf-publish-service): Use `dbus-string-to-byte-array'.
4532
4533 2010-07-03 Jan Moringen <jan.moringen@uni-bielefeld.de>
4534
4535 * net/zeroconf.el (zeroconf-service-remove-hook): New defun.
4536
4537 2010-06-30 Dan Nicolaescu <dann@ics.uci.edu>
4538
4539 Avoid displaying files with a nil state in vc-dir.
4540 * vc/vc-dir.el (vc-dir-update): Obey the noinsert argument in all
4541 cases that cause insertion.
4542 (vc-dir-resynch-file): Tell vc-dir-update to avoid inserting files
4543 with a nil state.
4544
4545 2010-06-30 Chong Yidong <cyd@stupidchicken.com>
4546
4547 * xml.el (xml-parse-region): Avoid infloop (Bug#5281).
4548
4549 2010-06-29 Leo <sdl.web@gmail.com>
4550
4551 * emacs-lisp/rx.el (rx): Doc fix. (Bug#6537)
4552
4553 2010-06-27 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
4554
4555 * generic-x.el (bat-generic-mode): Fix regexp for command line
4556 switches (Bug#5719).
4557
4558 2010-06-27 Masatake YAMATO <yamato@redhat.com>
4559
4560 * htmlfontify.el (hfy-face-attr-for-class): Use append instead
4561 of nconc to avoid pure storage error (Bug#6239).
4562
4563 2010-06-27 Christoph <cschol2112@googlemail.com> (tiny change)
4564
4565 * bookmark.el (bookmark-bmenu-2-window, bookmark-bmenu-other-window)
4566 (bookmark-bmenu-other-window-with-mouse): Remove unnecessary
4567 bindings of bookmark-automatically-show-annotations (Bug#6515).
4568
4569 2010-06-25 Eli Zaretskii <eliz@gnu.org>
4570
4571 * arc-mode.el (archive-zip-extract): Don't quote the file name on
4572 MS-Windows and MS-DOS. (Bug#6467, Bug#6144)
4573
4574 2010-06-24 Štěpán Němec <stepnem@gmail.com> (tiny change)
4575
4576 * comint.el (make-comint, make-comint-in-buffer): Mention return
4577 value in the docstrings. (Bug#6498)
4578
4579 2010-06-24 Yoni Rabkin <yoni@rabkins.net>
4580
4581 * bs.el (bs-mode-font-lock-keywords): Remove "by" from Dired pattern,
4582 since it is not present when using some non-default switches.
4583
4584 2010-06-23 Karl Fogel <kfogel@red-bean.com>
4585
4586 * simple.el (compose-mail): Fix doc string to refer to
4587 `compose-mail-user-agent-warnings', instead of to the
4588 nonexistent `compose-mail-check-user-agent'.
4589
4590 2010-06-21 Alan Mackenzie <bug-cc-mode@gnu.org>
4591
4592 Fix an indentation bug:
4593
4594 * progmodes/cc-mode.el (c-common-init): Initialise c-new-BEG/END.
4595 (c-neutralize-syntax-in-and-mark-CPP): c-new-BEG/END: Take account
4596 of existing values.
4597
4598 * progmodes/cc-engine.el (c-clear-<-pair-props-if-match-after)
4599 (c-clear->-pair-props-if-match-before): now return t when they've
4600 cleared properties, nil otherwise.
4601 (c-before-change-check-<>-operators): Set c-new-beg/end correctly
4602 by taking account of the existing value.
4603
4604 * progmodes/cc-defs.el
4605 (c-clear-char-property-with-value-function): Fix this to clear the
4606 property rather than overwriting it with nil.
4607
4608 2010-06-20 Chong Yidong <cyd@stupidchicken.com>
4609
4610 * emacs-lisp/package.el (package-print-package): Add link to
4611 package description via describe-package.
4612 (describe-package-1): List package requirements. Add button to
4613 perform installation.
4614 (package-menu-describe-package): New command.
4615
4616 * help-mode.el (help-package): New button type.
4617
4618 2010-06-19 Chong Yidong <cyd@stupidchicken.com>
4619
4620 * emacs-lisp/package.el: Move package-list-packages binding to
4621 menu-bar.el.
4622 (describe-package, describe-package-1, package--dir): New funs.
4623 (package-activate-1): Use package--dir.
4624
4625 * emacs-lisp/package-x.el (gnus-article-buffer): Require package.
4626
4627 * help-mode.el (help-package-def): New button type.
4628
4629 * menu-bar.el: Move package-list-packages binding here from
4630 package.el.
4631
4632 2010-06-19 Gustav Hållberg <gustav@gmail.com> (tiny change)
4633
4634 * descr-text.el (describe-char): Avoid trailing whitespace. (Bug#6423)
4635
4636 2010-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
4637
4638 * emacs-lisp/edebug.el (edebug-read-list):
4639 Phase out old-style backquotes.
4640
4641 2010-06-17 Juri Linkov <juri@jurta.org>
4642
4643 * help-mode.el (help-mode): Set buffer-local variable
4644 revert-buffer-function to help-mode-revert-buffer.
4645 (help-mode-revert-buffer): New function.
4646
4647 * info.el (Info-revert-find-node): Check for major-mode Info-mode
4648 before popping to "*info*" (like in other Info functions).
4649 Keep buffer-name in old-buffer-name. Keep Info-history-forward in
4650 old-history-forward. Pop to old-buffer-name or "*info*" to
4651 recreate the killed buffer. Set Info-history-forward from
4652 old-history-forward.
4653 (Info-breadcrumbs-depth): Add :group and :version.
4654
4655 2010-06-17 Dan Nicolaescu <dann@ics.uci.edu>
4656
4657 * emacs-lisp/package.el (package-menu-mode-map): Add a menu.
4658
4659 2010-06-17 Agustín Martín <agustin.martin@hispalinux.es>
4660
4661 * textmodes/ispell.el (ispell-aspell-find-dictionary): Fix regexp
4662 for languages like Portuguese with pt_{BR,PT} and no plain pt.
4663
4664 2010-06-17 Juanma Barranquero <lekktu@gmail.com>
4665
4666 * emacs-lisp/package.el (package-menu-mode-map):
4667 Move initialization into declaration.
4668
4669 * menu-bar.el (menu-bar-options-menu): Fix typo in menu entry.
4670
4671 2010-06-17 Chong Yidong <cyd@stupidchicken.com>
4672
4673 * emacs-lisp/package.el (package-archive-base): Point to
4674 elpa.gnu.org.
4675 (package-enable, package-load-list): New defcustoms.
4676 (package-user-dir, package-directory-list): Turn into defcustoms.
4677 Don't include package-user-dir in package-directory-list.
4678 (package--builtins-base): Don't include Emacs as a "package".
4679 (package-subdirectory-regexp): New var.
4680 (package-load-all-descriptors, package-compute-transaction)
4681 (package-download-transaction): Obey package-load-list.
4682 (package-activate-1): Rename from package-do-activate.
4683 (package-list-packages-internal): Check package-load-list.
4684 (package-load-descriptor, package-generate-autoloads)
4685 (package-unpack, package-unpack-single)
4686 (package--read-archive-file, package-delete): Use
4687 expand-file-name.
4688
4689 * emacs-lisp/package-x.el: New file. Package uploading
4690 functionality split out from package.el.
4691
4692 * startup.el (command-line): Load packages after reading init file.
4693
4694 2010-06-17 Tom Tromey <tromey@redhat.com>
4695
4696 * emacs-lisp/package.el: New file.
4697
4698 2010-06-22 Dan Nicolaescu <dann@ics.uci.edu>
4699
4700 Fix vc-annotate for renamed files when using Git.
4701 * vc/vc-git.el (vc-git-find-revision): Deal with empty results from
4702 ls-files. Doe not pass the object as a file name to cat-file, it
4703 is not a file name.
4704 (vc-git-annotate-command): Pass the file name using -- to avoid
4705 ambiguity with the revision.
4706 (vc-git-previous-revision): Pass a relative file name.
4707
4708 2010-06-22 Glenn Morris <rgm@gnu.org>
4709
4710 * progmodes/js.el (js-mode-map): Use standard capitalization and
4711 ellipses for menu entries.
4712
4713 * wid-edit.el (widget-complete): Doc fix.
4714
4715 2010-06-22 Jürgen Hötzel <juergen@hoetzel.info> (tiny change)
4716
4717 * wid-edit.el (widget-complete): Fix typo in 2009-12-02 change.
4718
4719 2010-06-22 Dan Nicolaescu <dann@ics.uci.edu>
4720
4721 Fix annotating other revisions for renamed files in vc-annotate.
4722 * vc/vc-annotate.el (vc-annotate): Add an optional argument for the
4723 VC backend. Use it when non-nil.
4724 (vc-annotate-warp-revision): Pass the VC backend to vc-annotate.
4725 (Bug#6487)
4726
4727 Fix vc-annotate-show-changeset-diff-revision-at-line for git.
4728 * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
4729 Do not pass the file name to the 'previous-revision call when we
4730 don't want a file diff. (Bug#6489)
4731
4732 2010-06-21 Dan Nicolaescu <dann@ics.uci.edu>
4733
4734 Fix finding revisions for renamed files in vc-annotate.
4735 * vc/vc.el (vc-find-revision): Add an optional argument for
4736 the VC backend. Use it when non-nil.
4737 * vc/vc-annotate.el (vc-annotate-find-revision-at-line): Pass the VC
4738 backend to vc-find-revision. (Bug#6487)
4739
4740 2010-06-21 Dan Nicolaescu <dann@ics.uci.edu>
4741
4742 Fix reading file names in Git annotate buffers.
4743 * vc/vc-git.el (vc-git-annotate-extract-revision-at-line):
4744 Remove trailing whitespace. Suggested by Eric Hanchrow. (Bug#6481)
4745
4746 2010-06-20 Alan Mackenzie <acm@muc.de>
4747
4748 * progmodes/cc-mode.el (c-before-hack-hook): When the mode is set
4749 in file local variables, set it first.
4750
4751 2010-06-19 Glenn Morris <rgm@gnu.org>
4752
4753 * descr-text.el (describe-char-unicode-data): Insert separating
4754 space when needed. (Bug#6422)
4755
4756 * progmodes/idlwave.el (idlwave-action-and-binding):
4757 Fix typo in 2009-12-03 change. (Bug#6450)
4758
4759 2010-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
4760
4761 * emacs-lisp/macroexp.el (macroexpand-all-1): Put back special
4762 handling for `lambda' (misunderstanding).
4763
4764 2010-06-16 Jay Belanger <jay.p.belanger@gmail.com>
4765
4766 * calc/calc-poly.el (math-accum-factors): Make sure that
4767 constants aren't distributed after they are factored out.
4768
4769 2010-06-16 Juri Linkov <juri@jurta.org>
4770
4771 * facemenu.el (list-colors-display): Call `pop-to-buffer' before
4772 `list-colors-print'. (Bug#6332)
4773
4774 * subr.el (read-quoted-char): Fix up last change (bug#6290).
4775
4776 2010-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
4777
4778 * emacs-lisp/macroexp.el (macroexpand-all-1): Don't handle `lambda'
4779 specially, since it's a macro. Fix up wrong hint passed to maybe-cons.
4780
4781 * font-lock.el (font-lock-major-mode): Rename from
4782 font-lock-mode-major-mode to distinguish it from
4783 global-font-lock-mode's own font-lock-mode-major-mode (bug#6135).
4784 (font-lock-set-defaults):
4785 * font-core.el (font-lock-default-function): Adjust users.
4786 (font-lock-mode): Don't set it at all.
4787
4788 2010-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
4789
4790 * vc/vc-annotate.el (vc-annotate): Use vc-read-revision.
4791
4792 2010-06-16 Glenn Morris <rgm@gnu.org>
4793
4794 * calendar/appt.el (appt-time-msg-list): Doc fix.
4795 (appt-check): Let-bind appt-warn-time.
4796 (appt-add): Make the 3rd argument optional.
4797 Simplify argument names. Doc fix. Check for integer WARNTIME.
4798 Only add WARNTIME to the output list if non-nil.
4799
4800 2010-06-16 Ivan Kanis <apple@kanis.eu>
4801
4802 * calendar/appt.el (appt-check): Let the 3rd element of
4803 appt-time-msg-list specify the warning time.
4804 (appt-add): Add new argument with the warning time. (Bug#5176)
4805
4806 2010-06-16 Bob Rogers <rogers-emacs@rgrjr.dyndns.org> (tiny change)
4807
4808 * vc/vc-svn.el (vc-svn-after-dir-status): Fix regexp for Subversions
4809 older than version 1.6. (Bug#6361)
4810
4811 2010-06-16 Helmut Eller <eller.helmut@gmail.com>
4812
4813 * emacs-lisp/cl-macs.el (destructuring-bind): Bind `bind-enquote',
4814 used by cl-do-arglist. (Bug#6408)
4815
4816 2010-06-16 Agustín Martín <agustin.martin@hispalinux.es>
4817
4818 * textmodes/ispell.el (ispell-dictionary-base-alist): Fix
4819 portuguese casechars/not-casechars for missing 'çÇ'.
4820 Suggested by Rolando Pereira (bug#6434).
4821
4822 2010-06-15 Juanma Barranquero <lekktu@gmail.com>
4823
4824 * facemenu.el (list-colors-sort): Doc fix.
4825
4826 2010-06-15 Bob Rogers <rogers-emacs@rgrjr.dyndns.org> (tiny change)
4827
4828 * progmodes/sql.el (sql-connect-mysql): Fix typo.
4829
4830 2010-06-14 Juri Linkov <juri@jurta.org>
4831
4832 Add sort option `list-colors-sort'. (Bug#6332)
4833 * facemenu.el (color-rgb-to-hsv): New function.
4834 (list-colors-sort): New defcustom.
4835 (list-colors-sort-key): New function.
4836 (list-colors-display): Doc fix. Sort list according to the option
4837 `list-colors-sort'.
4838 (list-colors-print): Add HSV values to `help-echo' property of
4839 RGB strings.
4840
4841 2010-06-14 Juri Linkov <juri@jurta.org>
4842
4843 * compare-w.el: Move to the "vc" subdirectory.
4844
4845 2010-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
4846
4847 * image-mode.el (image-mode-map): Remap left-char and right-char.
4848
4849 * nxml/nxml-mode.el (nxml-indent-line): Standardize indent behavior.
4850
4851 2010-06-12 Chong Yidong <cyd@stupidchicken.com>
4852
4853 * term/common-win.el (x-colors): Add all the color names defined
4854 in rgb.txt (Bug#6332).
4855
4856 * facemenu.el (list-colors-print): Don't print extra names if it
4857 will overflow the window width.
4858
4859 * vc/log-edit.el (log-edit-font-lock-keywords): Revert 2010-06-02
4860 change (Bug#6343).
4861
4862 2010-06-12 Eli Zaretskii <eliz@gnu.org>
4863
4864 * files.el (make-directory): Doc fix (bug#6396).
4865
4866 2010-06-12 Michael Albinus <michael.albinus@gmx.de>
4867
4868 * net/tramp.el (tramp-remote-process-environment): Protect version
4869 string by apostroph.
4870 (tramp-shell-prompt-pattern): Do not use a shy group in case of
4871 XEmacs.
4872 (tramp-file-name-for-operation): Add `call-process-region'.
4873 (tramp-set-process-query-on-exit-flag): Fix wrong parentheses.
4874
4875 * net/tramp-compat.el (top): Do not autoload
4876 `tramp-handle-file-remote-p'. Load tramp-util.el and tramp-vc.el
4877 only when `start-file-process' is not bound.
4878 (tramp-advice-file-expand-wildcards): Do not use
4879 `tramp-handle-file-remote-p'.
4880 (tramp-compat-make-temp-file): Handle the case, that
4881 `make-temp-file' has no third argument EXTENSION.
4882
4883 2010-06-11 Juanma Barranquero <lekktu@gmail.com>
4884
4885 * makefile.w32-in (WINS_BASIC): Include new directory vc.
4886
4887 * loadup.el ("vc-hooks", "ediff-hook"): Load from lisp/vc/.
4888
4889 2010-06-11 Juri Linkov <juri@jurta.org>
4890
4891 * finder.el (finder-known-keywords): Add keyword "vc"
4892 for version control.
4893
4894 * add-log.el, cvs-status.el, diff.el, diff-mode.el, ediff.el,
4895 * emerge.el, log-edit.el, log-view.el, pcvs.el, smerge-mode.el,
4896 * vc-annotate.el, vc-bzr.el, vc-dir.el, vc-dispatcher.el, vc-git.el,
4897 * vc-hg.el, vc-mtn.el, vc.el: Add keyword "vc".
4898
4899 2010-06-11 Juri Linkov <juri@jurta.org>
4900
4901 Move version control related files to the "vc" subdirectory.
4902 * add-log.el, cvs-status.el, diff.el, diff-mode.el, ediff-diff.el,
4903 * ediff.el, ediff-help.el, ediff-hook.el, ediff-init.el,
4904 * ediff-merg.el, ediff-mult.el, ediff-ptch.el, ediff-util.el,
4905 * ediff-vers.el, ediff-wind.el, emerge.el, log-edit.el, log-view.el,
4906 * pcvs-defs.el, pcvs.el, pcvs-info.el, pcvs-parse.el, pcvs-util.el,
4907 * smerge-mode.el, vc-annotate.el, vc-arch.el, vc-bzr.el, vc-cvs.el,
4908 * vc-dav.el, vc-dir.el, vc-dispatcher.el, vc.el, vc-git.el,
4909 * vc-hg.el, vc-hooks.el, vc-mtn.el, vc-rcs.el, vc-sccs.el, vc-svn.el:
4910 Move files to the "vc" subdirectory.
4911
4912 2010-06-11 Chong Yidong <cyd@stupidchicken.com>
4913
4914 * comint.el (comint-password-prompt-regexp): Fix 2010-04-10 change
4915 (Bug#6367).
4916
4917 2010-06-11 Stephen Eglen <stephen@gnu.org>
4918
4919 * shell.el: Bind `shell-resync-dirs' to M-RET.
4920
4921 2010-06-10 Michael Albinus <michael.albinus@gmx.de>
4922
4923 * notifications.el: Move file from lisp/net, because it is
4924 supposed to talk locally to the user.
4925
4926 2010-06-10 Julien Danjou <julien@danjou.info>
4927
4928 * net/notifications.el (notifications-on-action-signal)
4929 (notifications-on-closed-signal): Pass notification id as first
4930 argument to the callback functions. Add docstrings.
4931 (notifications-notify): Fix docstring.
4932
4933 2010-06-10 Glenn Morris <rgm@gnu.org>
4934
4935 * emacs-lisp/authors.el (authors-ignored-files)
4936 (authors-valid-file-names): Add some files.
4937
4938 2010-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
4939
4940 * net/rcirc.el (rcirc-server-alist, rcirc, rcirc-connect): Resolve
4941 merge conflict, giving preference to the emacs-23 version of the code.
4942
4943 2010-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
4944
4945 * emacs-lisp/advice.el (ad-compile-function):
4946 Define warning-suppress-types before we let-bind it (bug#6275).
4947
4948 * vc-dispatcher.el: Rename mode-line-hook to vc-mode-line-hook;
4949 declare it, make it buffer-local and permanent-local (bug#6324).
4950 (vc-resynch-window): Adjust name.
4951 * vc-hooks.el (vc-find-file-hook): Adjust name.
4952
4953 2010-06-09 Michael Albinus <michael.albinus@gmx.de>
4954
4955 * net/notifications.el (notifications-notify): Fix docstring.
4956
4957 2010-06-09 Juanma Barranquero <lekktu@gmail.com>
4958
4959 Update to Unicode 6.0.0 beta.
4960 * international/charprop.el: Update copyright.
4961 * international/mule-cmds.el (ucs-names): Update character ranges.
4962 * international/uni-bidi.el:
4963 * international/uni-category.el:
4964 * international/uni-combining.el:
4965 * international/uni-comment.el:
4966 * international/uni-decimal.el:
4967 * international/uni-decomposition.el:
4968 * international/uni-digit.el:
4969 * international/uni-lowercase.el:
4970 * international/uni-mirrored.el:
4971 * international/uni-name.el:
4972 * international/uni-numeric.el:
4973 * international/uni-old-name.el:
4974 * international/uni-titlecase.el:
4975 * international/uni-uppercase.el: Regenerate.
4976
4977 2010-06-09 Juanma Barranquero <lekktu@gmail.com>
4978
4979 * emacs-lisp/smie.el (comment-string-strip): Declare function.
4980 (smie-precs-precedence-table): Fix typo in docstring.
4981
4982 * vc-mtn.el (log-edit-extract-headers): Declare function.
4983
4984 * vc-hg.el (log-edit-extract-headers): Remove duplicate declaration.
4985
4986 * net/notifications.el (dbus-register-signal): Declare function.
4987 (notifications-notify): Fix typos and reflow docstring.
4988
4989 2010-06-09 Dan Nicolaescu <dann@ics.uci.edu>
4990
4991 Improve VC create/retrieve tag/branch.
4992 * vc.el (vc-create-tag): Do not read the directory name for VCs
4993 with repository revision granularity. Adjust the tag/branch
4994 prompt. Reset VC properties.
4995 (vc-retrieve-tag): Do not read the directory name for VCs
4996 with repository revision granularity. Reset VC properties.
4997
4998 2010-06-09 Julien Danjou <julien@danjou.info>
4999
5000 * net/notifications.el: New file.
5001
5002 2010-06-09 Dan Nicolaescu <dann@ics.uci.edu>
5003
5004 Add optional support for resetting VC properties.
5005 * vc-dispatcher.el (vc-resynch-window): Add new optional argument,
5006 call vc-file-clearprops when true.
5007 (vc-resynch-buffer): Add new optional argument, pass it down.
5008 (vc-resynch-buffers-in-directory): Likewise.
5009
5010 Improve support for special markup in the VC commit message.
5011 * vc-mtn.el (vc-mtn-checkin): Add support for Author: and Date: markup.
5012 * vc-hg.el (vc-hg-checkin): Add support for Date:.
5013 * vc-git.el (vc-git-checkin):
5014 * vc-bzr.el (vc-bzr-checkin): Likewise.
5015
5016 2010-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
5017
5018 * emacs-lisp/smie.el (smie-indent-keyword): Remove special case that
5019 can be handled with a ((:before "fn") (:prev "=>" parent)) rule.
5020
5021 2010-06-07 Martin Pohlack <mp26@os.inf.tu-dresden.de>
5022
5023 * iimage.el: Remove images as soon as the underlying text is modified.
5024 (iimage-modification-hook): New function.
5025 (iimage-mode-buffer): Use it.
5026
5027 2010-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
5028
5029 * emacs-lisp/smie.el (smie-indent-offset-rule): Rename from
5030 smie-indent-offset-after. Add :prev case. Make a bit more generic.
5031 (smie-indent-virtual): Remove `virtual' arg. Update callers.
5032 (smie-indent-keyword): Add handling of open-paren keywords.
5033 (smie-indent-comment-continue): Don't assume comment-continue.
5034
5035 2010-06-07 Martin Rudalics <rudalics@gmx.at>
5036
5037 * window.el (pop-to-buffer): Remove the conditional that
5038 compares new-window and old-window, so it will reselect
5039 the selected window unconditionally.
5040 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00078.html
5041
5042 2010-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
5043
5044 * emacs-lisp/smie.el (smie-indent-offset-after)
5045 (smie-indent-forward-token, smie-indent-backward-token): New functions.
5046 (smie-indent-after-keyword): Use them.
5047 (smie-indent-fixindent): Only applies to the indentation of the BOL.
5048 (smie-indent-keyword): Tweak the black magic.
5049 (smie-indent-comment-continue): Strip comment-continue before use.
5050 (smie-indent-functions): Indent comments before keywords.
5051
5052 2010-06-06 Juri Linkov <juri@jurta.org>
5053
5054 * isearch.el (isearch-lazy-highlight-search): Fix looping
5055 by checking for empty match. This syncs this loop with the
5056 similar loop in `isearch-search'. (Bug#6362)
5057
5058 2010-06-05 Juanma Barranquero <lekktu@gmail.com>
5059
5060 * net/dbus.el (dbus-register-method): Declare function.
5061 (dbus-handle-event, dbus-property-handler): Fix typos in docstrings.
5062 (dbus-introspect): Doc fix.
5063 (dbus-event-bus-name, dbus-introspect-get-interface)
5064 (dbus-introspect-get-argument): Reflow docstrings.
5065
5066 2010-06-05 Dan Nicolaescu <dann@ics.uci.edu>
5067
5068 vc-log-incoming/vc-log-outgoing fixes for Git.
5069 * vc-git.el (vc-git-log-view-mode): Fix font lock for
5070 incoming/outgoing logs.
5071 (vc-git-log-outgoing, vc-git-log-incoming): Use @{upstream}
5072 instead of vc-git-compute-remote.
5073 (vc-git-compute-remote): Remove.
5074
5075 2010-06-04 Chong Yidong <cyd@stupidchicken.com>
5076
5077 * term/common-win.el (x-colors): Add "dark green" and "dark
5078 turquoise" (Bug#6332).
5079
5080 2010-06-04 Juri Linkov <juri@jurta.org>
5081
5082 * simple.el (kill-new): Fix logic of kill-do-not-save-duplicates.
5083 Instead of setting `replace' to t and replacing the same string
5084 with itself, don't do certain actions when
5085 kill-do-not-save-duplicates is non-nil and string is equal to car
5086 of kill-ring: don't call menu-bar-update-yank-menu, don't push
5087 interprogram-paste strings to kill-ring, and don't push the input
5088 argument `string' to kill-ring.
5089 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00072.html
5090
5091 2010-06-04 Juanma Barranquero <lekktu@gmail.com>
5092
5093 * subr.el (directory-sep-char): Move from fileio.c and make a defconst.
5094
5095 2010-06-04 Michael Albinus <michael.albinus@gmx.de>
5096
5097 * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name): Expand "~/".
5098 (tramp-gvfs-handler-mounted-unmounted)
5099 (tramp-gvfs-connection-mounted-p): Handle default-location.
5100
5101 * net/tramp-smb.el (tramp-smb-handle-delete-directory): Don't try to
5102 move files to trash.
5103
5104 2010-06-04 Juanma Barranquero <lekktu@gmail.com>
5105
5106 * international/mule-cmds.el (nonascii-insert-offset)
5107 (nonascii-translation-table): Add obsolescence information.
5108
5109 * international/mule.el (make-translation-table-from-vector): Doc fix.
5110
5111 2010-06-03 Glenn Morris <rgm@gnu.org>
5112
5113 * desktop.el (desktop-clear-preserve-buffers):
5114 Add "*Warnings*" buffer. (Bug#6336)
5115
5116 2010-06-03 Dan Nicolaescu <dann@ics.uci.edu>
5117
5118 vc-log-incoming/vc-log-outgoing improvements for Git.
5119 * vc-git.el (vc-git-log-outgoing): Use the same format as the
5120 short log.
5121 (vc-git-log-incoming): Likewise. Run "git fetch" before the log command.
5122
5123 Add bindings for vc-log-incoming and vc-log-outgoing.
5124 * vc-hooks.el (vc-prefix-map): Add bindings for vc-log-incoming
5125 and vc-log-outgoing.
5126 * vc-dir.el (vc-dir-menu-map): Add menu bindings for vc-log-incoming
5127 and vc-log-outgoing.
5128
5129 2010-06-03 Chong Yidong <cyd@stupidchicken.com>
5130
5131 * net/rcirc.el (rcirc-sort-nicknames): Remove.
5132 (rcirc-handler-366): Always sort nicknames.
5133
5134 2010-06-03 Juanma Barranquero <lekktu@gmail.com>
5135
5136 * emacs-lisp/smie.el (comment-continue): Declare for byte-compiler.
5137
5138 2010-06-03 Chong Yidong <cyd@stupidchicken.com>
5139
5140 * net/rcirc.el (rcirc-nickname<, rcirc-sort-nicknames-join): Doc fix.
5141
5142 2010-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
5143
5144 * net/rcirc.el (rcirc-sort-nicknames): Change default.
5145 (rcirc-sort-nicknames-join): Avoid setq.
5146
5147 2010-06-03 Deniz Dogan <deniz.a.m.dogan@gmail.com>
5148
5149 * net/rcirc.el (rcirc-sort-nicknames): New custom.
5150 (rcirc-nickname<, rcirc-sort-nicknames-join): New funs.
5151 (rcirc-handler-366): Use them.
5152
5153 2010-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
5154
5155 Split smie-indent-calculate into more manageable chunks.
5156 * emacs-lisp/smie.el (smie-indent-virtual, smie-indent-fixindent)
5157 (smie-indent-comment, smie-indent-after-keyword, smie-indent-keyword)
5158 (smie-indent-close, smie-indent-comment-continue, smie-indent-bob)
5159 (smie-indent-exps): Extract from smie-indent-calculate.
5160 (smie-indent-functions): New var.
5161 (smie-indent-functions): Use them.
5162
5163 2010-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
5164
5165 * emacs-lisp/smie.el (smie-indent-hanging-p): Use smie-bolp.
5166 (smie-indent-calculate): Simplify and cleanup.
5167
5168 2010-06-02 Michael Albinus <michael.albinus@gmx.de>
5169
5170 * net/tramp-gvfs.el (top): Require url-util.
5171 (tramp-gvfs-mount-point): Remove.
5172 (tramp-gvfs-stringify-dbus-message, tramp-gvfs-send-command):
5173 New defuns.
5174 (with-tramp-dbus-call-method): Format trace message.
5175 (tramp-gvfs-handle-copy-file, tramp-gvfs-handle-rename-file):
5176 Implement backup call, when operation on local files fails.
5177 Use progress reporter. Flush properties of changed files.
5178 (tramp-gvfs-handle-make-directory): Make more traces.
5179 (tramp-gvfs-url-file-name): Hexify file name in url.
5180 (tramp-gvfs-fuse-file-name): Take also prefix (like dav shares)
5181 into account for the resulting file name.
5182 (tramp-gvfs-handler-askquestion): Return dummy mountpoint, when
5183 the answer is "no". See `tramp-gvfs-maybe-open-connection'.
5184 (tramp-gvfs-handler-mounted-unmounted)
5185 (tramp-gvfs-connection-mounted-p): Test also for new mountspec
5186 attribute "default_location". Set "prefix" property.
5187 (tramp-gvfs-mount-spec): Return both prefix and mountspec.
5188 (tramp-gvfs-maybe-open-connection): Test, whether mountpoint
5189 exists. Raise an error, if not (due to a corresponding answer
5190 "no" in interactive questions, for example).
5191
5192 2010-06-02 Dan Nicolaescu <dann@ics.uci.edu>
5193
5194 * log-edit.el (log-edit-font-lock-keywords): Make group 4 match lax.
5195
5196 2010-06-01 Juanma Barranquero <lekktu@gmail.com>
5197
5198 * emacs-lisp/eldoc.el: Add completions for new commands left-* and
5199 right-*. (Bug#6265)
5200
5201 2010-06-01 Dan Nicolaescu <dann@ics.uci.edu>
5202
5203 Add support for vc-log-incoming, improve vc-log-outgoing for Git.
5204 * vc-git.el (vc-git-compute-remote): New function.
5205 (vc-git-log-outgoing): Use it instead of hard coding a value.
5206 (vc-git-log-incoming): New function.
5207
5208 Improve state updating for VC tag commands.
5209 * vc.el (vc-create-tag, vc-retrieve-tag): Call vc-resynch-buffer
5210 to update the state of all buffers in the directory.
5211
5212 * vc-dir.el (vc-dir-update): Remove entries with a nil state (bug#5539).
5213
5214 2010-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
5215
5216 * vc-bzr.el (vc-bzr-revision-completion-table): Apply
5217 `file-directory-p' to the filename part rather than to the whole text.
5218
5219 2010-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
5220
5221 * man.el (Man-completion-table): Let the user type "-k " (bug#6319).
5222
5223 2010-05-31 Drew Adams <drew.adams@oracle.com>
5224
5225 * files.el (directory-files-no-dot-files-regexp): Doc fix (bug#6298).
5226
5227 2010-05-31 Juanma Barranquero <lekktu@gmail.com>
5228
5229 * subr.el (momentary-string-display): Just use read-event to read
5230 the exit event (Bug#6238).
5231
5232 2010-05-30 Eli Zaretskii <eliz@gnu.org>
5233
5234 * international/mule.el (define-coding-system): Doc fix (bug#6313).
5235
5236 2010-05-30 Juanma Barranquero <lekktu@gmail.com>
5237
5238 * emulation/cua-base.el: Recognize also `right-word' and `left-word'.
5239 Suggested by Eli Zaretskii <eliz@gnu.org>.
5240
5241 2010-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
5242
5243 * minibuffer.el (completion-file-name-table): Don't return a boundary
5244 past the end of `string' (bug#6299).
5245 (completion--file-name-table): Delegate to completion-file-name-table
5246 for the `boundaries' case.
5247
5248 2010-05-30 Juanma Barranquero <lekktu@gmail.com>
5249
5250 * emulation/cua-base.el: Recognize `right-char' and `left-char' as
5251 movement commands.
5252
5253 * progmodes/ada-xref.el (ada-prj-ada-project-path-sep): Set from
5254 `path-separator', but maintain compatibility with Emacs 20.2.
5255
5256 2010-05-29 Chong Yidong <cyd@stupidchicken.com>
5257
5258 * server.el (server-process-filter): Receive parent-id argument
5259 from emacsclient.
5260 (server-create-window-system-frame): New arg. Pass parent-id as
5261 frame parameter.
5262
5263 2010-05-29 Eli Zaretskii <eliz@gnu.org>
5264
5265 Bidi-sensitive word movement with arrow keys.
5266 * subr.el (right-arrow-command, left-arrow-command): Move to
5267 bindings.el.
5268
5269 * bindings.el (right-char, left-char): Move from subr.el and
5270 rename from right-arrow-command and left-arrow-command.
5271 (right-word, left-word): New functions.
5272 (global-map) <right>: Bind to right-char.
5273 (global-map) <left>: Bind to left-char.
5274 (global-map) <C-right>: Bind to right-word.
5275 (global-map) <C-left>: Bind to left-word.
5276
5277 * ls-lisp.el (ls-lisp-classify-file): New function.
5278 (ls-lisp-insert-directory): Call it if switches include -F (bug#6294).
5279 (ls-lisp-classify): Call ls-lisp-classify-file.
5280 (insert-directory): Remove blanks from switches.
5281
5282 2010-05-29 Chong Yidong <cyd@stupidchicken.com>
5283
5284 * ansi-color.el: Delete unused escape sequences (Bug#6085).
5285 (ansi-color-drop-regexp): New constant.
5286 (ansi-color-apply, ansi-color-filter-region)
5287 (ansi-color-apply-on-region): Delete unrecognized control sequences.
5288 (ansi-color-apply): Build string list before calling concat.
5289
5290 2010-05-28 Juri Linkov <juri@jurta.org>
5291
5292 * image-dired.el (image-dired-dired-toggle-marked-thumbs):
5293 Replace LOCALP arg of `dired-get-filename' 'no-dir with nil.
5294 (Bug#5270)
5295
5296 2010-05-28 Michael Albinus <michael.albinus@gmx.de>
5297
5298 * net/tramp.el (tramp-debug-message): Add `tramp-compat-funcall'
5299 to ignored backtrace functions.
5300 (with-progress-reporter): Expand docstring.
5301 (tramp-handle-delete-file): Implement TRASH argument.
5302 (tramp-get-remote-trash): New defun.
5303
5304 2010-05-28 Michael Albinus <michael.albinus@gmx.de>
5305
5306 * net/tramp-compat.el (tramp-compat-delete-file): Use
5307 `symbol-value' for backward compatibility.
5308
5309 * net/tramp.el (tramp-handle-make-symbolic-link)
5310 (tramp-handle-load)
5311 (tramp-do-copy-or-rename-file-via-buffer)
5312 (tramp-do-copy-or-rename-file-directly)
5313 (tramp-do-copy-or-rename-file-out-of-band)
5314 (tramp-handle-process-file, tramp-handle-call-process-region)
5315 (tramp-handle-shell-command, tramp-handle-file-local-copy)
5316 (tramp-handle-insert-file-contents, tramp-handle-write-region)
5317 (tramp-delete-temp-file-function): Use `delete-file' instead
5318 of `tramp-compat-delete-file'.
5319
5320 * net/tramp-fish.el (tramp-fish-handle-delete-directory)
5321 (tramp-fish-handle-make-symbolic-link)
5322 (tramp-fish-handle-process-file): Use `delete-file' instead
5323 of `tramp-compat-delete-file'.
5324
5325 * net/tramp-ftp.el (tramp-ftp-file-name-handler): Use
5326 `delete-file' instead of `tramp-compat-delete-file'.
5327
5328 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Rename arg.
5329 (tramp-gvfs-handle-write-region): Use `delete-file' instead of
5330 `tramp-compat-delete-file'.
5331
5332 * net/tramp-imap.el (tramp-imap-do-copy-or-rename-file): Use
5333 `delete-file' instead of `tramp-compat-delete-file'.
5334
5335 * net/tramp-smb.el (tramp-smb-handle-copy-file)
5336 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
5337 (tramp-smb-handle-write-region): Use `delete-file' instead of
5338 `tramp-compat-delete-file'.
5339 (tramp-smb-handle-delete-directory): Use 'trash as arg.
5340
5341 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
5342
5343 * dired.el (dired-delete-file): New arg TRASH.
5344 (dired-internal-do-deletions): New arg TRASH. Use progress reporter.
5345 (dired-do-flagged-delete, dired-do-delete): Use trash.
5346
5347 * speedbar.el (speedbar-item-delete): Allow trashing.
5348
5349 * files.el (delete-directory): New arg TRASH.
5350
5351 * net/ange-ftp.el (ange-ftp-del-tmp-name, ange-ftp-delete-file)
5352 (ange-ftp-rename-remote-to-remote)
5353 (ange-ftp-rename-local-to-remote)
5354 (ange-ftp-rename-remote-to-local, ange-ftp-load)
5355 (ange-ftp-compress, ange-ftp-uncompress): Remove optional arg from
5356 `delete-file'.
5357 (ange-ftp-delete-directory): Add optional arg to `delete-file', to
5358 allow trashing.
5359
5360 * net/tramp-compat.el (tramp-compat-delete-file): Rewrite to
5361 handle new TRASH arg of `delete-file'.
5362
5363 * net/tramp.el (tramp-handle-delete-file): Change FORCE arg to TRASH.
5364 (tramp-handle-make-symbolic-link, tramp-handle-load)
5365 (tramp-do-copy-or-rename-file-via-buffer)
5366 (tramp-do-copy-or-rename-file-directly)
5367 (tramp-do-copy-or-rename-file-out-of-band)
5368 (tramp-handle-process-file, tramp-handle-call-process-region)
5369 (tramp-handle-shell-command, tramp-handle-file-local-copy)
5370 (tramp-handle-insert-file-contents, tramp-handle-write-region)
5371 (tramp-delete-temp-file-function): Use null TRASH arg in
5372 tramp-compat-delete-file call.
5373
5374 * net/tramp-fish.el (tramp-fish-handle-delete-directory)
5375 (tramp-fish-handle-delete-file)
5376 (tramp-fish-handle-make-symbolic-link)
5377 (tramp-fish-handle-process-file): Use null TRASH arg in
5378 `tramp-compat-delete-file' call.
5379
5380 * net/tramp-ftp.el (tramp-ftp-file-name-handler): Use null TRASH
5381 arg in `tramp-compat-delete-file' call.
5382
5383 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Rename arg.
5384 (tramp-gvfs-handle-write-region): Use null TRASH arg in
5385 `tramp-compat-delete-file' call.
5386
5387 * net/tramp-imap.el (tramp-imap-handle-delete-file): Rename arg.
5388 (tramp-imap-do-copy-or-rename-file): Use null TRASH arg in
5389 `tramp-compat-delete-file' call.
5390
5391 * net/tramp-smb.el (tramp-smb-handle-copy-file)
5392 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
5393 (tramp-smb-handle-write-region): Use null TRASH arg in
5394 tramp-compat-delete-file call.
5395 (tramp-smb-handle-delete-directory): Use tramp-compat-delete-file.
5396 (tramp-smb-handle-delete-file): Rename arg.
5397
5398 * diff.el (diff-sentinel):
5399 * epg.el (epg--make-temp-file, epg-decrypt-string)
5400 (epg-verify-string, epg-sign-string, epg-encrypt-string):
5401 * jka-compr.el (jka-compr-partial-uncompress)
5402 (jka-compr-call-process, jka-compr-write-region):
5403 * server.el (server-sentinel): Remove optional arg from
5404 delete-file, reverting 2010-05-03 change.
5405
5406 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
5407
5408 * progmodes/verilog-mode.el (verilog-type-font-keywords): Use
5409 font-lock-constant-face, not obsolete font-lock-reference-face.
5410
5411 2010-05-27 Kenichi Handa <handa@m17n.org>
5412
5413 * language/hebrew.el (hebrew-shape-gstring): Check if a glyph
5414 element of GSTRING is nil.
5415
5416 2010-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
5417
5418 * emacs-lisp/smie.el (smie-forward-token-function)
5419 (smie-backward-token-function): New vars.
5420 (smie-backward-sexp, smie-forward-sexp)
5421 (smie-indent-hanging-p, smie-indent-calculate): Use them.
5422 (smie-default-backward-token): Rename from smie-backward-token and
5423 skip comments.
5424 (smie-default-forward-token): Rename from smie-forward-token and
5425 skip comments.
5426 (smie-next-sexp): Handle nil results from next-token.
5427 (smie-indent-calculate): Add a new case for special `fixindent' comments.
5428
5429 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
5430
5431 * progmodes/verilog-mode.el (verilog-type-font-keywords):
5432 Use font-lock-constant-face, not obsolete font-lock-reference-face.
5433
5434 2010-05-27 Masatake YAMATO <yamato@redhat.com>
5435
5436 * htmlfontify.el (hfy-face-resolve-face): New function.
5437 (hfy-face-to-style): Use it (Bug#6279).
5438
5439 2010-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
5440
5441 * progmodes/ada-xref.el (ada-gnat-parse-gpr):
5442 * emulation/edt.el (edt-load-keys): Avoid (expand-file-name ".").
5443
5444 2010-05-26 Glenn Morris <rgm@gnu.org>
5445
5446 * emulation/edt.el (edt-load-keys): Use locate-library.
5447
5448 2010-05-25 Chong Yidong <cyd@stupidchicken.com>
5449
5450 * log-edit.el (log-edit-strip-single-file-name): Default to nil.
5451 (log-edit-changelog-entries): Doc fix.
5452 (log-edit-changelog-insert-entries): Args changed.
5453 Rename relative filenames in ChangeLog entries. Delete tabs.
5454 (log-edit-insert-changelog-entries): Reorganize return value of
5455 `log-edit-changelog-entries' to pass filenames to
5456 log-edit-changelog-insert-entries.
5457
5458 2010-05-25 Thierry Volpiatto <thierry.volpiatto@gmail.com>
5459
5460 * dired.el (dired-mode-map): Rebind "\C-t\C-t" from
5461 `image-dired-dired-insert-marked-thumbs' to
5462 `image-dired-dired-toggle-marked-thumbs'.
5463
5464 * image-dired.el: Require cl when compiling.
5465 (image-dired-dired-toggle-marked-thumbs): Rename from
5466 `image-dired-dired-insert-marked-thumbs'. Add ARG. Doc fix.
5467 Use interactive spec "P". Set LOCALP arg of `dired-get-filename'
5468 to 'no-dir. Skip files whose names don't match
5469 `image-file-name-regexp'. When file has a thumbnail overlay,
5470 delete it. (Bug#5270)
5471
5472 2010-05-25 Juri Linkov <juri@jurta.org>
5473
5474 * image-mode.el (image-mode): Add image-after-revert-hook to
5475 after-revert-hook.
5476 (image-after-revert-hook): New function. (Bug#5669)
5477
5478 2010-05-25 Juri Linkov <juri@jurta.org>
5479
5480 * image.el (image-animated-p): When delay between animated images
5481 is 0, set it to 10 (0.1 sec). (Bug#6258)
5482
5483 2010-05-25 Christian Lynbech <christian.lynbech@tieto.com> (tiny change)
5484
5485 * net/tramp.el (tramp-handle-insert-directory): Don't use
5486 `forward-word', its default syntax could be changed.
5487
5488 2010-05-25 Michael Albinus <michael.albinus@gmx.de>
5489
5490 * net/tramp.el (tramp-progress-reporter-update): New defun.
5491 (with-progress-reporter): Use it.
5492 (tramp-process-actions):
5493 * net/tramp-gvfs.el (tramp-gvfs-handler-askquestion): Preserve
5494 current message, in order to let progress reporter continue
5495 afterwards. (Bug#6257)
5496
5497 2010-05-25 Glenn Morris <rgm@gnu.org>
5498
5499 * net/rcirc.el (rcirc-default-user-name, rcirc-default-full-name):
5500 Add :version.
5501
5502 2010-05-25 Ryan Yeske <rcyeske@gmail.com>
5503
5504 * net/rcirc.el (rcirc-default-user-name): Change to "user".
5505 (rcirc-default-full-name): Change to "unknown".
5506 (rcirc-user-name-history): Add variable.
5507
5508 2010-05-25 Ryan Yeske <rcyeske@gmail.com>
5509 Jonathan Rockway <jon@jrock.us>
5510
5511 * net/rcirc.el (rcirc-server-alist): Add :pass.
5512 (rcirc): When prompting for connection parameters, also prompt for
5513 username and password.
5514 (rcirc-connect): Take a PASS argument. If PASS is non-nil, send
5515 value to server when connecting.
5516
5517 2010-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
5518
5519 * emacs-lisp/smie.el (smie-set-prec2tab): Check override before use.
5520 (smie-merge-prec2s): Pass the tables as separate args.
5521 (smie-bnf-precedence-table): Adjust call accordingly.
5522 (smie-prec2-levels): Set levels at the end.
5523
5524 Replace Lisp calls to delete-backward-char by delete-char.
5525 * bs.el, expand.el, ido.el, image-dired.el, lpr.el, pcomplete.el,
5526 * skeleton.el, term.el, time.el, wid-edit.el, woman.el,
5527 * calc/calc-graph.el, calc/calc-help.el, calc/calc-incom.el,
5528 * calc/calc.el, emacs-lisp/cl-extra.el, emacs-lips/cl-loaddefs.el,
5529 * emulation/cua-rect.el, emulation/viper-ex.el, eshell/esh-test.el,
5530 * eshell/eshell.el, gnus/gnus-uu.el, gnus/nndoc.el, gnus/nnrss.el,
5531 * gnus/rfc2047.el, gnus/utf7.el, international/utf-7.el,
5532 * language/ethio-util.el, mh-e/mh-alias.el, mh-e/mh-search.el,
5533 * net/imap.el, net/rcirc.el, obsolete/complete.el, play/decipher.el,
5534 * progmodes/ada-mode.el, progmodes/cc-awk.el, progmodes/dcl-mode.el,
5535 * progmodes/ps-mode.el, progmodes/verilog-mode.el,
5536 * progmodes/vhdl-mode.el, textmodes/bibtex.el, textmodes/fill.el,
5537 * textmodes/reftex-auc.el, textmodes/rst.el, textmodes/sgml-mode.el,
5538 * textmodes/table.el, textmodes/texinfmt.el: Replace Lisp calls to
5539 delete-backward-char by calls to delete-char.
5540
5541 2010-05-25 Kenichi Handa <handa@m17n.org>
5542
5543 * language/hebrew.el (hebrew-shape-gstring): New function.
5544 Register it in composition-function-table for all Hebrew combining
5545 characters.
5546
5547 2010-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
5548
5549 * epa.el (epa--select-keys): Don't explicitly delete the window since
5550 that can fail (e.g. sole window in frame). Use dedication instead.
5551
5552 2010-05-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
5553
5554 * textmodes/fill.el (fill-region): Don't fill past the end (bug#6201).
5555
5556 2010-05-22 Chong Yidong <cyd@stupidchicken.com>
5557
5558 * image.el (image-refresh): Define as an alias for image-flush.
5559
5560 * image-mode.el (image-toggle-display-image): Caller changed.
5561
5562 2010-05-21 Juri Linkov <juri@jurta.org>
5563
5564 * progmodes/grep.el (grep-read-files): Fix multi-pattern aliases.
5565 Remove "all" from grep-files-aliases. Split grep-files-aliases by
5566 whitespace, call wildcard-to-regexp on substrings and concat them
5567 with "\\|". (Bug#6114)
5568
5569 2010-05-21 Alan Mackenzie <acm@muc.de>
5570
5571 * progmodes/cc-engine.el (c-parse-state-get-strategy):
5572 Replace parameter `here' with `here-' and `here-plus', which sandwich
5573 any pertinent CPP construct.
5574 (c-remove-stale-state-cache-backwards): Fix a bug which happens
5575 when doing (c-parse-state) in a CPP construct: Exclude any "new"
5576 CPP construct from taking part in the scanning.
5577
5578 2010-05-21 Michael Albinus <michael.albinus@gmx.de>
5579
5580 * net/tramp.el (tramp-do-copy-or-rename-file)
5581 (tramp-handle-file-local-copy, tramp-maybe-open-connection):
5582 Tune `with-progress-reporter' messages.
5583 (tramp-handle-vc-registered):
5584 * net/tramp-fish.el (tramp-fish-handle-file-local-copy)
5585 (tramp-fish-handle-insert-file-contents)
5586 (tramp-fish-maybe-open-connection):
5587 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
5588 * net/tramp-imap.el (tramp-imap-do-copy-or-rename-file)
5589 (tramp-imap-handle-insert-file-contents)
5590 (tramp-imap-handle-file-local-copy): Use `with-progress-reporter'.
5591
5592 2010-05-21 Juanma Barranquero <lekktu@gmail.com>
5593
5594 * add-log.el (change-log-font-lock-keywords):
5595 Highlight all authors in multi-author entries.
5596
5597 * smerge-mode.el (smerge-refine-ignore-whitespace)
5598 (smerge-refine-weight-hack, smerge-refine, smerge-makeup-conflict):
5599 Fix typos in docstrings.
5600 (smerge-resolve, smerge-refine-subst): Reflow docstrings.
5601
5602 2010-05-21 Glenn Morris <rgm@gnu.org>
5603
5604 * progmodes/fortran.el (fortran-mode):
5605 * progmodes/f90.el (f90-mode): Derive from prog-mode.
5606
5607 * loadup.el [CANNOT_DUMP]: Update for bootstrap-emacs no longer
5608 having a relative path in src/Makefile.in.
5609
5610 2010-05-20 Kevin Ryde <user42@zip.com.au>
5611
5612 * help-mode.el (help-make-xrefs): For Info node links turn
5613 newlines into spaces. Link node names with newlines are matched
5614 by help-xref-info-regexp and buttonized, this change ensures they
5615 can be followed successfully with RET. (Bug#6206)
5616
5617 2010-05-20 Juri Linkov <juri@jurta.org>
5618
5619 * locate.el (locate): Use pop-to-buffer instead of
5620 switch-to-buffer-other-window. (Bug#6204)
5621
5622 2010-05-20 Juri Linkov <juri@jurta.org>
5623
5624 * replace.el (replace-highlight): Fix lazy-highlighting
5625 for `M-s w str M-% str RET'.
5626
5627 2009-12-15 Masatake YAMATO <yamato@redhat.com>
5628
5629 * isearch.el (isearch-yank-word-or-char): Pull next subword
5630 when `subword-mode' is activated. (Bug#6220)
5631
5632 2010-05-20 Mark A. Hershberger <mah@everybody.org>
5633
5634 * isearch.el (isearch-update-post-hook): New hook.
5635 (isearch-update): Use the new hook. (Bug#6225)
5636
5637 2010-05-20 Juri Linkov <juri@jurta.org>
5638
5639 * isearch.el (isearch-mode-map): Bind more keys to isearch-help-map:
5640 [f1], [help], and (char-to-string help-char) instead of "\C-h".
5641 (Bug#6222)
5642
5643 2010-05-20 Juri Linkov <juri@jurta.org>
5644
5645 * isearch.el (isearch-yank-string): Use isearch-process-search-string.
5646 (Bug#6223)
5647
5648 2010-05-20 Juri Linkov <juri@jurta.org>
5649
5650 * dired-x.el (dired-jump, dired-jump-other-window): Add arg
5651 FILE-NAME to read from the minibuffer when called interactively
5652 with prefix argument instead of using buffer-file-name.
5653 http://lists.gnu.org/archive/html/emacs-devel/2010-05/msg00534.html
5654
5655 * dired.el: Update autoloads.
5656
5657 2010-05-20 Chong Yidong <cyd@stupidchicken.com>
5658
5659 * nxml/nxml-mode.el (nxml-mode-map): Bind C-c / to
5660 nxml-finish-element, for consistency with SGML mode.
5661
5662 * progmodes/octave-mod.el (octave-mode-map): Bind C-c / to
5663 octave-close-block.
5664
5665 2010-05-20 Juanma Barranquero <lekktu@gmail.com>
5666
5667 * composite.el: Require cl when compiling.
5668 (reference-point-alist, compose-gstring-for-graphic)
5669 (compose-gstring-for-terminal): Fix typos in docstrings.
5670
5671 2010-05-19 Juri Linkov <juri@jurta.org>
5672
5673 * emacs-lisp/cl-macs.el (window-parameter): Add defsetf with
5674 set-window-parameter.
5675
5676 2010-05-19 Michael Albinus <michael.albinus@gmx.de>
5677
5678 * net/tramp.el (tramp-methods): Add `tramp-async-args' attribute
5679 where appropriate.
5680 (tramp-maybe-open-connection): Use it.
5681
5682 2010-05-19 Eli Zaretskii <eliz@gnu.org>
5683
5684 * simple.el (move-end-of-line): Make sure we are at line beginning
5685 before backing up to end of previous line.
5686
5687 2010-05-19 Michael Albinus <michael.albinus@gmx.de>
5688
5689 * password-cache.el (password-cache-remove): Fix docstring.
5690
5691 * net/secrets.el: Autoload the widget functions.
5692 (secrets-search-items, secrets-create-item)
5693 (secrets-get-attributes, secrets-expand-item): Attributes will be
5694 stored on the password database without leading ":", as all other
5695 clients do as well.
5696 (secrets-mode): Fix docstring.
5697 (secrets-show-secrets): Provide it as autoloaded command only when
5698 D-Bus support is available. Check existence of Secret Service API.
5699
5700 2010-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
5701
5702 * indent.el (indent-region): Deactivate region (bug#6200).
5703
5704 2010-05-19 Glenn Morris <rgm@gnu.org>
5705
5706 * vc-dir.el (vc-dir): Don't pop-up-windows. (Bug#6204)
5707
5708 2010-05-19 Kenichi Handa <handa@m17n.org>
5709
5710 * composite.el: Register compose-gstring-for-graphic in
5711 composition-function-table only for combining characters (Mn, Mc, Me).
5712
5713 2010-05-18 Jay Belanger <jay.p.belanger@gmail.com>
5714
5715 * calc/calc-trail.el (calc-trail-isearch-forward)
5716 (calc-trail-isearch-backward): Ensure that the new window
5717 point is set correctly.
5718
5719 2010-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
5720
5721 * subr.el (read-quoted-char): Resolve modifiers after key
5722 remapping (bug#6212).
5723
5724 2010-05-18 Michael Albinus <michael.albinus@gmx.de>
5725
5726 Add visualization code for secrets.
5727 * net/secrets.el (secrets-mode): New major mode.
5728 (secrets-show-secrets, secrets-show-collections)
5729 (secrets-expand-collection, secrets-expand-item)
5730 (secrets-tree-widget-after-toggle-function)
5731 (secrets-tree-widget-show-password): New defuns.
5732
5733 2010-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
5734
5735 * emacs-lisp/smie.el (smie-next-sexp): Break inf-loop at BOB.
5736 (smie-backward-sexp, smie-forward-sexp): Remove boundary condition now
5737 handled in smie-next-sexp.
5738 (smie-indent-calculate): Provide a starting indentation (so the
5739 recursion is well-founded ;-).
5740
5741 Fix handling of non-associative equal levels.
5742 * emacs-lisp/smie.el (smie-prec2-levels): Choose distinct levels even
5743 when it's not needed.
5744 (smie-op-left, smie-op-right): New functions.
5745 (smie-next-sexp): New function, extracted from smie-backward-sexp.
5746 Better handle equal levels to distinguish the associative case from
5747 the "multi-keyword construct" case.
5748 (smie-backward-sexp, smie-forward-sexp): Use it.
5749
5750 2010-05-18 Juanma Barranquero <lekktu@gmail.com>
5751
5752 * progmodes/prolog.el (smie-indent-basic): Declare for byte-compiler.
5753
5754 * emacs-lisp/smie.el (smie-precs-precedence-table, smie-backward-sexp)
5755 (smie-forward-sexp, smie-indent-calculate): Fix typos in docstrings.
5756
5757 2010-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
5758
5759 Provide a simple generic indentation engine and use it for Prolog.
5760 * emacs-lisp/smie.el: New file.
5761 * progmodes/prolog.el (prolog-smie-op-levels)
5762 (prolog-smie-indent-rules): New var.
5763 (prolog-mode-variables): Use them to configure SMIE.
5764 (prolog-indent-line, prolog-indent-level): Remove.
5765
5766 2010-05-17 Jay Belanger <jay.p.belanger@gmail.com>
5767
5768 * calc/calc-vec.el (math-vector-avg): Put the vector elements in
5769 order before computing the averages.
5770
5771 2010-05-16 Jay Belanger <jay.p.belanger@gmail.com>
5772
5773 * calc/calc-vec.el (calc-histogram):
5774 (calcFunc-histogram): Allow vectors as inputs.
5775 (math-vector-avg): New function.
5776
5777 * calc/calc-ext.el (math-group-float): Have the number of digits
5778 being grouped depend on the radix (Bug#6189).
5779
5780 2010-05-15 Ken Raeburn <raeburn@raeburn.org>
5781
5782 * version.el (emacs-copyright, emacs-version): Don't define here,
5783 now that emacs.c defines it.
5784
5785 2010-05-15 Eli Zaretskii <eliz@gnu.org>
5786
5787 * international/mule-cmds.el (mule-menu-keymap): Fix definition of
5788 "Describe Language Environment" menu item.
5789
5790 * language/hebrew.el ("Hebrew", "Windows-1255"): Doc fix.
5791
5792 Bidi-sensitive movement with arrow keys.
5793 * subr.el (right-arrow-command, left-arrow-command): New functions.
5794
5795 * bindings.el (global-map): Bind them to right and left arrow keys.
5796
5797 Don't override standard definition of convert-standard-filename.
5798 * files.el (convert-standard-filename): Call
5799 w32-convert-standard-filename and dos-convert-standard-filename on
5800 the corresponding systems.
5801
5802 * w32-fns.el (w32-convert-standard-filename): Rename from
5803 convert-standard-filename. Doc fix.
5804
5805 * dos-fns.el (dos-convert-standard-filename): Doc fix.
5806 (convert-standard-filename): Don't defalias.
5807 (register-name-alist, make-register, register-value)
5808 (set-register-value, intdos): Obsolete aliases for the
5809 corresponding dos-* functions and variables.
5810 (dos-intdos): Add a doc string.
5811
5812 2010-05-15 Jay Belanger <jay.p.belanger@gmail.com>
5813
5814 * calc/calc-aent.el (math-read-token, math-find-user-tokens):
5815 * calc/calc-lang.el (math-read-big-rec, math-lang-read-symbol):
5816 (math-compose-tex-func):
5817 * calc/calccomp.el (math-compose-expr):
5818 * calc/calc-ext.el (math-format-flat-expr-fancy):
5819 * calc/calc-store.el (calc-read-var-name):
5820 * calc/calc-units.el (calc-explain-units-rec): Allow Greek letters.
5821
5822 * calc/calc.el (var-π, var-φ, var-γ): New variables.
5823 * calc/calc-aent.el (math-read-replacement-list): Add "micro" symbol.
5824 * calc/calc-units.el (math-unit-prefixes): Add mu for micro.
5825 (math-standard-units): Add units.
5826
5827 2010-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
5828
5829 * progmodes/asm-mode.el (asm-mode):
5830 * progmodes/prolog.el (prolog-mode): Use define-derived-mode.
5831
5832 * pcomplete.el (pcomplete-completions-at-point): New function,
5833 extracted from pcomplete-std-complete.
5834 (pcomplete-std-complete): Use it.
5835
5836 2010-05-15 Glenn Morris <rgm@gnu.org>
5837
5838 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
5839 Remove references to CVS, RCS and Old directories.
5840
5841 2010-05-14 Jay Belanger <jay.p.belanger@gmail.com>
5842
5843 * calc/calc-bin.el (math-format-twos-complement): Group digits when
5844 appropriate.
5845
5846 2010-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
5847
5848 * progmodes/sh-script.el (sh-mode-default-syntax-table): Remove.
5849 (sh-mode-syntax-table): Give it a default value instead.
5850 (sh-header-marker): Make buffer-local.
5851 (sh-mode): Move make-local-variable to the corresponding setq.
5852 (sh-add-completer): Avoid gratuitously let-binding a buffer-local var.
5853 Use complete-with-action.
5854
5855 * simple.el (prog-mode): New (abstract) major mode.
5856 * emacs-lisp/lisp-mode.el (emacs-lisp-mode, lisp-mode): Use it.
5857 * progmodes/sh-script.el (sh-mode): Remove redundant var assignment.
5858
5859 2010-05-14 Juanma Barranquero <lekktu@gmail.com>
5860
5861 * progmodes/sql.el (sql-oracle-program): Reflow docstring.
5862 (sql-oracle-scan-on, sql-sybase-program, sql-product-font-lock)
5863 (sql-add-product-keywords, sql-highlight-product, sql-set-product)
5864 (sql-make-alternate-buffer-name, sql-placeholders-filter)
5865 (sql-escape-newlines-filter, sql-input-sender)
5866 (sql-send-magic-terminator, sql-sybase): Fix typos in docstrings.
5867
5868 2010-05-13 Chong Yidong <cyd@stupidchicken.com>
5869
5870 Add TeX open-block and close-block keybindings to SGML, and vice versa.
5871
5872 * textmodes/tex-mode.el (tex-mode-map): Bind C-c C-t to
5873 latex-open-block and C-c / to latex-close-block.
5874
5875 * textmodes/sgml-mode.el (sgml-mode-map): Bind C-c C-o to sgml-tag
5876 and C-c C-e to sgml-close-tag.
5877
5878 2010-05-13 Michael Albinus <michael.albinus@gmx.de>
5879
5880 * net/tramp.el (with-progress-reporter): Create reporter object
5881 only when the message would be displayed. Handle nested calls.
5882 (tramp-handle-load, tramp-handle-file-local-copy)
5883 (tramp-handle-insert-file-contents, tramp-handle-write-region)
5884 (tramp-maybe-send-script, tramp-find-shell):
5885 Use `with-progress-reporter'.
5886 (tramp-handle-dired-compress-file, tramp-maybe-open-connection):
5887 Fix message text.
5888
5889 * net/tramp-smb.el (tramp-smb-handle-copy-file)
5890 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
5891 (tramp-smb-handle-write-region, tramp-smb-maybe-open-connection):
5892 Use `with-progress-reporter'.
5893
5894 2010-05-13 Agustín Martín <agustin.martin@hispalinux.es>
5895
5896 * textmodes/ispell.el (ispell-init-process): Do not kill ispell
5897 process everytime when spellchecking from the minibuffer (bug#6143).
5898
5899 2010-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
5900
5901 * progmodes/sh-script.el (sh-mode): Use define-derived-mode.
5902
5903 * dos-fns.el: Add "dos-" prefix for namespace control.
5904 (convert-standard-filename): Define as alias for
5905 dos-convert-standard-filename but only if applicable.
5906
5907 2010-05-12 Alan Mackenzie <acm@muc.de>
5908
5909 * progmodes/cc-cmds.el (c-beginning-of-defun, c-end-of-defun):
5910 Push the mark at the start of these functions when appropriate.
5911
5912 2010-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
5913
5914 * minibuffer.el (completion-cycle-threshold): New custom var.
5915 (completion--do-completion): Use it.
5916 (minibuffer-complete): Use cycling if appropriate.
5917
5918 2010-05-11 Juanma Barranquero <lekktu@gmail.com>
5919
5920 * dirtrack.el (dirtrackp): Remove defcustom; don't make automatically
5921 buffer-local (it's an obsolete alias for `dirtrack-mode') (bug#6173).
5922
5923 2010-05-11 Juri Linkov <juri@jurta.org>
5924
5925 * scroll-all.el (scroll-all-check-to-scroll):
5926 Add `scroll-up-command' and `scroll-down-command' (bug#6164).
5927
5928 2010-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
5929
5930 * iimage.el (iimage-mode-map): Move initialization into declaration.
5931 (iimage-mode-buffer): Use with-silent-modifications.
5932 Simplify calling convention. Adjust callers.
5933 (iimage-mode): Don't run hook redundantly.
5934
5935 * minibuffer.el (completion-pcm--pattern->regex):
5936 Fix last change (bug#6160).
5937
5938 2010-05-10 Juri Linkov <juri@jurta.org>
5939
5940 Remove nodes visited during Isearch from the Info history.
5941 * info.el (Info-isearch-initial-history)
5942 (Info-isearch-initial-history-list): New variables.
5943 (Info-isearch-start): Record initial values of
5944 Info-isearch-initial-history and Info-isearch-initial-history-list.
5945 Add Info-isearch-end to isearch-mode-end-hook.
5946 (Info-isearch-end): New function.
5947
5948 2010-05-10 Michael Albinus <michael.albinus@gmx.de>
5949
5950 * net/tramp.el (tramp-do-file-attributes-with-stat): Add space in
5951 format string, in order to work around a bug in pdksh.
5952 Reported by Gilles Pion <gpion@lfdj.com>.
5953 (tramp-handle-verify-visited-file-modtime): Do not send a command
5954 when the connection is not established.
5955 (tramp-handle-set-file-times): Simplify the check for utc.
5956
5957 2010-05-10 Juanma Barranquero <lekktu@gmail.com>
5958
5959 Fix use of `filter-buffer-substring' (rework previous change).
5960 * emulation/cua-base.el (cua--filter-buffer-noprops): New function.
5961 (cua-repeat-replace-region):
5962 * emulation/cua-rect.el (cua--extract-rectangle, cua-incr-rectangle):
5963 * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
5964 (cua-cut-region-to-global-mark): Use it.
5965
5966 2010-05-09 Michael R. Mauger <mmaug@yahoo.com>
5967
5968 * progmodes/sql.el: Version 2.1.
5969 (sql-product-alist): Redesign structure of product info.
5970 (sql-product, sql-user, sql-server, sql-database): Safe variables.
5971 (sql-port, sql-port-history): New variables.
5972 (sql-interactive-product): New variable.
5973 (sql-send-terminator): New variable.
5974 (sql-imenu-generic-expression): Add "Types" imenu entry.
5975 (sql-oracle-login-params, sql-sqlite-login-params)
5976 (sql-mysql-login-params, sql-solid-login-params)
5977 (sql-sybase-login-params, sql-informix-login-params)
5978 (sql-ingres-login-params, sql-ms-login-params)
5979 (sql-postgres-login-params, sql-interbase-login-params)
5980 (sql-db2-login-params, sql-linter-login-params)
5981 (sql-oracle-scan-on): New variables.
5982 (sql-mode-map): Add C-c C-i to start interactive mode.
5983 (sql-mode-menu): Update existing menu entries.
5984 (sql-font-lock-keywords-builder): Compile-time font-lock optimization.
5985 (sql-mode-oracle-font-lock-keywords)
5986 (sql-mode-postgres-font-lock-keywords)
5987 (sql-mode-ms-font-lock-keywords)
5988 (sql-mode-sybase-font-lock-keywords)
5989 (sql-mode-informix-font-lock-keywords)
5990 (sql-mode-interbase-font-lock-keywords)
5991 (sql-mode-ingres-font-lock-keywords)
5992 (sql-mode-solid-font-lock-keywords)
5993 (sql-mode-mysql-font-lock-keywords)
5994 (sql-mode-sqlite-font-lock-keywords)
5995 (sql-mode-db2-font-lock-keywords)
5996 (sql-mode-linter-font-lock-keywords): Update initialization to
5997 reduce run-time complexity.
5998 (sql-add-product, sql-del-product): New functions.
5999 (sql-set-product-feature, sql-get-product-feature): New functions.
6000 (sql-product-font-lock): Update product API.
6001 (sql-add-product-keywords): New function.
6002 (sql-highlight-product): Update product API.
6003 (sql-help-list-products): New function.
6004 (sql-help): Dynamically lists free and non-free products.
6005 (sql-get-login): Correct bug in handling history and added
6006 prompt for port.
6007 (sql-copy-column): Copy without properties.
6008 (sqli-input-sender): Apply filters to SQLi input.
6009 (sql-query-placeholders-and-send): Obey `sql-oracle-scan-on' setting.
6010 Implement as a filter.
6011 (sql-escape-newlines-filter): Implement as a filter.
6012 (sql-remove-tabs-filter): New function.
6013 (sql-send-magic-terminator): New function.
6014 (sql-send-string): Implement magic terminator.
6015 (sql-send-region): Use `sql-send-string'.
6016 (sql-interactive-mode): Use product API.
6017 (sql-product-interactive): Use product API.
6018 (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql)
6019 (sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase)
6020 (sql-db2, sql-linter): Use `sql-product-interactive'.
6021 (sql-connect): New function.
6022 (sql-connect-oracle, sql-connect-sybase, sql-connect-informix)
6023 (sql-connect-sqlite, sql-connect-mysql, sql-connect-solid)
6024 (sql-connect-ingres, sql-connect-ms, sql-connect-postgres)
6025 (sql-connect-interbase, sql-connect-db2, sql-connect-linter):
6026 Use `sql-connect'.
6027
6028 2010-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
6029
6030 * minibuffer.el (completion-pcm-complete-word-inserts-delimiters):
6031 New custom variable.
6032 (completion-pcm--string->pattern): Use it.
6033 (completion-pcm--pattern->regex, completion-pcm--pattern->string):
6034 Make it handle any symbol as `any'.
6035 (completion-pcm--merge-completions): Extract common suffix for the new
6036 `prefix' symbol as well.
6037 (completion-substring--all-completions): Use the new `prefix' symbol.
6038
6039 2010-05-09 Michael Albinus <michael.albinus@gmx.de>
6040
6041 * net/tramp-compat.el (byte-compile-not-obsolete-vars): Define if
6042 not bound.
6043 (tramp-compat-copy-file): Add PRESERVE-SELINUX-CONTEXT.
6044 (tramp-compat-funcall): New defmacro.
6045 (tramp-compat-line-beginning-position)
6046 (tramp-compat-line-end-position)
6047 (tramp-compat-temporary-file-directory)
6048 (tramp-compat-make-temp-file, tramp-compat-file-attributes)
6049 (tramp-compat-copy-file, tramp-compat-copy-directory)
6050 (tramp-compat-delete-file, tramp-compat-delete-directory)
6051 (tramp-compat-number-sequence, tramp-compat-process-running-p)
6052 * net/tramp.el (top, with-progress-reporter)
6053 (tramp-rfn-eshadow-setup-minibuffer)
6054 (tramp-rfn-eshadow-update-overlay, tramp-handle-set-file-times)
6055 (tramp-handle-dired-compress-file, tramp-handle-shell-command)
6056 (tramp-completion-mode-p, tramp-check-for-regexp)
6057 (tramp-open-connection-setup-interactive-shell)
6058 (tramp-compute-multi-hops, tramp-read-passwd, tramp-clear-passwd)
6059 (tramp-time-diff, tramp-coding-system-change-eol-conversion)
6060 (tramp-set-process-query-on-exit-flag, tramp-unload-tramp)
6061 * net/tramp-cmds.el (tramp-cleanup-all-connections)
6062 (tramp-reporter-dump-variable, tramp-load-report-modules)
6063 (tramp-append-tramp-buffers)
6064 * net/tramp-gvfs.el (tramp-gvfs-handle-file-selinux-context): Use it.
6065
6066 * net/tramp-imap.el (top): Autoload `epg-make-context'.
6067
6068 2010-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
6069
6070 * progmodes/compile.el (compilation-buffer-modtime): Rename from
6071 buffer-modtime. Adjust users.
6072
6073 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
6074
6075 * international/mule.el (auto-coding-alist): Only purecopy
6076 car of each item, not the whole list (Bug#6083).
6077
6078 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
6079
6080 * progmodes/js.el (js-mode): Make paragraph variables local before
6081 calling c-setup-paragraph-variables (Bug#6071).
6082
6083 2010-05-08 Eli Zaretskii <eliz@gnu.org>
6084
6085 * composite.el (compose-region, reference-point-alist): Fix typos
6086 in the doc strings.
6087
6088 2010-05-08 Alexander Klimov <alserkli@inbox.ru> (tiny change)
6089
6090 * calc/calc-graph.el (calc-graph-plot): Use the proper form for
6091 gnuplot's "set" command.
6092
6093 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
6094
6095 * abbrev.el (last-abbrev-text): Doc fix.
6096 (abbrev-prefix-mark): Don't escape parenthesis.
6097
6098 2010-05-08 Andreas Schwab <schwab@linux-m68k.org>
6099
6100 * composite.el (find-composition): Doc fix.
6101
6102 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
6103
6104 * progmodes/sql.el (sql-electric-stuff): Fix typo in tag.
6105 (sql-oracle-program, sql-sqlite-options)
6106 (sql-query-placeholders-and-send): Doc fixes.
6107 (sql-set-product, sql-interactive-mode): Reflow docstrings.
6108 (sql-imenu-generic-expression, sql-buffer)
6109 (sql-mode-ansi-font-lock-keywords, sql-mode-oracle-font-lock-keywords)
6110 (sql-mode-postgres-font-lock-keywords, sql-mode-ms-font-lock-keywords)
6111 (sql-mode-sybase-font-lock-keywords)
6112 (sql-mode-informix-font-lock-keywords)
6113 (sql-mode-interbase-font-lock-keywords)
6114 (sql-mode-ingres-font-lock-keywords, sql-mode-solid-font-lock-keywords)
6115 (sql-mode-mysql-font-lock-keywords, sql-mode-sqlite-font-lock-keywords)
6116 (sql-mode-db2-font-lock-keywords, sql-mode-font-lock-keywords)
6117 (sql-product-feature, sql-highlight-product)
6118 (comint-line-beginning-position, sql-rename-buffer)
6119 (sql-toggle-pop-to-buffer-after-send-region sql-oracle)
6120 (sql-sybase, sql-informix, sql-sqlite, sql-mysql, sql-solid)
6121 (sql-ingres, sql-ms, sql-postgres, sql-interbase, sql-db2, sql-linter):
6122 Fix typos in docstrings.
6123
6124 2010-05-08 Juri Linkov <juri@jurta.org>
6125
6126 * info.el (Info-fontify-node): Put Info-breadcrumbs to the `display'
6127 property instead of `invisible' and `after-string' (bug#5998).
6128
6129 2010-05-08 Juri Linkov <juri@jurta.org>
6130
6131 * image-mode.el (image-mode-as-text): Fix typo in docstring.
6132
6133 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
6134
6135 * filecache.el (file-cache-add-directory-list)
6136 (file-cache-add-directory-recursively): Fix typos in docstrings.
6137
6138 2010-05-08 Kenichi Handa <handa@m17n.org>
6139
6140 * language/indian.el (gurmukhi-composable-pattern): Fix typo.
6141 (gujarati-composable-pattern): Fix typo.
6142
6143 2010-05-08 Kenichi Handa <handa@m17n.org>
6144
6145 * language/indian.el (oriya-composable-pattern)
6146 (tamil-composable-pattern, malayalam-composable-pattern):
6147 Add two-part vowels to "v" (vowel sign).
6148
6149 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
6150
6151 * files.el (copy-directory): Handle symlinks (Bug#5982).
6152
6153 2010-05-08 Dan Nicolaescu <dann@ics.uci.edu>
6154
6155 * vc-hg.el (vc-hg-state): Use HGRCPATH, not HGRC.
6156 (vc-hg-working-revision): Likewise. Use hg parents, not hg parent
6157 (Bug#5846).
6158
6159 2010-05-08 Glenn Morris <rgm@gnu.org>
6160
6161 * emacs-lisp/lisp.el (lisp-completion-at-point): Give it a doc string.
6162
6163 * minibuffer.el (completion-at-point): Doc fix.
6164
6165 2010-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
6166
6167 * electric.el (Electric-command-loop): Minor tweak.
6168
6169 * ebuff-menu.el (electric-buffer-list): Try and make it behave a bit
6170 better with dedicated windows.
6171
6172 2010-05-07 Chong Yidong <cyd@stupidchicken.com>
6173
6174 * Version 23.2 released.
6175
6176 2010-05-07 Deniz Dogan <deniz.a.m.dogan@gmail.com> (tiny change)
6177 Stefan Monnier <monnier@iro.umontreal.ca>
6178
6179 Highlight vendor specific properties.
6180 * textmodes/css-mode.el (css-proprietary-nmstart-re): New var.
6181 (css-proprietary-property): New face.
6182 (css-font-lock-keywords): Use them.
6183
6184 2010-05-07 Eli Zaretskii <eliz@gnu.org>
6185
6186 * cus-start.el (all): Add native condition for tool-bar-* symbols.
6187
6188 2010-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
6189
6190 * textmodes/dns-mode.el (auto-mode-alist): Add entry for .zone files.
6191 * files.el (auto-mode-alist): Remove redundant entries.
6192
6193 * files.el (auto-save-mode): Move to simple.el to fix bootstrap.
6194 * simple.el (auto-save-mode): Move from files.el.
6195 * minibuffer.el (completion--common-suffix): Fix copy&paste error.
6196
6197 2010-05-07 Christian von Roques <roques@mti.ag> (tiny change)
6198
6199 * epg.el (epg-key-capablity-alist): Add "D" flag (Bug#5592).
6200
6201 2010-05-07 Katsumi Yamaoka <yamaoka@jpl.org>
6202
6203 * mail/binhex.el (binhex-decode-region-internal)
6204 * mail/uudecode.el (uudecode-decode-region-internal)
6205 * net/dns.el (dns-read-string-name, dns-write, dns-read)
6206 (dns-read-type, dns-query)
6207 * pgg-parse.el (pgg-parse-armor)
6208 * pgg.el (pgg-verify-region)
6209 * sha1.el (sha1-string-external): Don't run set-buffer-multibyte for
6210 XEmacs.
6211
6212 * net/imap.el (imap-disable-multibyte): Redefine it as a macro.
6213
6214 2010-05-07 Juanma Barranquero <lekktu@gmail.com>
6215
6216 * progmodes/cperl-mode.el (cperl-mode-unload-function): New function.
6217
6218 Fix use of `filter-buffer-substring' (4th arg NOPROPS removed).
6219 * emulation/cua-base.el (cua-repeat-replace-region):
6220 * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
6221 (cua-cut-region-to-global-mark):
6222 Remove text properties with `set-text-properties'.
6223
6224 2010-05-06 Michael Albinus <michael.albinus@gmx.de>
6225
6226 * net/tramp.el (top, with-progress-reporter):
6227 Use `symbol-function' inside `funcall'.
6228
6229 * net/tramp-compat.el (tramp-compat-file-attributes)
6230 (tramp-compat-delete-file, tramp-compat-delete-directory):
6231 Handle only `wrong-number-of-arguments' error.
6232
6233 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Fix typo.
6234 (tramp-gvfs-handle-file-selinux-context): Use `symbol-function'
6235 inside `funcall'.
6236
6237 2010-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
6238
6239 * minibuffer.el (completion--sreverse, completion--common-suffix):
6240 New functions.
6241 (completion-pcm--merge-completions): Extract common suffix when safe.
6242
6243 * emacs-lisp/easy-mmode.el (define-minor-mode):
6244 Make :variable more flexible.
6245 * files.el (auto-save-mode): Use it to define using define-minor-mode.
6246
6247 2010-05-05 Juri Linkov <juri@jurta.org>
6248
6249 Add `slow' and `history' tags to the desktop data.
6250
6251 * info.el (Info-virtual-nodes) [*Index*]: Add `slow' tag.
6252 (Info-virtual-files) [*Apropos*]: Add `slow' tag.
6253 (Info-finder-find-node): Require `finder.el' to be able
6254 to restore node from the desktop.
6255 (Info-desktop-buffer-misc-data): Save all nodes. Save additional
6256 data `Info-history' and `slow' tag in the assoc list.
6257 (Info-restore-desktop-buffer): Don't restore nodes with the
6258 `slow' tag. Restore `Info-history'.
6259
6260 2010-05-05 Michael Albinus <michael.albinus@gmx.de>
6261
6262 Add FORCE argument to `delete-file'.
6263
6264 * net/ange-ftp.el (ange-ftp-del-tmp-name): Make it a defun,
6265 forcing to delete the temporary file.
6266 (ange-ftp-delete-file): Add FORCE arg.
6267 (ange-ftp-rename-remote-to-remote)
6268 (ange-ftp-rename-local-to-remote, ange-ftp-rename-remote-to-local)
6269 (ange-ftp-load, ange-ftp-compress, ange-ftp-uncompress):
6270 Force file deletion.
6271
6272 * net/tramp-compat.el (tramp-compat-delete-file): New defun.
6273
6274 * net/tramp.el (tramp-handle-delete-file): Add FORCE arg.
6275 (tramp-handle-make-symbolic-link, tramp-handle-load)
6276 (tramp-do-copy-or-rename-file-via-buffer)
6277 (tramp-do-copy-or-rename-file-directly)
6278 (tramp-do-copy-or-rename-file-out-of-band)
6279 (tramp-handle-process-file, tramp-handle-call-process-region)
6280 (tramp-handle-shell-command, tramp-handle-file-local-copy)
6281 (tramp-handle-insert-file-contents, tramp-handle-write-region)
6282 (tramp-delete-temp-file-function): Use `tramp-compat-delete-file'.
6283
6284 * net/tramp-fish.el (tramp-fish-handle-delete-file): Add FORCE arg.
6285 (tramp-fish-handle-make-symbolic-link)
6286 (tramp-fish-handle-process-file): Use `tramp-compat-delete-file'.
6287
6288 * net/tramp-ftp.el (tramp-ftp-file-name-handler):
6289 Use `tramp-compat-delete-file'.
6290
6291 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Add FORCE arg.
6292 (tramp-gvfs-handle-write-region): Use `tramp-compat-delete-file'.
6293
6294 * net/tramp-imap.el (tramp-imap-handle-delete-file): Add FORCE arg.
6295 (tramp-imap-do-copy-or-rename-file): Use `tramp-compat-delete-file'.
6296
6297 * net/tramp-smb.el (tramp-smb-handle-delete-file): Add FORCE arg.
6298 (tramp-smb-handle-copy-file, tramp-smb-handle-file-local-copy)
6299 (tramp-smb-handle-rename-file, tramp-smb-handle-write-region): Use
6300 `tramp-compat-delete-file'.
6301
6302 2010-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
6303
6304 Minor cleanups.
6305 * subr.el (add-minor-mode): Use push.
6306 * mail/supercite.el (sc-electric-mode): Use more descriptive arg name.
6307 * emulation/edt.el (edt-select-mode): Simplify.
6308
6309 Use define-minor-mode in more cases.
6310 * term/tvi970.el (tvi970-set-keypad-mode):
6311 * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
6312 (normal-erase-is-backspace-mode):
6313 * scroll-bar.el (scroll-bar-mode): Use it and define-minor-mode.
6314 (set-scroll-bar-mode-1): (Re)move to its sole caller.
6315 (get-scroll-bar-mode): New function.
6316 * emacs-lisp/cl-macs.el (eq): Handle a non-variable first arg.
6317
6318 Use define-minor-mode for less obvious cases.
6319 * emacs-lisp/easy-mmode.el (define-minor-mode): Add :variable keyword.
6320 * emacs-lisp/cl-macs.el (terminal-parameter, eq): Add setf method.
6321 * international/iso-ascii.el (iso-ascii-mode):
6322 * frame.el (auto-raise-mode, auto-lower-mode):
6323 * composite.el (global-auto-composition-mode): Use define-minor-mode.
6324
6325 2010-05-04 Michael Albinus <michael.albinus@gmx.de>
6326
6327 * net/tramp.el (tramp-methods): Remove "-q" from `tramp-login-args'
6328 in order to see error messages for failed logins.
6329
6330 2010-05-03 Chong Yidong <cyd@stupidchicken.com>
6331
6332 * diff.el (diff-sentinel):
6333
6334 * epg.el (epg--make-temp-file, epg-decrypt-string)
6335 (epg-verify-string, epg-sign-string, epg-encrypt-string):
6336
6337 * jka-compr.el (jka-compr-partial-uncompress)
6338 (jka-compr-call-process, jka-compr-write-region, jka-compr-load):
6339
6340 * server.el (server-sentinel): Use delete-file's new FORCE arg
6341 (Bug#6070).
6342
6343 2010-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
6344
6345 Use define-minor-mode where applicable.
6346 * view.el (view-mode):
6347 * type-break.el (type-break-query-mode)
6348 (type-break-mode-line-message-mode):
6349 * textmodes/reftex.el (reftex-mode):
6350 * term/vt100.el (vt100-wide-mode):
6351 * tar-mode.el (tar-subfile-mode):
6352 * savehist.el (savehist-mode):
6353 * ibuf-ext.el (ibuffer-auto-mode):
6354 * composite.el (auto-composition-mode):
6355 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
6356 Use define-minor-mode.
6357 (vhdl-mode): Use static mode-line format.
6358 (vhdl-mode-line-update): Delete.
6359 (vhdl-create-mode-menu, vhdl-activate-customizations)
6360 (vhdl-hs-minor-mode): Don't bother calling it.
6361
6362 2010-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
6363
6364 * simple.el (with-wrapper-hook): Move.
6365 (buffer-substring-filters): Mark obsolete.
6366 (filter-buffer-substring-functions): New variable.
6367 (filter-buffer-substring): Use it. Remove unused arg `noprops'.
6368
6369 2010-05-01 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
6370 Michael Albinus <michael.albinus@gmx.de>
6371
6372 Implement compression for inline methods.
6373
6374 * net/tramp.el (tramp-inline-compress-start-size): New defcustom.
6375 (tramp-copy-size-limit): Allow also nil.
6376 (tramp-inline-compress-commands): New defconst.
6377 (tramp-find-inline-compress, tramp-get-inline-compress)
6378 (tramp-get-inline-coding): New defuns.
6379 (tramp-get-remote-coding, tramp-get-local-coding): Remove,
6380 replaced by `tramp-get-inline-coding'.
6381 (tramp-handle-file-local-copy, tramp-handle-write-region)
6382 (tramp-method-out-of-band-p): Use `tramp-get-inline-coding'.
6383
6384 2010-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
6385
6386 * bindings.el (mode-line-abbrev-mode, mode-line-auto-fill-mode):
6387 Remove unused functions.
6388
6389 * emacs-lisp/lisp-mode.el (lisp-mode): Use define-derived-mode.
6390 Set find-tag-default-function as a variable rather than a property.
6391
6392 * minibuffer.el (tags-completion-at-point-function): Move to etags.el.
6393 * progmodes/etags.el (tags-completion-at-point-function):
6394 Remove left over interactive spec. Add autoloading stub.
6395 (complete-tag): Use tags-completion-at-point-function.
6396
6397 2010-04-30 Chong Yidong <cyd@stupidchicken.com>
6398
6399 * minibuffer.el (tags-completion-at-point-function): Fix return value.
6400
6401 2010-04-29 Chong Yidong <cyd@stupidchicken.com>
6402
6403 * ido.el (ido-init-completion-maps): Remove C-v binding.
6404 (ido-minibuffer-setup): Don't set cua-inhibit-cua-keys (Bug#5765).
6405
6406 2010-04-29 Chong Yidong <cyd@stupidchicken.com>
6407
6408 * minibuffer.el (tags-completion-at-point-function): New function.
6409 (completion-at-point-functions): Use it.
6410
6411 * progmodes/etags.el (complete-tag): Revert last change.
6412
6413 2010-04-29 Alan Mackenzie <acm@muc.de>
6414
6415 * progmodes/cc-mode.el (c-extend-region-for-CPP): Fix an
6416 off-by-one error (in end of macro position).
6417
6418 2010-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
6419
6420 * net/browse-url.el (browse-url-firefox-program): Use iceweasel if
6421 firefox is absent. Don't autoload.
6422 (browse-url-galeon-program): Don't autoload.
6423
6424 2010-04-28 Chong Yidong <cyd@stupidchicken.com>
6425
6426 * bindings.el (complete-symbol): Move into minibuffer.el.
6427
6428 * minibuffer.el (complete-tag): Move from etags.el. If tags
6429 completion cannot be performed, return nil instead of signalling
6430 an error.
6431 (completion-at-point): Make it an alias for complete-symbol.
6432 (complete-symbol): Move from bindings.el, and replace with the
6433 body of completion-at-point.
6434
6435 * progmodes/etags.el (complete-tag): Move to minibuffer.el.
6436
6437 2010-04-28 Michael Albinus <michael.albinus@gmx.de>
6438
6439 * net/tramp.el (tramp-remote-selinux-p): New defun.
6440 (tramp-handle-file-selinux-context)
6441 (tramp-handle-set-file-selinux-context): Use it.
6442
6443 2010-04-28 Sam Steingold <sds@gnu.org>
6444
6445 * progmodes/bug-reference.el (bug-reference-url-format): Mark as
6446 `safe-local-variable' if the value is a string or a symbol with
6447 the property `bug-reference-url-format'.
6448
6449 2010-04-28 Chong Yidong <cyd@stupidchicken.com>
6450
6451 * progmodes/bug-reference.el (bug-reference-url-format):
6452 Revert 2010-04-27 change due to security risk.
6453
6454 2010-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
6455
6456 Make it possible to locally disable a globally enabled mode.
6457 * simple.el (fundamental-mode): Run fundamental-mode-hook.
6458 * emacs-lisp/derived.el (define-derived-mode): Use fundamental-mode
6459 rather than kill-all-local-variables so it runs fundamental-mode-hook.
6460 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
6461 Use fundamental-mode-hook to run MODE-enable-in-buffers earlier, so
6462 that subsequent hooks get a chance to disable it.
6463
6464 2010-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
6465
6466 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
6467 Avoid re-enabling a minor mode after the user turned the minor mode
6468 off if MODE-enable-in-buffers is run twice (typically once from
6469 fundamental-mode's after-change-major-mode-hook and a second time from
6470 run-mode-hook's own after-change-major-mode-hook).
6471
6472 * emacs-lisp/lisp.el (lisp-complete-symbol): Fail gracefully.
6473
6474 2010-04-27 Sam Steingold <sds@gnu.org>
6475
6476 * progmodes/bug-reference.el (bug-reference-url-format): Mark as
6477 `safe-local-variable' if the value is a string or a function, as
6478 documented and implemented on 2010-04-02.
6479
6480 2010-04-27 Juanma Barranquero <lekktu@gmail.com>
6481
6482 * ido.el (ido-buffer-internal): Bind `ido-use-virtual-buffers' to nil
6483 when method is 'kill.
6484
6485 2010-04-27 Agustín Martín <agustin.martin@hispalinux.es>
6486
6487 * textmodes/ispell.el (ispell-init-process): Fix personal dictionary
6488 condition in default directory check.
6489 (ispell-init-process,ispell-kill-ispell,kill-buffer-hook):
6490 Kill ispell process when killing its associated buffer.
6491
6492 2010-04-27 Jan Djärv <jan.h.d@swipnet.se>
6493
6494 * desktop.el (desktop-kill): ask-if-new: Ask if desktop file exists,
6495 but we aren't using it.
6496
6497 2010-04-25 Jan Djärv <jan.h.d@swipnet.se>
6498
6499 * tool-bar.el (tool-bar-local-item-from-menu): Revert unintended
6500 checkin in 2010-04-23T16:26:11Z!monnier@iro.umontreal.ca.
6501
6502 2010-04-24 Glenn Morris <rgm@gnu.org>
6503
6504 * emacs-lisp/authors.el (authors-obsolete-files-regexps):
6505 Ignore VCS-ignore files, and deleted nextstep preferences files.
6506 (authors-ignored-files): Ignore deleted cedet test files, and "*.el".
6507 (authors-ambiguous-files): New list.
6508 (authors-valid-file-names): Add some deleted files.
6509 (authors-renamed-files-alist): Add font-setting.el, edt-user.doc.
6510 (authors-disambiguate-file-name): New function. (Bug#5501)
6511 (authors-canonical-file-name): Doc fix.
6512 Don't warn about obsolete files.
6513 (authors-canonical-file-name, authors-scan-el):
6514 Use authors-disambiguate-file-name.
6515
6516 * hfy-cmap.el (htmlfontify-load-rgb-file, hfy-fallback-colour-values):
6517 Add autoload cookies.
6518 (htmlfontify-unload-rgb-file, hfy-fallback-colour-values): Add docs.
6519 (generated-autoload-file): Set file-local value to "htmlfontify.el".
6520 * htmlfontify.el (caddr, cadddr): Remove fallback definitions.
6521 They have definitions / compiler macros in cl.el.
6522 (htmlfontify-load-rgb-file, hfy-fallback-colour-values):
6523 Replace manual autoloads with generated ones.
6524 (htmlfontify-unload-rgb-file): Remove autoload.
6525 * Makefile.in (autoloads): Ensure htmlfontify.el is writable.
6526
6527 2010-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
6528
6529 * emacs-lisp/bytecomp.el (byte-compile-set-default): New function.
6530 (byte-compile-setq-default): Optimize for the
6531 single-var case and don't call byte-compile-form in this case to avoid
6532 inf-loop with byte-compile-set-default.
6533
6534 * progmodes/compile.el (compilation-start): Abbreviate default directory.
6535
6536 2010-04-23 Michael Albinus <michael.albinus@gmx.de>
6537
6538 Implement SELINUX backends.
6539
6540 * net/tramp.el (tramp-file-name-handler-alist):
6541 Add `file-selinux-context' and `set-file-selinux-context'.
6542 (tramp-handle-file-selinux-context)
6543 (tramp-handle-set-file-selinux-context): New defuns.
6544 (tramp-handle-copy-file, tramp-do-copy-or-rename-file):
6545 Handle PRESERVE-SELINUX-CONTEXT.
6546
6547 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
6548 Add `file-selinux-context' and `set-file-selinux-context'.
6549 (tramp-gvfs-handle-file-selinux-context)
6550 (tramp-gvfs-handle-set-file-selinux-context): New defuns.
6551 (tramp-gvfs-handle-copy-file): Handle PRESERVE-SELINUX-CONTEXT.
6552
6553 * net/ange-ftp.el (ange-ftp-copy-file):
6554 * net/tramp-fish.el (tramp-fish-handle-copy-file):
6555 * net/tramp-imap.el (tramp-imap-handle-copy-file):
6556 * net/tramp-smb.el (tramp-smb-handle-copy-file):
6557 Add PRESERVE-SELINUX-CONTEXT.
6558
6559 2010-04-22 Michael Albinus <michael.albinus@gmx.de>
6560
6561 Synchronize with Tramp repository.
6562
6563 * net/tramp.el (with-connection-property, tramp-completion-mode-p)
6564 (tramp-action-process-alive, tramp-action-out-of-band)
6565 (tramp-check-for-regexp, tramp-file-name-p, tramp-equal-remote)
6566 (tramp-exists-file-name-handler): Fix docstring.
6567 (with-progress-reporter): New defmacro.
6568 (tramp-do-copy-or-rename-file, tramp-handle-dired-compress-file)
6569 (tramp-maybe-open-connection): Use it.
6570
6571 2010-04-22 Noah Lavine <noah549@gmail.com> (tiny change)
6572
6573 Detect ssh 'ControlMaster' argument automatically in some cases.
6574
6575 * net/tramp.el (tramp-detect-ssh-controlmaster): New defun.
6576 (tramp-default-method): Use it.
6577
6578 2010-04-22 Michael Albinus <michael.albinus@gmx.de>
6579
6580 * net/tramp.el (tramp-handle-copy-file): Add new optional
6581 parameter `preserve-selinux-context'.
6582 (tramp-file-name-for-operation): Add `set-file-selinux-context'.
6583
6584 2010-04-22 Michael Albinus <michael.albinus@gmx.de>
6585
6586 * net/tramp.el (tramp-completion-handle-file-name-all-completions):
6587 Ensure, that non remote files are still checked. Oops.
6588
6589 2010-04-21 Michael Albinus <michael.albinus@gmx.de>
6590
6591 Fix Bug#5840.
6592
6593 * icomplete.el (icomplete-completions): Use `non-essential'.
6594
6595 * net/tramp.el (tramp-connectable-p): New defun.
6596 (tramp-handle-expand-file-name)
6597 (tramp-completion-handle-file-name-all-completions)
6598 (tramp-completion-handle-file-name-completion): Use it.
6599
6600 2010-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
6601
6602 * emacs-lisp/lisp.el (lisp-completion-at-point): Try and handle errors.
6603
6604 2010-04-21 Jan Djärv <jan.h.d@swipnet.se>
6605
6606 * vc-dir.el (vc-dir-tool-bar-map): Add :label on some tool bar items.
6607
6608 * tool-bar.el (tool-bar-setup): Add :label on some tool bar items.
6609
6610 * loadup.el: Load dynamic-setting.el if feature dynamic-setting
6611 is present.
6612
6613 * info.el (info-tool-bar-map): Add labels.
6614
6615 * cus-start.el (all): Add tool-bar-style and tool-bar-max-label-size.
6616
6617 * cus-edit.el (custom-commands): Add labels for tool bar.
6618 (custom-buffer-create-internal, Custom-mode): Adjust for
6619 labels in custom-commands.
6620
6621 * dynamic-setting.el: Renamed from font-setting.el.
6622
6623 2010-04-21 John Wiegley <jwiegley@gmail.com>
6624
6625 * ido.el (ido-init-completion-maps): For ido-switch-buffer, C-o
6626 toggles the use of virtual buffers.
6627 (ido-buffer-internal): Guard `ido-use-virtual-buffers' global value.
6628 (ido-toggle-virtual-buffers): New function.
6629
6630 2010-04-21 Juanma Barranquero <lekktu@gmail.com>
6631
6632 Use `define-derived-mode'; fix window selection; doc fixes.
6633 * play/tetris.el (tetris, tetris-update-speed-function)
6634 (tetris-tty-colors, tetris-x-colors, tetris-move-bottom)
6635 (tetris-move-left, tetris-move-right, tetris-rotate-prev)
6636 (tetris-rotate-next, tetris-end-game, tetris-start-game)
6637 (tetris-pause-game): Fix typos in docstrings.
6638 (tetris-mode-map, tetris-null-map):
6639 Move initialization into declaration.
6640 (tetris-mode): Define with `define-derived-mode';
6641 set show-trailing-whitespace to nil.
6642 (tetris): Prefer window already displaying the "*Tetris*" buffer.
6643
6644 2010-04-21 Karel Klíč <kklic@redhat.com>
6645
6646 * files.el (backup-buffer): Handle SELinux context, and return it
6647 if a backup was made by renaming.
6648 (backup-buffer-copy): Set SELinux context to the target file.
6649 (basic-save-buffer): Set SELinux context of the newly written file.
6650 (basic-save-buffer-1): Now it also returns any SELinux context.
6651 (basic-save-buffer-2): Set SELinux context of the newly created file,
6652 and return it.
6653 * net/tramp.el (tramp-file-name-for-operation):
6654 Add file-selinux-context.
6655
6656 2010-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
6657
6658 Make the log-edit comments use RFC822 format throughout.
6659
6660 * vc.el (vc-checkin, vc-modify-change-comment):
6661 Adjust to new vc-start/finish-logentry.
6662 (vc-find-conflicted-file): New command.
6663 (vc-transfer-file): Adjust to new vc-checkin.
6664 (vc-next-action): Improve scoping.
6665
6666 * vc-hg.el (vc-hg-log-edit-mode): Remove.
6667 (vc-hg-checkin): Remove extra arg. Use log-edit-extract-headers.
6668
6669 * vc-git.el (vc-git-log-edit-mode): Remove.
6670 (vc-git-checkin): Remove extra arg. Use log-edit-extract-headers.
6671 (vc-git-commits-coding-system): Rename from git-commits-coding-system.
6672
6673 * vc-dispatcher.el (vc-log-edit): Shorten names for log-edit-show-files.
6674 (vc-start-logentry): Remove argument `extra'.
6675 (vc-finish-logentry): Remove extra args.
6676
6677 * vc-bzr.el (vc-bzr-log-edit-mode): Remove.
6678 (vc-bzr-checkin): Remove extra arg. Use log-edit-extract-headers.
6679 (vc-bzr-conflicted-files): New function.
6680
6681 * log-edit.el (log-edit-extra-flags)
6682 (log-edit-before-checkin-process): Remove.
6683 (log-edit-summary, log-edit-header, log-edit-unknown-header): New faces.
6684 (log-edit-headers-alist): New var.
6685 (log-edit-header-contents-regexp): New const.
6686 (log-edit-match-to-eoh): New function.
6687 (log-edit-font-lock-keywords): Use them.
6688 (log-edit): Insert a "Summary:" header as default.
6689 (log-edit-mode): Mark font-lock rules as case-insensitive.
6690 (log-edit-done): Cleanup headers.
6691 (log-view-process-buffer): Remove.
6692 (log-edit-extract-headers): New function to replace it.
6693
6694 2010-04-20 Juanma Barranquero <lekktu@gmail.com>
6695
6696 * subr.el (default-direction-reversed): Remove obsolescence info.
6697
6698 2010-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
6699
6700 * vc-dispatcher.el (vc-finish-logentry): Don't mess so badly with the
6701 windows/frames.
6702
6703 * emacs-lisp/lisp.el (lisp-completion-at-point): Complete around point.
6704 I.e. include text after point in the completion region.
6705 Also, return nil when we're not after/in a symbol.
6706
6707 * international/mule-cmds.el (view-hello-file): Don't fiddle with the
6708 default enable-multibyte-characters.
6709
6710 2010-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
6711
6712 * international/mule.el: Help the user choose a valid coding-system.
6713 (read-buffer-file-coding-system): New function.
6714 (set-buffer-file-coding-system): Use it. Prompt the user if the
6715 coding-system cannot encode all the chars.
6716
6717 * vc-bzr.el: Use standard *vc* and *vc-diff* buffers.
6718 (vc-bzr-shelve-show, vc-bzr-shelve-apply)
6719 (vc-bzr-shelve-apply-and-keep, vc-bzr-shelve-snapshot):
6720 Don't use *vc-bzr-shelve*.
6721
6722 2010-04-19 Dan Nicolaescu <dann@ics.uci.edu>
6723
6724 Fix the version number for added files.
6725 * vc-hg.el (vc-hg-working-revision): Check if the file is
6726 registered after hg parent fails (Bug#5961).
6727
6728 2010-04-19 Glenn Morris <rgm@gnu.org>
6729
6730 * htmlfontify.el (htmlfontify-buffer)
6731 (htmlfontify-copy-and-link-dir): Autoload entry points.
6732
6733 2010-04-19 Magnus Henoch <magnus.henoch@gmail.com>
6734
6735 * vc-hg.el (vc-hg-annotate-extract-revision-at-line): Expand file
6736 name relative to the project root (Bug#5960).
6737
6738 2010-04-19 Glenn Morris <rgm@gnu.org>
6739
6740 * vc-git.el (vc-git-print-log): Doc fix.
6741
6742 2010-04-19 Óscar Fuentes <ofv@wanadoo.es>
6743
6744 * ido.el (ido-file-internal): Fix 2009-12-02 change.
6745
6746 2010-04-19 Christoph <cschol2112@googlemail.com> (tiny change)
6747
6748 * progmodes/grep.el (grep-compute-defaults): Fix handling of host
6749 default settings (Bug#5928).
6750
6751 2010-04-19 Glenn Morris <rgm@gnu.org>
6752
6753 * progmodes/fortran.el (fortran-match-and-skip-declaration):
6754 New function.
6755 (fortran-font-lock-keywords-3): Use it. (Bug#1385)
6756
6757 2010-04-19 Kenichi Handa <handa@m17n.org>
6758
6759 * language/indian.el (malayalam-composable-pattern): Fix previous
6760 change (add U+0D4D "SIGN VIRAMA").
6761 (oriya-composable-pattern): Add U+0B30 and fix typo in the regexp.
6762 (tamil-composable-pattern): Fix typo in the regexp.
6763 (telugu-composable-pattern): Fix U+0C4D and typo in the regexp.
6764 (kannada-composable-pattern): Fix U+0CB0 and typo in the regexp.
6765 (malayalam-composable-pattern): Fix U+0D4D and typo in the regexp.
6766
6767 2010-04-19 Chong Yidong <cyd@stupidchicken.com>
6768
6769 * textmodes/tex-mode.el (latex-mode): Revert 2008-03-03 change to
6770 paragraph-separate (Bug#5821).
6771
6772 2010-04-19 Juri Linkov <juri@jurta.org>
6773
6774 Put breadcrumbs on overlay instead of inserting to buffer (bug#5809).
6775
6776 * info.el (Info-find-node-2): Comment out code that skips
6777 breadcrumbs line.
6778 (Info-mouse-follow-link): New command.
6779 (Info-link-keymap): New keymap.
6780 (Info-breadcrumbs): Rename from `Info-insert-breadcrumbs'.
6781 Return a string with links instead of inserting breadcrumbs
6782 to the Info buffer.
6783 (Info-fontify-node): Comment out code that inserts breadcrumbs.
6784 Instead of putting the `invisible' text property over the Info
6785 header, make an overlay over the Info header with the `invisible'
6786 property and `after-string' set to the string returned by
6787 `Info-breadcrumbs'.
6788
6789 2010-04-19 Chong Yidong <cyd@stupidchicken.com>
6790
6791 * help.el (help-window-setup-finish): Doc fix (Bug#5830).
6792 Reported by monkey@sandpframing.com.
6793
6794 2010-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
6795
6796 * tmm.el (tmm-prompt): Remove obsolete call to x-popup-menu.
6797 (tmm-get-keymap): Add key-binding shortcuts now that they're not
6798 available in the "keyseq cache" any more.
6799
6800 * custom.el (defcustom): Add edebug spec.
6801
6802 2010-04-18 Juri Linkov <juri@jurta.org>
6803
6804 Test for special mode-class in view-buffer instead of view-file (bug#5513).
6805
6806 * view.el (view-file, view-buffer): Move test for special mode-class
6807 from view-file to view-buffer.
6808
6809 * tar-mode.el (tar-extract): Turn if's into one cond
6810 like in arc-mode.el.
6811
6812 2010-04-18 Juri Linkov <juri@jurta.org>
6813
6814 Add 7z archive format support (bug#5475).
6815
6816 * arc-mode.el (archive-zip-extract): Try to find 7z executable.
6817 (archive-7z-extract): New defcustom.
6818 (archive-find-type): Add magic string for 7z.
6819 (archive-extract-by-stdout): Add new optional arg `stderr-file'.
6820 If `stderr-file' is non-nil, use `(t stderr-file)' for the
6821 `buffer' arg of `call-process'.
6822 (archive-zip-extract): Check `archive-zip-extract' for "7z" and
6823 call the function `archive-7z-extract' with the variable
6824 `archive-7z-extract' let-bound to `archive-zip-extract'.
6825 (archive-7z-summarize, archive-7z-extract): New functions.
6826
6827 * international/mule.el (auto-coding-alist):
6828 * files.el (auto-mode-alist): Add 7z file extension.
6829
6830 2010-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
6831
6832 * loadup.el: Setup hash-cons for pure data.
6833
6834 Fix duplicate entries in cedet's loaddefs.el files.
6835 * emacs-lisp/autoload.el (autoload-file-load-name): Be more clever.
6836 Should make most file-local generated-autoload-file unnecessary.
6837 (print-readably): Silence warnings.
6838 (autoload-find-destination): Take load-name as an arg to make sure
6839 it's the same as the one that will be in the file.
6840 (autoload-generate-file-autoloads): Adjust to above changes.
6841 Try to make the dataflow a bit simpler.
6842
6843 * cvs-status.el (cvs-refontify): Remove unused.
6844
6845 2010-04-18 Jay Belanger <jay.p.belanger@gmail.com>
6846
6847 * calc/calc.el (calc-mode-map): Bind "O" to `calc-missing-key'.
6848
6849 * calc/calc-bin.el (calc-radix): Have the "O" option turn on
6850 twos-complement mode.
6851
6852 2010-04-17 Jay Belanger <jay.p.belanger@gmail.com>
6853
6854 * calc/calc-ext.el (calc-init-extensions): Add keybinding for
6855 'calc-option'. Add `calc-option-prefix-help' to calc-help autoloads.
6856 (calc-inverse): Add "Option" to message, as appropriate.
6857 (calc-hyperbolic): Add "Option" to message, as appropriate.
6858 (calc-option, calc-is-option): New functions.
6859
6860 * calc/calc-help.el (calc-full-help): Add `calc-option-help'.
6861 (calc-option-prefix-help): New function.
6862
6863 * calc/calc-misc.el (calc-help): Add "Option" entry.
6864
6865 * calc/calc.el (calc-local-var-list): Add `calc-option-flag'.
6866 (calc-option-flag): New variable.
6867 (calc-do): Set `calc-option-flag to nil.
6868 (calc-set-mode-line): Add "Opt " as appropriate.
6869
6870 2010-04-16 Juri Linkov <juri@jurta.org>
6871
6872 Move scrolling commands from simple.el to window.el
6873 because their primitives are implemented in window.c.
6874
6875 * simple.el (scroll-error-top-bottom)
6876 (scroll-up-command, scroll-down-command, scroll-up-line)
6877 (scroll-down-line, scroll-other-window-down)
6878 (beginning-of-buffer-other-window, end-of-buffer-other-window):
6879 * window.el (scroll-error-top-bottom)
6880 (scroll-up-command, scroll-down-command, scroll-up-line)
6881 (scroll-down-line, scroll-other-window-down)
6882 (beginning-of-buffer-other-window, end-of-buffer-other-window):
6883 Move from simple.el to window.el because their primitives are
6884 implemented in window.c.
6885
6886 2010-04-16 Juri Linkov <juri@jurta.org>
6887
6888 * isearch.el (isearch-lookup-scroll-key): Check both
6889 `isearch-scroll' and `scroll-command' properties.
6890 (scroll-up, scroll-down): Remove `isearch-scroll' property.
6891
6892 * mwheel.el (mwheel-scroll): Remove `isearch-scroll' property.
6893
6894 * simple.el (scroll-up-command, scroll-down-command)
6895 (scroll-up-line, scroll-down-line): Remove `isearch-scroll' property.
6896
6897 2010-04-15 Juri Linkov <juri@jurta.org>
6898
6899 * simple.el (scroll-up-command, scroll-down-command)
6900 (scroll-up-line, scroll-down-line): Put `scroll-command'
6901 property on the these symbols. Remove them from
6902 `scroll-preserve-screen-position-commands'.
6903
6904 * mwheel.el (mwheel-scroll): Put `scroll-command' and
6905 `isearch-scroll' properties on the `mwheel-scroll' symbol.
6906 Remove it from `scroll-preserve-screen-position-commands'.
6907
6908 * isearch.el (isearch-allow-scroll): Doc fix.
6909
6910 2010-04-15 Michael Albinus <michael.albinus@gmx.de>
6911
6912 * net/tramp.el (tramp-error-with-buffer): Don't show the
6913 connection buffer when we are in completion mode.
6914 (tramp-file-name-handler): Catch the error for some operations
6915 when we are in completion mode. This gives the user the chance to
6916 correct the file name in the minibuffer.
6917
6918 2010-04-15 Glenn Morris <rgm@gnu.org>
6919
6920 * progmodes/verilog-mode.el (verilog-forward-sexp): Avoid free variable.
6921
6922 2010-04-15 Juanma Barranquero <lekktu@gmail.com>
6923
6924 Simplify by using `define-derived-mode'.
6925 * info.el (Info-mode):
6926 * calendar/todo-mode.el (todo-mode):
6927 * play/gomoku.el (gomoku-mode): Define with `define-derived-mode'.
6928 (gomoku-mode-map): Move initialization into declaration.
6929
6930 2010-04-14 Michael Albinus <michael.albinus@gmx.de>
6931
6932 Fix Bug#5840.
6933 * ido.el (ido-file-name-all-completions-1):
6934 * minibuffer.el (minibuffer-completion-help):
6935 * net/tramp.el (tramp-completion-mode-p): Use `non-essential'.
6936
6937 2010-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
6938
6939 * simple.el (non-essential): New var.
6940
6941 Add a new field `location' to bookmarks for non-file bookmarks.
6942 * bookmark.el (bookmark-location): Use the new field, if present.
6943 (bookmark-insert-location): Undo last change, not needed any more.
6944 * man.el (Man-bookmark-make-record):
6945 * woman.el (woman-bookmark-make-record): Add `location' field.
6946
6947 2010-04-14 Juri Linkov <juri@jurta.org>
6948
6949 * simple.el (scroll-error-top-bottom): New defcustom.
6950 (scroll-up-command, scroll-down-command): Use it. Doc fix.
6951
6952 * emulation/pc-select.el (pc-select-override-scroll-error):
6953 Obsolete in favor of `scroll-error-top-bottom'.
6954
6955 2010-04-14 Juri Linkov <juri@jurta.org>
6956
6957 * tutorial.el (tutorial--default-keys): Rebind `C-v' to
6958 `scroll-up-command' and `M-v' to `scroll-down-command'.
6959
6960 * emulation/cua-rect.el (cua--init-rectangles):
6961 * forms.el (forms--change-commands):
6962 * image-mode.el (image-mode-map):
6963 Remap scroll-down-command and scroll-up-command
6964 in addition to scroll-down and scroll-up.
6965
6966 2010-04-14 Juri Linkov <juri@jurta.org>
6967
6968 * mwheel.el (scroll-preserve-screen-position-commands):
6969 Add mwheel-scroll to this list of commands.
6970
6971 * simple.el (scroll-preserve-screen-position-commands):
6972 Add scroll-up-command, scroll-down-command, scroll-up-line,
6973 scroll-down-line to this list of commands.
6974
6975 2010-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
6976
6977 * obsolete/complete.el: Move from lisp/complete.el.
6978
6979 * pcomplete.el (pcomplete-here*): Fix mistaken change (bug#5935).
6980
6981 * emacs-lisp/easy-mmode.el (define-minor-mode): Passing a nil argument
6982 to the minor mode function now turns the mode ON unconditionally.
6983
6984 2010-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
6985
6986 * vc-dir.el (vc-dir-kill-line): New command.
6987 (vc-dir-mode-map): Bind it to C-k.
6988
6989 * bookmark.el (bookmark-insert-location): Handle a nil filename.
6990
6991 * woman.el: Add bookmark declarations to silence the compiler.
6992 (bookmark-prop-get): Use `man-args' rather than `filename' as a first
6993 step to compatibility between man and woman bookmarks.
6994 Adjust for Man-default-bookmark-title renaming.
6995 (woman-bookmark-jump): Adjust accordingly. Don't forget to autoload.
6996
6997 * man.el: Add bookmark declarations to silence the compiler.
6998 (Man-name-local-regexp): Make it match NAME as well.
6999 (Man-getpage-in-background): Return the buffer.
7000 (Man-notify-when-ready): Use `case'.
7001 (man-set-default-bookmark-title): Rename to Man-default-bookmark-title.
7002 Don't hardcode "NAME". Simplify.
7003 (Man-bookmark-make-record): Use Man-arguments rather than buffer-name.
7004 Rename from Man-bookmark-make-record.
7005 (Man-bookmark-jump): Rename from man-bookmark-jump. Simplify now that
7006 we have the actual man-args. Use Man-getpage-in-background rather
7007 than `man' since the arg is already processed. Let bookmark.el do the
7008 window handling. Only wait for the relevant process.
7009 Don't forget to autoload.
7010
7011 * bookmark.el (bookmark-default-file): Use locate-user-emacs-file.
7012
7013 2010-04-12 Thierry Volpiatto <thierry.volpiatto@gmail.com>
7014
7015 * woman.el (woman-bookmark-make-record, woman-bookmark-jump):
7016 New functions.
7017 (woman-mode): Setup bookmark support.
7018
7019 * man.el (man-set-default-bookmark-title, man-bookmark-make-record)
7020 (man-bookmark-jump): New functions.
7021 (Man-mode): Setup bookmark support.
7022
7023 2010-04-10 Jari Aalto <jari.aalto@cante.net>
7024
7025 * comint.el (comint-password-prompt-regexp): Use regexp-opt, and
7026 recognize ssh-keygen prompt (Bug#2817).
7027
7028 2010-04-10 Michael Albinus <michael.albinus@gmx.de>
7029
7030 * net/tramp.el (tramp-do-copy-or-rename-file): Add progress reporter.
7031
7032 2010-04-10 Michael Albinus <michael.albinus@gmx.de>
7033
7034 Synchronize with Tramp repository.
7035
7036 * net/tramp.el (tramp-completion-function-alist)
7037 (tramp-file-name-regexp, tramp-chunksize)
7038 (tramp-local-coding-commands, tramp-remote-coding-commands):
7039 Fix docstring.
7040 (tramp-remote-process-environment): Use `format' instead of `concat'.
7041 (tramp-handle-directory-files-and-attributes)
7042 (tramp-get-remote-path): Use `copy-tree'.
7043 (tramp-handle-file-name-all-completions): Backward/ XEmacs
7044 compatibility: Use `completion-ignore-case' if
7045 `read-file-name-completion-ignore-case' does not exist.
7046 (tramp-do-copy-or-rename-file-directly): Do not use
7047 `tramp-handle-file-remote-p'.
7048 (tramp-do-copy-or-rename-file-out-of-band):
7049 Use `tramp-compat-delete-directory'.
7050 (tramp-do-copy-or-rename-file-out-of-band)
7051 (tramp-compute-multi-hops, tramp-maybe-open-connection):
7052 Use `format-spec-make'.
7053 (tramp-find-foreign-file-name-handler)
7054 (tramp-advice-make-auto-save-file-name)
7055 (tramp-set-auto-save-file-modes): Remove superfluous check for
7056 `stringp'. This is done inside `tramp-tramp-file-p'.
7057 (tramp-debug-outline-regexp): New defconst.
7058 (tramp-get-debug-buffer): Use it.
7059 (tramp-check-for-regexp): Use (forward-line 1).
7060 (tramp-set-auto-save-file-modes): Adapt version check.
7061
7062 * net/tramp-compat.el (tramp-advice-file-expand-wildcards):
7063 Wrap call of `featurep' for 2nd argument.
7064 (tramp-compat-make-temp-file): Simplify fallback implementation.
7065 (tramp-compat-copy-tree): Remove function.
7066 (tramp-compat-delete-directory): Provide implementation for older
7067 Emacsen.
7068
7069 * net/tramp-fish.el (tramp-fish-handle-directory-files-and-attributes):
7070 Do not use `tramp-fish-handle-file-attributes.
7071
7072 * net/trampver.el: Update release number.
7073
7074 2010-04-10 Glenn Morris <rgm@gnu.org>
7075
7076 * progmodes/compile.el (compilation-save-buffers-predicate):
7077 Add missing :version tag.
7078
7079 2010-04-09 Sam Steingold <sds@gnu.org>
7080
7081 * progmodes/compile.el (compilation-save-buffers-predicate):
7082 Remove the "autoload" cookie.
7083
7084 * progmodes/bug-reference.el (turn-on-bug-reference-mode)
7085 (turn-on-bug-reference-prog-mode): Remove, `bug-reference-mode'
7086 and `bug-reference-prog-mode' can be used in hooks directly.
7087
7088 2010-04-09 Dan Nicolaescu <dann@ics.uci.edu>
7089
7090 Add --author support to git commit.
7091 * vc-git.el (vc-git-checkin): Pass extra-args to the commit command.
7092 (vc-git-log-edit-mode): New minor mode.
7093 (log-edit-mode, log-edit-extra-flags, log-edit-mode):
7094 New declarations.
7095
7096 2010-04-09 Eric Raymond <esr@snark.thyrsus.com>
7097
7098 * vc-hooks.el, vc-git.el: Improve documentation comments.
7099
7100 2010-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
7101
7102 Fix some of the problems in defsubst* (bug#5728).
7103 * emacs-lisp/cl-macs.el (defsubst*): Don't substitute non-trivial args.
7104 (cl-defsubst-expand): Do the substitutions simultaneously (bug#5728).
7105
7106 2010-04-07 Sam Steingold <sds@gnu.org>
7107
7108 * progmodes/compile.el (compilation-save-buffers-predicate):
7109 New custom variable.
7110 (compile, recompile): Pass it to `save-some-buffers'.
7111
7112 2010-04-07 Jan Djärv <jan.h.d@swipnet.se>
7113
7114 * wid-edit.el (widget-choose): Move cursor to the second line of
7115 the buffer (Bug#5695).
7116
7117 2010-04-07 Dan Nicolaescu <dann@ics.uci.edu>
7118
7119 Add new VC methods: vc-log-incoming and vc-log-outgoing.
7120 * vc.el (vc-print-log-setup-buttons): New function split out from
7121 vc-print-log-internal.
7122 (vc-log-internal-common): New function, a parametrized version of
7123 vc-print-log-internal.
7124 (vc-print-log-internal): Just call vc-log-internal-common with the
7125 right arguments.
7126 (vc-incoming-outgoing-internal):
7127 (vc-log-incoming, vc-log-outgoing): New functions.
7128 (vc-log-view-type): New permanent local variable.
7129
7130 * vc-hooks.el (vc-menu-map): Bind vc-log-incoming and vc-log-outgoing.
7131
7132 * vc-bzr.el (vc-bzr-log-view-mode): Use vc-log-view-type instead
7133 of the dynamic bound vc-short-log.
7134 (vc-bzr-log-incoming, vc-bzr-log-outgoing): New functions.
7135
7136 * vc-git.el (vc-git-log-outgoing): New function.
7137 (vc-git-log-view-mode): Use vc-log-view-type instead
7138 of the dynamic bound vc-short-log.
7139
7140 * vc-hg.el (vc-hg-log-view-mode): Use vc-log-view-type instead
7141 of the dynamic bound vc-short-log. Highlight the tag.
7142 (vc-hg-log-incoming, vc-hg-log-outgoing): New functions.
7143 (vc-hg-outgoing, vc-hg-incoming, vc-hg-outgoing-mode):
7144 (vc-hg-incoming-mode): Remove.
7145 (vc-hg-extra-menu-map): Do not bind vc-hg-incoming and vc-hg-outgoing.
7146
7147 2010-04-07 Dan Nicolaescu <dann@ics.uci.edu>
7148
7149 Fix default-directory for vc-root-diff.
7150 * vc.el (vc-root-diff): Bind default-directory to the root
7151 directory for the diff command.
7152
7153 2010-04-07 Michael McNamara <mac@mail.brushroad.com>
7154
7155 * progmodes/verilog-mode.el (verilog-forward-sexp):
7156 (verilog-calc-1): Support "disable fork" and "fork wait" multi
7157 word keywords, suggested by Steve Pearlmutter.
7158 (verilog-pretty-declarations): Support lineup of declarations in
7159 port lists.
7160 (verilog-skip-backward-comments, verilog-skip-forward-comment-p):
7161 fix bug for /* / comments.
7162 (verilog-backward-syntactic-ws, verilog-forward-syntactic-ws):
7163 Speed up and simplfy as this is never called with a bound.
7164 (verilog-pretty-declarations): Enhance to line up declarations
7165 inside a parameter list, suggested by Alan Morgan.
7166 (verilog-pretty-expr): Tune assignment regular expression match
7167 string for corner cases; also use markers instead of character
7168 number as indent changes the later.
7169
7170 2010-04-07 Wilson Snyder <wsnyder@wsnyder.org>
7171
7172 * progmodes/verilog-mode.el (verilog-type-keywords): Fix pulldown
7173 as missing keyword.
7174 (verilog-read-sub-decls-line): Fix comments in AUTO_TEMPLATE
7175 causing truncation of AUTOWIRE signals. Reported by Bruce Tennant.
7176 (verilog-auto-inst, verilog-auto-inst-port): Add vl_mbits for
7177 AUTO_TEMPLATEs needing multiple array bits. Suggested by Bruce
7178 Tennant.
7179 (verilog-keywords):
7180 (verilog-1800-2005-keywords, verilog-1800-2009-keywords): Add IEEE
7181 1800-2009 keywords, including "global.".
7182
7183 2010-04-06 John Wiegley <jwiegley@gmail.com>
7184
7185 * ido.el (ido-add-virtual-buffers-to-list): Fix duplicated names
7186 appearing in buffer list (if a live buffer name matched a recentf
7187 file basename). Should use uniquify to offer a real solution.
7188
7189 2010-04-06 John Wiegley <jwiegley@gmail.com>
7190
7191 * ido.el (ido-use-virtual-buffers, ido-virtual): Move a ChangeLog
7192 comment to code, and add a :version tag.
7193 (ido-virtual-buffers): Move defvar to fix byte-compiler warning.
7194
7195 2010-04-06 Juanma Barranquero <lekktu@gmail.com>
7196
7197 Enable recentf-mode if using virtual buffers.
7198 * ido.el (recentf-list): Declare for byte-compiler.
7199 (ido-virtual-buffers): Move up to silence byte-compiler. Add docstring.
7200 (ido-make-buffer-list): Simplify.
7201 (ido-add-virtual-buffers-to-list): Simplify. Enable recentf-mode.
7202
7203 2010-04-05 Juri Linkov <juri@jurta.org>
7204
7205 Scrolling commands which scroll a line instead of full screen.
7206 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01452.html
7207
7208 * simple.el (scroll-up-line, scroll-down-line): New commands.
7209 Put property isearch-scroll=t on them.
7210
7211 * emulation/ws-mode.el (scroll-down-line, scroll-up-line):
7212 Remove commands.
7213
7214 2010-04-05 Juri Linkov <juri@jurta.org>
7215
7216 Scrolling commands which do not signal errors at top/bottom.
7217 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01452.html
7218
7219 * simple.el (scroll-up-command, scroll-down-command): New commands.
7220 Put property isearch-scroll=t on them.
7221
7222 * bindings.el (global-map): Rebind [prior] from `scroll-down' to
7223 `scroll-down-command' and [next] from `scroll-up' to
7224 `scroll-up-command'.
7225
7226 * emulation/cua-base.el: Put property CUA=move on
7227 `scroll-up-command' and `scroll-down-command'.
7228 (cua--init-keymaps): Remap `scroll-up-command' to `cua-scroll-up'
7229 and `scroll-down-command' to `cua-scroll-down'.
7230
7231 2010-04-05 Juanma Barranquero <lekktu@gmail.com>
7232
7233 * help.el (describe-mode): Return nil.
7234
7235 2010-04-04 John Wiegley <jwiegley@gmail.com>
7236
7237 * ido.el (ido-use-virtual-buffers): New variable to indicate
7238 whether "virtual buffer" support is enabled for IDO.
7239 (ido-virtual): Face used to indicate virtual buffers in the list.
7240 (ido-buffer-internal): If a buffer is chosen, and no such buffer
7241 exists, but a virtual buffer of that name does (which would be why
7242 it was in the list), recreate the buffer by reopening the file.
7243 (ido-make-buffer-list): If virtual buffers are being used, call
7244 `ido-add-virtual-buffers-to-list' before the make list hook.
7245 (ido-virtual-buffers): New variable which contains a copy of the
7246 current contents of the `recentf-list', albeit pared down for the
7247 sake of speed, and with proper faces applied.
7248 (ido-add-virtual-buffers-to-list): Using the `recentf-list',
7249 create a list of "virtual buffers" to present to the user in
7250 addition to the currently open set. Note that this logic could
7251 get rather slow if that list is too large. With the default
7252 `recentf-max-saved-items' of 200, there is little speed penalty.
7253
7254 2010-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
7255
7256 * font-lock.el: Require CL when compiling.
7257 (font-lock-turn-on-thing-lock): Use `case'.
7258
7259 2010-04-03 Eli Zaretskii <eliz@gnu.org>
7260
7261 * emacs-lisp/authors.el (authors-fixed-entries): Add entry for Eli
7262 Zaretskii.
7263
7264 2010-04-02 Juri Linkov <juri@jurta.org>
7265
7266 * ehelp.el (electric-help-orig-major-mode):
7267 New buffer-local variable.
7268 (electric-help-mode): Set it to original major-mode. Doc fix.
7269 (with-electric-help): Use `electric-help-orig-major-mode' instead
7270 of (default-value 'major-mode). Doc fix.
7271 http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00069.html
7272
7273 2010-04-02 Sam Steingold <sds@gnu.org>
7274
7275 * vc-hg.el (vc-hg-push, vc-hg-pull): Use `apply' when calling
7276 `vc-hg-command' with a list of flags.
7277
7278 * progmodes/bug-reference.el (bug-reference-bug-regexp):
7279 Also accept "patch" and "RFE".
7280 (bug-reference-fontify): `bug-reference-url-format' can also be a
7281 function to be able to handle the bug kind.
7282 (turn-on-bug-reference-mode, turn-on-bug-reference-prog-mode): Add.
7283
7284 2010-04-02 Jan Djärv <jan.h.d@swipnet.se>
7285
7286 * tmm.el (tmm-get-keymap): Check with symbolp before passing
7287 value to fboundp, it may not be a symbol.
7288
7289 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
7290
7291 * cus-edit.el (custom-buffer-sort-alphabetically): Update :version.
7292
7293 2010-03-31 Juri Linkov <juri@jurta.org>
7294
7295 * simple.el (next-line, previous-line): Re-throw a signal
7296 with `signal' instead of using `ding'.
7297 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01432.html
7298
7299 2010-03-31 Juri Linkov <juri@jurta.org>
7300
7301 * simple.el (keyboard-escape-quit): Raise deselecting the active
7302 region higher than exiting the minibuffer.
7303 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00904.html
7304
7305 2010-03-31 Juri Linkov <juri@jurta.org>
7306
7307 * image.el (image-animated-p): Use `image-metadata' instead of
7308 `image-extension-data'. Get GIF extenstion data from metadata
7309 property `extension-data'.
7310
7311 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
7312
7313 * simple.el (append-to-buffer): Simplify.
7314
7315 2010-03-31 Tomas Abrahamsson <tab@lysator.liu.se>
7316
7317 * textmodes/artist.el (artist-mode): Fix typo in docstring.
7318 Reported by Alex Schröder <kensanata@gmail.com>. (Bug#5807)
7319
7320 2010-03-31 Kenichi Handa <handa@m17n.org>
7321
7322 * language/sinhala.el (composition-function-table): Fix regexp for
7323 the new Unicode specification.
7324
7325 * language/indian.el (devanagari-composable-pattern)
7326 (tamil-composable-pattern, kannada-composable-pattern)
7327 (malayalam-composable-pattern): Adjust for the new Unicode
7328 specification.
7329 (bengali-composable-pattern, gurmukhi-composable-pattern)
7330 (gujarati-composable-pattern, oriya-composable-pattern)
7331 (telugu-composable-pattern): New variables to cope with the new
7332 Unicode specification. Use them in composition-function-table.
7333
7334 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
7335
7336 Make tmm-menubar work for the Buffers menu again (bug#5726).
7337 * tmm.el (tmm-prompt): Also handle keymap entries in the form of
7338 vectors rather than cons cells, as used in menu-bar-update-buffers.
7339
7340 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
7341
7342 * progmodes/js.el (js-auto-indent-flag, js-mode-map)
7343 (js-insert-and-indent): Revert 2009-08-15 change, restoring
7344 electric punctuation for "{}();,:" (Bug#5586).
7345
7346 * mail/sendmail.el (mail-default-directory): Doc fix.
7347
7348 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
7349
7350 * mail/sendmail.el (mail-default-directory): Doc fix.
7351
7352 2010-03-31 Eli Zaretskii <eliz@gnu.org>
7353
7354 * subr.el (version-regexp-alist, version-to-list)
7355 (version-list-<, version-list-=, version-list-<=)
7356 (version-list-not-zero, version<, version<=, version=): Doc fix.
7357 (Bug#5744).
7358
7359 2010-02-31 Dan Nicolaescu <dann@ics.uci.edu>
7360
7361 * vc.el (vc-root-diff): Doc fix.
7362
7363 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
7364
7365 * vc.el (vc-print-log, vc-print-root-log): Doc fix.
7366
7367 * simple.el (append-to-buffer): Fix last change.
7368
7369 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
7370
7371 * simple.el (append-to-buffer): Ensure that point is preserved if
7372 BUFFER is the current buffer. Suggested by YAMAMOTO Mitsuharu.
7373 (Bug#5749)
7374
7375 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
7376
7377 * files.el (auto-mode-case-fold): Change default to t.
7378
7379 2010-03-30 Juri Linkov <juri@jurta.org>
7380
7381 * dired-x.el (dired-omit-mode): Doc fix.
7382
7383 2010-03-30 Juri Linkov <juri@jurta.org>
7384
7385 * replace.el (occur-accumulate-lines): Move occur-engine related
7386 functions `occur-accumulate-lines' and `occur-engine-add-prefix'
7387 to be located after `occur-engine'.
7388
7389 2010-03-30 Juri Linkov <juri@jurta.org>
7390
7391 Make occur handle multi-line matches cleanly with context.
7392 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01280.html
7393
7394 * replace.el (occur-accumulate-lines): Add optional arg `pt'.
7395 (occur-engine): Add local variables `ret', `prev-after-lines',
7396 `prev-lines'. Use more arguments for `occur-context-lines'.
7397 Set first elem of its returned list to `data', and the second elem
7398 to `prev-after-lines'. Don't print the separator line.
7399 In the end, print remaining context after-lines.
7400 (occur-context-lines): Add new arguments `begpt', `endpt',
7401 `lines', `prev-lines', `prev-after-lines'. Rewrite to combine
7402 after-lines of the previous match with before-lines of the
7403 current match and not overlap them. Return a list with two
7404 values: the output line and the list of context after-lines.
7405
7406 2010-03-30 Juri Linkov <juri@jurta.org>
7407
7408 * replace.el (occur-accumulate-lines): Fix a bug where the first
7409 context line at the beginning of the buffer was missing.
7410
7411 2010-03-30 Eli Zaretskii <eliz@gnu.org>
7412
7413 * files.el: Make bidi-display-reordering safe variable for boolean
7414 values.
7415
7416 2010-03-29 Phil Hagelberg <phil@evri.com>
7417 Chong Yidong <cyd@stupidchicken.com>
7418
7419 * subr.el: Extend progress reporters to perform "spinning".
7420 (progress-reporter-update, progress-reporter-do-update):
7421 Handle non-numeric value arguments.
7422 (progress-reporter--pulse-characters): New var.
7423
7424 2010-03-28 Chong Yidong <cyd@stupidchicken.com>
7425
7426 * progmodes/compile.el (compilation-start): Fix regexp detection
7427 of initial cd command (Bug#5771).
7428
7429 2010-03-28 Stefan Guath <stefan@automata.se> (tiny change)
7430
7431 * find-dired.el (find-dired): Use read-directory-name (Bug#5777).
7432
7433 2010-03-27 Nick Roberts <nickrob@snap.net.nz>
7434
7435 Restore GDB/MI fuctionality removed by 2009-12-29T07:15:34Z!nickrob@snap.net.nz.
7436 * progmodes/gdb-mi.el: Restore.
7437 * progmodes/gdb-ui.el: Remove.
7438 * progmodes/gud.el: Re-accommodate for gdb-mi.el.
7439
7440 2010-03-25 Glenn Morris <rgm@gnu.org>
7441
7442 * desktop.el (desktop-save-buffer-p): Don't mistakenly include
7443 all dired buffers, even tramp ones. (Bug#5755)
7444
7445 2010-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
7446
7447 Add "union tags" in mpc.el.
7448 * mpc.el: Remove backward compatibility code.
7449 (mpc-browser-tags): Change default.
7450 (mpc--find-memoize-union-tags): New var.
7451 (mpc-cmd-flush, mpc-cmd-special-tag-p): New fun.
7452 (mpc-cmd-find): Handle the case where the playlist does not exist.
7453 Handle union-tags.
7454 (mpc-cmd-list): Use mpc-cmd-special-tag-p. Handle union-tags.
7455 (mpc-cmd-add): Use mpc-cmd-flush.
7456 (mpc-tagbrowser-tag-name): New fun.
7457 (mpc-tagbrowser-buf): Use it.
7458 (mpc-songs-refresh): Use cond. Move to point-min as a fallback.
7459
7460 2010-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
7461
7462 Misc cleanup.
7463 * progmodes/make-mode.el (makefile-bsdmake-rule-action-regex):
7464 Use replace-regexp-in-string.
7465 (makefile-mode-abbrev-table): Merge defvar and define-abbrev-table.
7466 (makefile-imake-mode-syntax-table): Move init into defvar.
7467 (makefile-mode): Use define-derived-mode.
7468
7469 * progmodes/make-mode.el (makefile-rule-action-regex): Backtrack less.
7470 (makefile-make-font-lock-keywords): Adjust rule since submatch 1 may
7471 not be present any more.
7472
7473 2010-03-24 Juanma Barranquero <lekktu@gmail.com>
7474
7475 * faces.el (set-face-attribute): Fix typo in docstring.
7476 (face-valid-attribute-values): Reflow docstring.
7477
7478 2010-03-24 Glenn Morris <rgm@gnu.org>
7479
7480 * textmodes/flyspell.el (sgml-lexical-context): Autoload it (Bug#5752).
7481
7482 2010-03-24 Chong Yidong <cyd@stupidchicken.com>
7483
7484 * indent.el (indent-for-tab-command): Doc fix.
7485
7486 2010-03-24 Alan Mackenzie <acm@muc.de>
7487
7488 * progmodes/cc-engine.el (c-remove-stale-state-cache):
7489 Fix off-by-one error. Fixes bug #5747.
7490
7491 2010-03-24 Juanma Barranquero <lekktu@gmail.com>
7492
7493 * image-dired.el (image-dired-display-thumbs): Fix typo in docstring.
7494 (image-dired-read-comment): Doc fix.
7495
7496 * json.el (json-object-type, json-array-type, json-key-type)
7497 (json-false, json-null, json-read-number):
7498 * minibuffer.el (completion-in-region-functions):
7499 * calendar/cal-tex.el (cal-tex-daily-end, cal-tex-number-weeks)
7500 (cal-tex-cursor-week):
7501 * emacs-lisp/trace.el (trace-function):
7502 * eshell/em-basic.el (eshell/printnl):
7503 * eshell/em-dirs.el (eshell-last-dir-ring, eshell-parse-drive-letter)
7504 (eshell-read-last-dir-ring, eshell-write-last-dir-ring):
7505 * obsolete/levents.el (allocate-event, event-key, event-object)
7506 (event-point, event-process, event-timestamp, event-to-character)
7507 (event-window, event-x, event-x-pixel, event-y, event-y-pixel):
7508 * textmodes/reftex-vars.el (reftex-index-macros-builtin)
7509 (reftex-section-levels, reftex-auto-recenter-toc, reftex-toc-mode-hook)
7510 (reftex-cite-punctuation, reftex-search-unrecursed-path-first)
7511 (reftex-highlight-selection): Fix typos in docstrings.
7512
7513 2010-03-24 Juanma Barranquero <lekktu@gmail.com>
7514
7515 * minibuffer.el (completion-in-region-functions): Fix docstring typos.
7516
7517 2010-03-24 Glenn Morris <rgm@gnu.org>
7518
7519 * mail/rmail.el (rmail-highlight-face): Restore option deleted
7520 2008-02-13 without comment; mark it obsolete.
7521 (rmail-highlight-headers): Use rmail-highlight-face once more.
7522
7523 2010-03-24 Chong Yidong <cyd@stupidchicken.com>
7524
7525 * woman.el (woman2-process-escapes): Only consume the newline if
7526 the filler character is on a line by itself (Bug#5729).
7527
7528 2010-03-24 Kenichi Handa <handa@m17n.org>
7529
7530 * language/indian.el (devanagari-composable-pattern): Add more
7531 consonants.
7532
7533 2010-03-24 Michael Albinus <michael.albinus@gmx.de>
7534
7535 * net/trampver.el: Update release number.
7536
7537 2010-03-24 Michael Albinus <michael.albinus@gmx.de>
7538
7539 * net/tramp.el (tramp-find-executable):
7540 Use `tramp-get-connection-buffer'. Make the regexp for checking
7541 output of "wc -l" more robust.
7542 (tramp-find-shell): Use another shell but /bin/sh on OpenSolaris.
7543 (tramp-open-connection-setup-interactive-shell): Remove workaround
7544 for OpenSolaris bug, it is not needed anymore.
7545
7546 2010-03-24 Glenn Morris <rgm@gnu.org>
7547
7548 * emacs-lisp/cl-macs.el (defsubst*): Add autoload cookie. (Bug#4427)
7549
7550 2010-03-24 Wilson Snyder <wsnyder@wsnyder.org>
7551
7552 * files.el (auto-mode-alist): Accept more verilog file patterns.
7553
7554 2010-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
7555
7556 * vc-dir.el (vc-dir-headers): Abbreviate the working dir.
7557
7558 2010-03-24 Glenn Morris <rgm@gnu.org>
7559
7560 * vc-bzr.el (vc-bzr-log-edit-mode): Add --fixes support to
7561 log-edit-before-checkin-process.
7562
7563 * vc.el (vc-modify-change-comment): Pass MODE to vc-start-logentry.
7564
7565 * vc.el, vc-bzr.el, vc-hg.el (log-edit-mode): Declare.
7566
7567 * vc-dispatcher.el (vc-start-logentry): Doc fix.
7568 (log-view-process-buffer, log-edit-extra-flags): Declare.
7569
7570 * log-edit.el (log-edit-before-checkin-process): Doc fix.
7571
7572 2010-03-23 Sam Steingold <sds@gnu.org>
7573
7574 Fix bug#5620: recalculate all markers on compilation buffer
7575 modifications, not on file modifications.
7576 * progmodes/compile.el (buffer-modtime): New buffer-local variable:
7577 the buffer modification time, for buffers not associated with files.
7578 (compilation-mode): Create it.
7579 (compilation-filter): Update it.
7580 (compilation-next-error-function): Use it instead of
7581 `visited-file-modtime' for timestamp.
7582
7583 2010-03-23 Juri Linkov <juri@jurta.org>
7584
7585 Implement Occur multi-line matches.
7586 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01044.html
7587
7588 * replace.el (occur): Doc fix.
7589 (occur-engine): Set `begpt' to the beginning of the first line.
7590 Set `endpt' to the end of the last match line. At first, count
7591 line numbers between `origpt' and `begpt'. Split out code from
7592 `out-line' variable to new let-bindings `match-prefix' and
7593 `match-str'. In `out-line' add non-numeric prefix to all
7594 non-first lines of multi-line matches. Finally, count lines
7595 between `begpt' and `endpt' and add to `lines'.
7596
7597 2010-03-23 Juri Linkov <juri@jurta.org>
7598
7599 * replace.el (occur-accumulate-lines, occur-engine):
7600 Use `occur-engine-line' instead of duplicate code.
7601 (occur-engine-line): New function created from duplicate code
7602 in `occur-accumulate-lines' and `occur-engine'.
7603
7604 * replace.el (occur-engine-line): Add optional arg `keep-props'.
7605 (occur-accumulate-lines, occur-engine): Add arg `keep-props'.
7606
7607 2010-03-23 Juri Linkov <juri@jurta.org>
7608
7609 * finder.el: Remove TODO tasks.
7610
7611 * info.el (Info-finder-find-node): Add node "all"
7612 with all package info. Handle a list of multiple keywords
7613 separated by comma.
7614 (info-finder): In interactive use with a prefix argument,
7615 use `completing-read-multiple' to read a list of keywords
7616 separated by comma.
7617
7618 2010-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
7619
7620 Add a new completion style `substring'.
7621 * minibuffer.el (completion-basic--pattern): New function.
7622 (completion-basic-try-completion, completion-basic-all-completions):
7623 Use it.
7624 (completion-substring--all-completions)
7625 (completion-substring-try-completion)
7626 (completion-substring-all-completions): New functions.
7627 (completion-styles-alist): New style `substring'.
7628
7629 2010-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
7630
7631 Get rid of .elc files after removal of the corresponding .el.
7632 * Makefile.in (compile-clean): New target.
7633 (compile-main): Use it.
7634
7635 2010-03-22 Jan Djärv <jan.h.d@swipnet.se>
7636
7637 * Makefile.in (compile-main): cd to $(lisp) in a sub-shell, so we
7638 don't do make there. When compiling with separate object dir, there
7639 is no Makefile there.
7640
7641 2010-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
7642
7643 Get rid of the ELCFILES abomination, again.
7644 * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
7645 (all, compile): Don't call compile-last.
7646 (compile-main): Build the "elcfiles" list dynamically.
7647 (compile-targets): New (internal) target.
7648
7649 2010-03-21 Andreas Schwab <schwab@linux-m68k.org>
7650
7651 * Makefile.in (top_srcdir): Define.
7652 (abs_top_builddir): Define.
7653 (srcdir): Don't append `/..'.
7654 (EMACS): Use ${abs_top_builddir}.
7655 (all, compile, compile-always, compile-last): Don't set emacswd.
7656 (update-subdirs, update-authors): Use $(top_srcdir) instead of
7657 $(srcdir).
7658 (lisp): Use $(srcdir) instead of @srcdir@.
7659
7660 2010-03-21 Juri Linkov <juri@jurta.org>
7661
7662 Fix message of multi-line occur regexps and multi-buffer header lines.
7663 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00457.html
7664
7665 * replace.el (occur-1): Don't display regexp if it is longer
7666 than window-width. Use `query-replace-descr' to display regexp.
7667 (occur-engine): Don't display regexp in the buffer header for
7668 multi-buffer occur. Display a separate header line with total
7669 match count and regexp for multi-buffer occur.
7670 Use `query-replace-descr' to display regexp.
7671
7672 2010-03-20 Teodor Zlatanov <tzz@lifelogs.com>
7673
7674 * net/secrets.el: Fix parenthesis.
7675 (secrets-enabled): Fix parenthesis.
7676
7677 2010-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
7678
7679 Use more relative file and directory names.
7680 * Makefile.in (EMACS): Arrange for it to work when we chdir.
7681 (setwins, setwins_almost, setwins_for_subdirs):
7682 Don't `cd'; output relative names.
7683 (all, compile, compile-always, compile-last): Set emacswd.
7684 (custom-deps, finder-data, autoloads, update-subdirs, compile-last):
7685 Just cd to the lisp source dir so we can use relative file names.
7686
7687 * outline.el (hide-sublevels): Unfix the paren non-typo! (bug#5738).
7688
7689 2010-03-20 Glenn Morris <rgm@gnu.org>
7690
7691 * textmodes/rst.el: Use faces for font-lock customization, and make the
7692 old -face variables obsolete.
7693 (rst-block, rst-external, rst-definition, rst-directive, rst-comment)
7694 (rst-emphasis1, rst-emphasis2, rst-literal, rst-reference): New faces.
7695 (rst-block-face, rst-external-face, rst-definition-face)
7696 (rst-directive-face, rst-comment-face, rst-emphasis1-face)
7697 (rst-emphasis2-face, rst-literal-face, rst-reference-face):
7698 Make obsolete.
7699 (rst-font-lock-keywords-function): Update for above changes.
7700
7701 2010-03-20 Juri Linkov <juri@jurta.org>
7702
7703 * s-region.el:
7704 * obsolete/s-region.el: Move to obsolete.
7705
7706 2010-03-19 Juanma Barranquero <lekktu@gmail.com>
7707
7708 * vc-dispatcher.el (vc-do-command): Remove reference to `vc-path'.
7709
7710 2010-03-19 Dan Nicolaescu <dann@ics.uci.edu>
7711
7712 * vc-hooks.el (vc-path): Remove variable and obsolete declaration.
7713
7714 2010-03-19 Dan Nicolaescu <dann@ics.uci.edu>
7715
7716 Add special markup processing for commit logs.
7717 * log-edit.el (log-edit-extra-flags): New variable.
7718 (log-edit): Add new argument MODE. Use that mode when non-nil
7719 instead of the log-view-mode.
7720 (log-view-process-buffer): New function.
7721
7722 * vc.el: Document that the checkin method takes optional
7723 arguments. Document new backend specific method: log-view-mode.
7724 (vc-default-log-edit-mode): New function.
7725 (vc-checkin): Use a backend specific log-view-mode.
7726 Pass extra arguments to the checkin method.
7727 (vc-modify-change-comment): Pass a dummy extra argument.
7728
7729 * vc-dispatcher.el (vc-log-edit): Add a mode argument, pass it to
7730 log-edit.
7731 (vc-start-logentry): Add a mode argument, pass it to vc-log-edit.
7732 (vc-finish-logentry): Process the log buffer before passing it
7733 down. Pass log-edit-extra-flags.
7734
7735 * vc-bzr.el (vc-bzr-checkin): Pass extra arguments to the commit
7736 command.
7737 (log-edit-extra-flags, log-edit-before-checkin-process):
7738 New declarations.
7739
7740 * vc-hg.el (vc-hg-checkin): Pass extra arguments to the commit
7741 command.
7742 (log-edit-extra-flags, log-edit-before-checkin-process):
7743 New declarations.
7744 (vc-hg-log-edit-mode): New derived mode.
7745
7746 * vc-arch.el (vc-arch-checkin):
7747 * vc-cvs.el (vc-cvs-checkin):
7748 * vc-git.el (vc-git-checkin):
7749 * vc-mtn.el (vc-mtn-checkin):
7750 * vc-rcs.el (vc-rcs-checkin):
7751 * vc-sccs.el (vc-sccs-checkin):
7752 * vc-svn.el (vc-svn-checkin): Add an optional ignored argument.
7753
7754 2010-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
7755
7756 * outline.el (hide-sublevels): Don't hide trailing newline (and fix
7757 parent typo).
7758
7759 2010-03-19 Glenn Morris <rgm@gnu.org>
7760
7761 * password-cache.el (password-cache, password-cache-expiry): Autoload.
7762
7763 2010-03-18 Glenn Morris <rgm@gnu.org>
7764
7765 * emacs-lisp/autoload.el (autoload-rubric): Doc fix.
7766
7767 * replace.el (query-replace-history): Give it a doc string.
7768 (map-query-replace-regexp): Use query-replace-from-history-variable
7769 and query-replace-to-history-variable.
7770
7771 * mail/hashcash.el (declare-function): Remove duplicate definition.
7772
7773 * mail/emacsbug.el (report-emacs-bug-pretest-address):
7774 Make it an obsolete alias for report-emacs-bug-address.
7775 (message-strip-special-text-properties): Declare.
7776 (report-emacs-bug): Remove test for a pretest bug address.
7777 Combine message-mode-specific code.
7778
7779 * mail/supercite.el: Don't require sendmail.
7780 (mh-in-header-p): Declare rather than using with-no-warnings.
7781 (sc-no-blank-line-or-header): Use rfc822-goto-eoh rather than
7782 mail-header-end. Don't bind mysterious variable `kill-lines-magic'.
7783
7784 * calendar/cal-french.el: Convert to utf-8.
7785
7786 * files.el (interpreter-mode-alist): Use emacs-lisp-mode for
7787 Emacs scripts.
7788
7789 2010-03-16 Michael Albinus <michael.albinus@gmx.de>
7790
7791 * net/secrets.el (secrets-enabled): New variable. Use it instead
7792 of a subfeature.
7793
7794 2010-03-15 Michael Albinus <michael.albinus@gmx.de>
7795
7796 * net/secrets.el (top): Register the D-Bus signals only when the
7797 service "org.freedesktop.secrets" can be pinged.
7798 Provide subfeature `enabled'.
7799
7800 2010-03-14 Juri Linkov <juri@jurta.org>
7801
7802 Add finder unknown keywords.
7803
7804 * finder.el (finder-unknown-keywords): New function.
7805
7806 * info.el (Info-finder-find-node): Use `finder-unknown-keywords'
7807 to create a Finder node with unknown keywords.
7808
7809 2010-03-14 Juri Linkov <juri@jurta.org>
7810
7811 * finder.el (finder-compile-keywords): Replace `princ' with
7812 `prin1' on a list of symbols interned from keyword strings.
7813
7814 * emacs-lisp/lisp-mnt.el (lm-keywords-list): If `keywords' contains
7815 a comma, then split keywords using a comma and optional whitespace.
7816 Otherwise, split by whitespace.
7817
7818 * complete.el:
7819 * face-remap.el:
7820 * log-view.el:
7821 * net/hmac-def.el:
7822 * net/hmac-md5.el:
7823 * net/netrc.el:
7824 * progmodes/mixal-mode.el: Fix keywords.
7825
7826 2010-03-13 Michael Albinus <michael.albinus@gmx.de>
7827
7828 * Makefile.in (ELCFILES): Add net/secrets.elc.
7829
7830 * net/secrets.el: New file.
7831
7832 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
7833
7834 * facemenu.el (list-colors-display, list-colors-print): New arg
7835 callback. Use it to allow selecting colors.
7836
7837 * wid-edit.el (widget-image-insert): Insert image prop even if the
7838 current display is non-graphic.
7839 (widget-field-value-set): New fun.
7840 (editable-field): Use it.
7841 (widget-field-value-get): Clean up unused var.
7842 (widget-color-value-create, widget-color--choose-action):
7843 New funs. Allow using list-colors-display to choose color.
7844
7845 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
7846
7847 * cus-edit.el: Resort topmost custom groups.
7848 (custom-buffer-sort-alphabetically): Default to t.
7849 (customize-apropos): Use apropos-parse-pattern.
7850 (custom-search-field): New var.
7851 (custom-buffer-create-internal): Add custom-apropos search field.
7852 (custom-add-parent-links): Don't display parent doc.
7853 (custom-group-value-create): Don't sort top-level custom group.
7854 (custom-magic-value-create): Show visibility button before option name.
7855
7856 (custom-variable-state): New fun, from custom-variable-state-set.
7857 (custom-variable-state-set): Use it.
7858 (custom-group-value-create): Hide options with standard values
7859 using the :hidden-states property. Use progress reporter.
7860
7861 (custom-show): Simplify.
7862 (custom-visibility): Disable images by default.
7863 (custom-variable): New property :hidden-states.
7864 (custom-variable-value-create): Enable images for
7865 custom-visibility widgets. Use :hidden-states property to
7866 determine initial visibility.
7867
7868 * wid-edit.el (widget-image-find): Give images center ascent.
7869 (visibility): Add :on-image and :off-image properties.
7870 (widget-visibility-value-create): Use them.
7871
7872 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
7873
7874 * cus-edit.el (processes): Remove from development group.
7875 (oop, hypermedia): Delete group.
7876 (comm): Promote to top-level group.
7877
7878 * net/browse-url.el (browse-url):
7879 * net/xesam.el (xesam):
7880 * net/tramp.el (tramp):
7881 * net/goto-addr.el (goto-address):
7882 * net/ange-ftp.el (ange-ftp): Put in comm group.
7883
7884 * view.el (view): Remove from editing group.
7885
7886 * uniquify.el (uniquify): Put in files group.
7887
7888 * net/browse-url.el (browse-url):
7889 * ps-print.el (postscript): Put in external group.
7890
7891 * cus-edit.el (outlines):
7892 * textmodes/text-mode.el (text-mode-hook):
7893 * textmodes/table.el (table):
7894 * textmodes/picture.el (picture):
7895 * outline.el (outlines): Put in wp group.
7896
7897 * nxml/nxml-mode.el (nxml): Remove from wp group.
7898
7899 * net/tramp-imap.el (tramp-imap): Put in tramp group.
7900
7901 * mail/metamail.el (metamail): Remove from hypermedia group.
7902
7903 * cus-edit.el (abbrev):
7904 * whitespace.el (whitespace):
7905 * vcursor.el (vcursor):
7906 * reveal.el (reveal):
7907 * hl-line.el (hl-line): Put in convenience group.
7908
7909 * epg-config.el (epg): Put in data group.
7910
7911 * emulation/pc-select.el (pc-select): Put in emulations group.
7912
7913 * calculator.el (calculator): Put in applications group.
7914
7915 2010-03-12 Dan Nicolaescu <dann@ics.uci.edu>
7916
7917 Add .dir-locals.el support for file-less buffers.
7918 * files.el (hack-local-variables): Split out code to apply local
7919 variable settings ...
7920 (hack-local-variables-apply): ... here. New function.
7921 (hack-dir-local-variables): Use the default directory for when the
7922 buffer does not have an associated file.
7923 (hack-dir-local-variables-non-file-buffer): New function.
7924 * diff-mode.el (diff-mode):
7925 * vc-annotate.el (vc-annotate-mode):
7926 * vc-dir.el (vc-dir-mode):
7927 * log-edit.el (log-edit-mode):
7928 * log-view.el (log-view-mode): Call hack-dir-local-variables-non-file-buffer.
7929
7930 2010-03-12 Dan Nicolaescu <dann@ics.uci.edu>
7931
7932 Add support for shelving snapshots and for showing shelves.
7933 * vc-bzr.el (vc-bzr-shelve-show, vc-bzr-shelve-show-at-point)
7934 (vc-bzr-shelve-apply-and-keep-at-point, vc-bzr-shelve-snapshot):
7935 New functions.
7936 (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
7937 (vc-bzr-extra-menu-map): Map them.
7938
7939 2010-03-11 Glenn Morris <rgm@gnu.org>
7940
7941 * cus-edit.el (customize-changed-options-previous-release):
7942 Bump to 23.1.
7943
7944 * image.el (image-animate-max-time): Fix :version tag.
7945
7946 2010-03-10 Chong Yidong <cyd@stupidchicken.com>
7947
7948 * Branch for 23.2.
7949
7950 2010-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
7951
7952 * vc-git.el (vc-git-revision-table): Include remote branches.
7953
7954 2010-03-10 Kim F. Storm <storm@cua.dk>
7955
7956 Animated image API.
7957 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00211.html
7958
7959 * image.el (image-animate-max-time): New defcustom.
7960 (image-animated-types): New defconst.
7961 (create-animated-image, image-animate-timer)
7962 (image-animate-start, image-animate-stop, image-animate-timeout)
7963 (image-animated-p): New functions.
7964
7965 * image-mode.el (image-toggle-display-image):
7966 Replace `create-image' with `create-animated-image'.
7967
7968 2010-03-09 Miles Bader <miles@gnu.org>
7969
7970 * vc-git.el (vc-git-print-log): Use "tformat:" for shortlog,
7971 instead of "format:"; this ensures that the output is
7972 newline-terminated.
7973
7974 2010-03-08 Chong Yidong <cyd@stupidchicken.com>
7975
7976 * mail/rfc822.el (rfc822-addresses): Use nested catches to ensure
7977 that all errors are caught, and that the return value is always a
7978 list (Bug#5692).
7979
7980 2010-03-08 Kenichi Handa <handa@m17n.org>
7981
7982 * language/misc-lang.el (windows-1256): New coding system.
7983 (cp1256): New alias of windows-1256 (bug#5690).
7984
7985 2010-03-07 Andreas Schwab <schwab@linux-m68k.org>
7986
7987 * mail/rfc822.el (rfc822-addresses): Move catch clause down around
7988 call to rfc822-bad-address. (Bug#5692)
7989
7990 2010-03-07 Štěpán Němec <stepnem@gmail.com> (tiny change)
7991
7992 * vc-git.el (vc-git-annotate-extract-revision-at-line):
7993 Use vc-git-root as default directory for revision path (Bug#5657).
7994
7995 2010-03-06 Chong Yidong <cyd@stupidchicken.com>
7996
7997 * calculator.el (calculator): Don't bind split-window-keep-point
7998 (Bug#5674).
7999
8000 2010-03-06 Stefan Monnier <monnier@iro.umontreal.ca>
8001
8002 * vc-git.el: Re-flow to fit into 80 columns.
8003 (vc-git-after-dir-status-stage, vc-git-dir-status-goto-stage):
8004 Remove spurious `quote' element in each case alternative.
8005 (vc-git-show-log-entry): Use prog1.
8006 (vc-git-after-dir-status-stage): Remove unused var `remaining'.
8007
8008 2010-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
8009
8010 * man.el (Man-files-regexp): Tighten up the regexp (bug#5686).
8011
8012 2010-03-03 Chong Yidong <cyd@stupidchicken.com>
8013
8014 * macros.el (insert-kbd-macro): Look up keyboard macro using the
8015 definition, not the name (Bug#5481).
8016
8017 2010-03-03 Štěpán Němec <stepnem@gmail.com> (tiny change)
8018
8019 * subr.el (momentary-string-display): Don't overwrite the MESSAGE
8020 argument with a local variable. (Bug#5670)
8021
8022 2010-03-02 Juri Linkov <juri@jurta.org>
8023
8024 * info.el (Info-index-next): Decrement line number by 2. (Bug#5652)
8025
8026 2010-03-02 Michael Albinus <michael.albinus@gmx.de>
8027
8028 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Fix an
8029 error when FILENAME and NEWNAME are existing remote directories.
8030
8031 * net/tramp-compat.el (tramp-compat-make-temp-file): Add optional
8032 parameter DIR-FLAG.
8033
8034 2010-03-02 Glenn Morris <rgm@gnu.org>
8035
8036 * calendar/cal-hebrew.el (holiday-hebrew-passover): Fix date
8037 of Yom HaAtzma'ut when it falls on a Monday (rule changed in 2004).
8038
8039 2010-03-01 Kenichi Handa <handa@m17n.org>
8040
8041 * language/burmese.el (burmese-composable-pattern): Rename from
8042 myanmar-composable-pattern.
8043
8044 * international/characters.el (script-list):
8045 * international/fontset.el (script-representative-chars):
8046 Change myanmar to burmese.
8047 (otf-script-alist): Likewise.
8048 (setup-default-fontset): Likewise. Re-fix :otf spec.
8049
8050 2010-02-28 Katsumi Yamaoka <yamaoka@jpl.org>
8051
8052 * menu-bar.el (menu-bar-manuals-menu): Fix typo.
8053
8054 2010-02-28 Jan Djärv <jan.h.d@swipnet.se>
8055
8056 * scroll-bar.el (scroll-bar-drag-1): Add save-excursion, bug #5654.
8057
8058 2010-02-28 Michael Albinus <michael.albinus@gmx.de>
8059
8060 * net/tramp.el (tramp-handle-write-region): START can be a string.
8061 Take care in the checks. Reported by Dan Davison
8062 <davison@stats.ox.ac.uk>.
8063
8064 2010-02-28 Michael Albinus <michael.albinus@gmx.de>
8065
8066 * net/dbus.el (dbus-introspect, dbus-get-property)
8067 (dbus-set-property, dbus-get-all-properties):
8068 Use `dbus-call-method' when noninteractive. (Bug#5645)
8069
8070 2010-02-28 Chong Yidong <cyd@stupidchicken.com>
8071
8072 * textmodes/reftex-toc.el (reftex-toc-promote-prepare):
8073 * emacs-lisp/elint.el (elint-add-required-env):
8074 * calendar/icalendar.el (icalendar--add-diary-entry):
8075 * calc/calcalg2.el (math-tracing-integral):
8076 * files.el (recover-session-finish): Use with-current-buffer
8077 instead of save-excursion.
8078
8079 2010-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
8080
8081 Fix in-buffer completion when after-change-functions modify the buffer.
8082 * minibuffer.el (completion--replace): New function.
8083 (completion--do-completion): Use it and use relative movement.
8084
8085 2010-02-27 Chong Yidong <cyd@stupidchicken.com>
8086
8087 * international/fontset.el (setup-default-fontset): Fix :otf spec.
8088
8089 2010-02-27 Jeremy Whitlock <jcscoobyrs@gmail.com> (tiny change)
8090
8091 * progmodes/python.el (python-pdbtrack-stack-entry-regexp):
8092 Allow the characters _<> in the stack entry (Bug#5653).
8093
8094 2010-02-26 Kenichi Handa <handa@m17n.org>
8095
8096 * language/burmese.el: Fix entries in composition-function-table.
8097 (myanmar-composable-pattern): New variable.
8098
8099 * international/fontset.el (setup-default-fontset): Add an entry
8100 for myanmar.
8101
8102 * international/characters.el (script-list): Add Myanmar
8103 Extended-A.
8104
8105 2010-02-26 Glenn Morris <rgm@gnu.org>
8106
8107 * custom.el (custom-initialize-delay): Doc fix.
8108
8109 * mail/sendmail.el (send-mail-function): Autoload the call
8110 to custom-initialize-delay, not otherwise preserved in loaddefs.el.
8111
8112 2010-02-24 Chong Yidong <cyd@stupidchicken.com>
8113
8114 * files.el (hack-local-variables-filter): For eval forms, also
8115 check safe-local-variable-p (Bug#5636).
8116
8117 2010-02-22 Michael Albinus <michael.albinus@gmx.de>
8118
8119 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Protect
8120 setting the modes by `ignore-errors'. It might fail, for example
8121 if the file is not owned by the user but the group.
8122 (tramp-handle-write-region): Ensure, that `tmpfile' is always readable.
8123
8124 2010-02-21 Chong Yidong <cyd@stupidchicken.com>
8125
8126 * files.el (directory-listing-before-filename-regexp): Use
8127 stricter matching for iso-style dates, to avoid false matches with
8128 date-like filenames (Bug#5597).
8129
8130 * htmlfontify.el (htmlfontify): Doc fix.
8131
8132 * eshell/eshell.el (eshell): Doc fix.
8133
8134 * startup.el (fancy-about-screen): In mode-line, apply
8135 mode-line-buffer-id face only to the buffer name (Bug#5613).
8136
8137 2010-02-20 Kevin Ryde <user42@zip.com.au>
8138
8139 * progmodes/compile.el (compilation-error-regexp-alist-alist):
8140 In `watcom' anchor regexp to start of line, to avoid slowness
8141 (Bug#5599).
8142
8143 2010-02-20 Eli Zaretskii <eliz@gnu.org>
8144
8145 * subr.el (remove-yank-excluded-properties): Explain in a comment
8146 why `category' property is removed.
8147
8148 2010-02-19 Chong Yidong <cyd@stupidchicken.com>
8149
8150 * isearch.el (isearch-update-post-hook, isearch-update): Revert
8151 2010-02-17 change.
8152
8153 2010-02-19 Ulf Jasper <ulf.jasper@web.de>
8154
8155 * calendar/icalendar.el (icalendar--convert-ordinary-to-ical)
8156 (icalendar--convert-weekly-to-ical)
8157 (icalendar--convert-yearly-to-ical)
8158 (icalendar--convert-block-to-ical)
8159 (icalendar--convert-cyclic-to-ical)
8160 (icalendar--convert-anniversary-to-ical): Take care of time
8161 specifications where hour has 1-digit only (Bug#5549).
8162
8163 2010-02-19 Nick Roberts <nickrob@snap.net.nz>
8164
8165 * progmodes/gdb-ui.el (gdb-assembler-handler): Accommodate change
8166 of disassemble output in GDB 7.1.
8167
8168 2010-02-19 Glenn Morris <rgm@gnu.org>
8169
8170 * progmodes/f90.el (f90-electric-insert): Give it a delete-selection
8171 property. (Bug#5593)
8172
8173 2010-02-18 Sam Steingold <sds@gnu.org>
8174
8175 * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
8176
8177 2010-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
8178
8179 Use abbreviated file names in bookmarks (bug#5591).
8180 * bookmark.el (bookmark-maybe-load-default-file): Remove redundant
8181 calls to expand-file-name.
8182 (bookmark-relocate): Use abbreviated file names in bookmarks.
8183 (bookmark-load): Use abbreviated file names in messages.
8184
8185 2010-02-18 Michael Albinus <michael.albinus@gmx.de>
8186
8187 * net/tramp.el (tramp-handle-directory-files): When FULL, do not
8188 expand "." and "..". Reported by Thierry Volpiatto
8189 <thierry.volpiatto@gmail.com>.
8190
8191 2010-02-18 Michael Albinus <michael.albinus@gmx.de>
8192
8193 * net/tramp.el (tramp-handle-insert-file-contents): Set always the
8194 permissions of the temporary file to "0600". In case the remote
8195 file has no read permissions for the owner, there might be
8196 problems otherwise. Reported by Ole Laursen <olau@iola.dk>.
8197
8198 22010-02-18 Glenn Morris <rgm@gnu.org>
8199
8200 * emacs-lisp/authors.el (authors-renamed-files-alist):
8201 Add entries for INSTALL.CVS.
8202
8203 2010-02-17 Mark A. Hershberger <mah@everybody.org>
8204
8205 * vc-bzr.el: Fix typo in Known Bugs section.
8206
8207 * isearch.el (isearch-update-post-hook): New hook.
8208 (isearch-update): Use the new hook.
8209
8210 2010-02-16 Michael Albinus <michael.albinus@gmx.de>
8211
8212 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
8213 Fix errors in copying directories.
8214 (tramp-handle-add-name-to-file, tramp-handle-copy-directory)
8215 (tramp-do-copy-or-rename-file, tramp-handle-delete-directory)
8216 (tramp-handle-delete-file)
8217 (tramp-handle-dired-recursive-delete-directory)
8218 (tramp-handle-write-region): Flush also the cache for the upper
8219 directory.
8220
8221 2010-02-16 Chong Yidong <cyd@stupidchicken.com>
8222
8223 * simple.el (save-interprogram-paste-before-kill): Doc fix.
8224
8225 * cus-edit.el (hardware): Doc fix.
8226
8227 * man.el (man): Add to external custom group.
8228
8229 * delim-col.el (columns): Move to wp custom group.
8230
8231 * doc-view.el (doc-view): Add to data custom group.
8232
8233 * nxml/nxml-mode.el (nxml-faces): Remove from font-lock-faces group.
8234
8235 * textmodes/flyspell.el (flyspell-word): Obey the offset specified
8236 by ispell-parse-output (Bug#5575).
8237
8238 2010-02-16 Kenichi Handa <handa@m17n.org>
8239
8240 * international/ja-dic-cnv.el (iso-2022-7bit-short): Delete it.
8241 (skkdic-convert-okuri-ari): Ignore lines starting with '>'.
8242 (skkdic-convert): Use `euc-japan' coding system for writing.
8243
8244 2010-02-16 Glenn Morris <rgm@gnu.org>
8245
8246 * textmodes/tex-mode.el (tex-bibtex-file): Expand the result of
8247 tex-main-file before using it. (Bug#5562)
8248
8249 2010-02-15 Stefan Monnier <monnier@iro.umontreal.ca>
8250
8251 * emacs-lisp/advice.el (ad-compile-function): Suppress byte-compiler
8252 warnings, since it is annoying for the user to see them each time he
8253 runs the code.
8254
8255 2010-02-15 Michael Albinus <michael.albinus@gmx.de>
8256
8257 * net/tramp.el (tramp-process-actions, tramp-read-passwd):
8258 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection): Use VEC
8259 instead of PROC for caching "first-password-request". Otherwise,
8260 new processes would not profit from passwords already entered.
8261
8262 * net/tramp-cache.el (tramp-dump-connection-properties):
8263 Don't save "first-password-request" property.
8264
8265 2010-02-14 Juanma Barranquero <lekktu@gmail.com>
8266
8267 * outline.el (outline-head-from-level):
8268 * simple.el (with-wrapper-hook):
8269 * emacs-lisp/elint.el (elint-extra-errors, elint-current-buffer)
8270 (elint-defun, elint-buffer-env, elint-top-form-logged)
8271 (elint-unbound-variable):
8272 * textmodes/reftex-toc.el (reftex-toc-newhead-from-alist):
8273 Fix typos in docstrings.
8274
8275 2010-02-14 Michael Albinus <michael.albinus@gmx.de>
8276
8277 * files.el (insert-directory): When WILDCARD-REGEXP and
8278 FULL-DIRECTORY-P are nil, insert the file entry instead of the
8279 whole directory. (Bug#5551)
8280
8281 * net/ange-ftp.el (ange-ftp-insert-directory): Insert " " for
8282 dired's alignment sanity. (Bug#5516)
8283
8284 2010-02-14 Juri Linkov <juri@jurta.org>
8285
8286 * man.el (Man-fontify-manpage, Man-cleanup-manpage):
8287 Remove remaining ^H with their preceding chars. (Bug#5566)
8288
8289 2010-02-13 Glenn Morris <rgm@gnu.org>
8290
8291 * simple.el (transpose-subr): Give it a doc-string.
8292
8293 * textmodes/paragraphs.el (transpose-paragraphs, transpose-sentences):
8294 Doc fixes.
8295
8296 2010-02-12 Juri Linkov <juri@jurta.org>
8297
8298 * arc-mode.el (archive-unique-fname): Make directories for nested
8299 archives. (Bug#5540)
8300
8301 2010-02-12 Juri Linkov <juri@jurta.org>
8302
8303 * ffap.el (dired-at-point): Fix docstring. (Bug#5565)
8304
8305 2010-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
8306
8307 * subr.el (copy-overlay): Handle deleted overlays.
8308
8309 * man.el (Man-completion-table): Don't signal an error if we can't run
8310 manual-program (bug#4056).
8311
8312 2010-02-10 Juanma Barranquero <lekktu@gmail.com>
8313
8314 * textmodes/artist.el (artist-mt): Fix typos in docstring.
8315
8316 2010-02-10 Thierry Volpiatto <thierry.volpiatto@gmail.com>
8317
8318 * info.el (Info-bookmark-jump): Simplify.
8319
8320 * bookmark.el (bookmark-handle-bookmark): Catch the right error.
8321 (bookmark-default-handler): Accept new bookmark field `buffer'.
8322
8323 2010-02-10 Chong Yidong <cyd@stupidchicken.com>
8324
8325 * iswitchb.el (iswitchb-completions): Revert last change.
8326
8327 2010-02-10 Michael Albinus <michael.albinus@gmx.de>
8328
8329 * ls-lisp.el (ls-lisp-insert-directory): When WILDCARD-REGEXP and
8330 FULL-DIRECTORY-P are nil, and FILE is absolute, expand it.
8331 This prevents file names like "~/" being listed literally.
8332
8333 2010-02-10 Dan Nicolaescu <dann@ics.uci.edu>
8334
8335 * term/xterm.el (xterm-maybe-set-dark-background-mode):
8336 Remove dead code. (Bug#5546)
8337
8338 2010-02-09 Chong Yidong <cyd@stupidchicken.com>
8339
8340 * eshell/em-ls.el (eshell-ls-applicable): Frob file attributes
8341 correctly (Bug#5548).
8342
8343 2010-02-08 Jose E. Marchesi <jemarch@gnu.org>
8344
8345 * progmodes/ada-mode.el (ada-in-numeric-literal-p): New function.
8346 (ada-adjust-case): Don't adjust case in hexadecimal number literals.
8347
8348 2010-02-08 Kenichi Handa <handa@m17n.org>
8349
8350 * international/mule-util.el (with-coding-priority): Add autoload
8351 cookie for putting `lisp-indent-function'.
8352
8353 2010-02-07 Glenn Morris <rgm@gnu.org>
8354
8355 * progmodes/f90.el (f90-font-lock-keywords-1, f90-font-lock-keywords-2):
8356 Move F2003 named interfaces from keywords-2 to keywords-1, and
8357 use function-name-face rather than constant-face.
8358 Simplify "abstract interface" regexp.
8359
8360 2010-02-07 Chong Yidong <cyd@stupidchicken.com>
8361
8362 * eshell/esh-util.el (eshell-file-attributes): New optional arg
8363 ID-FORMAT. Pass it to `file-attributes'.
8364
8365 * eshell/em-ls.el (eshell-do-ls): Use it (Bug#5528).
8366
8367 2010-02-07 sj <prime.wizard+emacs@gmail.com> (tiny change)
8368
8369 * faces.el (set-face-attribute): Allow calling
8370 internal-set-lisp-face-attribute with 'unspecified family and
8371 foundry argument (Bug#5536).
8372
8373 2010-02-07 Glenn Morris <rgm@gnu.org>
8374
8375 * progmodes/f90.el (f90-font-lock-keywords-2)
8376 (f90-looking-at-type-like, f90-looking-at-program-block-end):
8377 Handle F2003 named interfaces.
8378
8379 2010-02-06 Chong Yidong <cyd@stupidchicken.com>
8380
8381 * progmodes/cc-mode.el (c-common-init): Bind temporary variables
8382 beg and end before calling c-get-state-before-change-functions.
8383
8384 2010-02-06 Dan Nicolaescu <dann@ics.uci.edu>
8385
8386 * vc-bzr.el (vc-bzr-dir-extra-headers): Disable the pending merges header.
8387
8388 2010-02-05 Juri Linkov <juri@jurta.org>
8389
8390 * doc-view.el (doc-view-mode):
8391 * image-mode.el (image-mode): Put property mode-class=special.
8392 (Bug#4896)
8393
8394 2010-02-05 Mark A. Hershberger <mah@everybody.org>
8395
8396 * vc-svn.el (vc-svn-revision-table): New function.
8397
8398 2010-02-05 Michael Albinus <michael.albinus@gmx.de>
8399
8400 * net/ange-ftp.el (ange-ftp-insert-directory):
8401 * net/tramp-imap.el (tramp-imap-handle-insert-directory):
8402 * net/tramp-smb.el (tramp-smb-handle-insert-directory):
8403 Handle also directories. (Bug#5478)
8404
8405 2010-02-05 Glenn Morris <rgm@gnu.org>
8406
8407 * progmodes/f90.el (f90-font-lock-keywords-2): Fix `enum'.
8408
8409 2010-02-05 Chong Yidong <cyd@stupidchicken.com>
8410
8411 * startup.el (command-line-1): Convert options beginning with a
8412 single dash as well (Bug#5519).
8413
8414 2010-02-05 Stefan Monnier <monnier@iro.umontreal.ca>
8415
8416 Make `initials' completion work for /hh -> /home/horn again (bug#5524).
8417 * minibuffer.el (completion-initials-expand): Only check the presence
8418 of delims *within* the boundaries, since otherwise the / delim is
8419 always found for files.
8420
8421 Fix up various corner case problems.
8422 * doc-view.el (doc-view-last-page-number): New function.
8423 (doc-view-mode, doc-view-last-page, doc-view-goto-page): Use it.
8424 (doc-view-goto-page): Avoid inf-loops when the conversion fails.
8425 (doc-view-kill-proc): Avoid inf-loop in freak cases.
8426 (doc-view-reconvert-doc): Use the new recursive delete-directory.
8427 (doc-view-convert-current-doc): Don't create the resolution.el file
8428 here any more.
8429 (doc-view-pdf/ps->png): Do it here instead.
8430 (doc-view-already-converted-p): Check that resolution.el is present.
8431 (doc-view-pdf->png): Don't rely on doc-view-pdf/ps->png for the few
8432 windows that are not yet showing images.
8433
8434 2010-02-04 Michael Albinus <michael.albinus@gmx.de>
8435
8436 * dired.el (dired-revert): If DIRED-DIRECTORY is a cons cell, call
8437 `dired-uncache' for every elemnt which is an absolute file name.
8438
8439 * net/tramp.el (tramp-handle-dired-uncache): When DIR is not a
8440 directory, handle its directory component.
8441 (tramp-handle-file-remote-p): Let-bind `tramp-verbose' to 3; this
8442 function is called permanently and creates noise, otherwise.
8443
8444 * net/tramp-imap.el (tramp-imap-handle-insert-directory):
8445 * net/tramp-smb.el (tramp-smb-handle-insert-directory):
8446 Handle the case, FILENAME is not in `default-directory'. (Bug#5478)
8447
8448 2010-02-04 David Burger <dburger@google.com> (tiny change)
8449
8450 * macros.el (apply-macro-to-region-lines):
8451 Minor simplification. (Bug#5485)
8452
8453 2010-02-04 Glenn Morris <rgm@gnu.org>
8454
8455 * mail/rmail.el (rmail-show-message-1): Handle malformed
8456 quoted-printable text. (Bug#5441)
8457
8458 * mail/mail-utils.el (mail-unquote-printable-region): Doc fix.
8459
8460 * simple.el (visual-line-mode): Capitalize lighter.
8461
8462 2010-02-03 John Wiegley <jwiegley@gmail.com>
8463
8464 * iswitchb.el (iswitchb-completions): Add bookmark files to the
8465 list of files considered for "virtual buffer" completions.
8466
8467 2010-02-03 Michael Albinus <michael.albinus@gmx.de>
8468
8469 * net/ange-ftp.el (ange-ftp-insert-directory): Parse directory
8470 also in case of (and (not full) (not wildcard)). This is needed
8471 when dired is called with a list of files, which are not in
8472 `default-directory'. (Bug#5478)
8473
8474 2010-02-03 Stefan Monnier <monnier@iro.umontreal.ca>
8475
8476 * vc-hooks.el (vc-path): Make it an obsolete var, rather than function.
8477
8478 2010-02-02 Juri Linkov <juri@jurta.org>
8479
8480 * textmodes/ispell.el (ispell-message-text-end): Remove final newline
8481 from unidiff to allow function-line after @@.
8482
8483 2010-02-02 Juri Linkov <juri@jurta.org>
8484
8485 * ediff-util.el (ediff-file-checked-in-p): Replace '(nil CVS) by
8486 '(RCS SCCS) with inverted condition.
8487
8488 2010-02-02 Michael Albinus <michael.albinus@gmx.de>
8489
8490 * net/ange-ftp.el (ange-ftp-skip-msgs): Ignore all ""^500 .*AUTH"
8491 messages.
8492
8493 2010-02-01 Juri Linkov <juri@jurta.org>
8494
8495 * arc-mode.el (archive-zip-extract): Use `member-ignore-case' to
8496 compare with "pkunzip" and "pkzip" instead of only "pkzip".
8497 In the `archive-extract-by-stdout' branch use `shell-quote-argument'
8498 only when (car archive-zip-extract) is "unzip". (Bug#5475)
8499
8500 2010-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
8501
8502 * doc-view.el (doc-view-new-window-function): Be a bit more defensive.
8503 (doc-view-revert-buffer): New command.
8504 (doc-view-mode-map): Use it.
8505
8506 2010-02-01 Dan Nicolaescu <dann@ics.uci.edu>
8507
8508 * vc-bzr.el (vc-bzr-dir-extra-headers): Add a header when a
8509 pending merge is detected.
8510
8511 2010-01-31 Juri Linkov <juri@jurta.org>
8512
8513 * progmodes/grep.el (zrgrep): Call `grep-compute-defaults' at the
8514 beginning of interactive spec like all other grep commands do.
8515 Put "all" in front of "gz". (Bug#5260)
8516
8517 2010-01-29 Dan Nicolaescu <dann@ics.uci.edu>
8518
8519 * vc-bzr.el (vc-bzr-after-dir-status): Match another renaming indicator.
8520
8521 2010-01-29 Chong Yidong <cyd@stupidchicken.com>
8522
8523 * dirtrack.el (dirtrack): Warn instead of signalling error if the
8524 regexp is incorrect (Bug#5476).
8525
8526 2010-01-29 Michael Albinus <michael.albinus@gmx.de>
8527
8528 * net/tramp.el (tramp-handle-insert-directory): Handle also
8529 symlinks, when FILENAME is not in `default-directory'.
8530
8531 2010-01-28 Michael Albinus <michael.albinus@gmx.de>
8532
8533 * net/ange-ftp.el (ange-ftp-insert-directory): Handle the case,
8534 FILE is not in `default-directory'. (Bug#5478)
8535
8536 * net/tramp.el (tramp-handle-insert-directory): Simplify handling
8537 of SWITCHES. Handle the case, FILENAME is not in
8538 `default-directory'. (Bug#5478)
8539 (tramp-register-file-name-handlers): Add safe-magic property.
8540
8541 2010-01-28 Chong Yidong <cyd@stupidchicken.com>
8542
8543 * arc-mode.el (archive-zip-extract): Quote the argument passed to
8544 unzip (Bug#5475).
8545
8546 2010-01-28 Nil Geisweiller <ngeiswei@googlemail.com> (tiny change)
8547
8548 * progmodes/flymake.el (flymake-allowed-file-name-masks)
8549 (flymake-master-make-header-init): Add other C++ filename masks.
8550 (flymake-find-possible-master-files)
8551 (flymake-check-patch-master-file-buffer): Doc fixes (Bug#5488).
8552
8553 2010-01-28 Michael Albinus <michael.albinus@gmx.de>
8554
8555 Fix some busybox annoyances.
8556
8557 * net/tramp.el (tramp-wrong-passwd-regexp): Add "Timeout, server
8558 not responding." string.
8559 (tramp-open-connection-setup-interactive-shell): Dump stty
8560 settings. Enable "neveropen" arg for all `tramp-send-command'
8561 calls. Handle "=" in variable values properly.
8562 (tramp-find-inline-encoding): Raise an error, when no encoding is
8563 found.
8564 (tramp-wait-for-output): Check, whether PROC buffer is available.
8565 Remove spurious " ^H" sequences, sent by busybox.
8566 (tramp-get-ls-command): Suppress coloring, if possible.
8567
8568 2010-01-28 Glenn Morris <rgm@gnu.org>
8569
8570 * vc-svn.el (vc-svn-update): Use "svn --non-interactive". (Bug#4280)
8571
8572 * log-edit.el (log-edit-strip-single-file-name): Add missing
8573 :safe, :group, and :version tags.
8574
8575 2010-01-27 Stephen Berman <stephen.berman@gmx.net>
8576
8577 * calendar/diary-lib.el (diary-unhide-everything): Handle narrowed
8578 buffers. (Bug#5477)
8579
8580 2010-01-27 David De La Harpe Golden <david@harpegolden.net>
8581
8582 * files.el (delete-directory): Handle moving to trash without
8583 first doing recursion (Bug#5436).
8584
8585 2010-01-26 Dan Nicolaescu <dann@ics.uci.edu>
8586
8587 * vc-hooks.el (vc-path): Mark as obsolete.
8588
8589 2010-01-25 Dan Nicolaescu <dann@ics.uci.edu>
8590
8591 * vc-annotate.el (vc-annotate-revision-at-line): Compare file
8592 names too.
8593
8594 * vc-bzr.el (vc-bzr-print-log): Use the more compact --line option
8595 for the short log.
8596 (vc-bzr-log-view-mode): Adjust regexp for the above change.
8597
8598 2010-01-25 Mark A. Hershberger <mah@everybody.org>
8599
8600 * progmodes/python.el: Replace reference to obsolete c-subword-mode.
8601
8602 * vc-bzr.el (vc-bzr-revision-table): New function.
8603
8604 2010-01-25 Eric Hanchrow <eric.hanchrow@gmail.com> (tiny change)
8605
8606 * vc-git.el (vc-git-dir-status-goto-stage): Pass --relative to the
8607 diff-index command. This requires at least git-1.5.5. (Bug#1589).
8608
8609 2010-01-24 Dan Nicolaescu <dann@ics.uci.edu>
8610
8611 Remove support for adding --signoff on commit.
8612 Future support will use an incompatible generic mechanism.
8613 * vc-git.el (vc-git-add-signoff): Remove variable.
8614 (vc-git-toggle-signoff): Remove function.
8615 (vc-git-extra-menu-map): Do not bind vc-git-toggle-signoff.
8616
8617 * term/xterm.el (xterm-maybe-set-dark-background-mode): Rename
8618 from xterm-set-background-mode. Return t if the background mode
8619 was set.
8620 (terminal-init-xterm): Move tty-set-up-initial-frame-faces
8621 earlier, call it again in case the background mode has changed.
8622
8623 2010-01-23 Dmitri Paduchikh <dpaduch@k66.ru> (tiny change)
8624
8625 * emacs-lisp/advice.el (ad-set-orig-definition): Fix typo
8626 (Bug#3541).
8627
8628 2010-01-23 Chong Yidong <cyd@stupidchicken.com>
8629
8630 * emacs-lisp/assoc.el (aelement): Doc fix.
8631 (aput, adelete, amake): Use lexical-let (Bug#5450).
8632
8633 2010-01-23 Stephen Leake <stephen_leake@member.fsf.org>
8634
8635 * progmodes/ada-mode.el (ada-in-paramlist-p): Pragma syntax
8636 is the same as subprogram call, not declaration. (Bug#5435).
8637
8638 2010-01-23 Michael Albinus <michael.albinus@gmx.de>
8639
8640 * net/tramp-smb.el (tramp-smb-conf): New defcustom.
8641 (tramp-smb-maybe-open-connection): Use it.
8642
8643 2010-01-22 Michael Albinus <michael.albinus@gmx.de>
8644
8645 * net/tramp-imap.el (top): Autoload needed packages. (Bug#5448)
8646
8647 2010-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
8648
8649 * mail/rmailmm.el (rmail-mime-handle): Don't set the buffer to unibyte
8650 just because we see "encoding: 8bit".
8651 * mail/rmail.el (rmail-show-message-1): Decode the body's QP into bytes.
8652
8653 2010-01-22 Chong Yidong <cyd@stupidchicken.com>
8654
8655 * isearch.el (isearch-allow-scroll): Doc fix (Bug#5446).
8656
8657 2010-01-22 Eli Zaretskii <eliz@gnu.org>
8658
8659 * jka-compr.el (jka-compr-load): If load-file is not in
8660 load-history, try its file-truename version. (bug#5447)
8661
8662 2010-01-21 Alan Mackenzie <acm@muc.de>
8663
8664 Fix a situation where deletion of a cpp construct throws an error.
8665 * progmodes/cc-engine.el (c-invalidate-state-cache):
8666 Before invoking c-with-all-but-one-cpps-commented-out, check that the
8667 special cpp construct is still in the buffer.
8668 (c-parse-state): Record the special cpp with markers, not numbers.
8669
8670 2010-01-21 Kenichi Handa <handa@m17n.org>
8671
8672 * textmodes/sgml-mode.el (sgml-maybe-name-self): No need to
8673 process last-command-event, as it is now decoded first (Bug#5380).
8674
8675 2010-01-20 Chong Yidong <cyd@stupidchicken.com>
8676
8677 * term.el (term-send-raw-meta): Revert 2009-12-04 change (Bug#5330).
8678
8679 2010-01-20 Glenn Morris <rgm@gnu.org>
8680
8681 * indent.el (tab-always-indent): Fix custom-type.
8682
8683 2010-01-19 Alan Mackenzie <acm@muc.de>
8684
8685 * progmodes/cc-defs.el: Fix bug#5395: typing '#' in an empty
8686 buffer throws "args out of range".
8687 (c-set-cpp-delimiters, c-clear-cpp-delimiters): Check for EOB
8688 playing the role of delimiter.
8689
8690 2010-01-18 Stephen Leake <stephen_leake@member.fsf.org>
8691
8692 * progmodes/ada-mode.el: Fix bug#5400.
8693 (ada-matching-decl-start-re): Move into ada-goto-decl-start.
8694 (ada-goto-decl-start): Rename from ada-goto-matching-decl-start; callers
8695 changed. Delete RECURSIVE parameter; never used. Improve doc string.
8696 Improve comments in "is" portion. Handle null procedure declaration.
8697 (ada-move-to-end): Improve doc string.
8698
8699 2010-01-18 Óscar Fuentes <ofv@wanadoo.es>
8700
8701 * ido.el (ido-cur-list): Initialize to nil.
8702 Remove obsolete information from commentary.
8703 (ido-choice-list): Initialize to nil.
8704 (ido-get-bufname): Reject minibuffers.
8705 (ido-make-buffer-list): If "default" is a nonexistent
8706 buffer, ignore it, as per the function's comment.
8707 (ido-kill-buffer-internal): New function.
8708 (ido-kill-buffer-at-head): Use it.
8709 (ido-visit-buffer): Likewise.
8710
8711 2010-01-18 Chong Yidong <cyd@stupidchicken.com>
8712
8713 * calendar/time-date.el (date-to-time): Doc fix (Bug#5408).
8714
8715 2010-01-18 Juanma Barranquero <lekktu@gmail.com>
8716
8717 * emacs-lisp/chart.el (chart-file-count, chart-rmail-from):
8718 Fix typos in chart titles.
8719
8720 * whitespace.el (whitespace-style, global-whitespace-newline-mode):
8721 * emacs-lisp/eieio.el (eieio-error-unsupported-class-tags)
8722 (eieio-generic-form, eieio-help-mode-augmentation-maybee, eieio-browse)
8723 (describe-class, eieio-describe-generic, describe-generic):
8724 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click)
8725 (eieio-speedbar-expand):
8726 * emulation/viper-cmd.el (viper-exec-form-in-vi)
8727 (viper-exec-form-in-emacs, viper-harness-minor-mode, viper-ESC)
8728 (viper-repeat, viper-replace-state-exit-cmd, viper-toggle-search-style)
8729 (viper-del-backward-char-in-replace, viper-backward-indent)
8730 (viper-brac-function, viper-register-to-point, viper-submit-report):
8731 * net/tramp.el (tramp-remote-coding-commands):
8732 * term/x-win.el (emacs-session-save, x-menu-bar-open, icon-map-list):
8733 Fix typos in docstrings.
8734
8735 2010-01-17 Chong Yidong <cyd@stupidchicken.com>
8736
8737 * mail/sendmail.el (mail-yank-original): Set the mark if the
8738 specified function for yanking does not do it.
8739
8740 2010-01-17 Dan Nicolaescu <dann@ics.uci.edu>
8741
8742 * vc.el (with-vc-properties): Deal with directory arguments. (Bug#5298)
8743
8744 * vc-dir.el (vc-dir-resynch-file): Update the vc-dir header when
8745 resyncing a directory.
8746
8747 2010-01-17 Stephen Leake <stephen_leake@member.fsf.org>
8748
8749 * progmodes/ada-mode.el: Fix bug#1920.
8750 (ada-ident-re): Delete ., allow multibyte characters.
8751 (ada-goto-label-re): New; matches goto labels.
8752 (ada-block-label-re): New; matches block labels.
8753 (ada-label-re): New; matches both.
8754 (ada-named-block-re): Deleted; callers changed to use
8755 `ada-block-label-re' instead.
8756 (ada-get-current-indent, ada-get-indent-noindent, ada-get-indent-loop):
8757 Use `ada-block-label-re'.
8758 (ada-indent-on-previous-lines): Improve handling of goto labels.
8759 (ada-get-indent-block-start): Special-case block label.
8760 (ada-get-indent-label): Split into `ada-indent-block-label' and
8761 `ada-indent-goto-label'.
8762 (ada-goto-stmt-start, ada-goto-next-non-ws):
8763 Optionally ignore goto labels.
8764 (ada-goto-next-word): Simplify.
8765 (ada-indent-newline-indent-conditional): Insert newline before
8766 trying to fix indentation; doc fix.
8767
8768 2010-01-17 Jay Belanger <jay.p.belanger@gmail.com>
8769
8770 * calc/calc.el (calc-command-flags): Give it an initial value.
8771
8772 2010-01-17 Juanma Barranquero <lekktu@gmail.com>
8773
8774 * files.el (minibuffer-with-setup-hook):
8775 * textmodes/artist.el (artist-mt, artist-key-undraw-continously)
8776 (artist-key-draw-continously, artist-key-do-continously-continously)
8777 (artist-key-set-point-continously, artist-mouse-draw-continously):
8778 Fix typos in docstrings.
8779
8780 2010-01-16 Lennart Borgman <lennart.borgman@gmail.com>
8781
8782 * nxml/nxml-mode.el (nxml-extend-after-change-region): Never
8783 return t (Bug#3898).
8784
8785 2010-01-16 Frédéric Perrin <frederic.perrin@resel.fr> (tiny change)
8786
8787 * vc-dispatcher.el (vc-do-command): Set LC_MESSAGES, so that we
8788 can parse the output of the external commands (Bug#5279).
8789
8790 2010-01-16 Jari Aalto <jari.aalto@cante.net>
8791
8792 * pcmpl-unix.el (pcmpl-unix-read-passwd-file): Doc fix.
8793
8794 2010-01-16 Chong Yidong <cyd@stupidchicken.com>
8795
8796 * emacs-lisp/advice.el (ad-add-advice): Doc fix (Bug#5274)
8797
8798 * emacs-lisp/cl-macs.el (defstruct): Doc fix (Bug#5267).
8799
8800 * startup.el (command-line): Remove unused --icon-type arg.
8801 Handle --display arg, passing it to command-line-1 (Bug#5392).
8802
8803 2010-01-16 Mario Lang <mlang@delysid.org>
8804
8805 * emacs-lisp/chart.el (chart-translate-namezone):
8806 * textmodes/artist.el (artist-compute-popup-menu-table):
8807 Remove duplicated words in doc-strings.
8808
8809 2010-01-15 David Abrahams <dave@boostpro.com> (tiny change)
8810
8811 * net/mairix.el (mairix-widget-send-query): Send -1 instead of nil
8812 to mairix-search to suppress threading (Bug#5342).
8813
8814 2010-01-15 Kenichi Handa <handa@m17n.org>
8815
8816 * international/mule-cmds.el (canonicalize-coding-system-name):
8817 Convert "msXXX", "ibmXXX", "windows-XXX" to "cpXXX" (Bug#5387).
8818
8819 2010-01-15 Glenn Morris <rgm@gnu.org>
8820
8821 * log-view.el (top-level): Require 'wid-edit. (Bug#5311)
8822
8823 * wid-edit.el (widget-keymap): Doc fix.
8824
8825 * vc-svn.el (vc-svn-print-log): Use --limit rather than -l since the
8826 former seems to be more widely accepted by various svn versions.
8827
8828 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
8829
8830 * find-cmd.el (find-constituents):
8831 * vc-arch.el (vc-arch-root):
8832 * window.el (window-body-height, pop-up-frames):
8833 * emacs-lisp/eieio-base.el (eieio-singleton, slot-missing):
8834 * progmodes/ada-stmt.el (ada-if):
8835 * progmodes/gdb-ui.el (gdb-jsonify-buffer):
8836 * textmodes/ispell.el (ispell-grep-options, ispell-dictionary-alist)
8837 (ispell-encoding8-command, ispell-aspell-supports-utf8)
8838 (ispell-last-program-name, ispell-help): Fix typos in docstrings.
8839
8840 * progmodes/flymake.el (flymake-post-syntax-check):
8841 Fix typo in error message.
8842
8843 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
8844
8845 * hexl.el (hexl-printable-character): Fix check of `hexl-iso',
8846 which is always a string. (Bug#5313)
8847
8848 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
8849
8850 * progmodes/ada-xref.el (ada-default-prj-properties):
8851 Simplify previous change.
8852
8853 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
8854
8855 * progmodes/ada-xref.el (ada-default-prj-properties):
8856 Default ada_project_path to $ADA_PROJECT_PATH.
8857
8858 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
8859
8860 * progmodes/ada-mode.el (ada-create-keymap):
8861 Override `narrow-to-defun' with `ada-narrow-to-defun'.
8862
8863 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
8864
8865 * progmodes/ada-mode.el: Deal with Ada 2005 "overriding" keyword.
8866 (ada-subprog-start-re, ada-imenu-subprogram-menu-re): Add keyword.
8867 (ada-get-current-indent, ada-imenu-generic-expression)
8868 (ada-which-function): Check for it.
8869
8870 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
8871
8872 * progmodes/ada-mode.el (ada-clean-buffer-before-saving): Make obsolete.
8873 (ada-mode): Don't obey `ada-clean-buffer-before-saving' anymore.
8874
8875 2010-01-14 Glenn Morris <rgm@gnu.org>
8876
8877 * frame.el (show-trailing-whitespace): Safe if boolean. (Bug#5312)
8878
8879 2010-01-14 Kenichi Handa <handa@m17n.org>
8880
8881 * composite.el (auto-composition-mode): Make it a buffer local
8882 variable (permanent-local).
8883 (auto-composition-function): Set the default value to
8884 auto-compose-chars.
8885 (auto-composition-mode): Make it a simple function, not a minor mode.
8886 (global-auto-composition-mode): Likewise.
8887 (turn-on-auto-composition-if-enabled): Delete it.
8888
8889 2010-01-13 Karl Fogel <kfogel@red-bean.com>
8890
8891 * bookmark.el (bookmark-bmenu-execute-deletions): Doc fix (Bug#5276).
8892
8893 2010-01-12 Michael Albinus <michael.albinus@gmx.de>
8894
8895 * files.el (copy-directory): Compute target for recursive
8896 directories with identical names. (Bug#5343)
8897
8898 2010-01-12 Glenn Morris <rgm@gnu.org>
8899
8900 * mail/emacsbug.el (report-emacs-bug-pretest-address): Set
8901 it to bug-gnu-emacs rather than emacs-pretest-bug.
8902
8903 2010-01-11 Sam Steingold <sds@gnu.org>
8904
8905 * imenu.el (imenu-default-create-index-function): Detect infinite
8906 loops caused by imenu-prev-index-position-function.
8907
8908 2010-01-11 Juanma Barranquero <lekktu@gmail.com>
8909
8910 * htmlfontify.el (htmlfontify-load-rgb-file)
8911 (htmlfontify-unload-rgb-file, hfy-fallback-colour-values)
8912 (htmlfontify-manual, htmlfontify, hfy-page-header, hfy-page-footer)
8913 (hfy-src-doc-link-style, hfy-src-doc-link-unstyle, hfy-link-extn)
8914 (hfy-link-style-fun, hfy-index-file, hfy-instance-file)
8915 (hfy-html-quote-regex, hfy-init-kludge-hook, hfy-post-html-hooks)
8916 (hfy-default-face-def, hfy-etag-regex, hfy-html-quote-map)
8917 (hfy-etags-cmd-alist-default, hfy-etags-bin, hfy-ignored-properties)
8918 (hfy-which-etags, hfy-etags-cmd, hfy-istext-command, hfy-display-class)
8919 (hfy-optimisations, hfy-tags-cache, hfy-tags-sortl, hfy-tags-rmap)
8920 (hfy-style-assoc, hfy-sheet-assoc, hfy-facemap-assoc, hfy-interq)
8921 (hfy-colour-vals, hfy-default-header, hfy-link-style-string)
8922 (hfy-triplet, hfy-slant, hfy-weight, hfy-combined-face-spec)
8923 (hfy-face-attr-for-class, hfy-face-to-style-i, hfy-size-to-int)
8924 (hfy-flatten-style, hfy-face-to-style, hfy-face-or-def-to-name)
8925 (hfy-face-to-css, hfy-p-to-face, hfy-p-to-face-lennart, hfy-face-at)
8926 (hfy-fontified-p, hfy-merge-adjacent-spans, hfy-buffer)
8927 (hfy-html-enkludge-buffer, hfy-html-quote, hfy-html-dekludge-buffer)
8928 (hfy-force-fontification, htmlfontify-buffer, hfy-dirname)
8929 (hfy-make-directory, hfy-text-p, hfy-mark-tag-names, hfy-relstub)
8930 (hfy-href-stub, hfy-href, hfy-mark-tag-hrefs, hfy-prepare-index-i)
8931 (hfy-prepare-index, hfy-prepare-tag-map, hfy-subtract-maps)
8932 (htmlfontify-run-etags): Fix typos in docstrings and remove superfluous
8933 backslash-quoting from parentheses, etc.
8934
8935 2010-01-11 Chong Yidong <cyd@stupidchicken.com>
8936
8937 * progmodes/js.el: Autoload javascript-mode alias.
8938
8939 2010-01-11 Juanma Barranquero <lekktu@gmail.com>
8940
8941 * ffap.el (ffap-shell-prompt-regexp, ffap-all-subdirs, ffap-url-p)
8942 (ffap-alist, ffap-tex-path, ffap-url-at-point, ffap-gopher-regexp)
8943 (ffap-gopher-at-point, ffap-file-at-point, ffap-read-file-or-url)
8944 (ffap-read-url-internal, ffap-menu, ffap-at-mouse):
8945 Fix typos in docstrings.
8946 (ffap-url-regexp): Doc fix.
8947 (ffap-at-mouse): Fix typo in message.
8948
8949 2010-01-11 Glenn Morris <rgm@gnu.org>
8950
8951 * version.el (emacs-copyright): Set copyright year to 2010.
8952
8953 2010-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
8954
8955 * format.el (format-annotate-function): Only set
8956 write-region-post-annotation-function after running to-fn so as not to
8957 affect nested write-region calls (bug#5273).
8958
8959 2010-01-10 Chong Yidong <cyd@stupidchicken.com>
8960
8961 * Makefile.in (ELCFILES): Add wisent/python-wy.el and
8962 wisent/python.el.
8963
8964 2010-01-09 Chong Yidong <cyd@stupidchicken.com>
8965
8966 * man.el (Man-goto-section): Signal error if the section is not
8967 found (Bug#5317).
8968
8969 2010-01-09 Juanma Barranquero <lekktu@gmail.com>
8970
8971 * vc-bzr.el (vc-bzr-working-revision): On Windows and MS-DOS, accept
8972 URLs with a leading triple slash in the file: scheme. (Bug#5345)
8973
8974 2010-01-09 Chong Yidong <cyd@stupidchicken.com>
8975
8976 * progmodes/compile.el: Don't treat compile-command as safe if
8977 compilation-read-command might be nil (Bug#4218).
8978
8979 2010-01-09 Jan Djärv <jan.h.d@swipnet.se>
8980
8981 * startup.el (command-line-1): Use orig-argi to check for ignored X and
8982 NS options.
8983
8984 2010-01-08 Kenichi Handa <handa@m17n.org>
8985
8986 * international/fontset.el (build-default-fontset-data):
8987 Exclude characters in scripts kana, hangul, han, or cjk-misc.
8988
8989 2010-01-07 Juanma Barranquero <lekktu@gmail.com>
8990
8991 * vc-dir.el (vc-dir-prepare-status-buffer): Pass a (fake) filename
8992 to `create-file-buffer' as it expects, not just a buffer name.
8993 (vc-dir-mode): Include the buffer name in `list-buffers-directory',
8994 to help uniquify. (Bug#3224)
8995
8996 2010-01-06 Jan Djärv <jan.h.d@swipnet.se>
8997
8998 * font-setting.el (font-setting-change-default-font): Use user-spec
8999 instead of name.
9000
9001 2010-01-06 Dan Nicolaescu <dann@ics.uci.edu>
9002
9003 * vc-bzr.el (vc-bzr-after-dir-status): Ignore pending merges.
9004
9005 2010-01-05 Tom Tromey <tromey@redhat.com>
9006
9007 * progmodes/python.el (python-font-lock-keywords):
9008 Handle qualified decorators (Bug#881).
9009
9010 2010-01-05 Dan Nicolaescu <dann@ics.uci.edu>
9011
9012 * vc-bzr.el (vc-bzr-working-revision): Fix looking for a revision
9013 in a lightweight checkout.
9014
9015 2010-01-05 Kenichi Handa <handa@m17n.org>
9016
9017 * language/indian.el (malayalam-composable-pattern): Fix ZWNJ and ZWJ.
9018
9019 2010-01-05 Dan Nicolaescu <dann@ics.uci.edu>
9020
9021 * vc-bzr.el (vc-bzr-diff): Obey vc-disable-async-diff.
9022
9023 2010-01-04 Dan Nicolaescu <dann@ics.uci.edu>
9024
9025 * vc-bzr.el (vc-bzr-state-heuristic): Make it work for lightweight
9026 checkouts. (Bug#618)
9027 (vc-bzr-log-view-mode): Also highlight the author.
9028 (vc-bzr-shelve-map): Change binding for vc-bzr-shelve-apply-at-point.
9029 (vc-bzr-shelve-menu-map):
9030 (vc-bzr-dir-extra-headers): Improve menu and tooltip text.
9031 (vc-bzr-shelve-apply): Make prompt more explicit.
9032
9033 2010-01-02 Chong Yidong <cyd@stupidchicken.com>
9034
9035 * net/browse-url.el (browse-url-encode-url): Don't escape commas.
9036 They are valid characters in URL paths (rfc3986), and at least
9037 Firefox does not understand the encoded version (Bug#3166).
9038
9039 2010-01-02 Daniel Elliott <danelliottster@gmail.com> (tiny change)
9040
9041 * progmodes/octave-mod.el (octave-end-keywords)
9042 (octave-block-begin-or-end-regexp, octave-block-match-alist):
9043 Add "end" keyword (Bug#3061).
9044 (octave-end-as-array-index-p): New function.
9045 (calculate-octave-indent): Use it.
9046
9047 2010-01-02 Karl Fogel <kfogel@red-bean.com>
9048
9049 * bookmark.el: Consistently put the text property on the bookmark name.
9050 (bookmark-bmenu-marks-width): Bump back to 2, to include
9051 annotation marks.
9052 (bookmark-bmenu-hide-filenames): Adjust for above, and put the text
9053 property on the bookmark name, instead of not putting it at all.
9054 (bookmark-bmenu-list): Fix where we put the text property.
9055
9056 2010-01-02 Karl Fogel <kfogel@red-bean.com>
9057
9058 * bookmark.el (bookmark-bmenu-save): Just depend on the new logic
9059 for showing buffer modified state (as added in the previous change).
9060
9061 2010-01-02 Karl Fogel <kfogel@red-bean.com>
9062
9063 * bookmark.el: Show modified state of bookmark buffer more accurately.
9064 (bookmark-bmenu-list): Initialize buffer-modified-p properly.
9065 (bookmark-send-edited-annotation): Mark bookmark-alist as modified.
9066 (with-buffer-modified-unmodified): New macro.
9067 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
9068 (bookmark-bmenu-mark, bookmark-bmenu-unmark, bookmark-bmenu-delete):
9069 Use new macro to preserve the buffer modified state.
9070
9071 2010-01-02 Karl Fogel <kfogel@red-bean.com>
9072
9073 * bookmark.el (bookmark-bmenu-select, bookmark-bmenu-1-window)
9074 (bookmark-bmenu-2-window, bookmark-bmenu-this-window)
9075 (bookmark-bmenu-other-window, bookmark-bmenu-switch-other-window)
9076 (bookmark-bmenu-show-annotation, bookmark-bmenu-edit-annotation)
9077 (bookmark-bmenu-rename, bookmark-bmenu-locate)
9078 (bookmark-bmenu-relocate, bookmark-bmenu-goto-bookmark):
9079 Remove unnecessary calls to `bookmark-bmenu-ensure-position'.
9080
9081 2010-01-02 Eli Zaretskii <eliz@gnu.org>
9082
9083 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
9084 Make the lines in the generated doc string shorter. (Bug#4668)
9085
9086 2010-01-02 Ryan Yeske <rcyeske@gmail.com>
9087
9088 * net/rcirc.el: Add follow-link binding (Bug#4738).
9089
9090 2010-01-02 Eli Zaretskii <eliz@gnu.org>
9091
9092 * Makefile.in (bzr-update): Rename from cvs-update.
9093 (cvs-update): New target for backward compatibility.
9094
9095 * makefile.w32-in (bzr-update): Rename from cvs-update.
9096 (cvs-update): New target for backward compatibility.
9097
9098 2010-01-02 Karl Fogel <kfogel@red-bean.com>
9099
9100 * bookmark.el: Remove gratuitous gratitude.
9101
9102 2010-01-02 Karl Fogel <kfogel@red-bean.com>
9103
9104 * bookmark.el (bookmark-bmenu-any-marks): New function.
9105 (bookmark-bmenu-save): Clear buffer modification if no marks.
9106
9107 2010-01-02 Karl Fogel <kfogel@red-bean.com>
9108
9109 * bookmark.el (bookmark-bmenu-marks-width): Define to 1, not 2.
9110 (bookmark-bmenu-list, bookmark-bmenu-bookmark): Calculate property
9111 positions by using `bookmark-bmenu-marks-width', instead of hardcoding.
9112 This fixes the `bookmark-bmenu-execute-deletions' bug reported here:
9113
9114 http://lists.gnu.org/archive/html/emacs-devel/2009-12/msg00819.html
9115 From: Sun Yijiang <sunyijiang {_AT_} gmail.com>
9116 To: emacs-devel {_AT_} gnu.org
9117 Subject: bookmark.el bug report
9118 Date: Mon, 28 Dec 2009 14:19:16 +0800
9119 Message-ID: 5065e2900912272219y3734fc9fsdaee41167ef99ad7@mail.gmail.com
9120
9121 2010-01-02 Karl Fogel <kfogel@red-bean.com>
9122
9123 * bookmark.el: Improvements suggested by Drew Adams:
9124 (bookmark-bmenu-ensure-position): New name for
9125 `bookmark-bmenu-check-position'. Just ensure the position,
9126 don't return any meaningful value.
9127 (bookmark-bmenu-header-height, bookmark-bmenu-marks-width):
9128 New constants.
9129
9130 2010-01-02 Juanma Barranquero <lekktu@gmail.com>
9131
9132 * bookmark.el (bookmarks-already-loaded): Doc fix (don't use `iff').
9133 (bookmark-yank-point, bookmark-bmenu-check-position):
9134 Fix typos in docstrings.
9135 (bookmark-save-flag, bookmark-bmenu-toggle-filenames)
9136 (bookmark-name-from-full-record, bookmark-get-position)
9137 (bookmark-set-position, bookmark-set, bookmark-handle-bookmark)
9138 (bookmark-delete, bookmark-save, bookmark-save, bookmark-bmenu-mode):
9139 Remove useless quoting of parenthesis, etc. in docstrings.
9140
9141 * ediff-mult.el (ediff-prepare-meta-buffer): Fix typo in help message.
9142 (ediff-append-custom-diff): Fix typo in error message.
9143 (ediff-meta-mark-equal-files): Fix typos in messages.
9144
9145 * mpc.el (mpc-playlist-delete): Fix typo in error messages.
9146
9147 * net/imap-hash.el (imap-hash-make): Doc fix.
9148 (imap-hash-test): Fix typo in error message; reflow docstring.
9149 (imap-hash-p, imap-hash-get, imap-hash-put, imap-hash-make-message)
9150 (imap-hash-count, imap-hash-server, imap-hash-port, imap-hash-ssl)
9151 (imap-hash-mailbox, imap-hash-user, imap-hash-password):
9152 Fix typos in docstrings.
9153 (imap-hash-open-connection): Fix typo in error message.
9154
9155 * play/gomoku.el (gomoku): Fix typos in docstring.
9156
9157 * progmodes/gdb-ui.el (gdb-location-alist): Reflow docstring.
9158 (gdb-jsonify-buffer): Fix typos in docstring.
9159 (gdb-goto-breakpoint): Fix typo in error message.
9160 ("Display Other Windows"): Fix typo in help message.
9161 (gdb-speedbar-expand-node): Fix typo in question.
9162
9163 * progmodes/idlw-help.el (idlwave-help-browse-url-available)
9164 (idlwave-html-system-help-location, idlwave-html-help-location)
9165 (idlwave-help-browser-function, idlwave-help-browser-generic-program)
9166 (idlwave-help-browser-generic-args, idlwave-help-directory)
9167 (idlwave-html-help-is-available, idlwave-help-mode-line-indicator)
9168 (idlwave-help-mode-map, idlwave-help-mode, idlwave-do-context-help)
9169 (idlwave-online-help, idlwave-help-html-link)
9170 (idlwave-help-show-help-frame, idlwave-help-assistant-command):
9171 Fix typos in docstrings.
9172 (idlwave-help-with-source, idlwave-help-find-routine-definition):
9173 Reflow docstrings.
9174 (idlwave-help-assistant-start): Fix typo in error message.
9175
9176 * progmodes/octave-mod.el (octave-mode, octave-electric-semi)
9177 (octave-electric-space): Fix typos in docstrings.
9178
9179 2010-01-01 Chong Yidong <cyd@stupidchicken.com>
9180
9181 * files.el (minibuffer-with-setup-hook): Doc fix (Bug#5149).
9182
9183 2010-01-01 Juri Linkov <juri@jurta.org>
9184
9185 * comint.el (comint-input-ring-size): Make it a defcustom and
9186 increase the default to 500 (Bug#5148).
9187
9188 2009-12-31 Nick Roberts <nickrob@snap.net.nz>
9189
9190 Further changes from EMACS_23_1_RC branch (2009-12-29 contd).
9191 * term/x-win.el (x-gtk-stock-map): Map some GUD buttons.
9192 * progmodes/gud.el (gud-menu-map): Add reverse-execution commands.
9193
9194 2009-12-30 Nick Roberts <nickrob@snap.net.nz>
9195
9196 Show working revision correctly for mercurial.
9197 * vc-hg.el (vc-hg-working-revision): Use hg parent instead of
9198 hg log as suggested by Alex Harsanyi <alexharsanyi@gmail.com>.
9199
9200 2009-12-29 Juanma Barranquero <lekktu@gmail.com>
9201
9202 Declare some functions for the byte-compiler.
9203 * progmodes/gdb-ui.el (speedbar-change-initial-expansion-list)
9204 (speedbar-timer-fn, speedbar-change-expand-button-char)
9205 (speedbar-delete-subblock, speedbar-center-buffer-smartly): Declare.
9206
9207 2009-12-29 Nick Roberts <nickrob@snap.net.nz>
9208
9209 This changeset reverts GDB Graphical Interface to use annotations.
9210 * progmodes/gdb-ui.el, progmodes/gud.el: Import from EMACS_23_1_RC.
9211
9212 2009-12-29 Dan Nicolaescu <dann@ics.uci.edu>
9213
9214 Make vc-dir work on subdirectories of the bzr root.
9215 * vc-bzr.el (vc-bzr-after-dir-status): Add new argument. Return
9216 file names relative to it.
9217 (vc-bzr-dir-status, vc-bzr-dir-status-files): Pass the bzr root
9218 relative directory to vc-bzr-after-dir-status.
9219
9220 2009-12-28 Tassilo Horn <tassilo@member.fsf.org>
9221
9222 * font-lock.el (font-lock-refresh-defaults): New function, which
9223 can be used to let font-lock react to external changes in
9224 variables like font-lock-defaults and keywords.
9225 See http://thread.gmane.org/gmane.emacs.devel/118777/focus=118802
9226
9227 2009-12-28 Dan Nicolaescu <dann@ics.uci.edu>
9228
9229 * vc-rcs.el (vc-rcs-register): Fix registering a specific version.
9230
9231 * vc-bzr.el (vc-bzr-log-view-mode): Fix short log regexp.
9232
9233 2009-12-28 Juanma Barranquero <lekktu@gmail.com>
9234
9235 Supersede color.diff settings in git log (bug#5211).
9236
9237 * vc-git.el (vc-git-print-log): Pass "--no-color" to log to avoid
9238 escape chars in its output when the user has color.diff set to `always'.
9239 This fix works on git 1.4.2 and newer (released on 2006-08-13).
9240
9241 2009-12-26 Kevin Ryde <user42@zip.com.au>
9242
9243 * info-look.el (sh-mode): Look for coreutils new "Concept Index"
9244 node. Keep previous "Index" name to work with past coreutils too.
9245
9246 * man.el (man): Revise docstring a bit to show -a and -l as
9247 examples. Add -k description since support for it has otherwise
9248 been a secret. (Further to bug#3717.)
9249 (Man-bgproc-sentinel): When "-k foo" produces no output show error
9250 "no matches" rather than "Can't find manpage", as the latter reads
9251 like -k was interpreted as a page name, which is not so. (Bug#5431)
9252
9253 2009-12-26 Michael Albinus <michael.albinus@gmx.de>
9254
9255 * net/tramp.el (tramp-handle-insert-directory): Quote "'" in the
9256 switches. Check also for //SUBDIRED// line.
9257
9258 2009-12-25 Kenichi Handa <handa@m17n.org>
9259
9260 * language/indian.el (devanagari-composable-pattern): Fixed to
9261 handle ZWNJ and ZWJ. Use it in composition-function-table for
9262 Devanagari.
9263 (malayalam-composable-pattern): Fix previous change.
9264
9265 2009-12-23 Vinicius Jose Latorre <viniciusjl@ig.com.br>
9266
9267 * ps-print.el (ps-face-attributes): It was not returning the
9268 attribute face for faces specified as string. Reported by harven
9269 <harven@free.fr>. (Bug#5254)
9270 (ps-print-version): New version 7.3.5.
9271
9272 2009-12-18 Ulf Jasper <ulf.jasper@web.de>
9273
9274 * calendar/icalendar.el (icalendar--convert-tz-offset):
9275 Fix timezone names.
9276 (icalendar--convert-tz-offset): Fix the "last-day-problem".
9277 (icalendar--add-diary-entry): Remove the trailing blank that
9278 diary-make-entry inserts.
9279
9280 2009-12-17 Michael Albinus <michael.albinus@gmx.de>
9281
9282 Make `file-expand-wildcards' work for remote files.
9283
9284 * files.el (file-expand-wildcards): In case of remote files, check
9285 only local file name part for wildcards. Provide feature 'files
9286 and subfeature 'remote-wildcards. (Bug#5198)
9287
9288 * net/tramp.el (tramp-handle-file-remote-p): Expand file name only
9289 if there is already an established connection.
9290 (tramp-advice-file-expand-wildcards): Remove it.
9291
9292 * net/tramp-compat.el (top): Autoload `tramp-handle-file-remote-p'.
9293 (tramp-advice-file-expand-wildcards): Move from tramp.el.
9294 Activate advice for older GNU Emacs versions. (Bug#5237)
9295
9296 2009-12-17 Juanma Barranquero <lekktu@gmail.com>
9297
9298 Some doc fixes (more needed).
9299
9300 * find-cmd.el (find-constituents): Reflow docstring.
9301 (find-cmd, find-prune, find-command): Fix typos in docstrings.
9302 (find-generic): Doc fix.
9303
9304 2009-12-17 Juri Linkov <juri@jurta.org>
9305
9306 Fix regression from 23.1 to allow multiple modes in Local Variables.
9307
9308 * files.el (hack-local-variables-filter): While ignoring duplicates,
9309 don't take `mode' into account.
9310 (hack-local-variables-filter, hack-dir-local-variables):
9311 Don't remove duplicate `mode' from local-variables-alist (like `eval').
9312
9313 2009-12-17 Juri Linkov <juri@jurta.org>
9314
9315 Make `dired-diff' safer. (Bug#5225)
9316
9317 * dired-aux.el (dired-diff): Signal an error when `file' equals to
9318 `current' or when `file' is a directory of the `current' file.
9319
9320 2009-12-17 Andreas Schwab <schwab@linux-m68k.org>
9321
9322 * emacs-lisp/autoload.el (batch-update-autoloads): Only exclude
9323 unconditionally preloaded files.
9324
9325 2009-12-16 Juri Linkov <juri@jurta.org>
9326
9327 Revert to old 23.1 logic of using the file at the mark as default.
9328 * dired-aux.el (dired-diff): Use the file at the mark as default
9329 if it's not the same as the current file, and the target dir is
9330 the current dir or the mark is active. Add the current file
9331 as the arg of `dired-dwim-target-defaults'. Use the default file
9332 in the prompt. (Bug#5225)
9333
9334 2009-12-15 Michael Albinus <michael.albinus@gmx.de>
9335
9336 * net/tramp.el (tramp-echo-mark-marker-length): New defconst.
9337 (tramp-echo-mark, tramp-echoed-echo-mark-regexp): Use it.
9338 (tramp-check-for-regexp): Check also, when an echoing shell stops
9339 to echo sent commands.
9340
9341 2009-12-14 Chong Yidong <cyd@stupidchicken.com>
9342
9343 * Makefile.in: Revert last change (Bug#5191).
9344
9345 2009-12-14 Dan Nicolaescu <dann@ics.uci.edu>
9346
9347 * vc-hg.el (vc-hg-print-log): Fix argument order.
9348 (vc-hg-working-revision): Make sure the command is executed in a
9349 known environment so that we can parse the output. (Bug#4417)
9350
9351 2009-12-14 Chong Yidong <cyd@stupidchicken.com>
9352
9353 * progmodes/python.el (python-symbol-completions): Remove text
9354 properties from symbol string before calling python-send-receive.
9355
9356 2009-12-14 Nick Roberts <nickrob@snap.net.nz>
9357
9358 * progmodes/gdb-mi.el (gdb-frame-handler): Only set gud-lat-frame
9359 when there are values for both file and line. (Bug#5060)
9360
9361 2009-12-14 Juri Linkov <juri@jurta.org>
9362
9363 * ediff-ptch.el (ediff-context-diff-label-regexp): Don't match
9364 whitespace after the file name of the first line of unified format,
9365 because git-diff doesn't output whitespace and file modification time
9366 after the file name.
9367
9368 2009-12-14 David Kastrup <dak@gnu.org>
9369
9370 * info.el (Info-hide-cookies-node): Before hiding a cookie,
9371 check if it already has the `display' property added by
9372 `Info-display-images-node', and not put the `invisible' property
9373 in this case.
9374
9375 2009-12-13 Glenn Morris <rgm@gnu.org>
9376
9377 * mail/emacsbug.el (message-sort-headers): Define for compiler.
9378 (report-emacs-bug): In message-mode, sort manually before storing
9379 original report text. (Bug#5178)
9380 Remove superfluous save-excursion.
9381
9382 2009-12-12 Michael Albinus <michael.albinus@gmx.de>
9383
9384 * net/dbus.el (dbus-property-handler): Filter lambda forms out
9385 when responding to "GetAll" properties.
9386
9387 2009-12-12 Chong Yidong <cyd@stupidchicken.com>
9388
9389 * simple.el (compose-mail): Remove mail-setup-with-from from
9390 customization checks.
9391
9392 2009-12-12 Eli Zaretskii <eliz@gnu.org>
9393
9394 * arc-mode.el (archive-rar-summarize): Support Attribute fields in
9395 RAR archives created on Unix systems.
9396
9397 2009-12-12 Stefan Monnier <monnier@iro.umontreal.ca>
9398
9399 * minibuffer.el (minibuffer-local-must-match-filename-map): Re-instate
9400 the varalias that was accidentally removed by the 2009-11-19 change
9401 (bug#5186).
9402
9403 2009-12-12 Kenichi Handa <handa@m17n.org>
9404
9405 * language/indian.el (indian-compose-regexp): New function.
9406 (malayalam-composable-pattern): Fix the pattern.
9407 (composition-function-table): Set malayalam-composable-pattern for
9408 Malayalam characters.
9409
9410 2009-12-11 Chong Yidong <cyd@stupidchicken.com>
9411
9412 * progmodes/bug-reference.el (bug-reference-map): Bind mouse-2
9413 rather than down-mouse-1, based on follow-link conventions.
9414
9415 * makefile.w32-in: Ensure that Lisp files in CEDET subdirectories
9416 are compiled.
9417
9418 2009-12-11 Michael McNamara <mac@mail.brushroad.com>
9419
9420 * progmodes/verilog-mode.el (verilog-vmm-begin-re, verilog-vmm-end-re)
9421 (verilog-vmm-statement-re, verilog-ovm-statement-re)
9422 (verilog-defun-level-not-generate-re, verilog-calculate-indent)
9423 (verilog-leap-to-head, verilog-backward-token):
9424 Fix indenting VMM macros. Reported by Jonathan Ashbrook.
9425
9426 2009-12-11 Wilson Snyder <wsnyder@wsnyder.org>
9427
9428 * progmodes/verilog-mode.el (verilog-auto-lineup)
9429 (verilog-nameable-item-re): Cleanup user-visible spelling and
9430 documentation errors. One reported by Gary Delp.
9431 (verilog-submit-bug-report): Mention bug tracking and CC co-author.
9432 (verilog-read-decls): Fix AUTOWIRE with types declared in a
9433 package, bug195. Reported by Pierre-David Pfister.
9434
9435 2009-12-11 Glenn Morris <rgm@gnu.org>
9436
9437 * progmodes/cc-engine.el (safe-pos-list): Define for compiler.
9438
9439 * mail/emacsbug.el: No longer require sendmail.
9440 Replace sendmail's `mail-text' by `rfc822-goto-eoh'. (Bug#5174)
9441 (report-emacs-bug-orig-text): Doc fix.
9442 (report-emacs-bug-send-command, report-emacs-bug-send-hook):
9443 New local variables, to adapt to different mail-user-agents.
9444 (report-emacs-bug): Fix test for a gnu.org address.
9445 Use overlays for emphasis, since font-lock defeats 'face property.
9446 Pretest bugs also end up at the newsgroup these days.
9447 Stop message-mode stripping text properties.
9448 Set and use the new buffer-local variables.
9449 (report-emacs-bug-hook): Add doc-string.
9450 Remove some unnecessary save-excursions and simplify.
9451 Use the appropriate hook and send-command.
9452
9453 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Standardize the
9454 capitalization of some menu entries.
9455
9456 2009-12-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
9457
9458 * whitespace.el (whitespace-display-char-on):
9459 Ensure `buffer-display-table' is unique when two or more windows are
9460 visible. Reported by Martin Pohlack <mp26@os.inf.tu-dresden.de>.
9461 New version 12.1.
9462
9463 2009-12-10 Eli Zaretskii <eliz@gnu.org>
9464
9465 * arc-mode.el (archive-rar-summarize): Allow between 6 and 7
9466 characters in the Attribute field.
9467
9468 2009-12-10 Dan Nicolaescu <dann@ics.uci.edu>
9469
9470 * vc-svn.el (vc-svn-after-dir-status): Fix regexp. (Bug#4741)
9471
9472 2009-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
9473
9474 Let loaddefs.el adjust to changes in autoload-excludes (bug#5162).
9475 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
9476 Disregard autoload-excludes.
9477 (update-directory-autoloads): Obey autoload-excludes here instead.
9478 But don't store its contents in no-autoloads and remove entries that
9479 refer to excludes files.
9480
9481 2009-12-10 Glenn Morris <rgm@gnu.org>
9482
9483 * mail/feedmail.el (top-level): Move require 'mail-utils to start.
9484 (expand-mail-aliases): Define for compiler.
9485
9486 * vc-annotate.el (log-view-vc-backend, log-view-vc-fileset):
9487 Define for compiler.
9488
9489 * mail/emacsbug.el (report-emacs-bug): Use whichever send command is
9490 appropriate for the mail-user-agent in use.
9491
9492 2009-12-09 Michael Albinus <michael.albinus@gmx.de>
9493
9494 * net/tramp.el (tramp-handle-insert-directory): Suppress error messages.
9495
9496 2009-12-09 Dan Nicolaescu <dann@ics.uci.edu>
9497
9498 Fix short log parsing and fontification.
9499 * vc-bzr.el (vc-bzr-log-view-mode): Match dot in revision number.
9500 Fix fontification for the [merge] label.
9501
9502 2009-12-09 Vivek Dasmohapatra <vivek@etla.org>
9503
9504 Drop some properties to avoid surprises (bug#5002).
9505 * htmlfontify.el (hfy-ignored-properties): New defcustom.
9506 (hfy-fontify-buffer): Use it.
9507
9508 2009-12-09 Stefan Monnier <monnier@iro.umontreal.ca>
9509
9510 Minor cleanup.
9511 * ffap.el (ffap-symbol-value): Replace ffap-soft-value.
9512 Adjust all callers.
9513 (ffap-locate-file): Remove unused arg `dir-ok' and make other
9514 args compulsory. Adjust callers.
9515 (ffap-gopher-at-point): Remove unused var `name'.
9516
9517 Get rid of the ELCFILES abomination.
9518 * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
9519 (compile-elcfiles): New phony target.
9520 (compile-main): Compute ELCFILES dynamically.
9521 (compile-clean): New target to remove left-over elc files.
9522 (compile, all): Use it.
9523
9524 2009-12-09 Kenichi Handa <handa@etlken>
9525
9526 * international/mule-diag.el: Require help-mode instead of help-fns.
9527
9528 2009-12-09 Kenichi Handa <handa@m17n.org>
9529
9530 * international/mule-cmds.el (ucs-names): Supply sufficiently
9531 fine ranges instead of pre-calculating accurate ranges.
9532 Iterate with bigger gc-cons-threshold.
9533
9534 2009-12-08 Dan Nicolaescu <dann@ics.uci.edu>
9535
9536 Add support for stashing a snapshot of the current tree.
9537 * vc-git.el (vc-git-stash-snapshot): New function.
9538 (vc-git-stash-map, vc-git-extra-menu-map): Add a mapping for it.
9539
9540 2009-12-08 Jose E. Marchesi <jemarch@gnu.org>
9541
9542 * play/gomoku.el (gomoku-mode-map): Remap `move-(beginning|end)-of-line'
9543 instead of `(beginning|end)-of-line'.
9544
9545 2009-12-08 Glenn Morris <rgm@gnu.org>
9546
9547 * vc-mtn.el (vc-mtn-print-log): Fix typo in previous.
9548
9549 * Makefile.in (ELCFILES): Regenerate.
9550
9551 2009-12-07 Juri Linkov <juri@jurta.org>
9552
9553 Don't lazy-highlight the comint output in history Isearch mode.
9554
9555 * comint.el (comint-history-isearch-search): Instead of
9556 `comint-line-beginning-position', use `comint-after-pmark-p'
9557 to check if point if before the process mark, and go to
9558 `process-mark' in this case.
9559
9560 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
9561
9562 * textmodes/tex-mode.el (latex-complete)
9563 (latex-indent-or-complete): Remove.
9564 (latex-mode): Set completion-at-point-functions instead.
9565
9566 Provide a standard completion command and hook it into TAB.
9567 * minibuffer.el (completion-at-point-functions): New var.
9568 (completion-at-point): New command.
9569 * indent.el (indent-for-tab-command): Handle the `complete' behavior.
9570 * progmodes/python.el (python-mode-map): Use completion-at-point.
9571 (python-completion-at-point): Rename from python-partial-symbol and
9572 adjust for use in completion-at-point-functions.
9573 (python-mode): Setup completion-at-point for Python completion.
9574 * emacs-lisp/lisp.el (lisp-completion-at-point): New function
9575 extracted from lisp-complete-symbol.
9576 (lisp-complete-symbol): Use it.
9577 * emacs-lisp/lisp-mode.el (emacs-lisp-mode): Use define-derived-mode,
9578 setup completion-at-point for Elisp completion.
9579 (emacs-lisp-mode-map, lisp-interaction-mode-map):
9580 Use completion-at-point.
9581 * ielm.el (ielm-map): Use completion-at-point.
9582 (inferior-emacs-lisp-mode): Setup completion-at-point-functions.
9583 * progmodes/sym-comp.el: Move to...
9584 * obsolete/sym-comp.el: Move from progmodes.
9585
9586 2009-12-07 Eli Zaretskii <eliz@gnu.org>
9587
9588 Prevent save-buffer in Rmail buffers from using the coding-system
9589 of the current message, and from clobbering the encoding mnemonics
9590 in the mode line (Bug#4623).
9591
9592 * mail/rmail.el (rmail-swap-buffers): Swap encoding and modified
9593 flag, too.
9594 (rmail-message-encoding): New variable.
9595 (rmail-write-region-annotate): Record the encoding of the current
9596 message in rmail-message-encoding.
9597 (rmail-after-save-hook): New function, restores the encoding of
9598 the current message after the message collection is saved.
9599
9600 2009-12-07 Juri Linkov <juri@jurta.org>
9601
9602 * progmodes/grep.el (grep-read-files): Use `completing-read'
9603 instead of `read-string'. Set its `collection' arg to
9604 `read-file-name-internal'. (Bug#4301)
9605
9606 2009-12-07 Juri Linkov <juri@jurta.org>
9607
9608 Correctly restore original Isearch point. (Bug#4994)
9609
9610 * isearch.el (isearch-mode): Move `isearch-push-state' after
9611 `(run-hooks 'isearch-mode-hook)'.
9612 (isearch-cancel): When `isearch-push-state-function' is defined,
9613 let-bind `isearch-cmds' to the first state (the last element of
9614 `isearch-cmds') and call `isearch-top-state' (it calls pop-state
9615 function and restores the original point). Otherwise, move point
9616 to `isearch-opoint'.
9617
9618 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
9619
9620 * international/mule-cmds.el (ucs-names): Weed out at compile-time the
9621 chars that don't have names, so the table can be built much faster at
9622 run-time.
9623
9624 2009-12-07 Chong Yidong <cyd@stupidchicken.com>
9625
9626 * vc-bzr.el (vc-bzr-annotate-command): More elegant form for last
9627 change. Suggested by David Kastrup.
9628
9629 * simple.el (compose-mail): Check for incompatibilities and warn.
9630 (compose-mail-user-agent-warnings): New option.
9631
9632 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
9633
9634 Support showing a single log entry from vc-annotate.
9635 * vc.el (print-log): Add a new argument: START-REVISION.
9636 (vc-print-log-internal): Add a new optional argument and
9637 pass it to the backend.
9638 (vc-print-log, vc-print-root-log): Adjust callers.
9639 * vc-annotate.el (vc-annotate-show-log-revision-at-line): If a
9640 buffer already displays the requested log entry, use it.
9641 Otherwise display only the log entry in question.
9642 * vc-svn.el (vc-svn-print-log):
9643 * vc-mtn.el (vc-mtn-print-log):
9644 * vc-hg.el (vc-hg-state):
9645 * vc-git.el (vc-git-print-log): Add support for new argument START-REVISION.
9646 (vc-git-show-log-entry): Return t on success.
9647 * vc-bzr.el (vc-bzr-print-log): Add support new argument START-REVISION.
9648 (vc-bzr-show-log-entry): Return t on success.
9649 * vc-rcs.el (vc-rcs-print-log):
9650 * vc-sccs.el (vc-sccs-print-log):
9651 * vc-cvs.el (vc-cvs-print-log): Add new argument, ignore it.
9652
9653 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
9654
9655 * ediff-mult.el (ediff-setup-meta-map, ediff-prepare-meta-buffer):
9656 Add menus to the meta mode. (Bug#5043)
9657
9658 2009-12-07 Michael Kifer <kifer@cs.stonybrook.edu>
9659
9660 * ediff-init.el (ediff-event-key): Use event-to-character instead of
9661 event-key.
9662
9663 * ediff.el (ediff-buffers-internal): Add unwind-protect.
9664
9665 2009-12-07 Michael Albinus <michael.albinus@gmx.de>
9666
9667 Handle prompt rules of ksh in OpenBSD 4.5. Reported by Raphaël
9668 Berbain <raphael.berbain@gmail.com>.
9669
9670 * net/tramp.el (tramp-end-of-output): Move up. Use `#' and `$'
9671 characters.
9672 (tramp-initial-end-of-output): New defconst.
9673 (tramp-methods, tramp-find-shell)
9674 (tramp-open-connection-setup-interactive-shell)
9675 (tramp-maybe-open-connection): Use it.
9676 (tramp-shell-prompt-pattern, tramp-wait-for-output): Handle
9677 existence of `#' and `$'.
9678
9679 * net/tramp-fish.el (tramp-fish-maybe-open-connection): Use
9680 `tramp-initial-end-of-output'.
9681
9682 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
9683
9684 Get the background mode from the terminal for xterm, and set
9685 faces accordingly.
9686 * term/xterm.el (xterm-set-background-mode): New function.
9687 (terminal-init-xterm): Use it in case xterm supports background
9688 color queries. Recompute faces after getting the background
9689 color.
9690
9691 2009-12-07 Ulrich Mueller <ulm@gentoo.org>
9692
9693 * emacs-lisp/bytecomp.el (byte-compile-insert-header): Put the version
9694 number comment back on its own line, for easier parsing.
9695
9696 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
9697
9698 Make it work for non-file buffers (bug#5102).
9699 * doc-view.el (doc-view-current-cache-dir):
9700 Use doc-view-buffer-file-name rather than buffer-file-name.
9701 (doc-view-mode): Use buffer-name when buffer-file-name is nil.
9702
9703 2009-12-06 Óscar Fuentes <ofv@wanadoo.es>
9704
9705 * vc-bzr.el (vc-bzr-annotate-command): Handle the case where the
9706 author field is too short.
9707
9708 2009-12-06 Dan Nicolaescu <dann@ics.uci.edu>
9709
9710 * vc-git.el (vc-git-print-log): Handle a limit argument.
9711 Display the short log in graph form and with labels.
9712 (vc-git-log-view-mode): Handle labels.
9713
9714 Make vc-revert change VC state from 'added to 'unregistered.
9715 * vc-git.el (vc-git-revert): Call git reset first.
9716
9717 2009-12-06 Ulf Jasper <ulf.jasper@web.de>
9718
9719 * net/newst-backend.el, net/newst-plainview.el:
9720 * net/newst-reader.el, net/newst-ticker.el:
9721 * net/newst-treeview.el, net/newsticker.el:
9722 Require/provide newst-... (instead of newsticker-...). (Bug#5096)
9723
9724 2009-12-06 Chong Yidong <cyd@stupidchicken.com>
9725
9726 * log-view.el (log-view-mode-map): Bind "=" to log-view-diff too.
9727
9728 * vc-bzr.el (vc-bzr-annotate-command): Show author in annotation.
9729 Handle empty author field (Bug#4144). Suggested by Óscar Fuentes.
9730 (vc-bzr-annotate-time, vc-bzr-annotate-extract-revision-at-line):
9731 Update annotation regexp.
9732
9733 * simple.el (beginning-of-visual-line): Constrain to field
9734 boundaries (Bug#5106).
9735
9736 2009-12-06 Ulf Jasper <ulf.jasper@web.de>
9737
9738 * xml.el (xml-substitute-numeric-entities): Move
9739 newsticker--decode-numeric-entities in newst-backend.el to
9740 xml-substitute-numeric-entities in xml.el. (Bug#5008)
9741 * net/newst-backend.el (newsticker--parse-generic-feed)
9742 (newsticker--parse-generic-items)
9743 (newsticker--decode-numeric-entities): Move
9744 newsticker--decode-numeric-entities in newst-backend.el to
9745 xml-substitute-numeric-entities in xml.el. (Bug#5008)
9746
9747 2009-12-06 Daniel Colascione <dan.colascione@gmail.com>
9748
9749 * progmodes/js.el (js--js-not): Add null to the list of values.
9750
9751 2009-12-06 Chong Yidong <cyd@stupidchicken.com>
9752
9753 * ansi-color.el (ansi-color-for-comint-mode): Add :version keyword.
9754
9755 2009-12-06 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
9756
9757 * textmodes/bibtex.el (bibtex-enclosing-field): Exclude entry
9758 delimiter if it is at the end of the current line.
9759 (bibtex-generate-url-list): Fix docstring.
9760
9761 2009-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
9762
9763 * minibuffer.el (minibuffer-complete-and-exit): Don't replace the
9764 minibuffer's content with itself.
9765 Fold the confirm-after-completion case into the `confirm' case.
9766 (completion-pcm-word-delimiters): Add : and / to the delimiters.
9767
9768 2009-12-06 Kevin Ryde <user42@zip.com.au>
9769
9770 * ffap.el (ffap-rfc-path): Make this a defcustom since
9771 `ffap-rfc-directories' is also a defcustom. (Bug#4514.)
9772
9773 * info-look.el: Add setup for apropos-mode to use emacs-lisp-mode
9774 manuals, similar to existing setup for help-mode. (Bug#3913.)
9775
9776 2009-12-05 Juri Linkov <juri@jurta.org>
9777
9778 Save and restore dired buffer's point positions too. (Bug#4880)
9779
9780 * dired.el (dired-save-positions): Return in the first element
9781 buffer's position in format (BUFFER DIRED-FILENAME BUFFER-POINT).
9782 Doc fix.
9783 (dired-restore-positions): First restore buffer's position.
9784 While restoring window's positions, check if window still displays
9785 the original buffer.
9786
9787 2009-12-05 Chong Yidong <cyd@stupidchicken.com>
9788
9789 * bindings.el (complete-symbol): Call semantic-ia-complete-symbol
9790 if possible.
9791
9792 * shell.el (shell): Require ansi-color (Bug#5113).
9793
9794 * ansi-color.el (ansi-color-for-comint-mode): Default to t.
9795
9796 * hl-line.el (global-hl-line-highlight): Minor doc fix (Bug#4925).
9797
9798 2009-12-05 Alan Mackenzie <acm@muc.de>
9799
9800 * progmodes/cc-mode.el (c-before-hack-hook)
9801 (c-postprocess-file-styles): Revert change 2009-07-18T21:03:43Z!acm@muc.de to permit
9802 `c-file-style' to work again. This reversion restores the current
9803 software to its state in Emacs 23.1. (Bug#4146)
9804
9805 2009-12-05 Kevin Ryde <user42@zip.com.au>
9806
9807 * textmodes/sgml-mode.el (sgml-lexical-context): Recognise
9808 comment-start-skip to comment-end-skip as comment (Bug#4781).
9809
9810 2009-12-05 Juri Linkov <juri@jurta.org>
9811
9812 * info.el (Info-find-node-2): Set `Info-current-subfile' to nil
9813 for virtual nodes. (Bug#4147)
9814 (Info-find-node-2): Set `Info-current-node-virtual' to nil
9815 when moving from a virtual node.
9816 (Info-mode-menu): Add `Info-virtual-index' to the menu.
9817 (Info-mode): Add `Info-virtual-index' to the docstring.
9818
9819 2009-12-05 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
9820
9821 * textmodes/bibtex.el (bibtex-map-entries): Use marker to keep
9822 track of the buffer position of the end of a BibTeX entry as this
9823 position may change during reformatting.
9824 (bibtex-format-entry): Remove whitespace before processing
9825 numerical fields so that we recognize the latter properly.
9826 (bibtex-reformat): Do not use push which changes the global value
9827 of bibtex-entry-format.
9828 (bibtex-field-braces-alist, bibtex-field-strings-alist)
9829 (bibtex-field-re-init): Replace only space characters by regexp
9830 for whitespace.
9831 (bibtex-generate-url-list, bibtex-cite-matcher-alist): Fix docstring.
9832 (bibtex-initialize): Also update bibtex-strings.
9833 (bibtex-kill-field): Preserve white space at end of entry.
9834 (bibtex-kill-entry, bibtex-yank-pop, bibtex-insert-kill):
9835 Update bibtex-reference-keys.
9836
9837 2009-12-05 Stefan Monnier <monnier@iro.umontreal.ca>
9838
9839 * minibuffer.el (completion-pcm--merge-try): Also consider placing
9840 point after a star, if that's the only place where modifications can
9841 make progress.
9842
9843 2009-12-05 Dan Nicolaescu <dann@ics.uci.edu>
9844
9845 * vc-dir.el (vc-dir): Use the correct markup for showing keymaps
9846 in docstrings.
9847
9848 2009-12-04 Juri Linkov <juri@jurta.org>
9849
9850 * proced.el (proced): Call `(proced-update t)' to update process
9851 information instead of only running proced-post-display-hook.
9852 (proced-send-signal): Add a leading space to the buffer name
9853 " *Marked Processes*" to make this buffer ephemeral.
9854
9855 2009-12-04 Juri Linkov <juri@jurta.org>
9856
9857 * dired.el (dired-auto-revert-buffer): New defcustom.
9858 (dired-internal-noselect): Use it.
9859
9860 2009-12-04 Juri Linkov <juri@jurta.org>
9861
9862 Change roles of modes and functions in image-mode.el (Bug#5062).
9863
9864 * image-mode.el: Replace `image-mode-maybe' with `image-mode'
9865 in `auto-mode-alist'.
9866 (image-mode-previous-major-mode): New variable.
9867 (image-minor-mode-map): Rename from `image-mode-text-map'.
9868 (image-mode): Move graceful error-handling code from
9869 `image-minor-mode' to here. On errors call `image-mode-as-text'.
9870 (image-minor-mode): Remove all image-handling code.
9871 Replace `image-mode-text-map' with `image-minor-mode-map'.
9872 Check for `image-type' in mode-line format string.
9873 (image-mode-maybe): Make obsolete with an alias to `image-mode'.
9874 (image-mode-as-text): New function with most code from
9875 `image-mode-maybe'.
9876 (image-toggle-display-text): Move code that removes image
9877 properties from `image-toggle-display' to here.
9878 (image-toggle-display-image): New function with code that adds
9879 image properties copied from `image-toggle-display'.
9880 (image-toggle-display): Remove most code with leaving only code
9881 that toggles between `image-mode-as-text' and `image-mode'.
9882
9883 2009-12-04 Ulf Jasper <ulf.jasper@web.de>
9884
9885 * net/newst-treeview.el
9886 (newsticker--treeview-list-highlight-start): Restored call to
9887 save-excursion: Selected item was stuck.
9888 (newsticker--treeview-list-select): New.
9889 (newsticker--treeview-item-show-text)
9890 (newsticker--treeview-item-show)
9891 (newsticker--treeview-item-update): Use new
9892 newsticker-treeview-item-mode.
9893 (newsticker-treeview-update): Keep current item.
9894 (newsticker-treeview-next-new-or-immortal-item): Doc change.
9895 (newsticker--treeview-first-feed): Doc change.
9896 (newsticker-treeview-list-menu)
9897 (newsticker-treeview-item-menu): Added menu entries.
9898 (newsticker-treeview-item-mode): New.
9899
9900 * net/newst-backend.el (newsticker-customize): Delete other
9901 windows.
9902
9903 2009-12-04 Sam Steingold <sds@gnu.org>
9904
9905 * log-view.el (log-view-mode-map): "q" calls quit-window,
9906 like in all the other non-self-insert buffers.
9907
9908 2009-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
9909
9910 Minor cleanup.
9911 * term.el (term-send-raw, term-send-raw-meta): Use read-key-sequence's
9912 key decoding rather than do it manually via last-input-event +
9913 ascii-character.
9914 (term-exec): Use delete-and-extract-region.
9915 (term-handle-ansi-terminal-messages): Remove unused var `end'.
9916 (term-process-pager): Remove unused var `i'.
9917 (term-dynamic-simple-complete): Make obsolete.
9918 (serial-update-config-menu): Remove unused vars `y' and `str'.
9919 (term-update-mode-line): Remove unused var `temp'.
9920
9921 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
9922
9923 Limit the number of log entries displayed by default.
9924 * vc.el (vc-print-log-internal): Fix check for limit-unsupported.
9925 (vc-print-log, vc-print-root-log): Use vc-log-show-limit when not
9926 using a prefix argument.
9927
9928 2009-12-03 Glenn Morris <rgm@gnu.org>
9929
9930 * progmodes/idlwave.el (class): Restore still useful declaration.
9931
9932 2009-12-03 Alan Mackenzie <acm@muc.de>
9933
9934 Enhance `c-parse-state' to run efficiently in "brace deserts".
9935
9936 * progmodes/cc-mode.el (c-basic-common-init):
9937 Call c-state-cache-init.
9938 (c-neutralize-syntax-in-and-mark-CPP): Rename from
9939 c-extend-and-neutralize-syntax-in-CPP. Mark each CPP construct by
9940 placing `category' properties value 'c-cpp-delimiter at its boundaries.
9941
9942 * progmodes/cc-langs.el (c-before-font-lock-function):
9943 c-extend-and-neutralize-syntax-in-CPP has been renamed
9944 c-neutralize-syntax-in-and-mark-CPP.
9945
9946 * progmodes/cc-fonts.el (c-cpp-matchers): Mark template brackets
9947 with `category' properties now, not `syntax-table' ones.
9948
9949 * progmodes/cc-engine.el (c-syntactic-end-of-macro): A new
9950 enhanced (but slower) version of c-end-of-macro that won't land
9951 inside a literal or on another awkward character.
9952 (c-state-cache-too-far, c-state-cache-start)
9953 (c-state-nonlit-pos-interval, c-state-nonlit-pos-cache)
9954 (c-state-nonlit-pos-cache-limit, c-state-point-min)
9955 (c-state-point-min-lit-type, c-state-point-min-lit-start)
9956 (c-state-min-scan-pos, c-state-brace-pair-desert)
9957 (c-state-old-cpp-beg, c-state-old-cpp-end): New constants and
9958 buffer local variables.
9959 (c-state-literal-at, c-state-lit-beg)
9960 (c-state-cache-non-literal-place, c-state-get-min-scan-pos)
9961 (c-state-mark-point-min-literal, c-state-cache-top-lparen)
9962 (c-state-cache-top-paren, c-state-cache-after-top-paren)
9963 (c-get-cache-scan-pos, c-get-fallback-scan-pos)
9964 (c-state-balance-parens-backwards, c-parse-state-get-strategy)
9965 (c-renarrow-state-cache)
9966 (c-append-lower-brace-pair-to-state-cache)
9967 (c-state-push-any-brace-pair, c-append-to-state-cache)
9968 (c-remove-stale-state-cache)
9969 (c-remove-stale-state-cache-backwards, c-state-cache-init)
9970 (c-invalidate-state-cache-1, c-parse-state-1)
9971 (c-invalidate-state-cache): New defuns/defmacros/defsubsts.
9972 (c-parse-state): Enhance and refactor.
9973 (c-debug-parse-state): Amend to deal with all the new variables.
9974
9975 * progmodes/cc-defs.el (c-<-as-paren-syntax, c-mark-<-as-paren)
9976 (c->-as-paren-syntax, c-mark->-as-paren, c-unmark-<->-as-paren):
9977 modify to use category text properties rather than syntax-table ones.
9978 (c-suppress-<->-as-parens, c-restore-<->-as-parens): New defsubsts
9979 to switch off/on the syntactic paren property of C++ template
9980 delimiters using the category property.
9981 (c-with-<->-as-parens-suppressed): Macro to invoke code with
9982 template delims suppressed.
9983 (c-cpp-delimiter, c-set-cpp-delimiters, c-clear-cpp-delimiters):
9984 New constant/macros which apply category properties to the start
9985 and end of preprocessor constructs.
9986 (c-comment-out-cpps, c-uncomment-out-cpps): Defsubsts which
9987 "comment out" the syntactic value of characters in preprocessor
9988 constructs.
9989 (c-with-cpps-commented-out)
9990 (c-with-all-but-one-cpps-commented-out): Macros to invoke code
9991 with characters in all or all but one preprocessor constructs
9992 "commented out".
9993
9994 2009-12-03 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
9995
9996 * proced.el (proced-filter-alist): Use regexp-quote.
9997
9998 2009-12-03 Michael Albinus <michael.albinus@gmx.de>
9999
10000 Cleanup.
10001 * eshell/em-unix.el (top): Require 'esh-opt and 'pcomplete.
10002 (eshell/su, eshell/sudo): Require 'tramp. Fix problems reading
10003 arguments. Expand `default-directory'.
10004
10005 * net/tramp.el (tramp-handle-file-remote-p): Expand FILENAME for
10006 the benefit of returning an expanded localname.
10007 (tramp-tramp-file-p): Handle the case NAME is not a string.
10008
10009 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
10010
10011 Add support for bzr shelve/unshelve.
10012 * vc-bzr.el (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
10013 (vc-bzr-extra-menu-map): New variables.
10014 (vc-bzr-extra-menu, vc-bzr-extra-status-menu, vc-bzr-shelve)
10015 (vc-bzr-shelve-apply, vc-bzr-shelve-list)
10016 (vc-bzr-shelve-get-at-point, vc-bzr-shelve-delete-at-point)
10017 (vc-bzr-shelve-apply-at-point, vc-bzr-shelve-menu): New functions.
10018 (vc-bzr-dir-extra-headers): Display shelves.
10019
10020 * vc-bzr.el (vc-bzr-print-log): Deal with nil arguments better.
10021
10022 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
10023
10024 * textmodes/bibtex.el (bibtex-complete-internal):
10025 Use completion-in-region.
10026 (bibtex-text-in-field-bounds): Remove unused var `opoint'.
10027
10028 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
10029
10030 Support applying stashes. Improve UI.
10031 * vc-git.el (vc-git-dir-extra-headers): Add tooltips.
10032 (vc-git-stash-apply, vc-git-stash-pop)
10033 (vc-git-stash-apply-at-point, vc-git-stash-pop-at-point)
10034 (vc-git-stash-menu): New functions.
10035 (vc-git-stash-menu-map): New variable.
10036 (vc-git-stash-map): Add bindings to popup a menu and to apply stashes.
10037
10038 2009-12-03 Glenn Morris <rgm@gnu.org>
10039
10040 * vc.el (log-view-vc-backend, log-view-vc-fileset): Declare.
10041 (vc-print-log-internal): Fix previous change.
10042 (vc-revert): Correct pluralization.
10043
10044 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
10045
10046 * progmodes/make-mode.el (makefile-special-targets-list): No need for
10047 it to be an alist any more.
10048 (makefile-complete): Use completion-in-region.
10049
10050 * progmodes/octave-mod.el (octave-complete-symbol):
10051 Use completion-in-region.
10052
10053 Misc cleanup.
10054 * progmodes/idlwave.el (idlwave-comment-hook): Simplify with `or'.
10055 (idlwave-code-abbrev, idlwave-display-user-catalog-widget)
10056 (idlwave-complete-class): Don't quote lambda.
10057 (idlwave-find-symbol-syntax-table, idlwave-mode-syntax-table)
10058 (idlwave-mode-map): Move initialization into declaration.
10059 (idlwave-action-and-binding): Use backquotes.
10060 (idlwave-in-quote, idlwave-reset-sintern, idlwave-complete-in-buffer):
10061 Simplify.
10062 (idlwave-is-pointer-dereference): Remove unused var `pos'.
10063 (idlwave-xml-create-rinfo-list): Remove unused var `entry'.
10064 (idlwave-convert-xml-clean-sysvar-aliases): Remove unused vars `new',
10065 `parts', and `all-parts'.
10066 (idlwave-xml-create-sysvar-alist): Remove unused var `fields'.
10067 (idlwave-convert-xml-system-routine-info): Remove unused string
10068 `version-string'.
10069 (idlwave-display-user-catalog-widget): Use dolist.
10070 (idlwave-scanning-lib): Declare dynamically-scoped var.
10071 (idlwave-scan-library-catalogs): Remove unused var `flags'.
10072 (completion-highlight-first-word-only): Declare to silence bytecomp.
10073 (idlwave-popup-select): Tighten scope of `resp'.
10074 (idlwave-find-struct-tag): Remove unused var `beg'.
10075 (idlwave-after-load-rinfo-hook): Declare.
10076 (idlwave-sintern-class-info): Remove unused var `taglist'.
10077 (idlwave-find-class-definition): Remove unused var `list'.
10078 (idlwave-complete-sysvar-tag-help): Remove unused var `main-base'.
10079 (idlwave-what-module-find-class): Remove unused var `classes'.
10080
10081 2009-12-03 Juanma Barranquero <lekktu@gmail.com>
10082
10083 * progmodes/pascal.el: Require CL when compiling (for lexical-let).
10084
10085 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
10086
10087 * hippie-exp.el (try-expand-dabbrev-visible): Preserve point in the
10088 buffers visited. Remove redundant current-buffer-saving.
10089
10090 2009-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
10091
10092 Use completion-in-buffer and remove uses of dynamic scoping.
10093 * progmodes/pascal.el (pascal-str, pascal-all, pascal-pred)
10094 (pascal-buffer-to-use, pascal-flag): Don't declare.
10095 (pascal-func-completion, pascal-type-completion, pascal-var-completion)
10096 (pascal-get-completion-decl, pascal-keyword-completion):
10097 Add `pascal-str' argument, save-excursion,
10098 return the found completions, and don't filter with pascal-pred.
10099 (pascal-completion-cache): New var.
10100 (pascal-completion): Don't switch buffer any more (it was never
10101 necessary). Don't save-excursion any more (it's done by the called
10102 subroutines). Use a cache to avoid redundant computations.
10103 Use complete-with-action rather than pascal-completion-response and
10104 let it apply the predicate as well.
10105 (pascal-complete-word): Use completion-in-buffer when
10106 pascal-toggle-completions is nil.
10107 (pascal-show-completions): Don't bind pascal-buffer-to-use since it's
10108 not used any more.
10109 (pascal-comp-defun): Don't change buffer any more.
10110 Use complete-with-action rather than pascal-completion-response and
10111 let it apply the predicate as well.
10112 (pascal-goto-defun): Change buffer before calling pascal-comp-defun
10113 when neded.
10114
10115 2009-12-02 Kenichi Handa <handa@m17n.org>
10116
10117 * language/indian.el: Include ZWJ and ZWNJ in the patterns to
10118 shape for all Indic scripts.
10119
10120 2009-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
10121
10122 Use completion-in-buffer.
10123 * wid-edit.el (widget-field-text-end): New function.
10124 (widget-field-value-get): Use it.
10125 (widget-string-complete, widget-file-complete)
10126 (widget-color-complete): Use it and completion-in-region.
10127 (widget-complete): Don't narrow the buffer.
10128
10129 2009-12-02 Glenn Morris <rgm@gnu.org>
10130
10131 * mail/rmail.el (rmail-pop-to-buffer): New function. (Bug#2282)
10132 (rmail-select-summary): Use rmail-pop-to-buffer.
10133 * mail/rmailsum.el: Replace all pop-to-buffer calls with
10134 rmail-pop-to-buffer, to prevent horizontal splits.
10135
10136 * calendar/diary-lib.el (diary-list-entries): Replace superfluous
10137 save-excursion with save-current-buffer.
10138 Widen before searching. (Bug#5093)
10139 (diary-list-sexp-entries): Remove superfluous save-excursion.
10140
10141 2009-12-02 Michael Welsh Duggan <mwd@cert.org>
10142
10143 * woman.el (woman-make-bufname): Handle man-pages with "." in the
10144 name. (Bug#5038)
10145
10146 2009-12-02 Andreas Politz <politza@fh-trier.de> (tiny change)
10147
10148 * ido.el (ido-file-internal): Handle filenames at point that do
10149 not have a directory part. (Bug#5049)
10150
10151 2009-12-02 Juanma Barranquero <lekktu@gmail.com>
10152
10153 * mpc.el (mpc-intersection, mpc-host, mpc-songs-playlist)
10154 (mpc-songs-jump-to, mpc-resume): Doc fixes.
10155
10156 2009-12-01 Rob Riepel <riepel@networking.Stanford.EDU>
10157
10158 * emulation/tpu-extras.el (tpu-cursor-free-mode): Emit message.
10159 (tpu-set-cursor-free, tpu-set-cursor-bound): Don't emit a message
10160 any more.
10161
10162 2009-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
10163
10164 * comint.el (comint-insert-input): Ignore clicks to the right of
10165 the field. Reported by Bob Nnamtrop <bobnnamtrop@gmail.com>.
10166
10167 * vc.el (vc-print-log-internal): Don't wait for the process to
10168 terminate before setting up the major mode.
10169
10170 * pcmpl-unix.el (pcomplete/cd): Complete more than one argument, just
10171 in case.
10172
10173 * pcomplete.el (pcomplete-std-complete): Don't try to complete past
10174 the last element.
10175
10176 * simple.el (normal-erase-is-backspace-mode): Fix thinko in message.
10177
10178 2009-12-01 Glenn Morris <rgm@gnu.org>
10179
10180 * window.el (window--display-buffer-2): Fix previous changes.
10181
10182 2009-12-01 Chong Yidong <cyd@stupidchicken.com>
10183
10184 * mail/sendmail.el (mail-setup-hook, mail-send-hook): Doc fixes.
10185
10186 2009-12-01 Glenn Morris <rgm@gnu.org>
10187
10188 * Makefile.in (ELCFILES): Add mpc.elc.
10189
10190 2009-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
10191
10192 * mpc.el: New file.
10193
10194 2009-12-01 Glenn Morris <rgm@gnu.org>
10195
10196 * window.el (window-to-use): Define for compiler.
10197
10198 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Make message
10199 consistent with others (no final period).
10200
10201 * mail/rmailmm.el (rmail-mime-handle): Doc fix.
10202 (rmail-mime-show): Downcase the encoding. (Bug#5070)
10203
10204 2009-12-01 Dan Nicolaescu <dann@ics.uci.edu>
10205
10206 Make vc-print-log buttons work.
10207 * log-view.el (log-view-mode-map): Inherit from widget-keymap.
10208
10209 2009-11-30 Ryan C. Thompson <rct@thompsonclan.org> (tiny change)
10210
10211 * savehist.el (savehist-autosave-interval): Allow setting to nil
10212 through customize. (Bug#5056)
10213
10214 2009-11-30 Juanma Barranquero <lekktu@gmail.com>
10215
10216 Fix references to jit-lock properties.
10217 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
10218 Refer to jit-lock-defer-multiline, not jit-lock-multiline.
10219 (perl-font-lock-special-syntactic-constructs):
10220 Quote jit-lock-defer-multiline property.
10221
10222 2009-11-30 Dan Nicolaescu <dann@ics.uci.edu>
10223
10224 * vc-git.el (vc-git-registered): Call vc-git-root only once.
10225
10226 2009-11-30 Juri Linkov <juri@jurta.org>
10227
10228 * misearch.el (multi-isearch-search-fun): Always provide a non-nil
10229 value `buffer' of `multi-isearch-next-buffer-current-function'.
10230 Use `(current-buffer)' when `buffer' is nil.
10231 (multi-isearch-next-buffer-from-list): Don't fallback to
10232 `(current-buffer)' when `buffer' is nil. (Bug#4947)
10233
10234 2009-11-30 Juri Linkov <juri@jurta.org>
10235
10236 * misearch.el (multi-isearch-read-buffers): Move canonicalization
10237 of buffers with `get-buffer' to `multi-isearch-buffers'.
10238 (multi-isearch-buffers, multi-isearch-buffers-regexp):
10239 Canonicalize BUFFERS with `get-buffer'. Doc fix.
10240 (multi-isearch-files, multi-isearch-files-regexp): Canonicalize
10241 FILES with `expand-file-name' converting relative file names
10242 to absolute. Doc fix. (Bug#4727)
10243
10244 2009-11-30 Juri Linkov <juri@jurta.org>
10245
10246 * misearch.el (multi-isearch-read-buffers)
10247 (multi-isearch-read-matching-buffers): New functions.
10248 (multi-isearch-buffers, multi-isearch-buffers-regexp):
10249 Use them in the `interactive' spec. Doc fix.
10250 (multi-isearch-read-files, multi-isearch-read-matching-files):
10251 New functions.
10252 (multi-isearch-files, multi-isearch-files-regexp):
10253 Use them in the `interactive' spec. Doc fix. (Bug#4725)
10254
10255 2009-11-30 Juri Linkov <juri@jurta.org>
10256
10257 * doc-view.el (doc-view-continuous):
10258 Rename from `doc-view-continuous-mode'.
10259 (doc-view-menu): Move "Toggle display" to the top.
10260 Add submenu "Continuous" with radio buttons "Off"/"On"
10261 and "Save as Default".
10262 (doc-view-scroll-up-or-next-page)
10263 (doc-view-scroll-down-or-previous-page)
10264 (doc-view-next-line-or-next-page)
10265 (doc-view-previous-line-or-previous-page): Rename
10266 `doc-view-continuous-mode' to `doc-view-continuous'. (Bug#4896)
10267
10268 2009-11-30 Juri Linkov <juri@jurta.org>
10269
10270 * comint.el (comint-mode-map): Rebind `M-r' from
10271 `comint-previous-matching-input' to
10272 `comint-history-isearch-backward-regexp'.
10273 Unbind `M-s' to allow global key binding `M-s'.
10274 Add menu items for `comint-history-isearch-backward' and
10275 `comint-history-isearch-backward-regexp'. (Bug#3746)
10276
10277 2009-11-30 Juri Linkov <juri@jurta.org>
10278
10279 * replace.el (perform-replace): Let-bind recenter-last-op to nil.
10280 For def=recenter, replace `recenter' with `recenter-top-bottom'
10281 that is called with `this-command' and `last-command' let-bound
10282 to `recenter-top-bottom'. When the last `def' was not `recenter',
10283 set `recenter-last-op' to nil. (Bug#4981)
10284
10285 2009-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
10286
10287 Minor cleanup and simplification.
10288 * filecache.el (file-cache-add-directory)
10289 (file-cache-add-directory-recursively)
10290 (file-cache-add-from-file-cache-buffer)
10291 (file-cache-delete-file-regexp, file-cache-delete-directory)
10292 (file-cache-files-matching-internal, file-cache-display): Use dolist.
10293 (file-cache-temp-minibuffer-message): Delete function.
10294 (file-cache-minibuffer-complete): Use minibuffer-message instead.
10295
10296 * progmodes/perl-mode.el (perl-font-lock-special-syntactic-constructs):
10297 Don't signal an error when bumping into EOB in tr, s, or y.
10298
10299 2009-11-29 Juri Linkov <juri@jurta.org>
10300
10301 * startup.el (fancy-about-text): Fix wording of Guided Tour.
10302 (Bug#4960)
10303
10304 * descr-text.el (describe-char-unidata-list): Use lowercase name
10305 for "Unicode name" like in other tags.
10306
10307 2009-11-29 Juri Linkov <juri@jurta.org>
10308
10309 * ediff-util.el (ediff-minibuffer-with-setup-hook):
10310 New compatibility macro.
10311 (ediff-read-file-name): Use it instead of `minibuffer-with-setup-hook'.
10312
10313 2009-11-29 Juri Linkov <juri@jurta.org>
10314
10315 Add defcustom to define the cycling order of `recenter-top-bottom'.
10316 (Bug#4981)
10317
10318 * window.el (recenter-last-op): Doc fix.
10319 (recenter-positions): New defcustom.
10320 (recenter-top-bottom): Rewrite to use `recenter-positions'.
10321 (move-to-window-line-top-bottom): Rewrite to use `recenter-positions'.
10322
10323 2009-11-29 Michael Albinus <michael.albinus@gmx.de>
10324
10325 Improve integration of Tramp and ange-ftp in eshell.
10326
10327 * eshell/em-unix.el (eshell/whoami): Make it a defun but a defalias.
10328 (eshell/su): Flatten args. Apply better args parsing. Use "cd".
10329 (eshell/sudo): Flatten args. Let-bind `default-directory'.
10330
10331 * eshell/esh-util.el (top): Require also Tramp when compiling.
10332 (eshell-directory-files-and-attributes): Check for FTP remote
10333 connection.
10334 (eshell-parse-ange-ls): Let-bind `ange-ftp-name-format',
10335 `ange-ftp-ftp-name-arg', `ange-ftp-ftp-name-res'.
10336 (eshell-file-attributes): Handle ".". Return `entry'.
10337
10338 * net/ange-ftp.el (ange-ftp-parse-filename): Use `save-match-data'.
10339 (ange-ftp-directory-files-and-attributes)
10340 (ange-ftp-real-directory-files-and-attributes): New defuns.
10341
10342 * net/tramp.el (tramp-maybe-open-connection): Open the remote
10343 shell with "exec" when possible. This prevents trailing prompts
10344 in `start-file-process'.
10345
10346 2009-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
10347
10348 Try and remove assumptions about point-min==1.
10349 * nxml/rng-valid.el (rng-validate-mode): Don't hardcode point-min==1.
10350 (rng-compute-mode-line-string): Show the validation percentage in
10351 terms of the narrowed text, not the widened text.
10352 (rng-do-some-validation): Don't catch internal errors when debugging.
10353 (rng-first-error): Simplify.
10354 (rng-after-change-function): Remove work around. AFAIK the bug has
10355 been fixed a while ago.
10356
10357 * image-mode.el (image-minor-mode): Exit more gracefully when the image
10358 cannot be displayed (e.g. when doing C-x C-f some-new-file.svg RET).
10359
10360 * man.el (Man-completion-table): Make it easier to enter "<sec> <name>".
10361
10362 * eshell/em-prompt.el (eshell-prompt-function): Abbreviate pwd, since
10363 `cd' doesn't always do it for us (bug#5067).
10364
10365 * pcomplete.el (pcomplete-entries): Revert change installed mistakenly
10366 on 2009-10-25 as part of some other change (bug#5067).
10367
10368 2009-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
10369
10370 * emacs-lisp/bytecomp.el (byte-compile-warning-types): New type
10371 `suspicious'.
10372 (byte-compile-warnings): Use byte-compile-warning-types.
10373 (byte-compile-save-excursion): Warn about use of set-buffer right
10374 after save-excursion.
10375
10376 * progmodes/gud.el (gud-basic-call): Don't only save the buffer but
10377 the excursion as well.
10378
10379 2009-11-27 Michael Albinus <michael.albinus@gmx.de>
10380
10381 * eshell/em-unix.el (eshell/su, eshell/sudo): New defuns,
10382 providing a Tramp related implementation of "su" and "sudo".
10383 (eshell-unix-initialize): Add "su" and "sudo".
10384
10385 2009-11-27 Daiki Ueno <ueno@unixuser.org>
10386
10387 * net/socks.el (socks-send-command): Convert binary request to
10388 unibyte before sending. This fixes mishandling of some port
10389 numbers such as 129.
10390
10391 2009-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
10392
10393 * help.el (describe-bindings-internal): Remove `interactive'.
10394
10395 * man.el (Man-completion-table): Trim a terminating "(".
10396 Remove the space between name page a section.
10397 Add the command's description on the `help-echo' property.
10398 Remove `process-connection-type' binding since it's unused by
10399 call-process.
10400 Provide completion for the "<section> <name>" format as well.
10401 (Man-default-man-entry): Remove spurious var shadowing the argument.
10402
10403 2009-11-26 Kevin Ryde <user42@zip.com.au>
10404
10405 * log-view.el: Add "Keywords: tools", since its other keywords
10406 aren't in finder-known-keywords, and following vc.el.
10407
10408 * sha1.el (sha1-string-external): default-directory "/" in case
10409 otherwise non-existent. process-connection-type pipe for touch of
10410 efficiency recommended by elisp manual. (An aside in Bug#3911.)
10411
10412 2009-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
10413
10414 Misc coding convention cleanups.
10415 * htmlfontify.el (hfy-init-kludge-hook): Rename from
10416 hfy-init-kludge-hooks.
10417 (hfy-etags-cmd, hfy-flatten-style, hfy-invisible-name, hfy-face-at)
10418 (hfy-fontify-buffer, hfy-prepare-index-i, hfy-subtract-maps)
10419 (hfy-save-kill-buffers, htmlfontify-copy-and-link-dir): Use dolist
10420 and push.
10421 (hfy-slant, hfy-weight): Use tables rather than code.
10422 (hfy-box-to-border-assoc, hfy-box-to-style, hfy-decor)
10423 (hfy-face-to-style-i, hfy-fontify-buffer): Use `case'.
10424 (hfy-face-attr-for-class): Initialize `face-spec' directly.
10425 (hfy-face-to-css): Remove `nconc' with single arg.
10426 (hfy-p-to-face-lennart): Use `or'.
10427 (hfy-face-at): Hoist common code. Remove spurious quotes in `case'.
10428 (hfy-overlay-props-at, hfy-mark-tag-hrefs): Eta-reduce.
10429 (hfy-compile-stylesheet, hfy-merge-adjacent-spans)
10430 (hfy-compile-face-map, hfy-parse-tags-buffer): Use push.
10431 (hfy-force-fontification): Use run-hooks.
10432
10433 2009-11-26 Vivek Dasmohapatra <vivek@etla.org>
10434
10435 Various minor fixes.
10436 * htmlfontify.el (hfy-default-header): Add toggle_invis since
10437 Javascript belongs in the header, not the body.
10438 (hfy-javascript): Remove.
10439 (hfy-fontify-buffer): Don't insert it any more.
10440 (hfy-face-at): Handle (face0 face1 face2) style face properties.
10441 Fix bug in invis handling when there were no invis props in a chunk.
10442
10443 2009-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
10444
10445 * vc-bzr.el (vc-bzr-annotate-command): Make operation asynchronous.
10446
10447 2009-11-26 Dan Nicolaescu <dann@ics.uci.edu>
10448
10449 * finder.el (finder-mode-map): Add a menu.
10450
10451 2009-11-26 Michael McNamara <mac@mail.brushroad.com>
10452
10453 * progmodes/verilog-mode.el (verilog-at-struct-p): Support "signed" and
10454 "unsigned" structs.
10455
10456 (verilog-leap-to-head, verilog-backward-token): Handle "disable
10457 fork" statement better.
10458
10459 2009-11-26 Wilson Snyder <wsnyder@wsnyder.org>
10460
10461 * progmodes/verilog-mode.el (verilog-auto-insert-lisp)
10462 (verilog-delete-auto, verilog-delete-empty-auto-pair)
10463 (verilog-library-filenames): Fix AUTOINSERTLISP to support insert-file.
10464 Reported by Clay Douglass.
10465
10466 (verilog-auto-inst, verilog-auto-star-safe)
10467 (verilog-delete-auto-star-implicit, verilog-read-sub-decls):
10468 Fix removing "// Interfaces" when saving .* expansions. Reported by
10469 Pierre-David Pfister.
10470
10471 2009-11-26 Glenn Morris <rgm@gnu.org>
10472
10473 * eshell/em-dirs.el (eshell/cd): Don't throw to a tag outside
10474 the scope.
10475
10476 2009-11-25 Johan Bockgård <bojohan@gnu.org>
10477
10478 * vc-annotate.el (vc-annotate-revision-previous-to-line):
10479 Really use previous revision.
10480
10481 2009-11-25 Kevin Ryde <user42@zip.com.au>
10482
10483 * man.el (Man-completion-table): default-directory "/" in case
10484 doesn't otherwise exist. process-environment COLUMNS=999 so as
10485 not to truncate long names. process-connection-type pipe to avoid
10486 any chance of hitting the pseudo-tty TIOCGWINSZ.
10487 (man): completion-ignore-case t for friendliness and since man
10488 itself is case-insensitive on the command line.
10489 Further to Bug#3717.
10490
10491 * arc-mode.el: Add "Keywords: files", so the details in its
10492 commentary can be reached from finder-by-keyword.
10493 * textmodes/dns-mode.el: Add "Keywords: comm". It's only an
10494 editing mode, but it's comms related and sgml-mode.el has "comm"
10495 on that basis too.
10496 * textmodes/bibtex-style.el: Add "Keywords: tex".
10497 * international/isearch-x.el, international/ja-dic-cnv.el:
10498 * international/ja-dic-utl.el, international/kkc.el:
10499 Add "Keywords: i18n", so they can be reached from finder-by-keyword.
10500
10501 2009-11-25 Juri Linkov <juri@jurta.org>
10502
10503 * man.el (Man-completion-table): Modify regexp to include
10504 section names to completion strings. (Bug#3717)
10505
10506 2009-11-25 Juri Linkov <juri@jurta.org>
10507
10508 Search recursively in gzipped files. (Bug#4982)
10509
10510 * progmodes/grep.el (grep-highlight-matches): Add new options
10511 `always' and `auto'. Doc fix.
10512 (grep-process-setup): Check `grep-highlight-matches' for
10513 `auto-detect' to determine the need to compute grep defaults.
10514 Move Windows/DOS specific --colors settings handling
10515 to `grep-compute-defaults'. Check `grep-highlight-matches'
10516 to get the value of "--color=".
10517 (grep-compute-defaults): Compute `grep-highlight-matches' when it
10518 has the value `auto-detect'. Move Windows/DOS specific settings
10519 from `grep-process-setup'.
10520 (zrgrep): New command with alias `rzgrep'.
10521
10522 2009-11-25 Juri Linkov <juri@jurta.org>
10523
10524 * doc-view.el (doc-view-mode): Set buffer-local `view-read-only'
10525 to nil instead of switching off view-mode. (Bug#4896)
10526
10527 2009-11-25 Juri Linkov <juri@jurta.org>
10528
10529 Mouse-wheel scrolling for DocView Continuous mode. (Bug#4896)
10530
10531 * mwheel.el (mwheel-scroll-up-function)
10532 (mwheel-scroll-down-function): New defvars.
10533 (mwheel-scroll): Funcall `mwheel-scroll-up-function' instead of
10534 `scroll-up', and `mwheel-scroll-down-function' instead of
10535 `scroll-down'.
10536
10537 * doc-view.el (doc-view-scroll-up-or-next-page)
10538 (doc-view-scroll-down-or-previous-page): Add optional ARG.
10539 Use this ARG in the call to image-scroll-up/image-scroll-down.
10540 Change `interactive' spec to "P". Goto next/previous page only
10541 when `doc-view-continuous-mode' is non-nil or ARG is nil (for the
10542 SPC/DEL case). Doc fix.
10543 (doc-view-next-line-or-next-page)
10544 (doc-view-previous-line-or-previous-page): Rename arg to ARG
10545 for consistency.
10546 (doc-view-mode): Set buffer-local `mwheel-scroll-up-function' to
10547 `doc-view-scroll-up-or-next-page', and buffer-local
10548 `mwheel-scroll-down-function' to
10549 `doc-view-scroll-down-or-previous-page'.
10550
10551 2009-11-25 Juri Linkov <juri@jurta.org>
10552
10553 Provide additional default values (directories at other Dired
10554 windows) via M-n in the minibuffer of some Dired commands.
10555
10556 * dired-aux.el (dired-diff, dired-compare-directories)
10557 (dired-do-create-files): Use `dired-dwim-target-defaults' to set
10558 `minibuffer-default' in `minibuffer-with-setup-hook'.
10559 (dired-dwim-target-directory): Find a window that displays Dired
10560 buffer instead of failing when the next window is not Dired.
10561 Use `get-window-with-predicate' to find for the next Dired window.
10562 (dired-dwim-target-defaults): New function.
10563
10564 * ediff-util.el (ediff-read-file-name):
10565 Use `dired-dwim-target-defaults' to set `minibuffer-default'
10566 in `minibuffer-with-setup-hook'.
10567
10568 2009-11-25 Juri Linkov <juri@jurta.org>
10569
10570 Provide additional default values (file name at point or at the
10571 current Dired line) via M-n for file reading minibuffers. (Bug#5010)
10572
10573 * minibuffer.el (read-file-name-defaults): New function.
10574 (read-file-name): Reset `minibuffer-default' to nil when
10575 it duplicates initial input `insdef'.
10576 Bind `minibuffer-default-add-function' to lambda that
10577 calls `read-file-name-defaults' in `minibuffer-selected-window'.
10578 (minibuffer-insert-file-name-at-point): New command.
10579
10580 * files.el (file-name-at-point-functions): New defcustom.
10581 (find-file-default): Remove defvar.
10582 (find-file-read-args): Don't use `find-file-default'.
10583 Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
10584 to `read-file-name'.
10585 (find-file-literally): Use `read-file-name' with
10586 `confirm-nonexistent-file-or-buffer'.
10587
10588 * ffap.el (ffap-guess-file-name-at-point): New autoloaded function.
10589
10590 * dired.el (dired-read-dir-and-switches):
10591 Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
10592 to `read-file-name'.
10593 (dired-file-name-at-point): New function.
10594 (dired-mode): Add hook `dired-file-name-at-point' to
10595 `file-name-at-point-functions'.
10596
10597 2009-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
10598
10599 Really make the *Completions* window soft-dedicated (bug#5030).
10600 * window.el (window--display-buffer-2): Add `dedicated' argument.
10601 (display-buffer): Pass it when needed so the dedicated flag is set
10602 after calling set-window-buffer, which would otherwise reset it.
10603
10604 2009-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
10605
10606 * progmodes/meta-mode.el (meta-complete-symbol):
10607 * progmodes/etags.el (complete-tag):
10608 * mail/mailabbrev.el (mail-abbrev-complete-alias):
10609 Use completion-in-region.
10610
10611 * dabbrev.el (dabbrev--minibuffer-origin): Use minibuffer-selected-window.
10612 (dabbrev-completion): Use completion-in-region.
10613 (dabbrev--abbrev-at-point): Simplify regexp.
10614
10615 * abbrev.el (abbrev--before-point): Use word-motion functions
10616 if :regexp is not specified (bug#5031).
10617
10618 * subr.el (string-prefix-p): New function.
10619
10620 * man.el (Man-completion-cache): New var.
10621 (Man-completion-table): Use it.
10622
10623 * vc.el (vc-print-log-internal): Make `limit' optional for better
10624 compatibility (e.g. with vc-annotate.el).
10625
10626 2009-11-24 Kevin Ryde <user42@zip.com.au>
10627
10628 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp):
10629 Build value with regexp-opt instead of explicit joining loop. (Bug#4927)
10630
10631 * emacs-lisp/elint.el (elint-add-required-env): Better error message
10632 when .el source file not found or other error.
10633
10634 2009-11-24 Markus Triska <markus.triska@gmx.at>
10635
10636 * linum.el (linum-update-window): Ignore intangible (bug#4996).
10637
10638 2009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
10639
10640 Handle the [back] button properly (bug#4979).
10641 * descr-text.el (describe-text-properties): Add a `buffer' argument.
10642 Use help-setup-xref, help-buffer, and with-help-window.
10643 (describe-char): Add `buffer' argument.
10644 Pass proper command to help-setup-xref. Don't meddle with
10645 help-xref-stack-item directly.
10646 (describe-text-category): Use with-help-window and help-buffer.
10647
10648 * emacs-lisp/shadow.el (list-load-path-shadows): Setup a major mode
10649 for the displayed buffer (bug#4887).
10650
10651 * man.el (Man-completion-table): New function.
10652 (man): Use it.
10653
10654 2009-11-24 David Reitter <david.reitter@gmail.com>
10655
10656 * vc-git.el (vc-git-registered): Use checkout directory (where
10657 .git is) rather than the file's directory and a relative path spec
10658 to work around a bug in git.
10659
10660 2009-11-24 Michael Albinus <michael.albinus@gmx.de>
10661
10662 Improve handling of processes on remote hosts.
10663
10664 * eshell/esh-util.el (eshell-path-env): New defvar.
10665 (eshell-parse-colon-path): New defun.
10666 (eshell-file-attributes): Use `eshell-parse-colon-path'.
10667
10668 * eshell/esh-ext.el (eshell-search-path):
10669 Use `eshell-parse-colon-path'.
10670 (eshell-remote-command): Remove argument HANDLER.
10671 (eshell-external-command): Check for FTP remote connection.
10672
10673 * eshell/esh-proc.el (eshell-gather-process-output):
10674 Use `file-truename', in order to start also symlinked files.
10675 Apply `start-file-process' instead of `start-process'.
10676 Shorten `command' to the local file name part.
10677
10678 * eshell/em-cmpl.el (eshell-complete-commands-list):
10679 Use `eshell-parse-colon-path'.
10680
10681 * eshell/em-unix.el (eshell/du): Check for FTP remote connection.
10682
10683 * net/tramp.el (tramp-eshell-directory-change): New defun. Add it
10684 to `eshell-directory-change-hook'.
10685
10686 2009-11-24 Tassilo Horn <tassilo@member.fsf.org>
10687
10688 * doc-view.el (doc-view-mode): Switch off view-mode explicitly,
10689 because it could be enabled automatically if view-read-only is non-nil.
10690
10691 2009-11-24 Michael Kifer <kifer@cs.stonybrook.edu>
10692
10693 * ediff-vers.el (ediff-rcs-get-output-buffer): Revert the change
10694 made on 2009-11-22.
10695
10696 2009-11-24 Glenn Morris <rgm@gnu.org>
10697
10698 * bookmark.el (bookmark-bmenu-hide-filenames): Remove assignment to
10699 deleted variable bookmark-bmenu-bookmark-column.
10700
10701 2009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
10702
10703 * bookmark.el (bookmark-bmenu-search): Clear echo area when exiting.
10704
10705 2009-11-23 Ken Brown <kbrown@cornell.edu> (tiny change)
10706
10707 * net/browse-url.el (browse-url-filename-alist): On Windows, add
10708 two slashes to the "file:" prefix.
10709 (browse-url-file-url): De-munge Cygwin filenames before passing
10710 them to Windows browser.
10711 (browse-url-default-windows-browser): Use call-process.
10712
10713 2009-11-23 Juri Linkov <juri@jurta.org>
10714
10715 Implement DocView Continuous mode. (Bug#4896)
10716 * doc-view.el (doc-view-continuous-mode): New defcustom.
10717 (doc-view-mode-map): Bind C-n/<down> to
10718 `doc-view-next-line-or-next-page', C-p/<up> to
10719 `doc-view-previous-line-or-previous-page'.
10720 (doc-view-next-line-or-next-page)
10721 (doc-view-previous-line-or-previous-page): New commands.
10722
10723 2009-11-23 Juri Linkov <juri@jurta.org>
10724
10725 Implement Isearch in comint input history. (Bug#3746)
10726 * comint.el (comint-mode): Add `comint-history-isearch-setup' to
10727 `isearch-mode-hook'.
10728 (comint-history-isearch): New defcustom.
10729 (comint-history-isearch-backward)
10730 (comint-history-isearch-backward-regexp): New commands.
10731 (comint-history-isearch-message-overlay): New buffer-local variable.
10732 (comint-history-isearch-setup, comint-history-isearch-end)
10733 (comint-goto-input, comint-history-isearch-search)
10734 (comint-history-isearch-message, comint-history-isearch-wrap)
10735 (comint-history-isearch-push-state)
10736 (comint-history-isearch-pop-state): New functions.
10737
10738 2009-11-23 Michael Albinus <michael.albinus@gmx.de>
10739
10740 * net/tramp.el (tramp-shell-prompt-pattern): Use \r for carriage
10741 return.
10742 (tramp-handle-make-symbolic-link)
10743 (tramp-handle-dired-compress-file, tramp-handle-expand-file-name):
10744 Quote file names.
10745 (tramp-send-command-and-check): New argument DONT-SUPPRESS-ERR.
10746 (tramp-handle-process-file): Use it.
10747
10748 2009-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
10749
10750 * window.el (move-to-window-line-last-op): Remove.
10751 (move-to-window-line-top-bottom): Reuse recenter-last-op instead.
10752
10753 2009-11-23 Deniz Dogan <deniz.a.m.dogan@gmail.com> (tiny change)
10754
10755 Make M-r mirror the new cycling behavior of C-l.
10756 * window.el (move-to-window-line-last-op): New var.
10757 (move-to-window-line-top-bottom): New command.
10758 (global-map): Bind M-r move-to-window-line-top-bottom.
10759
10760 2009-11-23 Sven Joachim <svenjoac@gmx.de>
10761
10762 * dired-x.el (dired-guess-shell-alist-default):
10763 Support xz format. (Bug#4953)
10764
10765 2009-11-22 Michael Kifer <kifer@cs.stonybrook.edu>
10766
10767 * emulation/viper-cmd.el: Use viper-last-command-char instead of
10768 last-command-char/last-command-event.
10769 (viper-prefix-arg-value): Do correct conversion of event-char for
10770 XEmacs.
10771
10772 * emulation/viper-util.el, emulation/viper.el:
10773 Use viper-last-command-char instead of
10774 last-command-char/last-command-event.
10775
10776 * ediff-init.el, ediff-mult.el, ediff-util.el:
10777 Replace last-command-char and last-command-event
10778 with (ediff-last-command-char) everywhere.
10779
10780 * ediff-vers.el (ediff-rcs-get-output-buffer): Make sure the buffer is
10781 created in fundamental mode.
10782
10783 * ediff.el (ediff-version): Revert the change of interactive-p to
10784 called-interactively-p.
10785
10786 2009-11-22 Tassilo Horn <tassilo@member.fsf.org>
10787
10788 * progmodes/subword.el (subword-mode-map): Fix subword-mode-map
10789 generation from word-movement command names.
10790
10791 2009-11-21 Jan Djärv <jan.h.d@swipnet.se>
10792
10793 * cus-start.el (all): Add native condition for font-use-system-font.
10794
10795 2009-11-21 Nathaniel Flath <flat0103@gmail.com>
10796
10797 * progmodes/cc-menus.el (cc-imenu-java-generic-expression):
10798 Correct the patch from 2009-11-18. (Bug#3910)
10799
10800 2009-11-21 Tassilo Horn <tassilo@member.fsf.org>
10801
10802 * progmodes/subword.el: Rename from lisp/subword.el.
10803
10804 * subword.el: Rename to progmodes/subword.el.
10805
10806 * Makefile.in (ELCFILES): Adapt to subword.el move.
10807
10808 2009-11-21 Thierry Volpiatto <thierry.volpiatto@gmail.com>
10809 Stefan Monnier <monnier@iro.umontreal.ca>
10810
10811 * bookmark.el (bookmark-bmenu-bookmark-column): Remove var.
10812 (bookmark-bmenu-list): Save name on `bookmark-name-prop' text-prop.
10813 (bookmark-bmenu-show-filenames): Use push.
10814 (bookmark-bmenu-hide-filenames): Use local var instead of
10815 bookmark-bmenu-bookmark-column. Use pop. Don't save window-excursion.
10816 (bookmark-bmenu-bookmark): Use the new `bookmark-name-prop' text-prop.
10817 (bookmark-bmenu-execute-deletions): Don't bother adding/removing the
10818 filenames now that the bookmark names are always available.
10819
10820 2009-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
10821
10822 * bookmark.el (bookmark-search-prompt, bookmark-search-timer): Remove.
10823 (bookmark-search-pattern): Move and leave unbound.
10824 (bookmark-bmenu-mode-map): Change binding.
10825 (bookmark-read-search-input): Simplify.
10826 Don't use text-char-description. Don't error on non-char events.
10827 (bookmark-filtered-alist-by-regexp-only): Remove by folding into the
10828 only caller (i.e. bookmark-bmenu-filter-alist-by-regexp).
10829 (bookmark-bmenu-search): Don't check we're in a bookmark-list buffer.
10830 Use a local var for the timer.
10831 (bookmark-bmenu-cancel-search): Remove by folding into the only caller
10832 (i.e. bookmark-bmenu-search).
10833
10834 2009-11-21 Glenn Morris <rgm@gnu.org>
10835
10836 * mail/rmailmm.el (rmail-mime): Decode in fundamental-mode. (Bug#4993)
10837
10838 2009-11-20 Ken Brown <kbrown@cornell.edu> (tiny change)
10839
10840 * net/browse-url.el (browse-url-default-windows-browser):
10841 Use cygstart for cygwin.
10842
10843 2009-11-20 Karl Fogel <karl.fogel@red-bean.com>
10844
10845 * bookmark.el: Formatting and doc fixes only:
10846 (bookmark-search-delay): Shorten doc string to fit in 80 columns.
10847 (bookmark-bmenu-search): Wrap to fit within 80 columns.
10848 Minor grammar and punctuation fixes in doc string.
10849 (bookmark-read-search-input): Adjust to fit within 80 columns.
10850
10851 2009-11-20 Tassilo Horn <tassilo@member.fsf.org>
10852
10853 * progmodes/cc-cmds.el (c-forward-into-nomenclature)
10854 (c-backward-into-nomenclature): Adapt to subword renaming.
10855
10856 * subword.el (subword-forward, subword-backward, subword-mark)
10857 (subword-kill, subword-backward-kill, subword-transpose)
10858 (subword-downcase, subword-upcase, subword-capitalize)
10859 (subword-forward-internal, subword-backward-internal):
10860 Rename from forward-subword, backward-subword, mark-subword,
10861 kill-subword, backward-kill-subword, transpose-subwords,
10862 downcase-subword, upcase-subword, capitalize-subword,
10863 forward-subword-internal, backward-subword-internal.
10864
10865 2009-11-20 Thierry Volpiatto <thierry.volpiatto@gmail.com>
10866
10867 * bookmark.el (bookmark-search-delay, bookmark-search-prompt):
10868 New options.
10869 (bookmark-search-pattern, bookmark-search-timer, bookmark-quit-flag):
10870 New vars.
10871 (bookmark-read-search-input, bookmark-filtered-alist-by-regexp-only)
10872 (bookmark-bmenu-filter-alist-by-regexp)
10873 (bookmark-bmenu-goto-bookmark, bookmark-bmenu-cancel-search): New funs.
10874 (bookmark-bmenu-search): New command.
10875 (bookmark-bmenu-mode-map): Bind it.
10876
10877 2009-11-20 Tassilo Horn <tassilo@member.fsf.org>
10878
10879 * progmodes/cc-cmds.el: declare-functioned forward-subword and
10880 backward-subword to quit the byte-compiler.
10881
10882 * makefile.w32-in: Don't refer cc-subword.elc but subword.elc.
10883
10884 * Makefile.in: Don't refer cc-subword.elc but subword.elc.
10885
10886 * progmodes/cc-cmds.el (c-update-modeline)
10887 (c-forward-into-nomenclature, c-backward-into-nomenclature):
10888 Refer to subword.el functions instead of cc-subword.el.
10889
10890 * progmodes/cc-mode.el (subword-mode, c-mode-base-map): Refer to
10891 subword.el functions instead of cc-subword.el.
10892
10893 * progmodes/cc-subword.el: Rename to subword.el.
10894 * subword.el: Rename from progmodes/cc-subword.el.
10895 (subword-mode-map): Rename from c-subword-mode-map.
10896 (subword-mode): Rename from c-subword-mode.
10897 (global-subword-mode): New global minor mode.
10898 (forward-subword): Rename from c-forward-subword.
10899 (backward-subword): Rename from c-backward-subword.
10900 (mark-subword): Rename from c-mark-subword.
10901 (kill-subword): Rename from c-kill-subword.
10902 (backward-kill-subword): Rename from c-backward-kill-subword.
10903 (transpose-subwords): Rename from c-tranpose-subword.
10904 (downcase-subword): Rename from c-downcase-subword.
10905 (capitalize-subword): Rename from c-capitalize-subword.
10906 (forward-subword-internal): Rename from c-forward-subword-internal.
10907 (backward-subword-internal): Rename from c-backward-subword-internal.
10908
10909 2009-11-20 Dan Nicolaescu <dann@ics.uci.edu>
10910
10911 * vc.el (vc-deduce-fileset): Allow non-state changing operations
10912 from a dired buffer.
10913 (vc-dired-deduce-fileset): New function.
10914 (vc-root-diff, vc-print-root-log): Use it.
10915
10916 * vc-annotate.el (vc-annotate-show-log-revision-at-line): Pass a
10917 nil LIMIT argument to vc-print-log-internal.
10918
10919 2009-11-20 Glenn Morris <rgm@gnu.org>
10920
10921 * Makefile.in (ELCFILES): Regenerate.
10922
10923 2009-11-20 Jay Belanger <jay.p.belanger@gmail.com>
10924
10925 * calc/calc.el (calc-set-mode-line):
10926 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
10927 (math-format-number): Rename `math-format-complement-signed' to
10928 `math-format-twos-complement'.
10929
10930 * calc/calc-bin.el (math-format-twos-complement): Rename from
10931 math-format-complement-signed.
10932 (calc-radix): Rename `calc-complement-signed-mode' to
10933 `calc-twos-complement-mode'.
10934 (calc-octal-radix, calc-hex-radix): Add an argument for
10935 two's complement.
10936
10937 * calc/calc-embed.el (calc-embedded-mode-vars):
10938 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
10939
10940 * calc/calc-ext.el (calc-init-extensions):
10941 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
10942 (math-format-number-fancy): Let `calc-twos-complement-mode' be nil.
10943
10944 * calc/calc-units.el (math-build-units-table-buffer):
10945 Let `calc-twos-complement-mode' be nil.
10946
10947 * calc/calc-menu.el (calc-modes-menu): Clean up two's complement
10948 entries.
10949
10950 * calc/calc-vec.el (calcFunc-vunpack):
10951 * calc/calc-aent.el (calc-do-calc-eval):
10952 * calc/calc-forms.el (math-format-date):
10953 * calc/calc-graph.el (calc-graph-plot):
10954 * calc/calc-math.el (math-use-emacs-fn):
10955 * calc/calccomp.el (math-compose-expr):
10956 Let `calc-twos-complement-mode' be nil.
10957
10958 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
10959
10960 * abbrev.el (abbrev-with-wrapper-hook): (re)move...
10961 * simple.el (with-wrapper-hook): ...to here. Add argument `args'.
10962 * minibuffer.el (completion-in-region-functions): New hook.
10963 (completion-in-region): New function.
10964 * emacs-lisp/lisp.el (lisp-complete-symbol):
10965 * pcomplete.el (pcomplete-std-complete): Use it.
10966
10967 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
10968
10969 * textmodes/tex-mode.el (latex-complete-bibtex-cache)
10970 (latex-complete-alist): New vars.
10971 (latex-string-prefix-p, latex-complete-bibtex-keys)
10972 (latex-complete-envnames, latex-complete-refkeys)
10973 (latex-complete-data): New functions.
10974 (latex-complete, latex-indent-or-complete): New commands.
10975
10976 * window.el (display-buffer-mark-dedicated): New var.
10977 (display-buffer): Obey it.
10978 * minibuffer.el (minibuffer-completion-help): Use it.
10979
10980 * progmodes/sym-comp.el (symbol-complete): Use completion-in-region.
10981
10982 * filecache.el (file-cache-add-file): Use push and cons.
10983 (file-cache-delete-file-regexp): Use push.
10984 (file-cache-complete): Use completion-in-region.
10985
10986 * simple.el (with-wrapper-hook): Fix thinko.
10987
10988 * hfy-cmap.el (hfy-rgb-file): Use locate-file.
10989 (htmlfontify-load-rgb-file): Remove unnused var `ff'.
10990 Use with-current-buffer and string-to-number.
10991 (hfy-fallback-colour-values): Use assoc-string.
10992 * htmlfontify.el (hfy-face-to-css): Remove unused var `style'.
10993 (hfy-face-at): Remove unused var `found-face'.
10994 (hfy-compile-stylesheet): Remove unused var `css'.
10995 (hfy-fontify-buffer): Remove unused vars `in-style', `invis-button',
10996 and `orig-buffer'.
10997 (hfy-buffer, hfy-copy-and-fontify-file, hfy-parse-tags-buffer):
10998 Use with-current-buffer.
10999 (hfy-text-p): Use expand-file-name and fewer setq.
11000
11001 2009-11-19 Vivek Dasmohapatra <vivek@etla.org>
11002
11003 * htmlfontify.el, hfy-cmap.el: New files.
11004
11005 2009-11-19 Juri Linkov <juri@jurta.org>
11006
11007 * minibuffer.el (completions-format): New defcustom.
11008 (completion--insert-strings): Implement vertical format.
11009
11010 * simple.el (switch-to-completions): Move point to the first
11011 completion when point was at the beginning of the buffer.
11012
11013 2009-11-19 Juri Linkov <juri@jurta.org>
11014
11015 * find-dired.el (find-name-arg): Remove autoload. (Bug#4387)
11016
11017 * progmodes/grep.el (rgrep): Require `find-dired' for `find-name-arg'.
11018
11019 2009-11-19 Chong Yidong <cyd@stupidchicken.com>
11020
11021 * mail/sendmail.el (mail-yank-prefix): Change default to "> ".
11022 (mail-signature): Change default to t.
11023 (mail-from-style): Deprecate `system-default' value.
11024 (mail-insert-from-field): For default value of mail-from-style,
11025 default to `angles' unless `angles' needs quoting and `parens'
11026 does not.
11027 (mail-citation-prefix-regexp): Use citation regexp from
11028 message-mode.
11029
11030 2009-11-19 Michael Albinus <michael.albinus@gmx.de>
11031
11032 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
11033 Set variables for computing the prompt for reading password.
11034
11035 2009-11-19 Glenn Morris <rgm@gnu.org>
11036
11037 * dired-aux.el (dired-compress-file-suffixes): Add ".xz". (Bug#4953)
11038
11039 * textmodes/flyspell.el (sgml-lexical-context): Declare.
11040
11041 * net/newst-treeview.el (newsticker-treeview-treewindow-width)
11042 (newsticker-treeview-listwindow-height): Fix custom type.
11043
11044 2009-11-19 Kenichi Handa <handa@m17n.org>
11045
11046 * descr-text.el (describe-char-padded-string): Compose with TAB
11047 only if there's a font for CH.
11048 (describe-char): Fix the condition for detecting a trivial composition.
11049
11050 2009-11-18 Nathaniel Flath <flat0103@gmail.com>
11051
11052 * progmodes/cc-menus.el (cc-imenu-java-generic-expression): A new,
11053 more accurate version of the regexp. (Bug#3910)
11054
11055 2009-11-18 Bernhard Herzog <bernhard.herzog@intevation.de> (tiny change)
11056
11057 * vc-hg.el (vc-hg-diff): Fix last patch: do not change directory.
11058
11059 2009-11-18 Juanma Barranquero <lekktu@gmail.com>
11060
11061 * font-setting.el (font-use-system-font): Declare for byte-compiler.
11062 (font-setting-change-default-font): Fix typo in docstring.
11063
11064 2009-11-18 Alan Mackenzie <acm@muc.de>
11065
11066 * progmodes/cc-defs.el (c-version): Bump to 5.31.8.
11067
11068 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
11069
11070 * font-setting.el (font-use-system-font): Move ...
11071
11072 * cus-start.el (all): ... to here.
11073
11074 2009-11-17 Michael Albinus <michael.albinus@gmx.de>
11075
11076 * net/tramp.el (tramp-advice-file-expand-wildcards): Simplify.
11077 Don't set `ad-return-value' if `ad-do-it' doesn't.
11078
11079 * net/tramp-gvfs.el (tramp-gvfs-handle-write-region): Set file
11080 modification time.
11081
11082 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
11083
11084 * menu-bar.el: Put "Use system font" in Option-menu.
11085 (menu-bar-options-save): Add font-use-system-font.
11086
11087 * loadup.el: If feature system-font-setting or font-render-setting is
11088 there, load font-setting.
11089
11090 * Makefile.in (ELCFILES): Add font-settings.el.
11091 * font-setting.el: New file.
11092
11093 2009-11-17 Glenn Morris <rgm@gnu.org>
11094
11095 * vc-svn.el (vc-svn-print-log): Fix typo in previous.
11096
11097 * net/newst-treeview.el (newsticker--treeview-list-update-faces):
11098 Preserve point in the list buffer. (Bug#4939)
11099 Use point-at-eol.
11100 (newsticker--treeview-list-update-highlight)
11101 (newsticker--treeview-tree-update-highlight): Use point-at-bol/eol.
11102
11103 2009-11-16 Jay Belanger <jay.p.belanger@gmail.com>
11104
11105 * calc/calc-bin.el (math-symclip, calcFunc-symclip, calc-symclip):
11106 Remove.
11107
11108 * calc/calc-ext.el (calc-init-extensions): Remove references to
11109 symclip.
11110
11111 * calc/calc-menu.el (calc-arithmetic-menu): Remove `calc-symclip'.
11112
11113 * calc/calc-map.el (calc-get-operator, calc-b-oper-keys):
11114 * calc/calc-help.el (calc-b-prefix-help): Remove references to
11115 `calc-symclip'.
11116
11117 2009-11-16 Kevin Ryde <user42@zip.com.au>
11118
11119 * textmodes/flyspell.el (sgml-mode-flyspell-verify):
11120 Use `sgml-lexical-context' instead of own parse for tag (Bug#4511).
11121
11122 * emacs-lisp/lisp-mnt.el (lm-keywords): Allow multi-line keywords.
11123 (lm-keywords-list): Allow comma-only separator like "foo,bar".
11124 Ignore trailing spaces by omit-nulls to split-string (fixing
11125 regression from Emacs 21 due to the incompatible split-string
11126 change). (Bug #4928.)
11127
11128 2009-11-16 Dan Nicolaescu <dann@ics.uci.edu>
11129
11130 * vc.el (vc-log-show-limit): Default to 2000.
11131 (vc-print-log-internal): Insert buttons to request more entries
11132 when limiting the output.
11133
11134 * vc-sccs.el (vc-sccs-print-log):
11135 * vc-rcs.el (vc-rcs-print-log):
11136 * vc-cvs.el (vc-cvs-print-log):
11137 * vc-git.el (vc-git-print-log): Return 'limit-unsupported when
11138 LIMIT is non-nil.
11139
11140 2009-11-16 Michael Albinus <michael.albinus@gmx.de>
11141
11142 * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error): Raise only an
11143 error when `tramp-gvfs-dbus-event-vector' is set.
11144 (tramp-gvfs-maybe-open-connection): Loop over `read-event'.
11145
11146 2009-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
11147
11148 * vc-rcs.el (vc-rcs-consult-headers): Add missing save-excursion.
11149
11150 2009-11-16 Michael Albinus <michael.albinus@gmx.de>
11151
11152 * net/dbus.el (dbus-unregister-service): New defun.
11153 (dbus-register-property): Register the handlers of
11154 "org.freedesktop.DBus.Properties" for SERVICE.
11155 (dbus-property-handler): Fix docstring.
11156
11157 2009-11-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11158
11159 * emacs-lisp/bytecomp.el (byte-compile-output-file-form):
11160 Quote doc string reference in defvaralias as it is not in special form.
11161 (byte-compile-output-docform): Doc fix.
11162
11163 2009-11-16 Jay Belanger <jay.p.belanger@gmail.com>
11164
11165 * calc/calc.el (math-2-word-size, math-half-2-word-size)
11166 (calc-complement-signed-mode): New variables.
11167 (calc-set-mode-line): Add indicator for twos-complements.
11168 (math-format-number): Format twos-complement notation.
11169
11170 * calc/calc-bin.el (calc-word-size): Reset the variables
11171 `math-2-word-size' and `math-half-2-word-size'.
11172 (math-format-complement-signed, math-symclip, calcFunc-symclip)
11173 (calc-symclip): New functions.
11174
11175 * calc/calc-aent.el (math-read-token): Read complement signed numbers.
11176
11177 * calc/calc-embed.el (calc-embedded-mode-vars):
11178 Add `calc-complement-signed-mode' to the list of modes.
11179
11180 * calc/calc-map.el (calc-get-operator): Add `calc-symclip'.
11181 (calc-b-oper-keys): Add `calc-symclip' to list.
11182
11183 * calc/calc-ext.el (math-read-number-fancy): Read complement
11184 signed numbers.
11185 (calc-init-extensions): Add binding for `calc-symclip'.
11186 Add autoload for `calcFunc-symclip' and `calc-symclip'.
11187
11188 * calc/calc-menu.el (calc-arithmetic-menu): Add item for
11189 `calc-symclip'.
11190 (calc-modes-menu): Add item for twos complement mode.
11191
11192 * calc/calc-help.el (calc-b-prefix-help): Add help for `calc-symclip'.
11193
11194 2009-11-15 Chong Yidong <cyd@stupidchicken.com>
11195
11196 * register.el (jump-to-register, insert-register): Handle Semantic
11197 tags. From commented-out advice in semantic/senator.el.
11198
11199 2009-11-15 Dan Nicolaescu <dann@ics.uci.edu>
11200
11201 * vc.el (vc-log-show-limit): New variable.
11202 (vc-print-log, vc-print-root-log): Add new argument LIMIT. Set it
11203 when using a prefix argument.
11204 (vc-print-log-internal): Add new argument LIMIT.
11205
11206 * vc-svn.el (vc-svn-print-log):
11207 * vc-mtn.el (vc-mtn-print-log):
11208 * vc-hg.el (vc-hg-print-log):
11209 * vc-bzr.el (vc-bzr-print-log): Add new optional argument LIMIT,
11210 pass it to the log command when set. Make the BUFFER argument
11211 non-optional.
11212
11213 * vc-sccs.el (vc-sccs-print-log):
11214 * vc-rcs.el (vc-rcs-print-log):
11215 * vc-git.el (vc-git-print-log):
11216 * vc-cvs.el (vc-cvs-print-log): Add new optional argument LIMIT,
11217 ignore it. Make the BUFFER argument non-optional
11218
11219 * bindings.el (mode-line-buffer-identification): Do not purecopy.
11220
11221 2009-11-15 Chong Yidong <cyd@stupidchicken.com>
11222
11223 * dired.el (dired-mode-map): Move encryption items to "Operate"
11224 menu (Bug#4703).
11225
11226 * strokes.el (strokes-update-window-configuration): Make strokes
11227 buffer current before erasing (Bug#4906).
11228
11229 2009-11-15 Juri Linkov <juri@jurta.org>
11230
11231 * simple.el (set-mark-default-inactive): Add :type, :group
11232 and :version. (Bug#4876)
11233
11234 2009-11-15 Michael Albinus <michael.albinus@gmx.de>
11235
11236 * arc-mode.el (archive-maybe-copy): Move creation of directory ...
11237 (archive-unique-fname): ... here. (Bug#4929)
11238
11239 2009-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
11240
11241 * help-mode.el (help-make-xrefs): Undo the last revert, and replace it
11242 with a real fix.
11243
11244 * novice.el (disabled-command-function): Add useful args.
11245 Setup the help buffer so that [back] works.
11246 Remove redundant call to help-mode.
11247 (disabled-command-function): Use `case'.
11248 (en/disable-command): New function extracted from enable-command.
11249 (enable-command, disable-command): Use it.
11250
11251 2009-11-14 Glenn Morris <rgm@gnu.org>
11252
11253 * menu-bar.el (menu-bar-tools-menu): Read and send mail entries are not
11254 constants. (Bug#4913)
11255
11256 * emacs-lisp/elint.el (elint-standard-variables): Doc fix.
11257
11258 2009-11-14 Shigeru Fukaya <shigeru.fukaya@gmail.com>
11259
11260 * emacs-lisp/elint.el (elint-standard-variables): Add some variables
11261 defined in C that have no doc-strings. (Bug#1063)
11262
11263 2009-11-14 Francis Wright <F.J.Wright@qmul.ac.uk>
11264
11265 * cus-edit.el (data, files):
11266 * ps-print.el (postscript): Doc fixes for custom groups. (Bug#3327)
11267
11268 2009-11-14 Chong Yidong <cyd@stupidchicken.com>
11269
11270 * simple.el (shell-command): Doc fix (Bug#4891).
11271
11272 * help-mode.el (help-make-xrefs): Revert 2009-11-13 change.
11273
11274 2009-11-14 Glenn Morris <rgm@gnu.org>
11275
11276 * emulation/viper.el (viper-set-hooks): Remove duplicate advice
11277 statements for vc-diff, emerge-quit, and rmail-cease-edit.
11278 If they are already loaded, eval-after-load will do the right thing.
11279
11280 * speedbar.el (top-level): Remove unnecessary load of ange-ftp when
11281 compiling.
11282
11283 * emacs-lisp/bytecomp.el (byte-compile-single-version): Remove, unused.
11284
11285 * simple.el (x-selection-owner-p): Declare.
11286 (read-mail-command): Use custom radio type rather than choice.
11287 (completion-no-auto-exit): Doc fix.
11288
11289 * custom.el (defgroup):
11290 * epg-config.el (epg): Doc fixes.
11291
11292 2009-11-14 Dan Nicolaescu <dann@ics.uci.edu>
11293
11294 * bindings.el (mode-line-buffer-identification): Purecopy only the string.
11295 * international/ccl.el (define-ccl-program): Do not purecopy the
11296 docstring, defconst does it anyway.
11297
11298 2009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
11299
11300 * add-log.el (add-change-log-entry): Avoid displaying the changelog
11301 a second time.
11302
11303 * x-dnd.el (x-dnd-maybe-call-test-function):
11304 * window.el (split-window-vertically):
11305 * whitespace.el (whitespace-help-on):
11306 * vc-rcs.el (vc-rcs-consult-headers):
11307 * userlock.el (ask-user-about-lock-help)
11308 (ask-user-about-supersession-help):
11309 * type-break.el (type-break-force-mode-line-update):
11310 * time-stamp.el (time-stamp-conv-warn):
11311 * terminal.el (te-set-output-log, te-more-break, te-filter)
11312 (te-sentinel, terminal-emulator):
11313 * term.el (make-term, term-exec, term-sentinel, term-read-input-ring)
11314 (term-write-input-ring, term-check-source, term-start-output-log):
11315 (term-display-buffer-line, term-dynamic-list-completions):
11316 (term-ansi-make-term, serial-term):
11317 * subr.el (selective-display):
11318 * strokes.el (strokes-xpm-to-compressed-string, strokes-decode-buffer)
11319 (strokes-encode-buffer, strokes-xpm-for-compressed-string):
11320 * speedbar.el (speedbar-buffers-tail-notes, speedbar-buffers-item-info)
11321 (speedbar-reconfigure-keymaps, speedbar-add-localized-speedbar-support)
11322 (speedbar-remove-localized-speedbar-support)
11323 (speedbar-set-mode-line-format, speedbar-create-tag-hierarchy)
11324 (speedbar-update-special-contents, speedbar-buffer-buttons-engine)
11325 (speedbar-buffers-line-directory):
11326 * simple.el (shell-command-on-region, append-to-buffer)
11327 (prepend-to-buffer):
11328 * shadowfile.el (shadow-save-todo-file):
11329 * scroll-bar.el (scroll-bar-set-window-start, scroll-bar-drag-1)
11330 (scroll-bar-maybe-set-window-start):
11331 * sb-image.el (speedbar-image-dump):
11332 * saveplace.el (save-place-alist-to-file, save-places-to-alist)
11333 (load-save-place-alist-from-file):
11334 * ps-samp.el (ps-print-message-from-summary):
11335 * ps-print.el (ps-flush-output, ps-insert-file, ps-get-boundingbox)
11336 (ps-background-image, ps-begin-job, ps-do-despool):
11337 * ps-bdf.el (bdf-find-file, bdf-read-font-info):
11338 * printing.el (pr-interface, pr-ps-file-print, pr-find-buffer-visiting)
11339 (pr-ps-message-from-summary, pr-lpr-message-from-summary):
11340 (pr-call-process, pr-file-list, pr-interface-save):
11341 * novice.el (disabled-command-function)
11342 (enable-command, disable-command):
11343 * mouse.el (mouse-buffer-menu-alist):
11344 * mouse-copy.el (mouse-kill-preserving-secondary):
11345 * macros.el (kbd-macro-query):
11346 * ledit.el (ledit-go-to-lisp, ledit-go-to-liszt):
11347 * informat.el (batch-info-validate):
11348 * ido.el (ido-copy-current-word, ido-initiate-auto-merge):
11349 * hippie-exp.el (try-expand-dabbrev-visible):
11350 * help-mode.el (help-make-xrefs):
11351 * help-fns.el (describe-variable):
11352 * generic-x.el (bat-generic-mode-run-as-comint):
11353 * finder.el (finder-mouse-select):
11354 * find-dired.el (find-dired-sentinel):
11355 * filesets.el (filesets-file-close):
11356 * files.el (list-directory):
11357 * faces.el (list-faces-display, describe-face):
11358 * facemenu.el (list-colors-display):
11359 * ezimage.el (ezimage-image-association-dump, ezimage-image-dump):
11360 * epg.el (epg--process-filter, epg-cancel):
11361 * epa.el (epa--marked-keys, epa--select-keys, epa-display-info)
11362 (epa--read-signature-type):
11363 * emerge.el (emerge-copy-as-kill-A, emerge-copy-as-kill-B)
11364 (emerge-file-names):
11365 * ehelp.el (electric-helpify):
11366 * ediff.el (ediff-regions-wordwise, ediff-regions-linewise):
11367 * ediff-vers.el (rcs-ediff-view-revision):
11368 * ediff-util.el (ediff-setup):
11369 * ediff-mult.el (ediff-append-custom-diff):
11370 * ediff-diff.el (ediff-exec-process, ediff-process-sentinel)
11371 (ediff-wordify):
11372 * echistory.el (Electric-command-history-redo-expression):
11373 * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
11374 * disp-table.el (describe-display-table):
11375 * dired.el (dired-find-buffer-nocreate):
11376 * dired-aux.el (dired-rename-subdir, dired-dwim-target-directory):
11377 * dabbrev.el (dabbrev--same-major-mode-p):
11378 * chistory.el (list-command-history):
11379 * apropos.el (apropos-documentation):
11380 * allout.el (allout-obtain-passphrase):
11381 (allout-copy-exposed-to-buffer):
11382 (allout-verify-passphrase): Use with-current-buffer.
11383
11384 2009-11-13 Glenn Morris <rgm@gnu.org>
11385
11386 * Makefile.in (ELCFILES): Regenerate.
11387
11388 2009-11-13 Michael Albinus <michael.albinus@gmx.de>
11389
11390 * net/dbus.el (dbus-registered-objects-table): Rename from
11391 `dbus-registered-functions-table', because it contains also properties.
11392 (dbus-unregister-object): Unregister also properties.
11393 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
11394 Use a timeout of 500 msec, in order to not block.
11395 (dbus-register-property, dbus-property-handler): New defuns.
11396
11397 2009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
11398
11399 * simple.el (minibuffer-default-add-completions): Drop deprecated
11400 4th arg.
11401
11402 2009-11-13 Tomas Abrahamsson <tab@lysator.liu.se>
11403
11404 * textmodes/artist.el (artist-mouse-choose-operation):
11405 Call `tmm-prompt' instead of `x-popup-menu' if we cannot popup
11406 menus. Bug noticed by Eli Zaretskii <eliz@gnu.org>.
11407 (artist-compute-up-event-key): New function.
11408 (artist-mouse-choose-operation, artist-down-mouse-1): Call it.
11409
11410 2009-11-13 Kenichi Handa <handa@m17n.org>
11411
11412 * language/japan-util.el: Make sure that the value of jisx0208
11413 property is jisx0208 character.
11414
11415 2009-11-13 Dan Nicolaescu <dann@ics.uci.edu>
11416
11417 * international/mule.el (auto-coding-regexp-alist): Only purecopy
11418 car or each item, not the whole list.
11419
11420 2009-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
11421
11422 * minibuffer.el (minibuffer-completion-help):
11423 Use minibuffer-hide-completions.
11424
11425 2009-11-12 Per Starbäck <per@starback.se> (tiny change)
11426
11427 * dired.el (dired-save-positions, dired-restore-positions): New funs.
11428 (dired-revert): Use them (bug#4880).
11429
11430 2009-11-12 Dan Nicolaescu <dann@ics.uci.edu>
11431
11432 * tooltip.el (tooltip-frame-parameters): Undo previous change.
11433
11434 2009-11-12 Juri Linkov <juri@jurta.org>
11435
11436 * ffap.el (ffap-alternate-file-other-window, ffap-literally):
11437 New functions.
11438 (find-file-literally-at-point): Alias of `ffap-literally'.
11439
11440 2009-11-12 Dan Nicolaescu <dann@ics.uci.edu>
11441
11442 * textmodes/ispell.el (ispell-skip-region-alist):
11443 * textmodes/css-mode.el (auto-mode-alist):
11444 * progmodes/compile.el (auto-mode-alist):
11445 * international/mule.el (ctext-non-standard-encodings-alist)
11446 (ctext-non-standard-encodings-regexp):
11447 * simple.el (shell-command-switch, text-read-only):
11448 * replace.el (occur-mode-map):
11449 * paths.el (rmail-file-name):
11450 * jka-cmpr-hook.el (jka-compr-build-file-regexp):
11451 * find-file.el (ff-special-constructs):
11452 * files.el (file-name-handler-alist):
11453 * composite.el: Purecopy strings.
11454
11455 * emacs-lisp/cl-macs.el (define-compiler-macro): Purecopy the file name.
11456
11457 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
11458
11459 * widget.el (define-widget): Purecopy the docstring.
11460 * international/mule-cmds.el (charset): Do not purecopy the
11461 docstring here, define-widget does it.
11462
11463 * textmodes/texinfo.el (texinfo-open-quote, texinfo-close-quote):
11464 * textmodes/bibtex-style.el (auto-mode-alist):
11465 * progmodes/inf-lisp.el (inferior-lisp-prompt):
11466 * progmodes/compile.el (compile-command):
11467 * language/korea-util.el (default-korean-keyboard):
11468 * international/mule-conf.el (file-coding-system-alist):
11469 * emacs-lisp/eldoc.el (eldoc-minor-mode-string):
11470 * tooltip.el (tooltip-frame-parameters):
11471 * newcomment.el (comment-end, comment-padding):
11472 * dired.el (dired-trivial-filenames):
11473 * comint.el (comint-file-name-prefix): Purecopy initial values.
11474
11475 2009-11-11 Michael Albinus <michael.albinus@gmx.de>
11476
11477 * net/tramp.el (tramp-advice-minibuffer-electric-separator)
11478 (tramp-advice-minibuffer-electric-tilde): Unload advices via
11479 `tramp-unload'.
11480 (tramp-advice-make-auto-save-file-name)
11481 (tramp-advice-file-expand-wildcards): Apply also `ad-activate'
11482 after removing the advice.
11483
11484 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
11485
11486 * progmodes/grep.el (grep-regexp-alist):
11487 * international/mule-cmds.el (iso-2022-control-alist):
11488 * emacs-lisp/timer.el (timer-duration-words):
11489 * subr.el (version-separator, version-regexp-alist):
11490 * minibuffer.el (completion-styles-alist):
11491 * faces.el (face-attribute-name-alist, list-faces-sample-text):
11492 Change defvars to defconsts.
11493
11494 * Makefile.in (ELCFILES): Add international/mule-conf.elc.
11495 * loadup.el ("international/mule-conf"): Load the byte compiled version.
11496 * international/mule-conf.el: Allow to be byte compiled.
11497
11498 * international/mule.el (define-charset): Purecopy props.
11499 (load-with-code-conversion): Purecopy doc string and file name.
11500 (put-charset-property): Purecopy strings.
11501 (auto-coding-alist, auto-coding-regexp-alist): Purecopy initial value.
11502
11503 * international/mule-cmds.el (register-input-method): Purecopy arguments.
11504 (define-char-code-property): Correctly purecopy the table.
11505
11506 * international/ccl.el (define-ccl-program): Purecopy the docstring.
11507
11508 * emacs-lisp/easy-mmode.el (define-minor-mode): Purecopy :lighter.
11509
11510 * subr.el (add-hook): Purecopy strings.
11511 (eval-after-load): Purecopy load-history-regexp and the form.
11512
11513 * custom.el (custom-declare-group): Purecopy load-file-name.
11514
11515 * subr.el (menu-bar-separator): New defconst.
11516 * net/eudc.el (eudc-tools-menu):
11517 * international/mule-cmds.el (set-coding-system-map)
11518 (mule-menu-keymap):
11519 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
11520 * vc-hooks.el (vc-menu-map):
11521 * replace.el (occur-mode-map):
11522 * menu-bar.el (menu-bar-file-menu, menu-bar-search-menu)
11523 (menu-bar-edit-menu, menu-bar-goto-menu)
11524 (menu-bar-custom-menu, menu-bar-showhide-menu)
11525 (menu-bar-options-menu, menu-bar-tools-menu)
11526 (menu-bar-encryption-decryption-menu, menu-bar-describe-menu)
11527 (menu-bar-search-documentation-menu, menu-bar-manuals-menu)
11528 (menu-bar-help-menu):
11529 * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu):
11530 * buff-menu.el (Buffer-menu-mode-map): Use menu-bar-separator.
11531
11532 * term/x-win.el (x-gtk-stock-map):
11533 * progmodes/vera-mode.el (auto-mode-alist):
11534 * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
11535 (inferior-lisp-program, inferior-lisp-load-command):
11536 * progmodes/hideshow.el (hs-special-modes-alist):
11537 * progmodes/gud.el (same-window-regexps):
11538 * progmodes/grep.el (grep-program, find-program, xargs-program):
11539 * net/telnet.el (same-window-regexps):
11540 * net/rlogin.el (same-window-regexps):
11541 * language/ethiopic.el (font-ccl-encoder-alist):
11542 * vc-sccs.el (vc-sccs-master-templates):
11543 * vc-rcs.el (vc-rcs-master-templates):
11544 * subr.el (cl-assertion-failed):
11545 * simple.el (next-error-overlay-arrow-position):
11546 * lpr.el (lpr-command):
11547 * locate.el (locate-ls-subdir-switches):
11548 * info.el (same-window-regexps, info)
11549 (Info-goto-emacs-command-node, Info-goto-emacs-key-command-node):
11550 * image-mode.el (image-mode, auto-mode-alist):
11551 * hippie-exp.el (hippie-expand-ignore-buffers):
11552 * format.el (format-alist):
11553 * find-dired.el (find-ls-subdir-switches, find-grep-options)
11554 (find-name-arg):
11555 * facemenu.el (facemenu-keybindings):
11556 * dired.el (dired-listing-switches, dired-chown-program):
11557 * diff.el (diff-switches, diff-command):
11558 * cus-edit.el (same-window-regexps):
11559 * bindings.el (mode-line-mule-info)
11560 (mode-line-buffer-identification): Purecopy strings.
11561
11562 2009-11-11 Juri Linkov <juri@jurta.org>
11563
11564 * simple.el (dired-get-filename) <declare-function>:
11565 Tell the byte-compiler about dired-get-filename.
11566 (shell-command): In Dired mode, get filename from the current line
11567 as the default value.
11568
11569 2009-11-10 Glenn Morris <rgm@gnu.org>
11570
11571 * dired.el, hi-lock.el, calendar/cal-menu.el, calendar/calendar.el:
11572 * calendar/holidays.el, progmodes/cperl-mode.el:
11573 Update x-popup-menu declarations.
11574
11575 * emacs-lisp/shadow.el (find-emacs-lisp-shadows)
11576 (list-load-path-shadows): Use dolist.
11577 (list-load-path-shadows): Use with-current-buffer.
11578
11579 2009-11-10 Juri Linkov <juri@jurta.org>
11580
11581 * minibuffer.el (read-file-name): Support a list of default values
11582 in `default-filename'. Use the first file name where only one
11583 element is required. Doc fix.
11584
11585 2009-11-09 Michael Albinus <michael.albinus@gmx.de>
11586
11587 * net/dbus.el (dbus-unregister-object): Release service, if no
11588 other method is registered for it.
11589
11590 2009-11-08 Markus Rost <rost@math.uni-bielefeld.de>
11591
11592 * bookmark.el (bookmark-completing-read): Sort bookmark names if
11593 bookmark-sort-flag is non-nil (Bug#4653).
11594
11595 2009-11-08 Chong Yidong <cyd@stupidchicken.com>
11596
11597 * emulation/cua-base.el: Add CUA property to some CC mode commands
11598 (Bug#4100).
11599
11600 2009-11-08 Kevin Ryde <user42@zip.com.au>
11601
11602 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp): Match noun
11603 at end of sentence (Bug#4818).
11604
11605 2009-11-08 Jared Finder <jfinder@crypticstudios.com>
11606
11607 * progmodes/compile.el (compilation-error-regexp-alist-alist):
11608 Handle "see declaration of" MSFT statements (Bug#4100).
11609
11610 2009-11-08 Michael Albinus <michael.albinus@gmx.de>
11611
11612 * net/tramp.el (tramp-advice-make-auto-save-file-name)
11613 (tramp-advice-file-expand-wildcards): Unload via
11614 `ad-remove-advice'.
11615
11616 * net/trampver.el: Update release number.
11617
11618 2009-11-08 Kevin Ryde <user42@zip.com.au>
11619
11620 * net/tramp.el (tramp-advice-file-expand-wildcards): Don't rely on
11621 `ad-do-it'.
11622
11623 2009-11-08 Andr <m00naticus@gmail.com> (tiny change)
11624
11625 * net/tramp.el (tramp-handle-write-region): Copy but rename temp file,
11626 in order to keep context in SELinux.
11627
11628 2009-11-08 Chong Yidong <cyd@stupidchicken.com>
11629
11630 * dired-aux.el (dired-query): Place cursor in echo area and allow
11631 C-g.
11632
11633 * dired.el (dired-mode-map): Disable dired-maybe-insert-subdir
11634 menu item if not on a directory (Bug#4701).
11635
11636 2009-11-07 Michael Albinus <michael.albinus@gmx.de>
11637
11638 Sync with Tramp 2.1.17.
11639
11640 * net/tramp.el (tramp-handle-copy-directory): Don't use
11641 `file-remote-p' (due to compatibility).
11642
11643 * net/tramp-compat.el (tramp-compat-copy-directory)
11644 (tramp-compat-delete-directory): New defuns.
11645
11646 * net/tramp-fish.el (tramp-fish-handle-delete-directory):
11647 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory): Use
11648 `tramp-compat-delete-directory'.
11649
11650 * net/tramp-smb.el (tramp-smb-handle-copy-directory)
11651 (tramp-smb-handle-delete-directory): Use
11652 `tramp-compat-copy-directory' and `tramp-compat-delete-directory'.
11653
11654 * net/trampver.el: Update release number.
11655
11656 2009-11-07 Chong Yidong <cyd@stupidchicken.com>
11657
11658 * tar-mode.el (tar-copy): Call write-region on the right buffer
11659 (Bug#4857).
11660
11661 * mail/rmailsum.el (rmail-summary-rmail-update): Call linum-update
11662 by hand, if necessary (Bug#4878).
11663
11664 2009-11-06 Chong Yidong <cyd@stupidchicken.com>
11665
11666 * buff-menu.el (Buffer-menu-buffer+size): Use display property to
11667 align size column (Bug#4839).
11668
11669 * emacs-lisp/autoload.el (autoload-rubric): Always issue a provide
11670 statement.
11671
11672 2009-11-05 Dan Nicolaescu <dann@ics.uci.edu>
11673
11674 * progmodes/ld-script.el (auto-mode-alist):
11675 * vc-hooks.el (vc-directory-exclusion-list): Purecopy strings.
11676
11677 * cus-face.el (custom-declare-face): Purecopy face spec.
11678
11679 2009-11-06 Kenichi Handa <handa@m17n.org>
11680
11681 * international/uni-bidi.el: Re-generated.
11682 * international/uni-category.el: Re-generated.
11683 * international/uni-combining.el: Re-generated.
11684 * international/uni-mirrored.el: Re-generated.
11685
11686 2009-11-05 Dan Nicolaescu <dann@ics.uci.edu>
11687
11688 * textmodes/tex-mode.el (tex-alt-dvi-print-command)
11689 (tex-dvi-print-command, tex-bibtex-command, tex-start-commands)
11690 (tex-start-options, slitex-run-command, latex-run-command)
11691 (tex-run-command, tex-directory):
11692 * textmodes/ispell.el (ispell-html-skip-alists)
11693 (ispell-tex-skip-alists, ispell-tex-skip-alists):
11694 * textmodes/fill.el (adaptive-fill-first-line-regexp):
11695 (adaptive-fill-regexp):
11696 * textmodes/dns-mode.el (auto-mode-alist):
11697 * progmodes/python.el (interpreter-mode-alist):
11698 * progmodes/etags.el (tags-compression-info-list):
11699 * progmodes/etags.el (tags-file-name):
11700 * net/browse-url.el (browse-url-galeon-program)
11701 (browse-url-firefox-program):
11702 * mail/sendmail.el (mail-signature-file)
11703 (mail-citation-prefix-regexp):
11704 * international/mule-conf.el (eight-bit):
11705 * international/latexenc.el (latex-inputenc-coding-alist):
11706 * international/fontset.el (x-pixel-size-width-font-regexp):
11707 * emacs-lisp/warnings.el (warning-type-format):
11708 * emacs-lisp/trace.el (trace-buffer):
11709 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-map)
11710 (emacs-lisp-mode-map):
11711 * calendar/holidays.el (holiday-solar-holidays)
11712 (holiday-bahai-holidays, holiday-islamic-holidays)
11713 (holiday-christian-holidays, holiday-hebrew-holidays)
11714 (hebrew-holidays-4, hebrew-holidays-3, hebrew-holidays-2)
11715 (hebrew-holidays-1, holiday-oriental-holidays)
11716 (holiday-general-holidays):
11717 * x-dnd.el (x-dnd-known-types):
11718 * tool-bar.el (tool-bar):
11719 * startup.el (site-run-file):
11720 * shell.el (shell-dumb-shell-regexp):
11721 * rfn-eshadow.el (file-name-shadow-tty-properties)
11722 (file-name-shadow-properties):
11723 * paths.el (remote-shell-program, news-directory):
11724 * mouse.el ([C-down-mouse-3]):
11725 * menu-bar.el (menu-bar-tools-menu):
11726 * jka-cmpr-hook.el (jka-compr-load-suffixes)
11727 (jka-compr-mode-alist-additions, jka-compr-compression-info-list)
11728 (jka-compr-compression-info-list):
11729 * isearch.el (search-whitespace-regexp):
11730 * image-file.el (image-file-name-extensions):
11731 * find-dired.el (find-ls-option):
11732 * files.el (directory-listing-before-filename-regexp)
11733 (directory-free-space-args, insert-directory-program)
11734 (list-directory-brief-switches, magic-fallback-mode-alist)
11735 (magic-fallback-mode-alist, auto-mode-interpreter-regexp)
11736 (automount-dir-prefix):
11737 * faces.el (face-x-resources, x-font-regexp, x-font-regexp-head)
11738 (x-font-regexp-slant, x-font-regexp-weight, face-x-resources)
11739 (face-font-registry-alternatives, face-font-registry-alternatives)
11740 (face-font-family-alternatives):
11741 * facemenu.el (facemenu-add-new-face, facemenu-background-menu)
11742 (facemenu-foreground-menu, facemenu-face-menu):
11743 * epa-hook.el (epa-file-name-regexp):
11744 * dnd.el (dnd-protocol-alist):
11745 * textmodes/rst.el (auto-mode-alist):
11746 * button.el (default-button): Purecopy strings.
11747
11748 2009-11-06 Glenn Morris <rgm@gnu.org>
11749
11750 * Makefile.in (ELCFILES): Update.
11751
11752 2009-11-05 Stefan Monnier <monnier@iro.umontreal.ca>
11753
11754 * emacs-lisp/lucid.el: Move to obsolete/lucid.el.
11755 * emacs-lisp/levents.el: Move to obsolete/levents.el.
11756
11757 * nxml/xsd-regexp.el (xsdre-gen-categories):
11758 * nxml/xmltok.el (xmltok-parse-entity):
11759 * nxml/rng-parse.el (rng-parse-validate-file):
11760 * nxml/rng-maint.el (rng-format-manual)
11761 (rng-manual-output-force-new-line):
11762 * nxml/rng-loc.el (rng-save-schema-location-1):
11763 * nxml/rng-cmpct.el (rng-c-parse-file):
11764 * nxml/nxml-maint.el (nxml-insert-target-repertoire-glyph-set):
11765 * nxml/nxml-parse.el (nxml-parse-file): Use with-current-buffer.
11766
11767 2009-11-05 Wilson Snyder <wsnyder@wsnyder.org>
11768
11769 * progmodes/verilog-mode.el (verilog-getopt-file, verilog-set-define):
11770 Remove extra save-excursions and make-variable-buffer-local's.
11771 Suggested by Stefan Monnier.
11772
11773 (verilog-getopt-file, verilog-module-inside-filename-p)
11774 (verilog-set-define): Merge GNU 1.35 and repair changes from
11775 switching to using with-current-buffer.
11776
11777 (verilog-read-always-signals-recurse): Fix "a == 2'b00 ? b : c"
11778 being treated as a number and confusing AUTORESET.
11779 Reported by Dan Dever.
11780
11781 (verilog-auto-ignore-concat, verilog-read-sub-decls-expr):
11782 Add verilog-auto-ignore-concat to fix backward compatibility with
11783 older verilog-modes. Reported by Dan Katz.
11784
11785 (verilog-read-auto-template): Fix AUTO_TEMPLATEs with regexps
11786 containing closing anchors "...$".
11787
11788 (verilog-read-decls): Fix AUTOREG not detecting "assign {a,b}".
11789 Reported by Wade Smith.
11790
11791 (verilog-batch-execute-func): Comment on function usage.
11792
11793 2009-11-05 Michael McNamara <mac@mail.brushroad.com>
11794
11795 * progmodes/verilog-mode.el (verilog-label-re): Fix regular expression
11796 for labels.
11797
11798 (verilog-label-re, verilog-calc-1): Support proper indent of named
11799 asserts.
11800
11801 (verilog-backward-token, verilog-basic-complete-re)
11802 (verilog-beg-of-statement, verilog-indent-re): Support proper
11803 indent of the assert statement at the beginning of a block of text.
11804
11805 (verilog-beg-block-re, verilog-ovm-begin-re): Support the
11806 `ovm_object_param_utils_begin and `ovm_component_param_utils_begin
11807 tokens as begins.
11808
11809 2009-11-05 Glenn Morris <rgm@gnu.org>
11810
11811 * emacs-lisp/bytecomp.el (byte-compile-insert-header): Drop test for
11812 Emacs 19. (Bug#1531)
11813 (byte-compile-fix-header): Update for the above change.
11814 Drop test for epoch::version.
11815
11816 * emacs-lisp/autoload.el (autoload-rubric): Add optional feature arg.
11817 * cus-dep.el (custom-make-dependencies):
11818 * finder.el (finder-compile-keywords):
11819 Use autoload-rubric's feature argument.
11820
11821 * calendar/diary-lib.el (top-level): Make load behave more like require.
11822
11823 * vc-git.el (vc-git-stash-map): Move definition before use.
11824
11825 2009-11-04 Dan Nicolaescu <dann@ics.uci.edu>
11826
11827 * custom.el (custom-declare-group): Purecopy standard-value.
11828 (custom-declare-group): Purecopy custom-prefix.
11829
11830 * international/mule.el (load-with-code-conversion):
11831 Call do-after-load-evaluation unconditionally.
11832
11833 * emacs-lisp/bytecomp.el (byte-compile-output-file-form): Handle defvaralias.
11834
11835 2009-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
11836
11837 * descr-text.el: Require help-mode rather than help-fns (bug#4861).
11838
11839 2009-11-04 Glenn Morris <rgm@gnu.org>
11840
11841 * emacs-lisp/bytecomp.el (byte-compile-version-cond): Remove macro.
11842 (byte-compile-compatibility): Remove option.
11843 (byte-compile-close-variables, byte-compile-fix-header)
11844 (byte-compile-insert-header, byte-compile-output-docform)
11845 (byte-compile-file-form-defmumble, byte-compile-byte-code-maker)
11846 (byte-compile-lambda, byte-compile-form, byte-defop-compiler19)
11847 (byte-compile-list, byte-compile-concat, byte-compile-function-form)
11848 (byte-compile-insert, byte-compile-defun):
11849 Remove support for byte-compile-compatibility and Emacs 18. (Bug#4571)
11850 (byte-defop-compiler19): Remove.
11851 Without byte-compile-compatibility, the 'emacs19-opcode property is not
11852 used by anything. Replace all calls with byte-defop-compiler.
11853
11854 2009-11-04 Juri Linkov <juri@jurta.org>
11855
11856 * menu-bar.el (menu-bar-make-mm-toggle): Quote each element of `props'.
11857 (menu-bar-options-menu): Don't quote the `prop' arg of
11858 `menu-bar-make-mm-toggle'.
11859
11860 2009-11-04 Juanma Barranquero <lekktu@gmail.com>
11861
11862 * calendar/calendar.el (cal-loaddefs):
11863 * calendar/diary-lib.el (diary-loaddefs):
11864 * calendar/holidays.el (hol-loaddefs):
11865 * eshell/esh-module.el (esh-groups): Load rather than require.
11866
11867 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
11868
11869 * calendar/todo-mode.el (todo-add-category): Don't hardcode
11870 point-min==1.
11871 (todo-top-priorities): Only display-buffer when called interactively.
11872 (todo-item-start): Don't save excursion point.
11873 (todo-item-end): Be slightly more careful. Add `include-sep' arg.
11874 (todo-insert-item-here, todo-file-item, todo-remove-item):
11875 Adjust uses of todo-item-start and todo-item-end.
11876
11877 * emacs-lisp/autoload.el (generated-autoload-feature): Remove.
11878 (autoload-rubric): Don't use any more.
11879
11880 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Use dolist,
11881 and only put a prop if it is non-nil.
11882
11883 2009-11-03 Juri Linkov <juri@jurta.org>
11884
11885 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle)
11886 (menu-bar-options-menu): Fix list quoting (Bug#4429).
11887
11888 * buff-menu.el (Buffer-menu-mode-map): Add hyphen between "Buffer"
11889 and "Menu" to make top-level menu item visually one unit (like
11890 it's done for "Lisp-Interaction", "Emacs-Lisp" and other
11891 multi-word menu items). Fix :help string for quit-window.
11892
11893 2009-11-03 Glenn Morris <rgm@gnu.org>
11894
11895 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar)
11896 (byte-compile-file-form-define-abbrev-table)
11897 (byte-compile-file-form-custom-declare-variable)
11898 (byte-compile-variable-ref, byte-compile-defvar):
11899 Whether or not a warning is enabled should only affect whether we issue
11900 the warning, not whether or not we collect the relevant data.
11901 Eg warnings can be turned on and off throughout the course of a file.
11902
11903 * eshell/esh-mode.el (ansi-color-apply-on-region): Autoload it...
11904 (eshell-handle-ansi-color): ... Rather than requiring ansi-color.
11905
11906 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
11907
11908 * term/ns-win.el (ns-scroll-bar-move, ns-face-at-pos):
11909 * play/mpuz.el (mpuz-create-buffer):
11910 * play/landmark.el (lm-prompt-for-move, lm-print-wts, lm-print-smell)
11911 (lm-print-y,s,noise, lm-print-w0, lm-init):
11912 * play/gomoku.el (gomoku-prompt-for-move):
11913 * play/fortune.el (fortune-in-buffer):
11914 * play/dissociate.el (dissociated-press):
11915 * play/decipher.el (decipher-adjacency-list, decipher-display-regexp)
11916 (decipher-analyze-buffer, decipher-stats-buffer, decipher-stats-buffer):
11917 * mail/supercite.el (sc-eref-show):
11918 * mail/smtpmail.el (smtpmail-send-it):
11919 * mail/rmailsum.el (rmail-summary-next-labeled-message)
11920 (rmail-summary-previous-labeled-message, rmail-summary-wipe)
11921 (rmail-summary-undelete-many, rmail-summary-rmail-update)
11922 (rmail-summary-goto-msg, rmail-summary-expunge)
11923 (rmail-summary-get-new-mail, rmail-summary-search-backward)
11924 (rmail-summary-add-label, rmail-summary-output-menu)
11925 (rmail-summary-output-body):
11926 * mail/rfc822.el (rfc822-addresses):
11927 * mail/reporter.el (reporter-dump-variable, reporter-dump-state):
11928 * mail/mailpost.el (post-mail-send-it):
11929 * mail/hashcash.el (hashcash-generate-payment):
11930 * mail/feedmail.el (feedmail-run-the-queue)
11931 (feedmail-queue-send-edit-prompt-help-first)
11932 (feedmail-send-it-immediately, feedmail-give-it-to-buffer-eater)
11933 (feedmail-deduce-address-list):
11934 * eshell/esh-ext.el (eshell-remote-command):
11935 * eshell/em-unix.el (eshell-occur-mode-mouse-goto):
11936 * emulation/viper-util.el (viper-glob-unix-files, viper-save-setting)
11937 (viper-wildcard-to-regexp, viper-glob-mswindows-files)
11938 (viper-save-string-in-file, viper-valid-marker):
11939 * emulation/viper-keym.el (viper-toggle-key):
11940 * emulation/viper-ex.el (ex-expand-filsyms, viper-get-ex-file)
11941 (ex-edit, ex-global, ex-mark, ex-next-related-buffer, ex-quit)
11942 (ex-get-inline-cmd-args, ex-tag, ex-command, ex-compile):
11943 * emulation/viper-cmd.el (viper-exec-form-in-vi)
11944 (viper-exec-form-in-emacs, viper-brac-function):
11945 * emulation/viper.el (viper-delocalize-var):
11946 * emulation/vip.el (vip-mode, vip-get-ex-token, vip-ex, vip-get-ex-pat)
11947 (vip-get-ex-command, vip-get-ex-opt-gc, vip-get-ex-buffer)
11948 (vip-get-ex-count, vip-get-ex-file, ex-edit, ex-global, ex-mark)
11949 (ex-map, ex-unmap, ex-quit, ex-read, ex-tag, ex-command):
11950 * emulation/vi.el (vi-switch-mode, vi-ex-cmd):
11951 * emulation/edt.el (edt-electric-helpify):
11952 * emulation/cua-rect.el (cua--rectangle-aux-replace):
11953 * emulation/cua-gmrk.el (cua--insert-at-global-mark)
11954 (cua--delete-at-global-mark, cua--copy-rectangle-to-global-mark)
11955 (cua-indent-to-global-mark-column):
11956 * calendar/diary-lib.el (calendar-mark-1):
11957 * calendar/cal-hebrew.el (calendar-hebrew-mark-date-pattern):
11958 Use with-current-buffer.
11959 * emulation/viper.el (viper-delocalize-var): Use dolist.
11960
11961 2009-11-03 Chong Yidong <cyd@stupidchicken.com>
11962
11963 * comint.el (comint-replace-by-expanded-history-before-point):
11964 Replace !! with the previous input string literally (Bug#1795).
11965
11966 2009-11-02 Jay Belanger <jay.p.belanger@gmail.com>
11967
11968 * calc/calc-forms.el (calc-date-notation): Allow a "blank string"
11969 to be made up of whitespace.
11970
11971 2009-11-02 Chong Yidong <cyd@stupidchicken.com>
11972
11973 * minibuffer.el (read-file-name): Don't use file dialogs for
11974 remote directories (Bug#99).
11975
11976 2009-11-01 Chong Yidong <cyd@stupidchicken.com>
11977
11978 * progmodes/sh-script.el (sh-font-lock-paren): Fix last change.
11979
11980 2009-11-01 Andreas Schwab <schwab@linux-m68k.org>
11981
11982 * view.el (view-mode-exit): If OLD-BUF is dead bury the buffer
11983 instead of deleting the window or frame.
11984
11985 2009-10-31 Chong Yidong <cyd@stupidchicken.com>
11986
11987 * textmodes/sgml-mode.el (sgml-mode-facemenu-add-face-function):
11988 Support face colors.
11989
11990 * textmodes/tex-mode.el (tex-facemenu-add-face-function):
11991 New function. Support face colors (Bug#1168).
11992 (tex-common-initialization): Use it.
11993
11994 * facemenu.el (facemenu-enable-faces-p): Enable facemenu if the
11995 mode allows it (Bug#1168).
11996
11997 2009-10-31 Juri Linkov <juri@jurta.org>
11998
11999 * facemenu.el (list-colors-display): Don't mark buffer as
12000 modified (Bug#3948).
12001
12002 2009-10-31 Chong Yidong <cyd@stupidchicken.com>
12003
12004 * international/mule-diag.el (list-character-sets-1): Minor
12005 message fix (Bug#3526).
12006
12007 * progmodes/etags.el (etags-list-tags, etags-tags-apropos): Fix
12008 face property (Bug#4834).
12009 (etags-list-tags, etags-tags-apropos-additional)
12010 (etags-tags-apropos, tags-select-tags-table): Add follow-link
12011 property.
12012
12013 * menu-bar.el (menu-bar-tools-menu): Add Semantic and EDE menu
12014 items.
12015
12016 2009-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
12017
12018 * textmodes/two-column.el (2C-split):
12019 * textmodes/texnfo-upd.el (texinfo-multi-file-included-list):
12020 * textmodes/tex-mode.el (tex-set-buffer-directory):
12021 * textmodes/spell.el (spell-region, spell-string):
12022 * textmodes/reftex.el (reftex-erase-buffer):
12023 (reftex-get-file-buffer-force, reftex-kill-temporary-buffers):
12024 * textmodes/reftex-toc.el (reftex-toc-promote-action):
12025 * textmodes/reftex-sel.el (reftex-get-offset, reftex-insert-docstruct)
12026 (reftex-select-item):
12027 * textmodes/reftex-ref.el (reftex-label-info-update)
12028 (reftex-offer-label-menu):
12029 * textmodes/reftex-index.el (reftex-index-change-entry)
12030 (reftex-index-phrases-info):
12031 * textmodes/reftex-global.el (reftex-create-tags-file)
12032 (reftex-save-all-document-buffers, reftex-ensure-write-access):
12033 * textmodes/reftex-dcr.el (reftex-echo-ref, reftex-echo-cite)
12034 (reftex-view-crossref-from-bibtex):
12035 * textmodes/reftex-cite.el (reftex-bibtex-selection-callback)
12036 (reftex-extract-bib-entries-from-thebibliography)
12037 (reftex-all-used-citation-keys, reftex-create-bibtex-file):
12038 * textmodes/refbib.el (r2b-capitalize-title):
12039 (r2b-convert-buffer, r2b-help):
12040 * textmodes/page-ext.el (pages-directory)
12041 (pages-directory-goto-with-mouse):
12042 * textmodes/bibtex.el (bibtex-validate-globally):
12043 * textmodes/bib-mode.el (bib-capitalize-title):
12044 * textmodes/artist.el (artist-clear-buffer, artist-system):
12045 * progmodes/xscheme.el (global-set-scheme-interaction-buffer):
12046 (local-set-scheme-interaction-buffer, xscheme-process-filter)
12047 (verify-xscheme-buffer, xscheme-enter-interaction-mode)
12048 (xscheme-enter-debugger-mode, xscheme-debugger-mode-p)
12049 (xscheme-send-control-g-interrupt, xscheme-start-process)
12050 (xscheme-process-sentinel, xscheme-cd):
12051 * progmodes/verilog-mode.el (verilog-read-always-signals)
12052 (verilog-set-define, verilog-getopt-file)
12053 (verilog-module-inside-filename-p):
12054 * progmodes/sh-script.el:
12055 * progmodes/python.el (python-pdbtrack-get-source-buffer)
12056 (python-pdbtrack-grub-for-buffer, python-execute-file):
12057 * progmodes/octave-inf.el (inferior-octave):
12058 * progmodes/idlwave.el (idlwave-scan-user-lib-files)
12059 (idlwave-shell-compile-helper-routines, idlwave-set-local)
12060 (idlwave-display-completion-list-xemacs, idlwave-list-abbrevs)
12061 (idlwave-display-completion-list-emacs, idlwave-list-load-path-shadows)
12062 (idlwave-completion-fontify-classes, idlwave-display-calling-sequence):
12063 * progmodes/idlw-shell.el (idlwave-shell-examine-display-clear)
12064 (idlwave-shell-filter, idlwave-shell-examine-highlight)
12065 (idlwave-shell-sentinel, idlwave-shell-filter-directory)
12066 (idlwave-shell-display-line, idlwave-shell-set-bp-in-module)
12067 (idlwave-shell-examine-display, idlwave-shell-run-region)
12068 (idlwave-shell-filter-bp, idlwave-shell-save-and-action)
12069 (idlwave-shell-sources-filter, idlwave-shell-goto-next-error):
12070 * progmodes/idlw-help.el (idlwave-help-get-special-help)
12071 (idlwave-help-get-help-buffer):
12072 * progmodes/gud.el (gud-basic-call, gud-find-class)
12073 (gud-tooltip-activate-mouse-motions-if-enabled):
12074 * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
12075 * progmodes/ebrowse.el (ebrowse-member-table, ebrowse-save-tree-as)
12076 (ebrowse-view-exit-fn, ebrowse-tags-list-members-in-file)
12077 (ebrowse-tags-next-file):
12078 * progmodes/ebnf2ps.el (ebnf-generate-eps, ebnf-generate-eps)
12079 (ebnf-eps-production-list, ebnf-begin-file, ebnf-log)
12080 (ebnf-eps-finish-and-write):
12081 * progmodes/cpp.el (cpp-edit-save):
12082 * progmodes/cperl-mode.el (cperl-pod-to-manpage):
12083 * progmodes/cc-defs.el (c-emacs-features):
12084 * progmodes/antlr-mode.el (antlr-invalidate-context-cache)
12085 (antlr-directory-dependencies):
12086 * progmodes/ada-xref.el (ada-gnat-parse-gpr, ada-get-ali-file-name)
12087 (ada-run-application, ada-find-in-src-path, ada-goto-parent)
12088 (ada-find-any-references, ada-make-filename-from-adaname)
12089 (ada-make-body-gnatstub):
12090 * obsolete/rnews.el (news-list-news-groups):
12091 * obsolete/resume.el (resume-suspend-hook, resume-write-buffer-to-file):
12092 * obsolete/iso-acc.el (iso-acc-minibuf-setup):
12093 * net/rcirc.el (rcirc-debug):
12094 * net/newst-treeview.el (newsticker--treeview-list-add-item)
12095 (newsticker--treeview-list-clear, newsticker-treeview-browse-url)
12096 (newsticker--treeview-list-update-faces, newsticker-treeview-save)
12097 (newsticker--treeview-item-show-text, newsticker--treeview-item-show)
12098 (newsticker--treeview-tree-update-tag, newsticker--treeview-buffer-init)
12099 (newsticker-treeview-show-item, newsticker--treeview-unfold-node)
12100 (newsticker--treeview-list-clear-highlight)
12101 (newsticker--treeview-list-update-highlight)
12102 (newsticker--treeview-list-highlight-start)
12103 (newsticker--treeview-tree-update-highlight)
12104 (newsticker--treeview-get-selected-item)
12105 (newsticker-treeview-mark-list-items-old)
12106 (newsticker--treeview-set-current-node):
12107 * net/newst-plainview.el (newsticker--buffer-set-uptodate):
12108 * net/newst-backend.el (newsticker--get-news-by-funcall)
12109 (newsticker--get-news-by-wget, newsticker--image-get)
12110 (newsticker--image-sentinel):
12111 * net/mairix.el (mairix-rmail-fetch-field, mairix-gnus-fetch-field):
12112 * net/eudcb-ph.el (eudc-ph-do-request, eudc-ph-open-session):
12113 (eudc-ph-close-session):
12114 * net/eudc.el (eudc-save-options):
12115 * language/thai-word.el (thai-update-word-table):
12116 * language/japan-util.el (japanese-string-conversion):
12117 * international/titdic-cnv.el (tsang-quick-converter)
12118 (ziranma-converter, ctlau-converter):
12119 * international/mule-cmds.el (describe-language-environment):
12120 * international/ja-dic-cnv.el (skkdic-convert-okuri-ari)
12121 (skkdic-convert-postfix, skkdic-convert-prefix):
12122 (skkdic-convert-okuri-nasi, skkdic-convert):
12123 * emacs-lisp/re-builder.el (reb-update-overlays):
12124 * emacs-lisp/pp.el (pp-to-string, pp-display-expression):
12125 * emacs-lisp/gulp.el (gulp-send-requests):
12126 * emacs-lisp/find-gc.el (trace-call-tree):
12127 * emacs-lisp/eieio-opt.el (eieio-browse, eieio-describe-class)
12128 (eieio-describe-generic):
12129 * emacs-lisp/eieio-base.el (eieio-persistent-read):
12130 * emacs-lisp/edebug.el (edebug-outside-excursion):
12131 * emacs-lisp/debug.el (debugger-make-xrefs):
12132 * emacs-lisp/cust-print.el (custom-prin1-to-string):
12133 * emacs-lisp/chart.el (chart-new-buffer):
12134 * emacs-lisp/authors.el (authors-scan-el, authors-scan-change-log):
12135 Use with-current-buffer.
12136 * textmodes/artist.el (artist-system): Don't call
12137 copy-sequence on a fresh string.
12138 * progmodes/idlw-shell.el (easymenu setup): Use dolist.
12139
12140 2009-10-31 Stephen Berman <stephen.berman@gmx.net>
12141
12142 * calendar/todo-mode.el (todo-edit-item): Signal an error if there
12143 is no item to edit. (Bug#4820)
12144 (todo-top-priorities): Restore point and restore narrowing in Todo
12145 buffer. (Bug#4820)
12146
12147 2009-10-31 Glenn Morris <rgm@gnu.org>
12148
12149 * net/ange-ftp.el (top-level): Don't require dired when compiling.
12150 (comint-last-output-start, comint-last-input-start)
12151 (comint-last-input-end): Don't defvar when compiling.
12152 (ange-ftp-process-file): Use bound-and-true-p.
12153
12154 * pcmpl-rpm.el (top-level): Move provide statement to end.
12155 (pcmpl-rpm): Remove unused custom group.
12156
12157 * pcmpl-gnu.el (tar-parse-info, tar-header-name): Declare for compiler.
12158
12159 * mail/emacsbug.el (report-emacs-bug): Request `emacs -Q' recipes.
12160
12161 * emacs-lisp/bytecomp.el (byte-compile-warning-types)
12162 (byte-compile-warnings): Add `constants' as an option.
12163 (byte-compile-callargs-warn, byte-compile-arglist-warn)
12164 (display-call-tree): Update for byte-compile-fdefinition possibly
12165 returning `(macro lambda ...)'. (Bug#4778)
12166 (byte-compile-variable-ref, byte-compile-setq-default):
12167 Respect `constants' member of byte-compile-warnings.
12168
12169 2009-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
12170
12171 * vc-bzr.el (vc-bzr-revision-keywords): New var.
12172 (vc-bzr-revision-completion-table): Use it to fix completion of "s:"
12173 to "submit:".
12174
12175 2009-10-30 Dan Nicolaescu <dann@ics.uci.edu>
12176
12177 * textmodes/ispell.el (ispell-skip-region-alist):
12178 * international/mule-conf.el (eight-bit):
12179 * international/fontset.el (font-encoding-alist):
12180 * startup.el (pure-space-overflow-message):
12181 * simple.el (overwrite-mode-textual, overwrite-mode-binary):
12182 * paths.el (gnus-nntp-service, rmail-spool-directory)
12183 (term-file-prefix):
12184 * files.el (save-some-buffers-action-alist):
12185 * cmuscheme.el (same-window-buffer-names):
12186 * ielm.el (same-window-buffer-names):
12187 * shell.el (same-window-buffer-names):
12188 * mail/sendmail.el (same-window-buffer-names):
12189 * progmodes/inf-lisp.el (same-window-buffer-names):
12190 * bindings.el (mode-line-client)
12191 (mode-line-column-line-number-mode-map):
12192 * language/tibetan.el (tibetan-precomposition-rule-regexp)
12193 (tibetan-precomposed-regexp): Purecopy string arguments.
12194
12195 2009-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
12196
12197 * calc/calc.el (calc, calc-refresh, calc-trail-buffer, calc-record)
12198 (calcDigit-nondigit):
12199 * calc/calc-yank.el (calc-copy-to-buffer):
12200 * calc/calc-units.el (calc-invalidate-units-table):
12201 * calc/calc-trail.el (calc-trail-yank):
12202 * calc/calc-store.el (calc-insert-variables):
12203 * calc/calc-rewr.el (math-rewrite, math-rewrite-phase):
12204 * calc/calc-prog.el (calc-read-parse-table):
12205 * calc/calc-keypd.el (calc-do-keypad, calc-keypad-right-click):
12206 * calc/calc-help.el (calc-describe-bindings, calc-describe-key):
12207 * calc/calc-graph.el (calc-graph-delete, calc-graph-add-curve)
12208 (calc-graph-juggle, calc-graph-count-curves, calc-graph-plot)
12209 (calc-graph-plot, calc-graph-format-data, calc-graph-set-styles)
12210 (calc-graph-name, calc-graph-find-command, calc-graph-view)
12211 (calc-graph-view, calc-gnuplot-command, calc-graph-init):
12212 * calc/calc-ext.el (calc-realign):
12213 * calc/calc-embed.el (calc-do-embedded, calc-do-embedded)
12214 (calc-embedded-finish-edit, calc-embedded-make-info)
12215 (calc-embedded-finish-command, calc-embedded-stack-change):
12216 * calc/calc-aent.el (calcAlg-enter): Use with-current-buffer.
12217
12218 * pcomplete.el (pcomplete-comint-setup): If there's a choice, replace
12219 shell-dynamic-complete-filename in preference to
12220 comint-dynamic-complete-filename.
12221
12222 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
12223 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
12224 Don't consider whether the display supports colors.
12225 (bookmark-import-new-list): Use dolist.
12226 (bookmark-bmenu-mode-map): Move initialization into declaration.
12227 (bookmark-bmenu-list): Use dolist, simplify.
12228 (bookmark-show-all-annotations): Use save-selected-window and dolist.
12229 (menu-bar-final-items): Use push.
12230
12231 2009-10-28 Bernhard Herzog <bernhard.herzog@intevation.de> (tiny change)
12232
12233 * vc-hg.el (vc-hg-state, vc-hg-working-revision): Use process-file so
12234 it works on remote files.
12235 (vc-hg-diff): Don't pass any `--cwd' argument.
12236
12237 2009-10-27 Kevin Ryde <user42@zip.com.au>
12238
12239 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
12240 Use help-xref-info-regexp and help-xref-url-regexp to identify links.
12241 (Further to Bug#3921).
12242
12243 2009-10-27 Michael Albinus <michael.albinus@gmx.de>
12244
12245 * net/tramp-imap.el (top): Add `X-Size' to `imap-hash-headers'.
12246 (tramp-imap-do-copy-or-rename-file): Don't use the inode, when
12247 calling `tramp-imap-put-file'. Add file size to the call.
12248 (tramp-imap-get-file-entries): Compute also user name, file size,
12249 and date.
12250 (tramp-imap-handle-insert-directory): Insert uid and gid.
12251 (tramp-imap-handle-file-attributes): Transform uid and gid
12252 according to `id-format'.
12253 (tramp-imap-put-file): New optional parameter SIZE. Encode file
12254 size in header X-Size.
12255
12256 2009-10-26 Juanma Barranquero <lekktu@gmail.com>
12257
12258 * simple.el (transpose-subr): Give clearer error when the mark
12259 is not set. (Bug#4807)
12260
12261 2009-10-26 Michael Albinus <michael.albinus@gmx.de>
12262
12263 * net/tramp.el (tramp-perl-file-truename): New defconst.
12264 Perl code contributed by yary <not.com@gmail.com> (tiny change).
12265 (tramp-handle-file-truename, tramp-get-remote-perl): Use it.
12266 Check also for "perl-file-spec" and "perl-cwd-realpath" properties.
12267 (tramp-handle-write-region): In case of APPEND, reuse the tmpfile name.
12268
12269 * net/tramp-imap.el (tramp-imap-file-name-handler-alist):
12270 Ignore `dired-call-process'.
12271 (tramp-imap-make-iht): Use `user' and `ssl' with `imap-hash-make'.
12272
12273 2009-10-26 Julian Scheid <julians37@gmail.com>
12274
12275 * net/tramp.el (tramp-perl-file-name-all-completions): New defconst.
12276 (tramp-get-remote-readlink): New defun.
12277 (tramp-handle-file-truename): Use it.
12278 (tramp-handle-file-exists-p): Check file-attributes cache, assume
12279 file exists if cache value present.
12280 (tramp-check-cached-permissions): New defun.
12281 (tramp-handle-file-readable-p): Use it.
12282 (tramp-handle-file-writable-p): Likewise.
12283 (tramp-handle-file-executable-p): Likewise.
12284 (tramp-handle-file-name-all-completions): Try using Perl to get
12285 partial completions. When perl not available, combine `cd' and
12286 `ls' into single remote operation and use shell expansion to get
12287 partial remote directory contents. Set `file-exists-p' cache for
12288 directory and any files returned by ls. Change cache handling to
12289 support partial directory contents. Use error message emitted by
12290 remote `cd' or Perl code for local tramp-error.
12291 (tramp-do-copy-or-rename-file-directly): Avoid separate
12292 tramp-send-command-and-check call.
12293 (tramp-handle-process-file): Merge three remote ops into one.
12294 Do not flush all caches when `process-file-side-effects' is set.
12295 (tramp-handle-write-region): Avoid tramp-set-file-uid-gid if
12296 file-attributes shows uid/gid to be set already.
12297
12298 2009-10-26 Dan Nicolaescu <dann@ics.uci.edu>
12299
12300 * textmodes/tex-mode.el (tex-dvi-view-command)
12301 (tex-show-queue-command, tex-open-quote):
12302 * progmodes/ruby-mode.el (auto-mode-alist)
12303 (interpreter-mode-alist): Purecopy strings.
12304
12305 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Purecopy item names.
12306
12307 * emacs-lisp/derived.el (define-derived-mode): Purecopy the doc
12308 string for the hook, keymap and abbrev table.
12309
12310 * emacs-lisp/byte-run.el (make-obsolete): Purecopy the current name.
12311
12312 * x-dnd.el (x-dnd-xdnd-to-action):
12313 * startup.el (fancy-startup-text, fancy-about-text): Change to
12314 defconst from defvar.
12315
12316 * ps-print.el (ps-page-dimensions-database): Purecopy initial value.
12317
12318 * mouse.el (mouse-buffer-menu-mode-groups, x-fixed-font-alist):
12319 Purecopy initialization strings.
12320
12321 * mail/sendmail.el (mail-header-separator)
12322 (mail-personal-alias-file):
12323 * mail/rmail.el (rmail-default-dont-reply-to-names)
12324 (rmail-ignored-headers, rmail-retry-ignored-headers)
12325 (rmail-highlighted-headers, rmail-secondary-file-directory)
12326 (rmail-secondary-file-regexp):
12327 * files.el (null-device, file-name-invalid-regexp)
12328 (locate-dominating-stop-dir-regexp)
12329 (inhibit-first-line-modes-regexps): Purecopy initialization strings.
12330 (interpreter-mode-alist): Use mapcar instead of mapc.
12331
12332 * buff-menu.el (Buffer-menu-mode-map): Purecopy name.
12333
12334 * bindings.el (mode-line-major-mode-keymap): Purecopy name.
12335 (completion-ignored-extensions):
12336 (debug-ignored-errors): Purecopy strings.
12337
12338 2009-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
12339
12340 * pcomplete.el (pcomplete-std-complete): Obey pcomplete-use-paring.
12341 (pcomplete, pcomplete-parse-buffer-arguments, pcomplete-opt)
12342 (pcomplete--here): Use push.
12343
12344 * subr.el (all-completions): Declare the 4th arg obsolete.
12345
12346 2009-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
12347
12348 * pcomplete.el (pcomplete-unquote-argument-function): New var.
12349 (pcomplete-unquote-argument): New function.
12350 (pcomplete--common-suffix): Always pay attention to case.
12351 (pcomplete--table-subvert): Quote and unquote the text.
12352 (pcomplete--common-quoted-suffix): New function.
12353 (pcomplete-std-complete): Use it and pcomplete-begin.
12354
12355 * bookmark.el (bookmark-bmenu-list): Don't use switch-to-buffer if
12356 we're inside a dedicated or minibuffer window.
12357
12358 2009-10-24 Karl Fogel <kfogel@red-bean.com>
12359
12360 * bookmark.el: Update documentation, especially documentation
12361 of `bookmark-alist' and of the bookmark file format.
12362 Patch by Drew Adams, with minor tweaks from me. (Bug#4195)
12363
12364 2009-10-24 Chong Yidong <cyd@stupidchicken.com>
12365
12366 * mail/emacsbug.el (report-emacs-bug): Clarify that the
12367 keybindings apply to the mail buffer (Bug#4003). Shrink help
12368 window to buffer.
12369
12370 * whitespace.el (whitespace-mode, whitespace-newline-mode)
12371 (global-whitespace-mode, global-whitespace-newline-mode)
12372 (whitespace-toggle-options, global-whitespace-toggle-options):
12373 Doc fix (Bug#3660).
12374
12375 * nxml/nxml-mode.el (nxml-balanced-close-start-tag): Use the value
12376 of xmltok-start before the end tag was inserted (Bug#2840).
12377
12378 * progmodes/sh-script.el (sh-font-lock-paren): Handle case
12379 patterns that are preceded by an open-paren (Bug#1320).
12380
12381 2009-10-24 Sven Joachim <svenjoac@gmx.de>
12382
12383 * files.el (delete-directory): Delete symlinks to directories with
12384 delete-file (Bug#4739).
12385
12386 2009-10-24 Dan Nicolaescu <dann@ics.uci.edu>
12387
12388 * vc.el (vc-backend-for-registration): Rename from
12389 vc-get-backend-for-registration. Update callers.
12390
12391 * international/mule-cmds.el (set-language-info-alist):
12392 Purecopy lang-env.
12393 (leim-list-header, leim-list-entry-regexp): Change defvars to defconst.
12394 (charset): Purecopy the name.
12395 (define-char-code-property): Purecopy string arguments.
12396
12397 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
12398 Purecopy string arguments.
12399
12400 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
12401 * ediff-hook.el (menu-bar-ediff-menu):
12402 * buff-menu.el (Buffer-menu-mode-map): Purecopy names and tooltips.
12403 * bookmark.el (menu-bar-bookmark-map): Add :help and purecopy the name.
12404
12405 2009-10-24 Glenn Morris <rgm@gnu.org>
12406
12407 * comint.el (comint-dynamic-list-completions):
12408 * term.el (term-dynamic-list-completions): Use choose-completion rather
12409 than obsolete alias mouse-choose-completion.
12410
12411 * filecache.el (file-cache-completions-keymap): Bind mouse-2 to
12412 file-cache-choose-completion.
12413 (file-cache-choose-completion): Handle an optional event argument.
12414 (file-cache-mouse-choose-completion): Make it an obsolete alias.
12415
12416 * progmodes/octave-mod.el (octave-complete-symbol):
12417 Use choose-completion if mouse-choose-completion is ever removed.
12418
12419 * textmodes/sgml-mode.el (sgml-looking-back-at): Move definition before
12420 use.
12421
12422 * emacs-lisp/checkdoc.el (generate-autoload-cookie): Define for
12423 compiler.
12424
12425 * vc-hooks.el (vc-responsible-backend): Fix declaration.
12426
12427 2009-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
12428
12429 * minibuffer.el (completion--embedded-envvar-table): Fix last change.
12430 Ignore `pred' now that we receive one.
12431 Handle test-completion specially.
12432
12433 2009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
12434
12435 * vc.el (vc-responsible-backend): Throw an error if not backend is
12436 found. Remove the REGISTER argument. Move the code dealing with
12437 REGISTER ...
12438 (vc-get-backend-for-registration): ... here. New function.
12439 (vc-deduce-fileset): Call vc-get-backend-for-registration instead
12440 of vc-responsible-backend, pass the file name instead of the
12441 directory name.
12442
12443 2009-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
12444
12445 * pcomplete.el (pcomplete-common-suffix, pcomplete-table-subvert):
12446 New funs.
12447 (pcomplete-std-complete): Use them. Obey pcomplete-termination-string.
12448 (pcomplete-comint-setup): Don't modify a global var via
12449 accidental side-effects.
12450 (pcomplete-shell-setup): Adjust call accordingly.
12451 (pcomplete-parse-comint-arguments): Use push.
12452
12453 2009-10-23 Chong Yidong <cyd@stupidchicken.com>
12454
12455 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
12456 Allow uncapitalized info node names (Bug#3921).
12457
12458 * mail/emacsbug.el (report-emacs-bug): Tweak the sentence pointing
12459 to the DEBUG file (Bug#3781).
12460
12461 2009-10-23 Jari Aalto <jari.aalto@cante.net>
12462
12463 * textmodes/ispell.el (ispell-dictionary-base-alist): Add finnish
12464 dictionary entry (Bug#4579).
12465
12466 2009-10-23 Michael Albinus <michael.albinus@gmx.de>
12467
12468 * net/tramp.el (top): Remove `tramp-rfn-eshadow-update-overlay'
12469 from `rfn-eshadow-update-overlay-hook' when unloading.
12470 (tramp-methods): Add `tramp-copy-keep-tmpfile' for "rsync" and
12471 "rsyncc". Adjust doc string.
12472 (tramp-temp-buffer-file-name): New buffer-local defvar.
12473 (tramp-handle-insert-file-contents, tramp-handle-write-region):
12474 Keep temporary file when indicated by method ("rsync" and
12475 "rsyncc").
12476 (tramp-handle-write-region): Handle APPEND.
12477 (tramp-delete-temp-file-function): New defun. Added to
12478 `kill-buffer-hook'.
12479
12480 2009-10-23 Juanma Barranquero <lekktu@gmail.com>
12481
12482 * menu-bar.el (cua-enable-cua-keys): Declare for the byte-compiler.
12483
12484 2009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
12485
12486 * term/tty-colors.el (msdos-color-values): Remove declaration, unused.
12487 (color-name-rgb-alist, tty-standard-colors)
12488 (tty-color-mode-alist): Change to defconst.
12489
12490 * simple.el (mark-inactive): Purecopy message.
12491
12492 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle): Fix macro.
12493 (global-map, yank-menu):
12494 * textmodes/ispell.el (ispell-menu-map):
12495 * net/eudc.el (eudc-tools-menu):
12496 * international/mule-cmds.el (describe-language-environment-map)
12497 (setup-language-environment-map, set-coding-system-map)
12498 (mule-menu-keymap):
12499 * vc-hooks.el (vc-menu-entry, vc-menu-map):
12500 * replace.el (occur-mode-map):
12501 * pcvs-defs.el (cvs-global-menu): Purecopy names and tooltips.
12502
12503 2009-10-23 Jay Belanger <jay.p.belanger@gmail.com>
12504
12505 * calc/calc.el (math-read-number, math-read-number-simple): Use
12506 `save-match-data'.
12507
12508 2009-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
12509
12510 * simple.el (normal-erase-is-backspace-mode): Use input-decode-map
12511 rather than fiddling with global-map bindings, since it should only
12512 affect per-terminal settings.
12513 See http://bugs.gentoo.org/show_bug.cgi?id=289709.
12514
12515 * minibuffer.el (completion-table-with-terminator): Allow to specify
12516 the terminator-regexp.
12517
12518 * simple.el (switch-to-completions): Look for *Completions* in other
12519 frames as well.
12520
12521 * pcomplete.el: Allow the use of completion-tables.
12522 (pcomplete-std-complete): New command.
12523 (pcomplete-dirs-or-entries): Use a single call to pcomplete-entries.
12524 (pcomplete--here): Use a function for `form' rather than an expression,
12525 so it can be byte-compiled.
12526 (pcomplete-here, pcomplete-here*): Adjust accordingly.
12527 Add edebug declaration.
12528 (pcomplete-show-completions): Remove unused var `curbuf'.
12529 (pcomplete-do-complete, pcomplete-stub):
12530 Don't assume `completions' is a list of strings any more.
12531
12532 2009-10-22 Juanma Barranquero <lekktu@gmail.com>
12533
12534 * find-dired.el (find-name-arg): Fix typo in docstring.
12535
12536 2009-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
12537
12538 * pcmpl-linux.el (pcomplete/kill): Don't abuse pcomplete-entries.
12539 (pcmpl-linux-fs-types): Same, and update to new modules layout.
12540
12541 * pcmpl-gnu.el (pcmpl-gnu-makefile-names): Use a single call to
12542 pcomplete-entries.
12543
12544 * comint.el (comint-read-input-ring, comint-write-input-ring)
12545 (comint-substitute-in-file-name)
12546 (comint-dynamic-complete-as-filename)
12547 (comint-dynamic-simple-complete)
12548 (comint-dynamic-list-filename-completions)
12549 (comint-dynamic-list-completions)
12550 (comint-redirect-results-list-from-process): Minor simplifications.
12551
12552 2009-10-21 Kevin Ryde <user42@zip.com.au>
12553
12554 * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
12555 When inserting ";;; Code" put it before any ";;;###autoload" cookie on
12556 the first form. And insert a blank line after ";;; Code" since
12557 that's usual style. (Bug#4612)
12558
12559 * net/dns.el: Add "Keywords: comm", as per net/net-utils.el.
12560
12561 2009-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
12562
12563 * minibuffer.el (completion-table-with-terminator): Properly implement
12564 boundaries, in case `terminator' appears in the suffix.
12565 (completion--embedded-envvar-table): Don't return boundaries if
12566 there's no valid completion. Simplify.
12567 (completion-file-name-table): New completion table extracted from
12568 completion--file-name-table.
12569 (completion--file-name-table): Use it.
12570 (read-file-name-predicate): Declare obsolete.
12571 (read-file-name): Use the pred arg i.s.o read-file-name-predicate.
12572 * vc-bzr.el (vc-bzr-revision-completion-table): Use the new
12573 completion-file-name-table, and use the `pred' argument.
12574 * files.el (locate-file-completion-table): Use the `pred' arg rather
12575 than read-file-name-predicate.
12576 (abbreviate-file-name): Use \` rather than ^ for BOS.
12577
12578 2009-10-21 Dan Nicolaescu <dann@ics.uci.edu>
12579
12580 * vc.el (vc-deduce-fileset): Undo previous change, do not tell
12581 vc-responsible-backend to register, it causes problems.
12582
12583 2009-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
12584
12585 * help-fns.el: Don't require help-mode (to avoid bootstrap issues).
12586
12587 2009-10-21 Michael Albinus <michael.albinus@gmx.de>
12588
12589 * net/tramp-smb.el (tramp-smb-get-stat-capability): New defun.
12590 (tramp-smb-handle-file-attributes): Use it.
12591 (tramp-smb-do-file-attributes-with-stat): Don't raise an error.
12592 (tramp-smb-handle-insert-directory): Use `mapc' rather than
12593 `mapcar'. Use `tramp-smb-get-stat-capability'.
12594 Add `dired-filename' text properties.
12595 (tramp-smb-get-cifs-capabilities): Apply `save-match-data'.
12596 (tramp-smb-maybe-open-connection): Simplify check for smbclient
12597 version.
12598
12599 2009-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
12600
12601 * subr.el (read-key-delay): Reduce to 0.01.
12602 (read-key): Use read-key-sequence-vector to avoid turning M-t into 244
12603 (bug#4751).
12604
12605 2009-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
12606
12607 * bindings.el (function-key-map): Map C-@ to C-SPC if C-@ is unbound.
12608
12609 * info.el (Info-complete-menu-item): Handle `boundaries' explicitly.
12610 (Info-menu): Remove unused vars `last' and `completions'.
12611 (Info-index-nodes): Remove unused var `node'.
12612
12613 * info.el (Info-complete-menu-item): Use complete-with-action.
12614
12615 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
12616
12617 Make vc-annotate work through copies and renames.
12618 * vc-annotate.el (vc-annotate-extract-revision-at-line):
12619 Return the file name too.
12620 (vc-annotate-revision-at-line)
12621 (vc-annotate-find-revision-at-line)
12622 (vc-annotate-revision-previous-to-line)
12623 (vc-annotate-show-log-revision-at-line): Update to get the file
12624 name from vc-annotate-extract-revision-at-line.
12625 (vc-annotate-show-diff-revision-at-line-internal): Change the
12626 argument to mean whether to show a file diff or not. Get the file
12627 name from vc-annotate-extract-revision-at-line.
12628 (vc-annotate-show-diff-revision-at-line):
12629 Update vc-annotate-show-diff-revision-at-line call.
12630 (vc-annotate-warp-revision): Add an optional file argument.
12631
12632 * vc-git.el (vc-git-annotate-command): Pass -C -C to the blame command.
12633 (vc-git-annotate-extract-revision-at-line): Also return the file
12634 name if found.
12635
12636 * vc-hg.el (vc-hg-annotate-command): Pass --follow to the annotate
12637 command. Remove unused code.
12638 (vc-hg-annotate-re): Update to match --follow output.
12639 (vc-hg-annotate-extract-revision-at-line): Also return the file
12640 name if found.
12641
12642 * vc.el: Update annotate-extract-revision-at-line documentation.
12643
12644 2009-10-18 Kevin Ryde <user42@zip.com.au>
12645
12646 * ibuffer.el (ibuffer-confirm-operation-on): Correction to error
12647 re-throw, `err' is a pair not a list so can't use apply (Bug#4740).
12648
12649 * net/browse-url.el (browse-url): Identify alist with "consp and
12650 not functionp" and let all other things go down the `apply' leg,
12651 as suggested by Stefan. (Further to bug#4531.)
12652
12653 2009-10-18 Chong Yidong <cyd@stupidchicken.com>
12654
12655 * minibuffer.el (read-file-name): Check for repeat before putting
12656 a default argument in file-name-history (Bug#4657).
12657
12658 * emacs-lisp/lisp-mode.el (preceding-sexp): Recognize hash table
12659 read syntax (Bug#4737).
12660
12661 * textmodes/sgml-mode.el (sgml-delete-tag): Use sgml-looking-back-at.
12662
12663 2009-10-18 Aaron S. Hawley <aaron.s.hawley@gmail.com>
12664
12665 * textmodes/sgml-mode.el (sgml-tag-help): Prompt user for tag.
12666 (html-tag-alist, html-tag-help): Add descriptions for undocumented
12667 entries and make note of obsolete tags.
12668
12669 2009-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
12670
12671 * net/ange-ftp.el (ange-ftp-file-size): Use unwind-protect.
12672
12673 2009-10-18 Glenn Morris <rgm@gnu.org>
12674
12675 * Makefile.in (compile-last): Ensure GREP_OPTIONS is null before calling
12676 grep, so that binary files (eg international/uni-bidi.el) can match.
12677 Remove test for "UnicodeData" files, since it is hopefully unnecessary
12678 now, and in any case the file header format has changed.
12679
12680 2009-10-17 Glenn Morris <rgm@gnu.org>
12681
12682 * textmodes/flyspell.el (flyspell-large-region, flyspell-word)
12683 (flyspell-get-word, flyspell-large-region)
12684 (flyspell-auto-correct-previous-word): Doc/error message fixes.
12685
12686 2009-10-17 Chong Yidong <cyd@stupidchicken.com>
12687
12688 * Makefile.in (ELCFILES): Add ede/shell.
12689
12690 2009-10-17 Dan Nicolaescu <dann@ics.uci.edu>
12691
12692 * term/common-win.el (x-colors): Purecopy it.
12693
12694 2009-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
12695
12696 * tar-mode.el (tar-data-swapped-p): Make the assertion a bit more
12697 permissive for when the buffer is empty.
12698 (tar-header-block-tokenize): Decode the username and groupname.
12699 (tar-chown-entry, tar-chgrp-entry): Encode the names (bug#4730).
12700
12701 2009-10-17 Eric Ludlam <zappo@gnu.org>
12702
12703 * emacs-lisp/eieio-base.el (eieio-persistent-save): If buffer
12704 contains multibyte characters, choose first applicable coding
12705 system automatically.
12706
12707 2009-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
12708
12709 * international/mule-cmds.el (select-safe-coding-system): If the file
12710 has a coding cookie, use it regardless of any other setting (bug#4712).
12711
12712 2009-10-17 Glenn Morris <rgm@gnu.org>
12713
12714 * foldout.el (foldout-mouse-swallow-events):
12715 * gs.el (gs-load-image): Replace obsolete forms of sit-for, sleep-for.
12716
12717 * dired.el (dired-ls-F-marks-symlinks, dired-keep-marker-rename)
12718 (dired-keep-marker-copy, dired-keep-marker-hardlink)
12719 (dired-keep-marker-symlink, dired-dwim-target)
12720 (dired-copy-preserve-time): Do not autoload these defcustoms.
12721
12722 * mail/rmail.el (rmail-write-region-annotate): Prevent viewing different
12723 messages from messing up the file coding. (Bug#4623)
12724
12725 2009-10-17 Jari Aalto <jari.aalto@cante.net>
12726
12727 * textmodes/ispell.el (ispell-get-decoded-string): Give an error
12728 if no match is found for the current dictionary. (Bug#4578)
12729
12730 * textmodes/flyspell.el (flyspell-get-word): Make `following' argument
12731 optional, since that is how it is documented, and this is often called
12732 with a nil argument. (Bug#4577)
12733 (flyspell-external-point-words, flyspell-auto-correct-word)
12734 (flyspell-correct-word-before-point, flyspell-word-search-forward)
12735 (flyspell-word-search-backward): Remove nil argument in calls to
12736 flyspell-get-word, since it is not needed now.
12737
12738 2009-10-17 Ulrich Mueller <ulm@gentoo.org>
12739
12740 * play/doctor.el (doctor-adverbp): Exclude some nouns. (Bug#4565)
12741
12742 2009-10-16 Glenn Morris <rgm@gnu.org>
12743
12744 * net/rcirc.el (rcirc-authenticate): Simplify previous change.
12745
12746 2009-10-16 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
12747
12748 * net/ange-ftp.el (ange-ftp-send-cmd): Handle `size' like `mdtm'.
12749 (ange-ftp-file-size): New function.
12750 (ange-ftp-file-attributes): Use it.
12751
12752 2009-10-16 Michael Albinus <michael.albinus@gmx.de>
12753
12754 * net/tramp-smb.el (tramp-smb-version): New defvar.
12755 (tramp-smb-maybe-open-connection): Use it, in order to avoid
12756 repeated checks.
12757
12758 2009-10-16 Glenn Morris <rgm@gnu.org>
12759
12760 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Doc fix.
12761 Maybe copy some custom properties from old to new name. (Bug#4706)
12762
12763 2009-10-16 Juanma Barranquero <lekktu@gmail.com>
12764
12765 * subr.el (error, sit-for, start-process-shell-command)
12766 (start-file-process-shell-command): Set the calling convention
12767 after the function definition.
12768
12769 2009-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
12770
12771 * subr.el (error, sit-for, start-process-shell-command)
12772 (start-file-process-shell-command): Use the new
12773 set-advertised-calling-convention feature.
12774
12775 2009-10-16 Taichi Kawabata <kawabata.taichi@gmail.com>
12776
12777 * international/ucs-normalize.el (ucs-normalize-version):
12778 Change to 1.2.
12779 (check-range): Adjust for Unicode 5.2.
12780
12781 2009-10-15 Juri Linkov <juri@jurta.org>
12782
12783 * menu-bar.el (menu-bar-file-menu): Convert `separator-exit'
12784 to the `menu-item' format.
12785
12786 2009-10-15 Michael Albinus <michael.albinus@gmx.de>
12787
12788 * net/tramp.el (tramp-replace-environment-variables): Do not fail
12789 if the environment variable does not exist.
12790
12791 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
12792 (tramp-smb-get-share, tramp-smb-get-localname): Use only VEC as
12793 parameter.
12794 (tramp-smb-handle-add-name-to-file)
12795 (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
12796 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
12797 (tramp-smb-handle-file-attributes)
12798 (tramp-smb-do-file-attributes-with-stat)
12799 (tramp-smb-handle-file-local-copy)
12800 (tramp-smb-handle-insert-directory)
12801 (tramp-smb-handle-make-directory)
12802 (tramp-smb-handle-make-directory-internal)
12803 (tramp-smb-handle-make-symbolic-link)
12804 (tramp-smb-handle-rename-file, tramp-smb-handle-set-file-modes)
12805 (tramp-smb-handle-write-region, tramp-smb-get-file-entries)
12806 (tramp-smb-maybe-open-connection): Apply the changed parameters.
12807 (tramp-smb-read-file-entry): Read Disk names in compressed format.
12808 Handle long file names.
12809 (tramp-smb-get-cifs-capabilities): Check, whether the connection
12810 process is running.
12811 (tramp-smb-maybe-open-connection): Trace "smbclient -V" command.
12812 Read share names with "-g" option.
12813
12814 2009-10-15 Ryan Yeske <rcyeske@gmail.com>
12815
12816 * net/rcirc.el (rcirc-view-log-file): New command.
12817 (rcirc-track-minor-mode-map): Remove C-c ` binding.
12818 (rcirc-authenticate, rcirc-authinfo): Allow nickserv-nick to be
12819 specified.
12820
12821 2009-10-15 Glenn Morris <rgm@gnu.org>
12822
12823 * w32-fns.el (w32-batch-update-autoloads): Take autoload-make-program
12824 from the second command-line argument.
12825 * makefile.w32-in (autoloads, $(lisp)/calendar/cal-loaddefs.el)
12826 ($(lisp)/calendar/diary-loaddefs.el, $(lisp)/calendar/hol-loaddefs.el)
12827 ($(lisp)/mh-e/mh-loaddefs.el): Pass $(MAKE) as second argument to
12828 w32-batch-update-autoloads.
12829 * emacs-lisp/autoload.el (autoload-make-program): New variable.
12830 (batch-update-autoloads): Handle autoload-excludes on windows-nt.
12831
12832 * mail/rmailedit.el (rmail-cease-edit): Give an error if the end of
12833 the headers cannot be located. Simplify, subtracting superflous
12834 save-excursions.
12835
12836 2009-10-15 Stefan Monnier <monnier@iro.umontreal.ca>
12837
12838 Replace completion-base-size by completion-base-position to fix bugs
12839 such as (bug#4699).
12840 * simple.el (completion-base-position): New var.
12841 (completion-base-size): Mark as obsolete.
12842 (choose-completion): Make it work for mouse events as well.
12843 Pass the new base-position to choose-completion-string.
12844 (choose-completion-guess-base-position): New function, extracted from
12845 choose-completion-delete-max-match.
12846 (choose-completion-delete-max-match): Use it. Make obsolete.
12847 (choose-completion-string): Use the new base-position info.
12848 (completion-root-regexp): Delete.
12849 (completion-setup-function): Preserve completion-base-position.
12850 Eliminate obsolete base-size manipulation.
12851 * minibuffer.el (display-completion-list): Don't mess with base-size.
12852 (minibuffer-completion-help): Set completion-base-position instead.
12853 * mouse.el (mouse-choose-completion): Redefine as a mere alias to
12854 choose-completion.
12855 * textmodes/bibtex.el (bibtex-complete):
12856 * emacs-lisp/crm.el (crm--choose-completion-string):
12857 Adjust to new calling convention.
12858 * complete.el (partial-completion-mode): Use minibufferp to avoid
12859 bumping into incompatible change to choose-completion-string-functions.
12860 * ido.el (ido-choose-completion-string): Make its calling convention
12861 more permissive.
12862 * comint.el (comint-dynamic-list-input-ring-select): Remove obsolete
12863 base-size manipulation.
12864 (comint-dynamic-list-input-ring): Use dotimes and push.
12865 * iswitchb.el (iswitchb-completion-help): Remove dead-code call to
12866 fundamental-mode. Use `or'.
12867
12868 2009-10-14 Juri Linkov <juri@jurta.org>
12869
12870 * misearch.el (multi-isearch-next-buffer-from-list)
12871 (multi-isearch-next-file-buffer-from-list): Doc fix. (Bug#4723)
12872
12873 2009-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
12874
12875 * Makefile.in (compile-onefile): Load `bytecomp' rather than
12876 `bytecomp.el'.
12877
12878 * minibuffer.el (completion-pcm--merge-completions): Make sure the
12879 string we return is all made up of text from the completions rather
12880 than part from the completions and part from the input (bug#4219).
12881
12882 * ido.el (ido-everywhere): Use define-minor-mode.
12883
12884 * buff-menu.el (list-buffers, ctl-x-map):
12885 Mark the entry points with ;;;###autoload cookies.
12886
12887 2009-10-14 Dan Nicolaescu <dann@ics.uci.edu>
12888
12889 * vc-git.el (vc-git-dir-extra-headers): Set the branch name
12890 correctly in the detached head case.
12891 (vc-git-print-log): Remove unused binding.
12892
12893 * vc.el (vc-responsible-backend): When a directory is passed for
12894 for registration create a VC repository if no backend is
12895 responsible for the directory argument.
12896 (vc-deduce-fileset): Tell vc-responsible-backend to register.
12897
12898 * vc.el: Move comments about RCS and SCCS ...
12899 * vc-rcs.el:
12900 * vc-sccs.el: ... here, respectively.
12901
12902 2009-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
12903
12904 * minibuffer.el (completion--file-name-table): Return nil if there's
12905 no file completion, even if substitute-in-file-name changed
12906 the string (bug#4708).
12907
12908 2009-10-13 Juri Linkov <juri@jurta.org>
12909
12910 * files-x.el (read-file-local-variable-value): Don't filter out
12911 minor modes from mode name completion (bug#4664).
12912
12913 2009-10-13 Juanma Barranquero <lekktu@gmail.com>
12914
12915 * international/mule-cmds.el (ucs-names): Remove exclusion of
12916 "Enclosed Ideographic Supplement" range (U+1F200..U+1F2FF).
12917
12918 2009-10-13 Kenichi Handa <handa@m17n.org>
12919
12920 * international/uni-name.el: Regenerated.
12921
12922 2009-10-13 Juanma Barranquero <lekktu@gmail.com>
12923
12924 * bs.el (bs-mode): Fix last change. (`revert-buffer-function'
12925 should be automatically buffer-local, but isn't.)
12926
12927 2009-10-12 Sam Steingold <sds@gnu.org>
12928
12929 * progmodes/compile.el (compilation-next-error-function): Fix the
12930 timestamps if the buffer has been visited before.
12931 (compilation-mode-font-lock-keywords): Do not prepend "^ *" to
12932 non-anchored patterns, like the perl one (bug#3928).
12933
12934 2009-10-12 Glenn Morris <rgm@gnu.org>
12935
12936 * net/tramp-smb.el (tramp-smb-do-file-attributes-with-stat):
12937 Let-bind `size'.
12938
12939 2009-10-12 Juanma Barranquero <lekktu@gmail.com>
12940
12941 * proced.el (proced-unload-function): New function.
12942
12943 * bs.el (bs-mode): Set `revert-buffer-function' to `bs-refresh'.
12944 (bs-refresh): Add IGNORED arg for `revert-buffer' compatibility.
12945 Doc fix.
12946
12947 * menu-bar.el (menu-bar-file-menu): Fix format of `separator-exit' item.
12948
12949 2009-10-11 Juri Linkov <juri@jurta.org>
12950
12951 * files-x.el (read-file-local-variable-value):
12952 Provide default value only for bound variables (bug#4664).
12953
12954 2009-10-11 Michael Albinus <michael.albinus@gmx.de>
12955
12956 * net/tramp.el (tramp-local-host-p): Function shall return nil for
12957 connection methods like smb.
12958
12959 * net/tramp-cache.el (tramp-flush-connection-property): The hash
12960 can be empty.
12961
12962 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
12963 (tramp-smb-file-name-handler-alist): Add handlers for
12964 `add-name-to-file', `make-symbolic-link'.
12965 (tramp-smb-handle-add-name-to-file)
12966 (tramp-smb-do-file-attributes-with-stat)
12967 (tramp-smb-handle-make-symbolic-link)
12968 (tramp-smb-get-cifs-capabilities): New defuns.
12969 (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
12970 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
12971 (tramp-smb-handle-file-local-copy)
12972 (tramp-smb-handle-make-directory-internal)
12973 (tramp-smb-handle-rename-file, tramp-smb-handle-write-region):
12974 The file name syntax depends on cifs capabilities.
12975 (tramp-smb-handle-file-attributes):
12976 Call `tramp-smb-do-file-attributes-with-stat' if possible.
12977 (tramp-smb-handle-insert-directory): Use posix attributes if possible.
12978 (tramp-smb-handle-set-file-modes): It is applicable for posix only.
12979
12980 2009-10-11 Chong Yidong <cyd@stupidchicken.com>
12981
12982 * emacs-lisp/eieio.el: Avoid requiring cl at runtime.
12983 (eieio-defclass): Apply deftype handler and setf-method properties
12984 directly.
12985 (eieio-add-new-slot): Avoid union function from cl library.
12986 (eieio--typep): New function.
12987 (eieio-perform-slot-validation): Use it.
12988
12989 2009-10-10 Karl Fogel <kfogel@red-bean.com>
12990
12991 * bookmark.el (bookmark-yank-word, bookmark-insert-current-bookmark):
12992 Update documentation to refer to the variables documented in r1.135.
12993 (Bug#4188)
12994
12995 2009-10-10 Karl Fogel <kfogel@red-bean.com>
12996
12997 * bookmark.el (Info-suffix-list): Remove this unused variable.
12998 (bookmark-current-point): Remove this obsolete variable.
12999 (bookmark-set, bookmark-rename, bookmark-send-edited-annotation):
13000 Adjust for removal of bookmark-current-point.
13001
13002 (bookmarks-already-loaded, bookmark-current-buffer)
13003 (bookmark-yank-point): Document. (Bug#4188)
13004
13005 2009-10-10 Glenn Morris <rgm@gnu.org>
13006
13007 * frame.el (frame-height): Doc fix.
13008
13009 * calendar/calendar.el (calendar-split-width-threshold): New option.
13010 (calendar-basic-setup): Use calendar-split-width-threshold.
13011
13012 2009-10-09 Juanma Barranquero <lekktu@gmail.com>
13013
13014 * international/mule-cmds.el (ucs-names): Exclude new "Enclosed
13015 Ideographic Supplement" range (U+1F200..U+1F2FF).
13016
13017 2009-10-09 Karl Fogel <kfogel@red-bean.com>
13018
13019 * bookmark.el (bookmark-bmenu-rename): Don't call bookmark-bmenu-list,
13020 since the list will have been rebuilt anyway. (Bug#4349)
13021
13022 2009-10-09 Karl Fogel <kfogel@red-bean.com>
13023
13024 * bookmark.el (bookmark-delete): Don't let batch arg prevent saving.
13025 (bookmark-bmenu-execute-deletions): Don't save here, as
13026 bookmark-delete will now do so if necessary.
13027 Suggested by Thierry Volpiatto <thierry.volpiatto {_AT_} gmail.com>.
13028 (Bug#4348)
13029
13030 2009-10-09 Glenn Morris <rgm@gnu.org>
13031
13032 * mail/emacsbug.el (report-emacs-bug): Also print `features'.
13033
13034 2009-10-09 Karl Fogel <kfogel@red-bean.com>
13035
13036 * bookmark.el (bookmark-jump): Add new `display-func' parameter.
13037 (bookmark-jump-other-window): Just invoke bookmark-jump with new
13038 argument now, so the two function's behaviors will match. (Bug#3645)
13039
13040 2009-10-08 Michael Albinus <michael.albinus@gmx.de>
13041
13042 * net/tramp.el (tramp-file-name-real-user, tramp-file-name-domain)
13043 (tramp-file-name-real-host, tramp-file-name-port):
13044 Apply `save-match-data'.
13045
13046 * net/tramp-smb.el (tramp-smb-handle-copy-directory): Handle the
13047 case both directories are remote.
13048 (tramp-smb-handle-expand-file-name): Implement "~" expansion.
13049 (tramp-smb-maybe-open-connection): Flush the cache only if necessary.
13050
13051 2009-10-07 Juanma Barranquero <lekktu@gmail.com>
13052
13053 * makefile.w32-in (WINS_UPDATES): Fix typo in previous change.
13054
13055 2009-10-07 Glenn Morris <rgm@gnu.org>
13056
13057 * emacs-lisp/autoload.el (batch-update-autoloads): Remove useless use
13058 of concat.
13059
13060 2009-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
13061
13062 * files-x.el (read-file-local-variable): Include some
13063 non-user-variables in the completion table (bug#4664).
13064
13065 2009-10-07 Michael Albinus <michael.albinus@gmx.de>
13066
13067 * net/tramp-cache.el (tramp-flush-connection-property): Add trace
13068 message.
13069
13070 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
13071 (tramp-smb-file-name-handler-alist): Add handler for
13072 `copy-directory', `expand-file-name', `set-file-modes'.
13073 (tramp-smb-handle-copy-directory)
13074 (tramp-smb-handle-expand-file-name)
13075 (tramp-smb-handle-set-file-modes): New defuns.
13076 (tramp-smb-handle-copy-file): Handle KEEP-DATE.
13077 (tramp-smb-handle-file-attributes): Simplify check for retrieving
13078 entry.
13079 (tramp-smb-handle-insert-directory): Don't flush the cache.
13080 (tramp-smb-maybe-open-connection): Check for samba client and
13081 server versions.
13082
13083 2009-10-07 Eli Zaretskii <eliz@gnu.org>
13084
13085 * emacs-lisp/autoload.el (batch-update-autoloads): Fix last change
13086 to not error out of search for "^lisp=" fails.
13087
13088 2009-10-07 Juanma Barranquero <lekktu@gmail.com>
13089
13090 * makefile.w32-in (WINS_UPDATES): New macro.
13091 (custom-deps, finder-data, autoloads): Use it.
13092
13093 2009-10-07 Glenn Morris <rgm@gnu.org>
13094
13095 * Makefile.in (autoloads): Revert previous change.
13096 * emacs-lisp/autoload.el (batch-update-autoloads): Rather than having
13097 the list of preloaded files passed on the command-line, get
13098 it from src/Makefile.
13099
13100 * calendar/calendar.el (calendar-basic-setup): In the wide frame case,
13101 show the original buffer rather than a random one.
13102
13103 2009-10-07 Markus Rost <rost@math.uni-bielefeld.de>
13104
13105 * help.el (describe-no-warranty): Place point in a slightly better
13106 position in the GPLv3 text.
13107
13108 2009-10-06 Sam Steingold <sds@gnu.org>
13109
13110 * net/tramp-compat.el (tramp-compat-process-running-p): Check that
13111 the comm attribute is present before calling regexp-quote.
13112
13113 2009-10-06 Juanma Barranquero <lekktu@gmail.com>
13114
13115 * play/animate.el (animate-string): For good effect, make sure
13116 `indent-tabs-mode' and `show-trailing-whitespace' are nil.
13117
13118 * play/animate.el (animate-sequence, animate-birthday-present):
13119 * misc.el (butterfly): Don't set `indent-tabs-mode'.
13120
13121 2009-10-06 Glenn Morris <rgm@gnu.org>
13122
13123 * emacs-lisp/byte-run.el (define-obsolete-face-alias): Doc fix.
13124
13125 * emacs-lisp/autoload.el (autoload-excludes): New variable.
13126 (autoload-generate-file-autoloads): Skip files in autoload-excludes.
13127 (batch-update-autoloads): Process a string value of autoload-excludes,
13128 set during the build process.
13129 * Makefile.in (autoloads): Skip preloaded files. (Bug#4446)
13130
13131 * net/tramp.el (tramp-handle-start-file-process): Move tramp-error call
13132 inside with-parsed... macro so that `v' is defined.
13133
13134 * progmodes/f90.el (f90-end-of-block, f90-beginning-of-block):
13135 * progmodes/fortran.el (fortran-end-of-block)
13136 (fortran-beginning-of-block):
13137 Also push mark in the macro case.
13138
13139 * emerge.el (emerge-show-file-name):
13140 * calc/calc.el (calc-quit):
13141 * calc/calc-misc.el (calc-big-or-small):
13142 * calc/calc-graph.el (calc-graph-view):
13143 * calc/calc-ext.el (calc-reset):
13144 * calendar/calendar.el (calendar-basic-setup):
13145 Use window-full-height-p.
13146
13147 * mail/rmailedit.el (rmail-cease-edit): If there is a Content-Type
13148 header we don't understand, don't insert another. (Bug#4624)
13149 If changing mime charset, insert the new one in the right place.
13150
13151 2009-10-06 Matthew Junker <matthew.junker@sbcglobal.net> (tiny change)
13152
13153 * calendar/cal-tex.el (cal-tex-cursor-month-landscape)
13154 (cal-tex-cursor-month): Correctly increment the end date for diary and
13155 holiday listing. (Bug#4626)
13156
13157 2009-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
13158
13159 * help-fns.el (describe-function-1): Don't burp if the function is not
13160 a symbol.
13161
13162 2009-10-05 Juanma Barranquero <lekktu@gmail.com>
13163
13164 * emacs-lisp/chart.el (chart-face-pixmap-list, chart-new-buffer, chart)
13165 (chart-axis-range, chart-axis-names, chart-sequece, chart-bar)
13166 (chart-draw, chart-axis-draw, chart-sort, chart-sort-matchlist)
13167 (chart-draw-line, chart-bar-quickie): Fix typos in docstrings.
13168
13169 * emacs-lisp/eieio.el (generic-p, eieiomt-next, eieio-generic-form)
13170 (eieio-default-superclass): Reflow docstrings.
13171 (this, class-option-assoc, defclass, eieio-class-un-autoload)
13172 (eieio-unbind-method-implementations, defmethod)
13173 (eieio-validate-slot-value, eieio-validate-class-slot-value)
13174 (oref-default, eieio-oref-default, eieio-oset, eieio-oset-default)
13175 (with-slots, eieio-add-new-slot, object-assoc, object-remove-from-list)
13176 (eieio-slot-originating-class-p, eieio-slot-name-index)
13177 (eieio-pre-method-execution-hooks, eieio-initarg-to-attribute)
13178 (constructor, initialize-instance, no-next-method, object-print)
13179 (object-write, eieio-override-prin1, eieio-edebug-prin1-to-string):
13180 Fix typos in docstrings.
13181 (eieio-defclass, eieio-perform-slot-validation-for-default, defgeneric)
13182 (child-of-class-p, object-slots, slot-boundp, slot-exists-p)
13183 (next-method-p): Doc fixes.
13184 (eieio-add-new-slot, call-next-method, eieiomt-add, change-class):
13185 Fix typos in error messages.
13186 (eieio-defmethod): Fix typo in description of generic method.
13187
13188 * emacs-lisp/eieio-base.el (eieio-instance-inheritor, slot-unbound)
13189 (eieio-persistent-save-interactive, slot-missing):
13190 Fix typos in docstrings.
13191 (eieio-instance-inheritor-slot-boundp): Doc fix.
13192
13193 * emacs-lisp/eieio-comp.el (byte-compile-file-form-defmethod)
13194 (byte-compile-defmethod-param-convert): Fix typos in docstrings.
13195
13196 * emacs-lisp/eieio-custom.el (eieio-done-customizing)
13197 (eieio-custom-object-apply-reset):
13198 Fix typos in docstrings and error messages.
13199
13200 * emacs-lisp/eieio-datadebug.el (data-debug-show):
13201 Fix typo in docstring.
13202
13203 * emacs-lisp/eieio-opt.el (top): Fix typo in error message.
13204 (eieio-browse-tree): Doc fix.
13205 (eieio-all-generic-functions, eieio-class-speedbar): Reflow docstrings.
13206 (eieio-help-mode-augmentation-maybee, eieio-class-speedbar-make-map):
13207 Fix typos in docstrings.
13208
13209 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-file-button): Doc fix.
13210 (eieio-speedbar-key-map, eieio-speedbar-create-engine)
13211 (eieio-speedbar-buttons, eieio-speedbar, eieio-speedbar-object-children)
13212 (eieio-speedbar-make-tag-line, eieio-speedbar-object-expand):
13213 Reflow docstrings.
13214
13215 2009-10-05 Dan Nicolaescu <dann@ics.uci.edu>
13216
13217 * vc-hg.el (log-view-vc-backend): Declare for compiler.
13218 (vc-hg-outgoing-mode, vc-hg-incoming-mode):
13219 Set log-view-vc-backend so that diff can work.
13220
13221 * log-view.el (log-view-diff): Use vc-diff-internal instead of
13222 vc-version-diff.
13223 (vc-diff-internal): Autoload this instead of vc-version-diff.
13224
13225 2009-10-05 Eli Zaretskii <eliz@gnu.org>
13226
13227 * simple.el (eval-expression): Doc fix.
13228
13229 * progmodes/cwarn.el (cwarn-mode): Doc fix.
13230
13231 2009-10-05 Michael Albinus <michael.albinus@gmx.de>
13232
13233 * files.el (directory-files-no-dot-files-regexp): New defconst.
13234 (delete-directory): Use it.
13235 (copy-directory): Use it. Remove parameter PRESERVE-UID-GID.
13236
13237 * net/tramp.el (tramp-verbose): Fix docstring.
13238 (tramp-methods): Add recursive option to `tramp-copy-args'.
13239 Add `tramp-copy-recursive'. Valid for "rcp", "scp", "scp1", "scp2",
13240 "scp1_old", "scp2_old", "rsync", "rsyncc".
13241 (tramp-default-method): Check also for `auth-source-user-or-password'.
13242 (tramp-file-name-handler-alist, tramp-file-name-for-operation):
13243 Add handler for `copy-directory'.
13244 (tramp-handle-copy-directory): New defun.
13245 (tramp-do-copy-or-rename-file-out-of-band): Handle directory case.
13246 (tramp-handle-start-file-process): Raise an error when PROGRAM is nil.
13247 Optimize sent command.
13248
13249 2009-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
13250
13251 * calendar/diary-lib.el (diary-show-all-entries): Re-fit the calendar
13252 window if necessary.
13253
13254 * calendar/calendar.el (calendar-basic-setup): Don't call
13255 switch-to-buffer in a dedicated window.
13256
13257 2009-10-05 Karl Fogel <kfogel@red-bean.com>
13258
13259 * bookmark.el (bookmark-handle-bookmark): If bookmark has no file,
13260 don't do anything related to relocating, just return nil.
13261 (bookmark-error-no-filename): New error.
13262 (bookmark-default-handler): Signal `bookmark-error-no-filename' if
13263 bookmark has no file. Don't even attempt to handle things that
13264 are not files; the whole point of custom handlers is to keep that
13265 knowledge elsewhere anyway. Tighten some comments.
13266 (bookmark-file-or-variation-thereof): Remove now-unused function.
13267 (bookmark-location): Doc string fix.
13268 (Bug#4250)
13269
13270 2009-10-04 Karl Fogel <kfogel@red-bean.com>
13271
13272 * bookmark.el (bookmark-handle-bookmark): When relocating a bookmark,
13273 don't use a file dialog, because they usually don't know how to read
13274 a directory target from the user. (Bug#4230)
13275 Also, make sure the prompt can display directories as well as files.
13276
13277 2009-10-04 Karl Fogel <kfogel@red-bean.com>
13278
13279 * bookmark.el (bookmark-set, bookmark-buffer-name):
13280 Improve doc strings. (Bug#1193)
13281
13282 2009-10-04 Karl Fogel <kfogel@red-bean.com>
13283
13284 * bookmark.el (bookmark-get-bookmark, bookmark-get-bookmark-record)
13285 (bookmark-set-name, bookmark-prop-get, bookmark-prop-set)
13286 (bookmark-get-annotation, bookmark-set-annotation)
13287 (bookmark-get-filename, bookmark-set-filename, bookmark-get-position)
13288 (bookmark-set-position, bookmark-get-front-context-string)
13289 (bookmark-set-front-context-string, bookmark-get-rear-context-string)
13290 (bookmark-set-rear-context-string, bookmark-location, bookmark-jump)
13291 (bookmark-jump-other-window, bookmark-handle-bookmark)
13292 (bookmark-relocate, bookmark-insert-location, bookmark-rename)
13293 (bookmark-insert, bookmark-delete, bookmark-time-to-save-p)
13294 (bookmark-edit-annotation-mode, bookmark-edit-annotation):
13295 Improve doc strings to say whether bookmark can be a string or
13296 a record or both, and make other consistency and clarity fixes.
13297 (bookmark-get-handler, bookmark--jump-via, bookmark-write-file)
13298 (bookmark-default-annotation-text, bookmark-yank-word)
13299 (bookmark-maybe-load-default-file, bookmark-maybe-sort-alist)
13300 (bookmark-import-new-list, bookmark-maybe-rename)
13301 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
13302 (bookmark-bmenu-bookmark): Give these doc strings.
13303 (bookmark-bmenu-check-position): Give this a doc string, but also
13304 add a FIXME comment about how the function may be pointless.
13305 (bookmark-default-handler): Rework doc string and change a
13306 parameter name, to clarify that this takes a bookmark record
13307 not a bookmark name.
13308 (bookmark-set): Change a parameter name to indicate its meaning,
13309 and improve the doc string a bit.
13310 (Bug#4188)
13311
13312 2009-10-04 Karl Fogel <kfogel@red-bean.com>
13313
13314 * bookmark.el (bookmark-alist): Document the new `handler' element
13315 in the param alist.
13316 (bookmark-make-record-function): Adjust documentation for above.
13317 (Bug#4193)
13318
13319 2009-10-04 Karl Fogel <kfogel@red-bean.com>
13320
13321 * info.el (Info-bookmark-make-record): Document this function.
13322 (Info-bookmark-jump): Document with a doc string, not just a comment.
13323 (Bug#4203)
13324
13325 2009-10-04 Michael Albinus <michael.albinus@gmx.de>
13326
13327 * files.el (copy-directory): New defun.
13328
13329 * dired-aux.el (dired-copy-file-recursive): Use it.
13330
13331 2009-10-04 Juanma Barranquero <lekktu@gmail.com>
13332
13333 * files-x.el (modify-dir-local-variable)
13334 (copy-dir-locals-to-file-locals-prop-line): Fix typos in
13335 docstrings.
13336
13337 * recentf.el (recentf-unload-function): New function.
13338
13339 2009-10-04 Glenn Morris <rgm@gnu.org>
13340
13341 * window.el (window-full-height-p): Add doc string.
13342
13343 2009-10-04 Martin Rudalics <rudalics@gmx.at>
13344
13345 * window.el (window-full-height-p): New function. (Bug#4543)
13346
13347 2009-10-03 Dan Nicolaescu <dann@ics.uci.edu>
13348
13349 * vc.el: Remove commented out code.
13350 (vc-derived-from-dir-mode): Remove, unused.
13351 (vc-version-diff, vc-diff): Consistently pass t to vc-deduce-fileset.
13352
13353 2009-10-03 Michael Albinus <michael.albinus@gmx.de>
13354
13355 * net/tramp-ftp.el (tramp-ftp-file-name-handler):
13356 Disable `file-name-handler-alist' when loading 'ange-ftp. Otherwise,
13357 there could be recursive loading when `default-directory' is a
13358 remote file name. (Bug#4614)
13359
13360 2009-10-03 Glenn Morris <rgm@gnu.org>
13361
13362 * calendar/calendar.el (calendar-basic-setup): Handle the case where
13363 the frame is wide.
13364 (calendar-generate-window): Test for shrinkability rather than width.
13365
13366 * mail/rmail.el (rmail-generate-viewer-buffer): Be more careful about
13367 reusing existing buffers, in case we happen to visit two files with the
13368 same basename. (Bug#4593)
13369
13370 2009-10-02 Eli Zaretskii <eliz@gnu.org>
13371
13372 * makefile.w32-in (update-subdirs-CMD): Add cedet to $(WINS_SUBDIR).
13373 (WINS_CEDET_SUBDIRS): List of subdirectories of cedet.
13374 (bootstrap-clean-CMD, bootstrap-clean-SH): Remove *.elc files in
13375 subdirs of cedet as well.
13376 (AUTOGENEL): Add loaddefs.el files in cedet subdirectories.
13377
13378 2009-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
13379
13380 * emacs-lisp/eldoc.el (eldoc-get-fnsym-args-string):
13381 Obey advertised-signature-table.
13382
13383 * help-fns.el (help-function-arglist): Don't check
13384 advertised-signature-table.
13385 (describe-function-1): Do it here instead so it also applies to subrs.
13386
13387 2009-10-02 Michael Albinus <michael.albinus@gmx.de>
13388
13389 * simple.el (start-file-process): Say in the doc-string, that file
13390 handlers might not support pty association, if PROGRAM is nil.
13391
13392 * net/ange-ftp.el (ange-ftp-generate-passwd-key): Check, whether
13393 HOST and USER are strings. They are nil, when there are
13394 incomplete entries in ~/.netrc, for example.
13395 (ange-ftp-delete-directory): Implement RECURSIVE case. Change to
13396 root directory ("device busy" error otherwise).
13397
13398 * net/tramp-smb.el (tramp-smb-handle-make-directory-internal):
13399 Flush file properties of created directory.
13400
13401 2009-10-02 Eli Zaretskii <eliz@gnu.org>
13402
13403 * makefile.w32-in (WINS_BASIC): Remove cedet.
13404 (WINS_CEDET): Add cedet.
13405 (update-subdirs-SH): Use $(WINS_SUBDIR), not $(WINS).
13406
13407 2009-10-02 Kevin Ryde <user42@zip.com.au>
13408
13409 * net/browse-url.el (browse-url): Pass any symbol in
13410 browse-url-browser-function to `apply', since if you've mistakenly put
13411 an unbound symbol then the error is clearer. (Bug#4531)
13412
13413 2009-10-02 Juanma Barranquero <lekktu@gmail.com>
13414
13415 * allout.el (allout-init, allout-back-to-current-heading)
13416 (allout-beginning-of-current-entry, allout-ascend-to-depth)
13417 (allout-ascend, allout-up-current-level, allout-end-of-level)
13418 (allout-previous-visible-heading, allout-forward-current-level)
13419 (allout-backward-current-level, allout-show-children):
13420 * apropos.el (apropos-describe-plist):
13421 * bookmark.el (bookmark-maybe-historicize-string, bookmark-bmenu-list):
13422 * comint.el (comint-strip-ctrl-m, comint-goto-process-mark):
13423 * completion.el (add-completion, add-permanent-completion):
13424 * descr-text.el (describe-text-category, describe-char):
13425 * desktop.el (desktop-lazy-abort):
13426 * dired-x.el (dired-omit-expunge, dired-x-bind-find-file):
13427 * dired.el (dired-build-subdir-alist):
13428 * ediff.el (ediff-version):
13429 * elide-head.el (elide-head, elide-head-show):
13430 * emerge.el (emerge-version):
13431 * env.el (getenv):
13432 * face-remap.el (variable-pitch-mode):
13433 * faces.el (describe-face):
13434 * ffap.el (ffap-next-url, find-file-at-point, ffap-at-mouse)
13435 (dired-at-point):
13436 * files.el (find-file-existing, auto-save-mode):
13437 * font-lock.el (font-lock-fontify-buffer):
13438 * help-fns.el (describe-function, describe-variable)
13439 (describe-syntax, describe-categories):
13440 * help.el (view-lossage, describe-bindings, describe-key)
13441 (describe-mode):
13442 * hexl.el (hexl-current-address):
13443 * hi-lock.el (hi-lock-mode, hi-lock-find-patterns):
13444 * info.el (Info-goto-emacs-key-command-node):
13445 * log-edit.el (log-edit-insert-cvs-template)
13446 (log-edit-insert-cvs-rcstemplate):
13447 * menu-bar.el (menu-bar-mode):
13448 * mouse.el (mouse-appearance-menu):
13449 * newcomment.el (comment-indent-new-line):
13450 * pgg.el (pgg-save-coding-system, pgg-encrypt-region)
13451 (pgg-encrypt-symmetric-region, pgg-encrypt-symmetric)
13452 (pgg-encrypt, pgg-decrypt-region, pgg-decrypt)
13453 (pgg-sign-region, pgg-sign, pgg-verify-region, pgg-verify):
13454 * recentf.el (recentf-mode):
13455 * savehist.el (savehist-mode, savehist-save):
13456 * shadowfile.el (shadow-copy-files):
13457 * simple.el (kill-ring-save, next-line, previous-line)
13458 (normal-erase-is-backspace-mode):
13459 * strokes.el (strokes-update-window-configuration)
13460 (strokes-load-user-strokes, strokes-prompt-user-save-strokes)
13461 (strokes-xpm-for-stroke):
13462 * time.el (emacs-uptime, emacs-init-time):
13463 * tutorial.el (tutorial--describe-nonstandard-key)
13464 (tutorial--detailed-help):
13465 * type-break.el (type-break-mode)
13466 (type-break-mode-line-message-mode, type-break-query-mode)
13467 (type-break-guesstimate-keystroke-threshold):
13468 * vc.el (vc-version-diff, vc-diff, vc-root-diff):
13469 * version.el (emacs-version):
13470 * vt-control.el (vt-keypad-on, vt-keypad-off, vt-numlock):
13471 * winner.el (winner-mode):
13472 * calendar/timeclock.el (timeclock-in, timeclock-out)
13473 (timeclock-status-string, timeclock-change)
13474 (timeclock-workday-remaining-string)
13475 (timeclock-workday-elapsed-string)
13476 (timeclock-when-to-leave-string):
13477 * calendar/todo-mode.el (todo-add-category):
13478 * emacs-lisp/advice.el (ad-enable-regexp, ad-disable-regexp):
13479 * emacs-lisp/autoload.el (update-file-autoloads):
13480 * emacs-lisp/checkdoc.el (checkdoc-current-buffer)
13481 (checkdoc-start, checkdoc-continue, checkdoc-rogue-spaces)
13482 (checkdoc-message-text, checkdoc-defun):
13483 * emacs-lisp/debug.el (debugger-list-functions):
13484 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
13485 * emacs-lisp/eieio-opt.el (eieio-describe-class)
13486 (eieio-describe-generic):
13487 * emacs-lisp/lisp-mnt.el (lm-synopsis):
13488 * emacs-lisp/shadow.el (list-load-path-shadows):
13489 * emulation/cua-base.el (cua-mode):
13490 * emulation/edt.el (edt-set-scroll-margins):
13491 * emulation/tpu-edt.el (tpu-toggle-newline-and-indent)
13492 (tpu-toggle-regexp, tpu-toggle-search-direction)
13493 (tpu-toggle-rectangle, tpu-toggle-control-keys):
13494 * emulation/tpu-extras.el (tpu-set-scroll-margins):
13495 * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
13496 (viper-set-parsing-style-toggling-macro)
13497 (viper-set-emacs-state-searchstyle-macros):
13498 * emulation/viper.el (viper-set-hooks):
13499 * eshell/esh-mode.el (eshell-truncate-buffer):
13500 * international/mule-cmds.el (prefer-coding-system)
13501 (describe-input-method, describe-language-environment):
13502 * international/mule-diag.el (list-character-sets)
13503 (describe-character-set, describe-coding-system)
13504 (describe-fontset, list-fontsets, list-input-methods):
13505 * mail/sendmail.el (mail-signature):
13506 * net/ange-ftp.el (ange-ftp-copy-file):
13507 * net/browse-url.el (browse-url):
13508 * net/eudc.el (eudc-set-server, eudc-get-attribute-list):
13509 * net/quickurl.el (quickurl-add-url):
13510 * net/rcirc.el (names, topic):
13511 * net/xesam.el (xesam-mode):
13512 * play/5x5.el (5x5-new-game):
13513 * play/yow.el (apropos-zippy):
13514 * progmodes/ada-mode.el (ada-mode-version):
13515 * progmodes/f90.el (f90-beginning-of-subprogram, f90-end-of-subprogram)
13516 (f90-end-of-block)
13517 (f90-beginning-of-block):
13518 * progmodes/fortran.el (fortran-end-of-block)
13519 (fortran-beginning-of-block):
13520 * progmodes/js.el (js-syntactic-context, js-gc, js-eval):
13521 * progmodes/python.el (python-describe-symbol, python-shell):
13522 * term/ns-win.el (ns-print-buffer):
13523 * textmodes/bibtex.el (bibtex-end-of-entry, bibtex-url):
13524 * textmodes/flyspell.el (flyspell-mode-on):
13525 * textmodes/page-ext.el (set-page-delimiter, pages-directory)
13526 (pages-directory-for-addresses):
13527 * textmodes/table.el (table-recognize-cell)
13528 (table-query-dimension, table-generate-source)
13529 (table-insert-sequence, table--warn-incompatibility):
13530 * textmodes/tex-mode.el (tex-validate-buffer):
13531 * textmodes/texinfmt.el (texinfmt-version)
13532 (texinfo-format-buffer):
13533 Use `called-interactively-p' instead of `interactive-p'.
13534
13535 2009-10-02 Juanma Barranquero <lekktu@gmail.com>
13536
13537 * image-mode.el (image-toggle-display):
13538 * emacs-lisp/elp.el (elp-instrument-function):
13539 * emacs-lisp/advice.el (ad-make-advised-definition):
13540 * emacs-lisp/easy-mmode.el (define-minor-mode):
13541 * net/browse-url.el (browse-url-maybe-new-window):
13542 * progmodes/sh-script.el (sh-learn-buffer-indent):
13543 Pass new argument 'any to `called-interactively-p'.
13544
13545 2009-10-01 Juanma Barranquero <lekktu@gmail.com>
13546
13547 * international/uni-bidi.el:
13548 * international/uni-category.el:
13549 * international/uni-combining.el:
13550 * international/uni-comment.el:
13551 * international/uni-decimal.el:
13552 * international/uni-decomposition.el:
13553 * international/uni-digit.el:
13554 * international/uni-lowercase.el:
13555 * international/uni-mirrored.el:
13556 * international/uni-name.el:
13557 * international/uni-numeric.el:
13558 * international/uni-old-name.el:
13559 * international/uni-titlecase.el:
13560 * international/uni-uppercase.el:
13561 Regenerate from Unicode 5.2.0 data.
13562
13563 2009-10-01 Glenn Morris <rgm@gnu.org>
13564
13565 * Makefile.in (ELCFILES): Regenerate.
13566
13567 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
13568
13569 * subr.el (interactive-p): Mark obsolete.
13570 (called-interactively-p): Make the optional-ness of `kind' obsolete.
13571 * emacs-lisp/bytecomp.el (byte-compile-fdefinition): Make it obey
13572 advertised-signature-table for subroutines as well.
13573
13574 * emacs-lisp/byte-run.el (advertised-signature-table): New var.
13575 (set-advertised-calling-convention): New function.
13576 (make-obsolete, define-obsolete-function-alias)
13577 (make-obsolete-variable, define-obsolete-variable-alias):
13578 Make the optional-ness of `when' obsolete.
13579 (define-obsolete-face-alias): Make `when' non-optional.
13580 * help-fns.el (help-function-arglist):
13581 * emacs-lisp/bytecomp.el (byte-compile-fdefinition):
13582 Use advertised-signature-table.
13583
13584 2009-10-01 Michael Albinus <michael.albinus@gmx.de>
13585
13586 * files.el (delete-directory): New defun. The original function
13587 in fileio.c has been renamed to `delete-directory-internal'.
13588
13589 * dired.el (dired-delete-file): Call `delete-directory' with
13590 RECURSIVE parameter.
13591
13592 * net/ange-ftp.el (ange-ftp-delete-directory): Add optional
13593 parameter RECURSIVE. Implementation is missing.
13594
13595 * net/tramp.el (tramp-handle-make-directory): Flush upper
13596 directory's file properties.
13597 (tramp-handle-delete-directory): Handle optional parameter RECURSIVE.
13598 (tramp-handle-dired-recursive-delete-directory): Flush directory
13599 properties after the remove command only.
13600
13601 * net/tramp-fish.el (tramp-fish-handle-delete-directory):
13602 Handle optional parameter RECURSIVE.
13603
13604 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory):
13605 Handle optional parameter RECURSIVE.
13606
13607 * net/tramp-smb.el (tramp-smb-errors): Add error message for
13608 connection timeout.
13609 (tramp-smb-handle-delete-directory): Handle optional parameter
13610 RECURSIVE.
13611
13612 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
13613
13614 * emacs-lisp/bytecomp.el (byte-compile-defmacro-declaration): New fun.
13615 (byte-compile-file-form-defmumble, byte-compile-defmacro): Use it.
13616 (byte-compile-defmacro): Use backquotes.
13617
13618 * files.el (cd-absolute): Don't abbreviate-file-name (bug#4599).
13619
13620 * vc-dispatcher.el (vc-resynch-window): Don't revert a buffer which
13621 has no associated file.
13622 (vc-resynch-buffer): Use vc-dir-buffers.
13623
13624 2009-10-01 Glenn Morris <rgm@gnu.org>
13625
13626 * emacs-lisp/chart.el (chart-zap-chars, chart-bar-quickie)
13627 (chart-file-count):
13628 * emacs-lisp/eieio-comp.el (byte-compile-defmethod-param-convert):
13629 * emacs-lisp/eieio-datadebug.el (data-debug-insert-object-button):
13630 * emacs-lisp/eieio-opt.el (eieio-describe-class):
13631 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-create):
13632 * emacs-lisp/eieio.el (defclass, eieio-defclass-autoload)
13633 (eieio-copy-parents-into-subclass, make-instance, class-children)
13634 (eieio-generic-form):
13635
13636 * vc-cvs.el (vc-cvs-parse-entry): Be more careful with the
13637 match-data. (Bug#4555).
13638
13639 * emacs-lisp/check-declare.el (check-declare-scan): Read the declaration
13640 rather than parsing it as a regexp. This relaxes the layout
13641 requirements and makes errors easier to detect.
13642 (check-declare-verify): Check file is regular.
13643 (check-declare-directory): Doc fix.
13644 * subr.el (declare-function): Doc fix.
13645
13646 * ibuffer.el (ibuffer-format-qualifier):
13647 * isearch.el (hi-lock-regexp-okay):
13648 * calc/calc.el (math-zerop):
13649 * mail/uce.el (rmail-msgbeg, rmail-msgend):
13650 * term/w32-win.el (setup-default-fontset, set-fontset-font):
13651 Remove unused declarations.
13652
13653 2009-09-30 Eric Ludlam <zappo@gnu.org>
13654
13655 * emacs-lisp/eieio.el (boolean-p): Delete.
13656
13657 2009-09-30 Glenn Morris <rgm@gnu.org>
13658
13659 * emacs-lisp/authors.el (authors-ignored-files): Add "js2-mode.el".
13660
13661 * emacs-lisp/elint.el (elint-init-form): Report declarations where the
13662 filename is not a string.
13663
13664 2009-09-29 Chong Yidong <cyd@stupidchicken.com>
13665
13666 * files.el (safe-local-eval-forms): Fix typo.
13667
13668 2009-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
13669
13670 * vc-hooks.el (vc-dir-buffers): New var.
13671 (vc-state-refresh): New function.
13672 (vc-state): Use it.
13673 (vc-after-save): Always ask the backend to recompute the new state.
13674 Always call vc-dir if necessary, using vc-dir-buffers.
13675 * vc-dir.el (vc-dir-prepare-status-buffer, vc-dir-resynch-file):
13676 Use vc-dir-buffers.
13677 (vc-dir-mode): Use vc-dir-buffers rather than after-save-hook.
13678 (vc-dir-prepare-status-buffer, vc-dir-update)
13679 (vc-dir-resync-directory-files, vc-dir-resynch-file, vc-dir-mode):
13680 Don't call expand-file-name on default-directory.
13681
13682 2009-09-29 Juanma Barranquero <lekktu@gmail.com>
13683
13684 * speedbar.el (speedbar-item-delete):
13685 * calc/calc-prog.el (calc-kbd-if):
13686 * language/hanja-util.el (hanja-init-load): Fix typos in messages.
13687
13688 * epa.el (epa-key-list-mode-map):
13689 * hi-lock.el (hi-lock-menu): Fix typos in menus.
13690
13691 * progmodes/hideshow.el (hs-allow-nesting): Reflow docstring.
13692 (hs-show-hook): Fix typo in docstring.
13693
13694 2009-09-29 Glenn Morris <rgm@gnu.org>
13695
13696 * emacs-lisp/check-declare.el (check-declare-locate): Remove pointless
13697 file-name-nondirectory call preventing location of cedet files.
13698 (check-declare-verify): Use literal search rather than re-search.
13699 Add basic defmethod and defclass, and define-overloadable-function.
13700
13701 * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
13702 Use tramp-compat-file-attributes rather than nonexistent
13703 tramp-compat-handle-file-attributes.
13704
13705 * Makefile.in (lisptagsfiles4): New.
13706 (AUTOGENEL): Add cedet loaddefs files.
13707 (TAGS, TAGS-LISP): Use $lisptagsfiles4.
13708 (update-elclist, compile-always, backup-compiled-files)
13709 (bootstrap-clean): Add yet another directory level.
13710 (update-elclist): Use LC_COLLATE rather than COLLATE.
13711 (ELCFILES): Update, via `make update-elclist'.
13712
13713 2009-09-29 Juanma Barranquero <lekktu@gmail.com>
13714
13715 * makefile.w32-in (WINS_CEDET, WINS_BASIC, WINS_SUBDIR): New macros.
13716 (WINS_ALMOST): Set from WINS_BASIC and WINS_CEDET.
13717 (update-subdirs-CMD): Use WINS_SUBDIR, not WINS_ALMOST.
13718
13719 2009-09-28 Andreas Schwab <schwab@linux-m68k.org>
13720
13721 * Makefile.in (lisptagsfiles3): Define.
13722 (TAGS, TAGS-LISP): Use it.
13723 (update-elclist): Add third directory level to look for elc files.
13724 (compile-always): Likewise.
13725 (backup-compiled-files): Likewise.
13726 (bootstrap-clean): Likewise.
13727 (ELCFILES): Update.
13728
13729 2009-09-28 Chong Yidong <cyd@stupidchicken.com>
13730
13731 * Makefile.in (ELCFILES): Add CEDET files.
13732
13733 2009-09-28 Michael Albinus <michael.albinus@gmx.de>
13734
13735 * Makefile.in (ELCFILES): Add net/tramp-imap.elc.
13736
13737 * net/tramp.el (top): Require tramp-imap.
13738
13739 * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
13740 Use `tramp-compat-handle-file-attributes'.
13741
13742 2009-09-28 Teodor Zlatanov <tzz@lifelogs.com>
13743
13744 * net/tramp-imap.el: New package.
13745
13746 2009-09-28 Eric Ludlam <zappo@gnu.org>
13747
13748 * emacs-lisp/chart.el:
13749 * emacs-lisp/eieio-base.el:
13750 * emacs-lisp/eieio-comp.el:
13751 * emacs-lisp/eieio-custom.el:
13752 * emacs-lisp/eieio-datadebug.el:
13753 * emacs-lisp/eieio-opt.el:
13754 * emacs-lisp/eieio-speedbar.el:
13755 * emacs-lisp/eieio.el: New files.
13756
13757 2009-09-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
13758
13759 * whitespace.el (whitespace-trailing-regexp)
13760 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
13761 Fix doc string.
13762
13763 2009-09-27 Chong Yidong <cyd@stupidchicken.com>
13764
13765 * menu-bar.el: Remove menu-bar-ediff-misc-menu from the Tools
13766 menu.
13767
13768 * ediff-hook.el: Move menu-bar-ediff-misc-menu into
13769 menu-bar-ediff-menu.
13770
13771 * emacs-lisp/lisp-mode.el: Add doc-string-elt property to
13772 define-overloadable-function.
13773
13774 * progmodes/autoconf.el: Provide autoconf as well, so that this
13775 file can be `require'd.
13776
13777 * emacs-lisp/cl-macs.el (deftype): Add to cl-loaddefs.
13778
13779 * emacs-lisp/autoload.el (generated-autoload-feature)
13780 (generated-autoload-load-name): New vars.
13781 (autoload-rubric, autoload-generate-file-autoloads): Use them.
13782 (make-autoload): Recognize define-overloadable-function and
13783 defclass forms (for EIEIO).
13784
13785 * Makefile.in (update-subdirs): Exclude cedet directory.
13786
13787 2009-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
13788
13789 * term/ns-win.el: Don't set the region face background. (Bug#4381)
13790
13791 * faces.el: Default light-background background for region face to
13792 ns_selection_color under NS.
13793
13794 2009-09-27 Teodor Zlatanov <tzz@lifelogs.com>
13795
13796 * net/imap-hash.el: New library, see NEWS.
13797
13798 * Makefile.in (ELCFILES): Add imap-hash.el.
13799
13800 2009-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
13801
13802 * help.el (help-for-help-internal): Don't purecopy the text (bug#4560).
13803 * isearch.el (isearch-help-for-help-internal): Purecopy the second arg.
13804 * help-macro.el (make-help-screen): Avoid using an ambiguous function
13805 definition where the docstring could be taken for the return value.
13806
13807 2009-09-26 Glenn Morris <rgm@gnu.org>
13808
13809 * mail/rmailmm.el (rmail-mime-show-images, rmail-mime-bulk-handler):
13810 Add option to only show images below a certain size.
13811 (rmail-mime-multipart-handler): Remove unnecessary save-match-data and
13812 save-excursion calls.
13813
13814 2009-09-26 Eli Zaretskii <eliz@gnu.org>
13815
13816 * makefile.w32-in (WINS_ALMOST): Add cedet (with its
13817 subdirectories) and eieio.
13818
13819 2009-09-26 Alan Mackenzie <acm@muc.de>
13820
13821 * progmodes/cc-engine.el (c-beginning-of-statement-1): Correct
13822 buggy bracketing. (Bug#4289)
13823
13824 * progmodes/cc-langs.el (c-nonlabel-token-key): Allow quoted
13825 character constants (as case labels). (Bug#4289)
13826
13827 2009-09-25 Juri Linkov <juri@jurta.org>
13828
13829 * files.el (safe-local-eval-forms): Allow time-stamp in
13830 before-save-hook (Bug#4554).
13831
13832 2009-09-25 Drew Adams <drew.adams@oracle.com>
13833
13834 * menu-bar.el (list-buffers-directory): Doc fix.
13835
13836 2009-09-25 Stefan Monnier <monnier@iro.umontreal.ca>
13837
13838 * log-edit.el (log-edit-changelog-entries): Avoid inf-loops.
13839 Try and avoid copying twice the same paragraph.
13840 (log-edit-changelog-paragraph, log-edit-changelog-subparagraph):
13841 Remove save-excursion.
13842 (log-edit-changelog-entry): Do it here instead.
13843
13844 2009-09-25 Juanma Barranquero <lekktu@gmail.com>
13845
13846 * bs.el (bs--get-file-name): Use `list-buffers-directory'
13847 when available, instead of hardcoding mode names. Doc fix.
13848
13849 * menu-bar.el (list-buffers-directory): Add docstring.
13850 Make automatically buffer-local.
13851
13852 * dired.el (dired-mode):
13853 * files.el (cd-absolute):
13854 * pcvs.el (cvs-temp-buffer):
13855 * pcvs-util.el (cvs-get-buffer-create):
13856 * shell.el (shell-mode):
13857 * vc-dir.el (vc-dir-mode):
13858 Don't make `list-buffers-directory' buffer local.
13859
13860 2009-09-25 Devon Sean McCullough <emacs-hacker@Jovi.Net>
13861
13862 * comint.el (comint-exec, comint-run, make-comint):
13863 Doc fixes (Bug#4542).
13864
13865 2009-09-25 Glenn Morris <rgm@gnu.org>
13866
13867 * mail/rmailmm.el (rmail-mime): New custom group.
13868 Move all defcustoms in this file into this group.
13869 (rmail-mime-media-type-handlers-alist): Revert previous change.
13870 (rmail-mime-show-images): New option.
13871 (rmail-mime-total-number-of-bulk-attachments): Remove variable and all
13872 references to it, since it wasn't actually used for anything.
13873 (rmail-mime-insert-image): New function.
13874 (rmail-mime-image): Use rmail-mime-insert-image.
13875 (rmail-mime-bulk-handler): Remove optional `image' argument, instead
13876 obey the value of `rmail-mime-show-images' option. Print the size of
13877 attachments.
13878
13879 2009-09-25 David Engster <deng@randomsample.de>
13880
13881 * progmodes/hideshow.el (hs-show-block): Run `hs-show-hook'. (Bug#4548)
13882
13883 2009-09-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
13884
13885 * whitespace.el: Does not highlight trailing spaces While point is
13886 at end of line. Does not highligt spaces at beginning of buffer
13887 while point is at beginning of buffer. Does not highlight spaces
13888 at end of buffer while point is at end of buffer. (Bug#4177)
13889 New version 12.0.
13890 (whitespace-display-mappings): Adjust initialization.
13891 (whitespace-point, whitespace-font-lock-refontify): New vars.
13892 (whitespace-color-on, whitespace-color-off): Adjust code.
13893 (whitespace-trailing-regexp, whitespace-empty-at-bob-regexp)
13894 (whitespace-empty-at-eob-regexp, whitespace-space-regexp)
13895 (whitespace-tab-regexp, whitespace-post-command-hook): New funs.
13896
13897 2009-09-24 Chong Yidong <cyd@stupidchicken.com>
13898
13899 * nxml/nxml-mode.el: Alias xml-mode to nxml-mode.
13900
13901 * textmodes/sgml-mode.el: Remove xml-mode alias.
13902
13903 * files.el (auto-mode-alist, conf-mode-maybe)
13904 (magic-fallback-mode-alist): Revert 2009-09-18 and 2009-09-21 changes.
13905
13906 2009-09-24 Alan Mackenzie <acm@muc.de>
13907
13908 * progmodes/cc-cmds.el (c-scan-conditionals): A new function like
13909 c-forward-conditionals, but it doesn't move point and doesn't set
13910 the mark.
13911 (c-up-conditional, c-up-conditional-with-else, c-down-conditional)
13912 (c-down-conditional-with-else, c-backward-conditional)
13913 (c-forward-conditional): Refactor to use c-scan-conditionals.
13914
13915 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
13916
13917 * help-fns.el (help-downcase-arguments): New option, defaulting to nil.
13918 (help-default-arg-highlight): Remove.
13919 (help-highlight-arg): New function.
13920 (help-do-arg-highlight): Use it.
13921 Suggested by Drew Adams <drew.adams@oracle.com>. (Bug#4510, bug#4520)
13922
13923 2009-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
13924
13925 * term.el (term-set-scroll-region, term-handle-ansi-escape):
13926 Undo last change, which didn't fix the problem and introduced others.
13927
13928 2009-09-24 Nick Roberts <nickrob@snap.net.nz>
13929
13930 * progmodes/gdb-mi.el: Don't require speedbar.
13931 (gdb-jsonify-buffer): Handle case where "=" is part of value string.
13932
13933 2009-09-24 Glenn Morris <rgm@gnu.org>
13934
13935 * calendar/diary-lib.el (diary-fancy-display): Always run the hook.
13936
13937 * term/ns-win.el (ns-reg-to-script): Define for compiler.
13938
13939 * mail/rmailmm.el (rmail-mime-multipart-handler): Accept the case where
13940 there is no newline after the final mime boundary. (Bug#4539)
13941 Move markers on insertion so that any buttons inserted don't end up in
13942 the next part of a multipart message.
13943 (rmail-mime-media-type-handlers-alist): Doc fix. Add image handler.
13944 (rmail-mime-bulk-handler): Optionally handle images.
13945 (rmail-mime-image): New button action.
13946 (rmail-mime-image-handler): New function.
13947 (rmail-mime-mode): New mode.
13948 (rmail-mime): Doc fix. Use rmail-mime-mode (for font-lock).
13949
13950 2009-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
13951
13952 * minibuffer.el (minibuffer-force-complete): Cycle the list, rather
13953 than just dropping elements from it (bug#4504).
13954
13955 * term.el (term-set-scroll-region): Don't move cursor any more.
13956 (term-handle-ansi-escape): Call term-goto here instead.
13957 Suggested by Ivan Kanis <apple@kanis.eu>.
13958
13959 * term.el: Require CL.
13960 (term-ansi-reset): New function.
13961 (term-mode, term-emulate-terminal, term-handle-colors-array): Use it.
13962 (term-handle-colors-array): Simplify.
13963
13964 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
13965
13966 * allout.el (allout-overlay-interior-modification-handler)
13967 (allout-obtain-passphrase):
13968 * epa-file.el (epa-file-write-region):
13969 * ps-print.el (ps-begin-job):
13970 * vc-hooks.el (vc-toggle-read-only):
13971 * vc-rcs.el (vc-rcs-rollback):
13972 * vc-sccs.el (vc-sccs-rollback):
13973 * vc.el (vc-deduce-fileset, vc-next-action, vc-register-with)
13974 (vc-version-diff, vc-revert, vc-rollback):
13975 * wdired.el (wdired-check-kill-buffer):
13976 * emacs-lisp/authors.el (authors):
13977 * net/socks.el (socks-open-connection):
13978 * net/zeroconf.el (zeroconf-service-add-hook):
13979 * obsolete/vc-mcvs.el (vc-mcvs-register):
13980 * progmodes/gdb-mi.el (def-gdb-thread-buffer-gud-command)
13981 (gdb-select-frame):
13982 * progmodes/grep.el (lgrep, rgrep):
13983 * progmodes/idlw-help.el (idlwave-help-check-locations)
13984 (idlwave-help-html-link, idlwave-help-assistant-open-link):
13985 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
13986 * textmodes/reftex-toc.el (reftex-toc-promote-prepare)
13987 (reftex-toc-rename-label): Fix typos in error messages.
13988
13989 * dired-aux.el (dired-do-shell-command): Reflow docstring.
13990 (dired-copy-how-to-fn): Doc fix.
13991 (dired-files-attributes, dired-read-shell-command):
13992 Fix typos in docstrings.
13993
13994 * dired-x.el (dired-enable-local-variables, dired-filename-at-point)
13995 (dired-x-find-file-other-window): Reflow docstrings.
13996 (dired-omit-marker-char, dired-read-shell-command)
13997 (dired-x-submit-report): Fix typos in docstrings.
13998
13999 * shell.el (shell-mode-hook):
14000 * view.el (View-scroll-line-forward):
14001 * progmodes/inf-lisp.el (inferior-lisp-mode-hook):
14002 Fix typos in docstrings.
14003
14004 * net/dig.el (dig-invoke): Fix typo in docstring.
14005 (query-dig): Reflow docstring.
14006
14007 * progmodes/idlwave.el (idlwave-create-user-catalog-file)
14008 (idlwave-quoted, idlwave-rinfo-max-source-lines): Doc fixes.
14009 (idlwave-abbrev-move, idlwave-auto-routine-info-updates)
14010 (idlwave-begin-block-reg, idlwave-begin-unit-reg)
14011 (idlwave-beginning-of-subprogram, idlwave-block-jump-out)
14012 (idlwave-block-match-regexp, idlwave-calculate-paren-indent)
14013 (idlwave-check-abbrev, idlwave-class-file-or-buffer)
14014 (idlwave-class-found-in, idlwave-complete, idlwave-complete-in-buffer)
14015 (idlwave-completion-map, idlwave-current-indent)
14016 (idlwave-custom-ampersand-surround, idlwave-customize)
14017 (idlwave-default-font-lock-items, idlwave-default-insert-timestamp)
14018 (idlwave-define-abbrev, idlwave-determine-class-special)
14019 (idlwave-do-action, idlwave-doc-header, idlwave-doc-modification)
14020 (idlwave-end-block-reg, idlwave-end-of-statement)
14021 (idlwave-end-of-statement0, idlwave-end-of-subprogram)
14022 (idlwave-end-unit-reg, idlwave-entry-find-keyword)
14023 (idlwave-explicit-class-listed, idlwave-file-header)
14024 (idlwave-fill-paragraph, idlwave-find-class-definition)
14025 (idlwave-fix-keywords, idlwave-hang-indent-regexp, idlwave-hard-tab)
14026 (idlwave-idlwave_routine_info-compiled, idlwave-in-comment)
14027 (idlwave-in-quote, idlwave-indent-action-table)
14028 (idlwave-indent-expand-table, idlwave-indent-line)
14029 (idlwave-indent-subprogram, idlwave-indent-to-open-paren)
14030 (idlwave-is-comment-line, idlwave-is-comment-or-empty-line)
14031 (idlwave-is-continuation-line, idlwave-is-pointer-dereference)
14032 (idlwave-kill-autoloaded-buffers, idlwave-lib-p, idlwave-look-at)
14033 (idlwave-make-tags, idlwave-mode, idlwave-mode-abbrev-table)
14034 (idlwave-mouse-active-rinfo, idlwave-newline, idlwave-no-change-comment)
14035 (idlwave-outlawed-buffers, idlwave-popup-select)
14036 (idlwave-previous-statement, idlwave-rescan-catalog-directories)
14037 (idlwave-routine-entry-compare, idlwave-routine-info.pro)
14038 (idlwave-scan-all-buffers-for-routine-info, idlwave-scan-class-info)
14039 (idlwave-shell-automatic-start, idlwave-shell-explicit-file-name)
14040 (idlwave-show-begin, idlwave-split-line, idlwave-split-link-target)
14041 (idlwave-statement-type, idlwave-struct-skip)
14042 (idlwave-substitute-link-target, idlwave-toggle-comment-region)
14043 (idlwave-update-current-buffer-info, idlwave-use-library-catalogs)
14044 (idlwave-what-module-find-class): Fix typos in docstrings.
14045 (idlwave-all-method-classes, idlwave-calc-hanging-indent)
14046 (idlwave-calculate-cont-indent, idlwave-expand-equal)
14047 (idlwave-find-module, idlwave-find-structure-definition)
14048 (idlwave-init-rinfo-when-idle-after, idlwave-insert-source-location)
14049 (idlwave-list-load-path-shadows, idlwave-next-statement)
14050 (idlwave-routine-entry-compare-twins, idlwave-routine-info)
14051 (idlwave-routines, idlwave-sintern-rinfo-list, idlwave-statement-match)
14052 (idlwave-template): Reflow docstrings.
14053
14054 * progmodes/idlw-shell.el (idlwave-shell-syntax-error): Doc fix.
14055 (idlwave-shell-batch-command, idlwave-shell-bp-alist)
14056 (idlwave-shell-bp-get, idlwave-shell-bp-overlays)
14057 (idlwave-shell-bp-query, idlwave-shell-break-here, idlwave-shell-buffer)
14058 (idlwave-shell-display-line, idlwave-shell-display-wframe)
14059 (idlwave-shell-electric-debug-mode, idlwave-shell-examine-select)
14060 (idlwave-shell-file-name-chars, idlwave-shell-filter-bp)
14061 (idlwave-shell-goto-frame, idlwave-shell-halt-messages-re)
14062 (idlwave-shell-highlighting-and-faces, idlwave-shell-idl-wframe)
14063 (idlwave-shell-mode-hook, idlwave-shell-mode-line-info)
14064 (idlwave-shell-mode-map, idlwave-shell-module-source-filter)
14065 (idlwave-shell-mouse-help, idlwave-shell-mouse-print)
14066 (idlwave-shell-pc-frame, idlwave-shell-pending-commands)
14067 (idlwave-shell-print, idlwave-shell-quit, idlwave-shell-redisplay)
14068 (idlwave-shell-scan-for-state, idlwave-shell-send-command)
14069 (idlwave-shell-sentinel-hook, idlwave-shell-separate-examine-output)
14070 (idlwave-shell-shell-command, idlwave-shell-sources-alist)
14071 (idlwave-shell-sources-bp, idlwave-shell-sources-filter)
14072 (idlwave-shell-step, idlwave-shell-use-breakpoint-glyph)
14073 (idlwave-toolbar-add-everywhere, idlwave-toolbar-toggle):
14074 Fix typos in docstrings.
14075 (idlwave-shell-bp, idlwave-shell-clear-current-bp)
14076 (idlwave-shell-hide-output, idlwave-shell-mode)
14077 (idlwave-shell-run-region, idlwave-shell-set-bp-in-module):
14078 Reflow docstrings.
14079
14080 * textmodes/bibtex.el (bibtex-sort-entry-class): Fix group name.
14081
14082 2009-09-24 Ivan Kanis <apple@kanis.eu>
14083
14084 * term.el (term-bold-attribute): New var.
14085 (term-handle-colors-array): Use it.
14086
14087 2009-09-23 Nick Roberts <nickrob@snap.net.nz>
14088
14089 * progmodes/gdb-mi.el (gdb-version): New variable.
14090 (gdb-non-stop-handler): Set gdb-version.
14091 (gdb-gud-context-command, gdb-current-context-command, gdb-stopped):
14092 Condition "--thread" option on gdb-version.
14093 (gdb-invalidate-threads): Remove unused argument.
14094
14095 2009-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
14096
14097 * textmodes/flyspell.el (sgml-mode-flyspell-verify): Pass limit args
14098 to looking-back to avoid ridiculous slow down in large files (bug#4511).
14099
14100 2009-09-23 Glenn Morris <rgm@gnu.org>
14101
14102 * mail/rmail.el (rmail-reply): Don't try to add a References header when
14103 replying to mail without References or Message-Id. (Bug#4525)
14104
14105 2009-09-23 Adrian Robert <Adrian.B.Robert@gmail.com>
14106
14107 * term/ns-win.el (ns-reg-to-script): New variable.
14108
14109 2009-09-23 Daiki Ueno <ueno@unixuser.org>
14110
14111 * epg.el (epg-wait-for-status): Preserve existing 'error results.
14112
14113 2009-09-22 Sam Steingold <sds@gnu.org>
14114
14115 * vc-hg.el (vc-hg-print-log): Fix shortlog arg passing.
14116 (vc-hg-outgoing, vc-hg-incoming): Bump okstatus in `vc-hg-command'
14117 to 1 because hg returns status 1 when nothing is found.
14118 Bind `vc-short-log' for the sake of `vc-hg-log-view-mode'.
14119
14120 2009-09-22 Stefan Monnier <monnier@iro.umontreal.ca>
14121
14122 * textmodes/fill.el: Convert to utf-8 encoding.
14123 (fill-french-nobreak-p): Remove redundant » and « inherited from our
14124 pre-Unicode days.
14125
14126 * add-log.el (change-log-fill-forward-paragraph): New function.
14127 (change-log-mode): Use it so fill-region DTRT.
14128 Set fill-indent-according-to-mode here rather than in
14129 change-log-fill-paragraph.
14130 (change-log-fill-paragraph): Remove.
14131
14132 2009-09-22 Juanma Barranquero <lekktu@gmail.com>
14133
14134 * info.el (Info-try-follow-nearest-node): Use the URL extracted by
14135 `Info-get-token', instead of `browse-url-url-at-point'. (Bug#4508)
14136
14137 2009-09-22 Glenn Morris <rgm@gnu.org>
14138
14139 * calendar/calendar.el (calendar-mode-map): Make mouse-1 and 3 clicks on
14140 the scroll-bar scroll the calendar window rather than the buffer.
14141
14142 * calendar/cal-menu.el (cal-menu-scroll-menu): Add a sub-section with
14143 commands that move point (as opposed to scrolling).
14144
14145 * emulation/tpu-edt.el (tpu-copy-keyfile): Fix condition-case handler.
14146
14147 * emacs-lisp/elint.el (elint): New custom group.
14148 (elint-log-buffer): Make it a defcustom.
14149 (elint-scan-preloaded, elint-ignored-warnings)
14150 (elint-directory-skip-re): New options.
14151 (elint-builtin-variables): Doc fix.
14152 (elint-preloaded-env): New variable.
14153 (elint-unknown-builtin-args): Add an entry for encode-time.
14154 (elint-extra-errors): Make it a variable rather than a constant.
14155 (elint-preloaded-skip-re): New constant.
14156 (elint-directory): Skip files matching elint-directory-skip-re.
14157 (elint-features): New variable, local to linted buffers.
14158 (elint-update-env): Initialize elint-features. Possibly add
14159 elint-preloaded-env to the buffer's environment.
14160 (elint-get-top-forms): Bind elint-current-pos, for log messages.
14161 Skip quoted forms.
14162 (elint-init-form): New function, extracted from elint-init-env.
14163 Make non-list forms a warning rather than an error.
14164 Add the mode-map for define-derived-mode. Handle define-minor-mode,
14165 easy-menu-define, put that adds an error-condition, and provide.
14166 When requiring cl, also require cl-macs. Really require cl, to handle
14167 some cl macros. Store required libraries in the list elint-features,
14168 so as not to re-load them. Treat cc-require like require.
14169 (elint-init-env): Call elint-init-form to do the work.
14170 Handle eval-and-compile and such like.
14171 (elint-add-required-env): Do not clear messages.
14172 (elint-special-forms): Add handlers for function, defalias, if, when,
14173 unless, and, or.
14174 (elint-form): Add optional argument to ignore elint-special-forms,
14175 useful to prevent recursive calls from handlers. Doc fix.
14176 Respect elint-ignored-warnings.
14177 (elint-form): Respect elint-ignored-warnings.
14178 (elint-bound-variable, elint-bound-function): New variables.
14179 (elint-unbound-variable): Respect elint-bound-variable.
14180 (elint-get-args): Respect elint-bound-function.
14181 (elint-check-cond-form): Add some simple handling for (f)boundp and
14182 featurep tests.
14183 (elint-check-defalias-form): New handler.
14184 (elint-check-let-form): Make an empty let a warning rather than an
14185 error.
14186 (elint-check-setq-form): Make an empty setq a warning rather than an
14187 error. Respect elint-ignored-warnings.
14188 (elint-check-defvar-form): Accept null doc-strings.
14189 (elint-check-conditional-form): New handler. Does some simple-minded
14190 checking of featurep and (f)boundp tests.
14191 (elint-put-function-args): New function.
14192 (elint-initialize): Use elint-scan-doc-file rather than
14193 elint-find-builtin-variables. Use elint-put-function-args.
14194 Possibly scan preloaded-file-list.
14195 (elint-scan-doc-file): Rename from elint-find-builtin-variables and
14196 extend to handle functions as well.
14197
14198 2009-09-22 Lennart Borgman <lennart.borgman@gmail.com>
14199
14200 * linum.el (linum-delete-overlays, linum-update-window):
14201 Do not modify the right margin. (Bug#3971)
14202
14203 2009-09-21 Chong Yidong <cyd@stupidchicken.com>
14204
14205 * files.el (conf-mode-maybe, magic-fallback-mode-alist): Use
14206 nxml-mode instead of xml-mode.
14207
14208 2009-09-21 Kevin Ryde <user42@zip.com.au>
14209
14210 * net/dig.el: Add "Keywords: comm", as per net-utils.el. (Bug#4501)
14211
14212 2009-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
14213
14214 * net/dig.el (dig-mode): Use define-derived-mode.
14215
14216 2009-09-20 Dan Nicolaescu <dann@ics.uci.edu>
14217
14218 * vc-dispatcher.el (vc-do-command): Return the process object in
14219 the asynchronous case. Use when instead of if. Do not run
14220 vc-exec-after to display a message if not enabled. (Bug#4463)
14221
14222 * vc-git.el (vc-git-dir-extra-headers): Add keymap and mouse-face
14223 properties to the stash strings.
14224 (vc-git-stash-list): Return a list of strings.
14225 (vc-git-stash-get-at-point, vc-git-stash-delete-at-point)
14226 (vc-git-stash-show-at-point): New functions.
14227 (vc-git-stash-map): New keymap.
14228
14229 * register.el (ctl-x-r-map): Define the keys here instead of
14230 using autoload.
14231
14232 2009-09-20 Thierry Volpiatto <thierry.volpiatto@gmail.com> (tiny change)
14233
14234 * bookmark.el (bookmark-write-file): Avoid calling `pp' with large
14235 list, to workaround performance problem (bug#4485).
14236
14237 2009-09-20 Nick Roberts <nickrob@snap.net.nz>
14238
14239 * progmodes/gud.el (gud-sentinel): Revert indavertant change.
14240
14241 2009-09-20 Daiki Ueno <ueno@unixuser.org>
14242
14243 * epa-file.el (epa-file-cache-passphrase-for-symmetric-encryption):
14244 Document that this option is not recommended to use.
14245
14246 2009-09-19 Glenn Morris <rgm@gnu.org>
14247
14248 * calc/calc-graph.el (calc-graph-lookup): Avoid assignment to free
14249 variable `var'.
14250
14251 * calc/calc-alg.el (var):
14252 * calc/calcalg2.el (var): Define for compiler.
14253
14254 2009-09-19 Chong Yidong <cyd@stupidchicken.com>
14255
14256 * emacs-lisp/advice.el (ad-get-argument, ad-set-argument):
14257 Doc fix (Bug#3932).
14258
14259 * subr.el (baud-rate): Remove long-obsolete function (Bug#4372).
14260
14261 * time-stamp.el (time-stamp-month-dd-yyyy)
14262 (time-stamp-dd/mm/yyyy, time-stamp-mon-dd-yyyy)
14263 (time-stamp-dd-mon-yy, time-stamp-yy/mm/dd)
14264 (time-stamp-yyyy/mm/dd, time-stamp-yyyy-mm-dd)
14265 (time-stamp-yymmdd, time-stamp-hh:mm:ss, time-stamp-hhmm):
14266 Remove functions that have been obsolete since 1995 (Bug#4436).
14267
14268 * progmodes/sh-script.el (sh-learn-buffer-indent): Pop to the
14269 indent buffer only if called interactively (Bug#4452).
14270
14271 2009-09-19 Juanma Barranquero <lekktu@gmail.com>
14272 Eli Zaretskii <eliz@gnu.org>
14273
14274 This fixes bug#4197 (merged to bug#865, though not identical).
14275 * server.el (server-auth-dir): Add docstring note about FAT32.
14276 (server-ensure-safe-dir): Accept FAT32 directories as "safe",
14277 but warn against using them.
14278
14279 2009-09-19 Nick Roberts <nickrob@snap.net.nz>
14280
14281 * progmodes/gdb-mi.el (gdb-var-update-handler-1): Include case of
14282 older GDB where there is no has_more field.
14283
14284 2009-09-19 Glenn Morris <rgm@gnu.org>
14285
14286 * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
14287
14288 2009-09-18 Chong Yidong <cyd@stupidchicken.com>
14289
14290 * files.el (auto-mode-alist): Change default for XML files to nXML
14291 mode (Bug#4169).
14292
14293 2009-09-18 Juanma Barranquero <lekktu@gmail.com>
14294
14295 * server.el (server-ensure-safe-dir): Pass 'integer
14296 to `file-attributes', as suggested.
14297
14298 2009-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
14299
14300 * dired-aux.el (dired-query-alist): Remove spurious backslash.
14301 (dired-query): Use read-key.
14302
14303 2009-09-18 Adrian Robert <Adrian.B.Robert@gmail.com>
14304
14305 * cus-start.el (ns-use-qd-smoothing): Remove.
14306
14307 2009-09-18 Glenn Morris <rgm@gnu.org>
14308
14309 * allout.el (top-level): Remove unnecessary progn.
14310
14311 * progmodes/js.el (js-end-of-defun): Remove malformed and unneeded let.
14312
14313 * emacs-lisp/derived.el (define-derived-mode): Fix paren typo in
14314 definition of abbrev table.
14315
14316 * speedbar.el (speedbar-track-mouse):
14317 * net/eudc-bob.el (eudc-bob-pipe-object-to-external-program):
14318 * net/eudc.el (eudc-expand-inline):
14319 * net/newst-backend.el (newsticker--cache-read-feed):
14320 * nxml/nxml-outln.el (nxml-end-of-heading): Fix typos in
14321 condition-case handlers.
14322
14323 2009-09-18 Nick Roberts <nickrob@snap.net.nz>
14324
14325 * progmodes/gdb-mi.el (gdb-frame-address): New variable.
14326 (gdb-var-list): Add an element for has_more field.
14327 (gdb-non-stop-handler): Enable pretty printing for STL containers.
14328 (gdb-var-create-handler, gdb-var-list-children-handler-1)
14329 (gdb-var-update-handler-1): Parse output of dynamic variable
14330 objects (STL containers).
14331 (gdb-var-delete-1): Pass var1 as an explicit second argument.
14332 (gdb-get-field): Delete alias. Use bindat-get-field directly.
14333
14334 * progmodes/gud.el (gud-speedbar-item-info): Adjust for change to
14335 gdb-var-list.
14336 (gud-speedbar-buttons): Make node expandable if expression "has more"
14337 children.
14338
14339 2009-09-17 Juanma Barranquero <lekktu@gmail.com>
14340
14341 * startup.el (emacs-quick-startup): Remove variable and all uses.
14342 (command-line): Set `inhibit-x-resources' instead.
14343 (command-line-1): Use `inhibit-x-resources' instead.
14344
14345 2009-09-17 Chong Yidong <cyd@stupidchicken.com>
14346
14347 * subr.el: Fix last change to avoid using the `unless' macro,
14348 which breaks bootstrapping.
14349
14350 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
14351
14352 * subr.el (push, pop, dolist, dotimes, declare): Don't overwrite CL's
14353 extended definitions, in case we reload subr.el after having
14354 loaded CL.
14355 (eval-next-after-load): Mark as obsolete.
14356
14357 2009-09-17 Juri Linkov <juri@jurta.org>
14358
14359 * menu-bar.el (menu-bar-search-menu, menu-bar-edit-menu)
14360 (menu-bar-options-menu, menu-bar-showhide-fringe-menu)
14361 (menu-bar-showhide-menu, menu-bar-tools-menu)
14362 (menu-bar-describe-menu, menu-bar-help-menu)
14363 (minibuffer-local-completion-map, minibuffer-local-map):
14364 Fix list quoting.
14365
14366 2009-09-17 Glenn Morris <rgm@gnu.org>
14367
14368 * emacs-lisp/bytecomp.el (byte-compile-form): Always check the function
14369 arguments, whether or not it has a handler.
14370
14371 * ansi-color.el (ansi-color-get-face-1): Fix typo in handler.
14372
14373 * simple.el (hard-newline): Give it a doc-string.
14374
14375 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
14376 (lisp-mode-syntax-table): Give them doc-strings.
14377
14378 2009-09-17 Dan Nicolaescu <dann@ics.uci.edu>
14379
14380 * menu-bar.el (menu-bar-file-menu, menu-bar-file-menu)
14381 (menu-bar-i-search-menu, menu-bar-edit-menu, menu-bar-custom-menu)
14382 (menu-bar-options-menu, menu-bar-showhide-menu)
14383 (menu-bar-showhide-fringe-ind-menu, menu-bar-showhide-fringe-menu)
14384 (menu-bar-showhide-scroll-bar-menu, menu-bar-showhide-menu)
14385 (menu-bar-options-menu, menu-bar-line-wrapping-menu)
14386 (menu-bar-options-menu, menu-bar-tools-menu)
14387 (menu-bar-describe-menu, menu-bar-search-documentation-menu)
14388 (menu-bar-help-menu):
14389 (menu-bar-make-mm-toggle, menu-bar-make-toggle): Purecopy the
14390 string arguments.
14391
14392 * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu)
14393 (menu-bar-epatch-menu, menu-bar-ediff-misc-menu): Add purecopy
14394 calls for the menu names and :help.
14395
14396 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
14397
14398 * mouse.el (minor-mode-menu-from-indicator): Pay attention
14399 to :minor-mode-function (bug#4455).
14400
14401 2009-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
14402
14403 * startup.el (command-line): Initialize the window-system after
14404 processing the command-line.
14405
14406 * textmodes/page.el (what-page): Make sure we don't inf-loop if
14407 page-delimiter matches the empty string.
14408
14409 2009-09-16 Glenn Morris <rgm@gnu.org>
14410
14411 * emacs-lisp/bytecomp.el (byte-compile-not-obsolete-vars): Rename from
14412 byte-compile-not-obsolete-var. It's a list now.
14413 (byte-compile-not-obsolete-funcs): New variable.
14414 (byte-compile-warn-obsolete): Don't warn about functions if they are in
14415 byte-compile-not-obsolete-funcs.
14416 (byte-compile-variable-ref, byte-compile-defvar): Update for
14417 byte-compile-not-obsolete-vars name-change and list nature.
14418 (byte-compile-maybe-guarded): Suppress warnings about obsolete functions
14419 and variables behind (f)boundp tests.
14420 * net/tramp-compat.el (byte-compile-not-obsolete-vars): Set if bound.
14421
14422 2009-09-15 Dan Nicolaescu <dann@ics.uci.edu>
14423
14424 * vc-git.el (vc-git-log-view-mode): Undo inadvertent change.
14425
14426 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
14427
14428 * Makefile.in (compile-onefile): Use byte-compile-refresh-preloaded.
14429 * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded):
14430 Don't autoload.
14431
14432 2009-09-15 Stephen Eglen <stephen@gnu.org>
14433
14434 * iswitchb.el (iswitchb-read-buffer): When selecting a match from
14435 the virtual-buffers, use the name of the buffer specified by
14436 find-file-noselect, as the match may be a symlink. (This was a
14437 problem if the target and the symlink had different names.)
14438
14439 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
14440
14441 * custom.el (custom-initialize-default, custom-initialize-set): CSE.
14442
14443 * desktop.el (desktop-path): Check user-emacs-directory.
14444
14445 * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded): New function.
14446
14447 * loadup.el: Use after-load-functions to GC after loading each file.
14448 Remove the explicit GC calls that used to be sprinkled around.
14449
14450 * subr.el (after-load-functions): New hook.
14451 (do-after-load-evaluation): Run it. Use string-match-p to detect
14452 `obsolete' packages, rather than painfully extracting the relevant
14453 directory name.
14454
14455 2009-09-15 Glenn Morris <rgm@gnu.org>
14456
14457 * apropos.el (apropos-documentation-check-doc-file): Avoid assignment to
14458 free variable `doc'.
14459
14460 * dired.el (dired-mode-map): Add menu entry for async shell command.
14461
14462 * help-fns.el (find-lisp-object-file-name): When looking for autoloaded
14463 variables, also consider the .elc files, since the .el files are
14464 normally gzipped (subsequent code locates the .el.gz from the .elc).
14465
14466 * calc/calc-prog.el (arglist): Define for compiler.
14467
14468 * calendar/diary-lib.el (diary-display-function): Change the default to
14469 fancy display.
14470 (body): Define for compiler.
14471
14472 * emacs-lisp/bytecomp.el (byte-compile-keep-pending)
14473 (byte-compile-file-form, byte-compile-lambda)
14474 (byte-compile-top-level-body, byte-compile-form)
14475 (byte-compile-variable-ref, byte-compile-setq)
14476 (byte-compile-setq-default, byte-compile-body)
14477 (byte-compile-body-do-effect, byte-compile-and, byte-compile-or)
14478 (batch-byte-compile): Give some more local variables with common names
14479 a "bytecomp-" prefix to avoid masking warnings about free variables.
14480
14481 * startup.el (command-line-1): Give local variables with common names a
14482 distinguishing prefix, so as not to hide free variable warnings during
14483 bootstrap.
14484
14485 * mail/rmailmm.el (rmail-mime-save): If file exists, don't try to be
14486 clever and add a suffix to make a unique name, just let the user decide
14487 whether or not to overwrite it. If the input is a directory, write the
14488 default filename to that directory. (Bug#4388)
14489 (rmail-mime-bulk-handler): Ensure the save button's 'directory property
14490 is a filename-as-a-directory.
14491
14492 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
14493
14494 * textmodes/page.el (what-page): Don't move to beginning of line.
14495 See <87tyz5ajte.fsf@x2.delysid.org> in emacs-devel.
14496
14497 2009-09-15 Dan Nicolaescu <dann@ics.uci.edu>
14498
14499 * vc-git.el (vc-git-dir-extra-headers): Show the remote location.
14500
14501 2009-09-14 Dan Nicolaescu <dann@ics.uci.edu>
14502
14503 * bindings.el (mode-line-mode-menu): Add purecopy calls for :help.
14504 * help.el (help-for-help-internal): Add purecopy calls for text.
14505
14506 * vc.el (top): print-log method now takes an optional SHORTLOG
14507 argument. Add a new method: root.
14508 (vc-root-diff, vc-print-root-log): New functions.
14509 (vc-log-short-style): New variable.
14510 (vc-print-log-internal): Add support for showing short logs.
14511
14512 * vc-hooks.el (vc-prefix-map, vc-menu-map): Add bindings for
14513 vc-print-root-log and vc-print-root-diff.
14514
14515 * vc-bzr.el (vc-bzr-log-view-mode, vc-bzr-print-log):
14516 * vc-git.el (vc-git-print-log, vc-git-log-view-mode):
14517 * vc-hg.el (vc-hg-print-log, vc-hg-log-view-mode): Add support for
14518 short logs.
14519
14520 * vc-cvs.el (vc-cvs-print-log):
14521 * vc-mtn.el (vc-mtn-print-log):
14522 * vc-rcs.el (vc-rcs-print-log):
14523 * vc-sccs.el (vc-sccs-print-log):
14524 * vc-svn.el (vc-svn-print-log): Add an optional argument shortlog
14525 that is ignored for now.
14526
14527 * vc-mtn.el (vc-mtn-annotate-command):
14528 * vc-svn.el (vc-svn-annotate-command): Run asynchronously.
14529
14530 2009-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
14531
14532 * simple.el: Add mapping for backspace/delete/clear/tab/escape/return
14533 to function-key-map, and give them ascii-character property.
14534 * term/x-win.el (x-alternatives-map):
14535 * term/ns-win.el (ns-alternatives-map):
14536 * term/internal.el (msdos-key-remapping-map):
14537 * w32-fns.el (x-alternatives-map): Remove redundant mappings.
14538
14539 2009-09-14 Glenn Morris <rgm@gnu.org>
14540
14541 * emacs-lisp/elint.el (elint-add-required-env): Revert to not using
14542 temp-buffers (2009-09-12).
14543
14544 2009-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
14545
14546 * textmodes/ispell.el (ispell-command-loop): Improve last fix, using
14547 the new read-key function.
14548
14549 2009-09-13 Chong Yidong <cyd@stupidchicken.com>
14550
14551 * term/x-win.el (x-menu-bar-open): Only call accelerate-menu if it
14552 is defined (Bug#4405).
14553
14554 2009-09-13 Vincent Belaïche <vincent.belaiche@gmail.com>
14555
14556 * recentf.el (recentf-cleanup): Use a hash table to find
14557 duplicates (Bug#4407).
14558
14559 2009-09-13 Per Starbäck <per@starback.se> (tiny change)
14560
14561 * textmodes/ispell.el (ispell-command-loop): Convert keys such as
14562 kp-0 to ascii equivalents (Bug#4325).
14563
14564 2009-09-13 Chong Yidong <cyd@stupidchicken.com>
14565
14566 * progmodes/cperl-mode.el (cperl-init-faces): Revert last change.
14567
14568 * eshell/em-hist.el:
14569 * eshell/em-dirs.el (eshell-complete-user-reference):
14570 Declare pcomplete functions and variables to avoid compiler warnings.
14571
14572 2009-09-13 Leo <sdl.web@gmail.com> (tiny change)
14573
14574 * eshell/em-script.el (eshell-login-script, eshell-rc-script):
14575 * eshell/em-dirs.el (eshell-last-dir-ring-file-name):
14576 * eshell/em-alias.el (eshell-aliases-file):
14577 * eshell/em-hist.el (eshell-history-file-name):
14578 Use expand-file-name instead of concat to make file names (Bug#4308).
14579
14580 2009-09-13 Glenn Morris <rgm@gnu.org>
14581
14582 * ediff-merg.el (ediff-do-merge):
14583 * filesets.el (filesets-run-cmd):
14584 * emulation/ws-mode.el (ws-show-markers, ws-move-block, ws-delete-block)
14585 (ws-find-marker-0, ws-find-marker-1, ws-find-marker-2, ws-find-marker-3)
14586 (ws-find-marker-4, ws-find-marker-5, ws-find-marker-6, ws-find-marker-7)
14587 (ws-find-marker-8, ws-find-marker-9, ws-goto-block-begin)
14588 (ws-goto-block-end, ws-goto-last-cursorposition, ws-copy-block):
14589 Replace empty `let's with `progn'.
14590
14591 2009-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
14592
14593 * mail/sendmail.el (send-mail-function):
14594 * tooltip.el (tooltip-mode):
14595 * simple.el (transient-mark-mode):
14596 * rfn-eshadow.el (file-name-shadow-mode):
14597 * frame.el (blink-cursor-mode):
14598 * font-core.el (global-font-lock-mode):
14599 * files.el (temporary-file-directory)
14600 (small-temporary-file-directory, auto-save-file-name-transforms):
14601 * epa-hook.el (auto-encryption-mode):
14602 * composite.el (global-auto-composition-mode):
14603 Use custom-initialize-delay.
14604 * startup.el (command-line): Don't explicitly call
14605 custom-reevaluate-setting for all the above vars.
14606 * custom.el (custom-initialize-safe-set)
14607 (custom-initialize-safe-default): Delete.
14608
14609 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
14610
14611 * term/x-win.el (x-initialize-window-system):
14612 * term/w32-win.el (w32-initialize-window-system):
14613 * term/ns-win.el (ns-initialize-window-system): Don't call
14614 mouse-wheel-mode since it's enabled globally by default already.
14615
14616 * mwheel.el (mouse-wheel-mode): Make sure the new defvar doesn't
14617 actually define the variable, but only silences the byte-compiler.
14618 (mouse-wheel-change-button): Check whether mouse-wheel-mode is bound
14619 before looking it up.
14620 (mouse-wheel-scroll-amount): Also reset the bindings if this value
14621 is changed.
14622
14623 2009-09-12 Glenn Morris <rgm@gnu.org>
14624
14625 * emacs-lisp/elint.el (elint-file): Make max-lisp-eval-depth at least
14626 1000.
14627 (elint-add-required-env): Don't beep on error.
14628 (elint-forms): In case of error, return ENV unchanged.
14629 (elint-init-env): Skip non-list forms.
14630 (elint-log): Handle unknown file positions.
14631
14632 2009-09-12 Daiki Ueno <ueno@unixuser.org>
14633
14634 * epg.el (epg-make-context): Add autoload cookie.
14635 (epg-list-keys, epg-cancel, epg-start-decrypt, epg-decrypt-file)
14636 (epg-decrypt-string, epg-start-verify, epg-verify-file)
14637 (epg-verify-string, epg-start-sign, epg-sign-file)
14638 (epg-sign-string, epg-start-encrypt, epg-encrypt-file)
14639 (epg-encrypt-string, epg-start-export-keys)
14640 (epg-export-keys-to-file, epg-export-keys-to-string)
14641 (epg-start-import-keys, epg-import-keys-from-file)
14642 (epg-import-keys-from-string, epg-start-receive-keys)
14643 (epg-receive-keys, epg-import-keys-from-server)
14644 (epg-start-delete-keys, epg-delete-keys, epg-start-sign-keys)
14645 (epg-sign-keys, epg-start-generate-key)
14646 (epg-generate-key-from-file, epg-generate-key-from-string):
14647 Remove autoload cookie.
14648
14649 2009-09-12 Eli Zaretskii <eliz@gnu.org>
14650
14651 * dos-fns.el (dos-reevaluate-defcustoms): Comment out the
14652 reevaluation of trash-directory.
14653
14654 * mwheel.el: Fix last change.
14655 (mouse-wheel-mode): New defvar.
14656 (mouse-wheel-mode): Remove autoload cookie.
14657
14658 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
14659
14660 * mwheel.el (mwheel-installed-bindings): New var.
14661 (mouse-wheel-mode): Use it, so as to make sure we really remove all
14662 the bindings we set last time. Use custom-initialize-delay.
14663 * loadup.el: Load mwheel after term/*-win.el.
14664 * startup.el (command-line): Don't reevaluate mouse-wheel-down-event
14665 and mouse-wheel-up-event now that their first evaluation is done
14666 sufficiently late to be correct.
14667
14668 * startup.el (tutorial-directory): Make it a defcustom.
14669 Use custom-initialize-delay rather than eval-at-startup to set it.
14670 * image.el (image-load-path): Make it a defcustom.
14671 Use custom-initialize-delay rather than eval-at-startup to set it.
14672 * subr.el (eval-at-startup): Remove.
14673 * font-lock.el (lisp-font-lock-keywords-2): Remove eval-at-startup.
14674
14675 * subr.el (do-after-load-evaluation): Warn the user after loading an
14676 obsolete package.
14677
14678 2009-09-12 Glenn Morris <rgm@gnu.org>
14679
14680 * proced.el (proced-mark-alt): Remove alias.
14681 (proced-mode-map): Remove proced-mark-alt.
14682
14683 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries to
14684 Elint file and directory. Remove initialization entry.
14685
14686 * emacs-lisp/elint.el (elint-file, elint-directory): New autoloaded
14687 commands.
14688 (elint-current-buffer): Set mode-line-process.
14689 (elint-init-env): Handle define-derived-mode.
14690 Fix declare-function with unspecified arglist. Guard against odd
14691 defalias statements (eg iso-insert's 8859-1-map).
14692 (elint-add-required-env): Use a temp buffer.
14693 (elint-form): Just print the function/macro name, not the whole form.
14694 Return env unchanged if we fail to parse a macro.
14695 (elint-forms): Guard against parse errors.
14696 (elint-output): New function, to handle batch mode.
14697 (elint-log-message): Add optional argument. Use elint-output.
14698 (elint-set-mode-line): New function.
14699
14700 2009-09-12 Andreas Politz <politza@fh-trier.de> (tiny change)
14701
14702 * emacs-lisp/elp.el (elp-not-profilable): Add more
14703 functions (Bug#4233).
14704
14705 2009-09-12 Chong Yidong <cyd@stupidchicken.com>
14706
14707 * emulation/pc-select.el (scroll-down-mark, scroll-down-nomark)
14708 (scroll-up-mark, scroll-up-nomark): Doc fix (Bug#4190).
14709
14710 2009-09-11 Nick Roberts <nickrob@snap.net.nz>
14711
14712 * progmodes/gdb-mi.el (gdb-var-list-children-regexp): Delete.
14713 (gdb-var-list-children): Use json parsing.
14714
14715 2009-09-11 Daniel Colascione <dan.colascione@gmail.com>
14716
14717 * progmodes/js.el (js--proper-indentation): Handle the case where
14718 char-before is null. Reported by Deniz Dogan.
14719
14720 2009-09-11 Juanma Barranquero <lekktu@gmail.com>
14721
14722 * emacs-lisp/cl-macs.el (help-add-fundoc-usage): Declare.
14723
14724 2009-09-11 Daiki Ueno <ueno@unixuser.org>
14725
14726 * epg.el (epg-cipher-algorithm-alist): Add CAMELLIA.
14727 (epg-digest-algorithm-alist): Add SHA224.
14728 (epg-context-set-passphrase-callback)
14729 (epg-context-set-progress-callback): Add description about
14730 callback function.
14731
14732 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
14733
14734 * custom.el (custom-delayed-init-variables): New var.
14735 (custom-initialize-delay): New function.
14736 * startup.el (command-line): "Re"evaluate all vars in
14737 custom-delayed-init-variables. Don't reevaluate abbrev-file-name
14738 explicitly any more.
14739 * abbrev.el (abbrev-file-name): Use custom-initialize-delay
14740 to avoid creating a ~/.emacs.d at build-time (bug#4347).
14741
14742 * proced.el (proced-mode-map): Prefer "m" for proced-mark (bug#4362).
14743
14744 2009-09-11 Nick Roberts <nickrob@snap.net.nz>
14745
14746 * progmodes/gdb-mi.el (gdb-var-update-regexp): Delete.
14747 (gdb-var-update-handler): Use json parsing.
14748
14749 2009-09-11 Juanma Barranquero <lekktu@gmail.com>
14750
14751 * vc-annotate.el (vc-annotate): Use the main file's coding-system to
14752 decode annotated text, regardless of language environment. (Bug#2741)
14753
14754 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
14755
14756 * Makefile.in (autoloads): Make rmail.el writable as well.
14757
14758 2009-09-11 Glenn Morris <rgm@gnu.org>
14759
14760 * dired-aux.el, dired-x.el: Put autoloads in dired.el rather than
14761 loaddefs.el.
14762 * dired.el: Regenerate with extracted autoloads.
14763 * Makefile.in (autoloads): Make dired.el writable.
14764
14765 * ibuf-ext.el: Put autoloads in ibuffer.el rather than loaddefs.el.
14766 * ibuffer.el: Regenerate with extracted autoloads.
14767 * Makefile.in (autoloads): Make ibuffer.el writable.
14768
14769 * paths.el (prune-directory-list, gnus-nntp-service, rmail-file-name):
14770 * version.el (emacs-copyright, emacs-major-version)
14771 (emacs-minor-version): Reformat doc-strings for make-docfile.
14772
14773 * apropos.el (apropos-documentation-check-doc-file): Exclude unbound
14774 functions and variables, since they must be stuff specific to some other
14775 platform.
14776 (apropos-print): Make mouse-click message less specific about button.
14777
14778 * emacs-lisp/cl-macs.el (define-compiler-macro): Add a property
14779 that records where a macro was defined.
14780 * help-fns.el (describe-function-1): Mention if a function has a
14781 compiler-macro.
14782 * help-mode.el (help-function-cmacro): New button.
14783
14784 * locate.el (top-level): Always require dired.
14785 (locate-mode-map): Initialize inside the defvar.
14786
14787 * net/ange-ftp.el (dired-compress-file): Declare.
14788 (ange-ftp-dired-compress-file): Add doc string.
14789
14790 * term/ns-win.el (x-display-name, x-setup-function-keys):
14791 Unify doc-strings with X versions.
14792
14793 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
14794
14795 * emulation/crisp.el (crisp-mode-map): Move initialization
14796 into declaration.
14797 (crisp-mode): Use define-minor-mode.
14798
14799 * progmodes/xscheme.el (xscheme-evaluation-commands):
14800 Put a :advertised-binding property rather than using
14801 advertised-xscheme-send-previous-expression.
14802 (advertised-xscheme-send-previous-expression): Declare obsolete.
14803 * emulation/crisp.el (crisp-mode-map): Use `undo' rather than
14804 `advertised-undo'.
14805 (crisp-mode): Add corresponding bindings to
14806 undo's :advertised-binding instead.
14807 * dired.el (dired-mode-map): Put a :advertised-binding property rather
14808 than using dired-advertised-find-file.
14809 (dired-advertised-find-file):
14810 * simple.el (advertised-undo):
14811 * wid-edit.el (advertised-widget-backward): Declare obsolete.
14812 (widget-keymap): Put a :advertised-binding property rather
14813 than using advertised-widget-backward.
14814 * bindings.el (ctl-x-map): Put a :advertised-binding property rather
14815 than using advertised-undo.
14816 * tutorial.el (tutorial--default-keys): Adjust accordingly.
14817
14818 2009-09-10 Simon South <ssouth@slowcomputing.org>
14819
14820 * progmodes/delphi.el (delphi-tab): Indent region when Transient
14821 Mark mode is enabled and region is active; otherwise indent or
14822 insert TAB as usual.
14823 (delphi-mode): Update description of TAB-key binding.
14824
14825 2009-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
14826
14827 * subr.el (define-key-rebound-commands): Mark obsolete.
14828 * startup.el (precompute-menubar-bindings): Remove.
14829 (normal-top-level): Remove obsolete code that tried to precompute
14830 menubar bindings.
14831 * loadup.el (define-key-rebound-commands): Don't bother fiddling with
14832 define-key-rebound-commands and precompute-menubar-bindings.
14833
14834 2009-09-10 Teodor Zlatanov <tzz@lifelogs.com>
14835
14836 * net/imap.el (imap-interactive-login): Better messages.
14837 (imap-open): Fix bug with renamed buffer on reconnect.
14838 (imap-authenticate): Add buffer-local imap-last-authenticator variable
14839 for easier debugging and cleaner code. On successful (guessed based on
14840 server capabilities) secondary authentication, set imap-state
14841 correctly.
14842 (imap-last-authenticator): Define imap-last-authenticator as a variable
14843 to avoid warnings.
14844
14845 2009-09-10 Glenn Morris <rgm@gnu.org>
14846
14847 * pcvs.el (cvs-mode-find-file): Use forward-line rather than goto-line.
14848
14849 * emacs-lisp/bytecomp.el (byte-compile-function-environment): Doc fix.
14850 (byte-compile-file-form-autoload): Don't warn about unknown functions
14851 where the autoload statement comes after the use.
14852 (with-no-warnings): Give it a byte-hunk-handler like than of progn, so
14853 that any handlers inside the body (eg require) are in turn respected.
14854
14855 * emacs-lisp/byte-opt.el (degrees-to-radians): Mark as free from side
14856 effects.
14857
14858 * emacs-lisp/derived.el (define-derived-mode): Give the mode's map,
14859 and syntax and abbrev tables basic docs, if they don't have any.
14860
14861 * emacs-lisp/easy-mmode.el (easy-mmode-defmap): Add doc-string.
14862
14863 * international/mule-cmds.el (top-level): Require cl when compiling.
14864 (view-hello-file): Use default-value rather than
14865 default-enable-multibyte-characters.
14866
14867 * progmodes/fortran.el: Move all safe and risky properties into the
14868 defcustoms.
14869
14870 * mail/rmailedit.el, mail/rmailkwd.el, mail/rmailmm.el:
14871 * mail/rmailmsc.el, mail/rmailsort.el, mail/rmailsum.el:
14872 * mail/undigest.el:
14873 Put autoloads in rmail.el rather than loaddefs.el.
14874 * mail/rmail.el: Regenerate with extracted autoloads.
14875
14876 * mail/rmailsum.el (rmail-user-mail-address-regexp): Move to rmail.el.
14877 * mail/rmail.el (rmail-user-mail-address-regexp): Move from rmailsum.el.
14878
14879 2009-09-10 Nick Roberts <nickrob@snap.net.nz>
14880
14881 Reported in thread for Bug#4375.
14882 * progmodes/gud.el (gud-tooltip-print-command): Use MI command
14883 "-data-evaluate-expression" instead of print.
14884 * progmodes/gdb-mi.el (gdb-tooltip-print-1): Ditto.
14885 (gdb-tooltip-print): Parse output from above MI command.
14886 (gdb): Revert 2009-08-11 change. User should detach inferior
14887 manually.
14888
14889 Remove the word "separate" from IO functions as inferior
14890 output is now never displayed in the GUD buffer.
14891
14892 2009-09-10 Juanma Barranquero <lekktu@gmail.com>
14893
14894 * startup.el (command-line-normalize-file-name): On Windows and
14895 MS-DOS, also convert C:\/ and C:\\ (two backslashes) into C:/.
14896
14897 2009-09-10 Juri Linkov <juri@jurta.org>
14898
14899 * isearch.el (isearch-text-char-description): Propertize escape
14900 character sequences with the `escape-glyph' face. (Bug#4344)
14901
14902 * simple.el (shell-command): Set asynchronous process filter to
14903 `comint-output-filter'. (Bug#4343)
14904
14905 * progmodes/grep.el (grep-template): Add "<X>" to docstring.
14906 (grep-files-aliases): Add "all". Move "el" and "ch" to the top of
14907 the list. Move "asm" to the bottom.
14908 (grep-find-ignored-directories): Add `choice' with nil value
14909 to empty the list easily.
14910 (grep-find-ignored-files): New option.
14911 (grep-files-history): Set to nil by default instead of '("ch" "el").
14912 (grep-compute-defaults): Add "<X>" to `grep-template'.
14913 (grep-read-files): Bind new local variables `default-alias' and
14914 `default-extension'. Use a list of default values for the file prompt.
14915 (lgrep): Add `--exclude=' command line options composed from
14916 `grep-find-ignored-files'.
14917 (rgrep): Add `-name' command line options composed from
14918 `grep-find-ignored-files'. (Bug#4301)
14919
14920 2009-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
14921
14922 * diff-mode.el (diff-hunk-kill): Fix the search of the next hunk
14923 (bug#4368).
14924
14925 2009-09-09 Katsumi Yamaoka <yamaoka@jpl.org>
14926
14927 * calendar/time-date.el (autoload):
14928 Expand define-obsolete-function-alias into defalias and make-obsolete
14929 for old Emacsen that Gnus supports.
14930 (with-no-warnings): Define it for old Emacsen.
14931 (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
14932 is available.
14933 (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
14934 float-time is available; suppress compile warning for time-to-seconds.
14935
14936 2009-09-09 Teodor Zlatanov <tzz@lifelogs.com>
14937
14938 * net/imap.el (imap-message-map): Docstring fix.
14939
14940 2009-09-09 Glenn Morris <rgm@gnu.org>
14941
14942 * ffap.el (ffap-file-at-point): Handle absolute (non-remote) files with
14943 line numbers too. (Bug#4374)
14944
14945 2009-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
14946
14947 * smerge-mode.el (smerge-remove-props, smerge-refine):
14948 Use with-silent-modifications (bug#4342).
14949
14950 * subr.el (with-silent-modifications): New macro.
14951
14952 2009-09-07 Juanma Barranquero <lekktu@gmail.com>
14953
14954 * files.el (top-level): Require `cl' when compiling.
14955
14956 2009-09-07 Glenn Morris <rgm@gnu.org>
14957
14958 * files.el (auto-mode-alist): Use delphi-mode for .dpr files.
14959
14960 * proced.el (proced-mode-map): Bind "d" to proced-mark-alt.
14961 (proced-mark-alt): New alias, to control the advertised key. (Bug#4362)
14962
14963 2009-09-06 Nick Roberts <nickrob@snap.net.nz>
14964
14965 * vc-git.el (vc-git-annotate-command): Use separator to parse
14966 arguments correctly.
14967
14968 2009-09-06 Eli Zaretskii <eliz@gnu.org>
14969
14970 * proced.el (proced-mode): Doc fix.
14971
14972 2009-09-06 Julian Scheid <julians37@gmail.com> (tiny change)
14973
14974 * net/tramp.el (tramp-perl-file-attributes): Print "nil" when
14975 lstat fails.
14976 (tramp-do-file-attributes-with-ls): Check for file existence at
14977 remote end.
14978 (tramp-do-file-attributes-with-stat): Likewise.
14979 (tramp-convert-file-attributes): Return nil when attr is nil.
14980
14981 2009-09-05 Glenn Morris <rgm@gnu.org>
14982
14983 * calendar/diary-lib.el (diary-entry): Add help-echo and follow-link
14984 properties to this button.
14985 (diary-fancy-display): Don't extend the button to the final newline.
14986 (diary-fancy-display-mode): Continue to define "q" as a local key.
14987
14988 * calendar/cal-china.el (holiday-chinese): Make it slightly more
14989 efficient.
14990
14991 * font-lock.el (lisp-font-lock-keywords-2): Add letf.
14992
14993 * emacs-lisp/bytecomp.el (emacs-lisp-file-regexp): Doc fix.
14994 (byte-compile-dest-file-function): New option.
14995 (byte-compile-dest-file): Doc fix.
14996 Obey byte-compile-dest-file-function.
14997 (byte-compile-cl-file-p): New function.
14998 (byte-compile-eval): Only suppress noruntime warnings about cl functions
14999 if the cl-functions warning is enabled. Use byte-compile-cl-file-p.
15000 (byte-compile-eval): Check for non-nil byte-compile-cl-functions rather
15001 than for file being previously loaded.
15002 (byte-compile-find-cl-functions): Use byte-compile-cl-file-p.
15003 (byte-compile-file-form-require): Handle the case where requiring a file
15004 indirectly causes CL to be loaded.
15005
15006 2009-09-05 Karl Fogel <kfogel@red-bean.com>
15007
15008 * files.el (find-alternate-file): Run `kill-buffer-hook' manually
15009 before killing the old buffer, since by the time `kill-buffer' is
15010 run so many buffer variables have been set to nil that it may not
15011 behave as expected. (Bug#4061)
15012
15013 2009-09-05 Karl Fogel <kfogel@red-bean.com>
15014
15015 * files.el (find-alternate-file): If the old buffer is modified
15016 and visiting a file, behave similarly to `kill-buffer' when
15017 killing it, thus reverting to the pre-1.878 behavior; see
15018 http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00101.html
15019 for discussion. Also, consult `buffer-file-name' as a variable
15020 not as a function, for consistency with the rest of the code.
15021
15022 2009-09-04 Michael Albinus <michael.albinus@gmx.de>
15023
15024 * net/tramp.el (tramp-handle-insert-directory): Handle "--dired"
15025 also when adding a new directory.
15026
15027 * net/tramp-compat.el (tramp-compat-line-beginning-position): New
15028 defun.
15029
15030 2009-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
15031
15032 * files.el (locate-file-completion-table): Make it provide boundary
15033 information, so partial-completion works better.
15034
15035 2009-09-04 Leo <sdl.web@gmail.com> (tiny change)
15036
15037 * mail/footnote.el (Footnote-text-under-cursor):
15038 Check footnote-text-marker-alist before using it (bug#4324).
15039
15040 2009-09-04 Glenn Morris <rgm@gnu.org>
15041
15042 * play/5x5.el, play/decipher.el, play/gametree.el, play/handwrite.el:
15043 * play/hanoi.el, play/landmark.el, play/mpuz.el, play/pong.el:
15044 * play/solitaire.el, play/tetris.el:
15045 Remove leading * from defcustom and defface docs.
15046
15047 * calendar/diary-lib.el (diary-fancy-display): Only switch modes if
15048 necessary.
15049 (diary-fancy-overriding-map): New variable.
15050 (diary-fancy-display-mode): Set minor-mode-overriding-map-alist.
15051 Use view-mode.
15052
15053 * vc-rcs.el (vc-rcs-annotate-command): Use forward-line rather than
15054 goto-line.
15055
15056 2009-09-03 Glenn Morris <rgm@gnu.org>
15057
15058 * arc-mode.el (archive-mode):
15059 * dos-fns.el (set-default-process-coding-system):
15060 * man.el (Man-getpage-in-background):
15061 * menu-bar.el (menu-bar-describe-menu):
15062 * server.el (server-process-filter):
15063 * startup.el (command-line):
15064 * tar-mode.el (tar-header-block-tokenize, tar-extract):
15065 * w32-fns.el (set-default-process-coding-system):
15066 * x-dnd.el (x-dnd-handle-file-name):
15067 * international/mule-cmds.el (mule-menu-keymap)
15068 (set-default-coding-systems, language-info-alist, set-language-info)
15069 (set-language-environment, standard-display-european-internal)
15070 (set-locale-environment):
15071 * international/mule-diag.el (mule-diag):
15072 * mail/emacsbug.el (report-emacs-bug):
15073 * mail/rmail.el (rmail-mode):
15074 * mail/sendmail.el (mail-setup):
15075 Use default-value rather than default-enable-multibyte-characters.
15076
15077 * progmodes/f90.el: Move all safe properties into the defcustoms.
15078 (f90-get-correct-indent, f90-indent-region, f90-abbrev-start): Use memq.
15079
15080 * calendar/appt.el (appt-check):
15081 * calendar/diary-lib.el (diary-set-header, diary-live-p)
15082 (diary-check-diary-file, diary-list-entries)
15083 (diary-include-other-diary-files, diary-simple-display)
15084 (diary-fancy-display, diary-print-entries)
15085 (diary-mark-included-diary-files, diary-make-entry):
15086 Don't call substitute-in-file-name on diary-file.
15087
15088 2009-09-03 Eduard Wiebe <usenet@pusto.de>
15089 Stefan Monnier <monnier@iro.umontreal.ca>
15090
15091 * mail/footnote.el (footnote-prefix): Make it a defcustom.
15092 (footnote-mode-map): Move initialization into the declaration.
15093 (footnote-minor-mode-map): Define it rather than changing global-map.
15094 (footnote-mode): Use define-minor-mode.
15095
15096 2009-09-02 Michael Albinus <michael.albinus@gmx.de>
15097
15098 * net/tramp.el (tramp-handle-file-attributes-with-ls)
15099 (tramp-do-file-attributes-with-perl)
15100 (tramp-do-file-attributes-with-stat): Rename from
15101 `tramp-handle-file-attributes-with-*'.
15102 (tramp-handle-file-attributes): Use them.
15103 (tramp-do-directory-files-and-attributes-with-perl)
15104 (tramp-do-directory-files-and-attributes-with-stat): Rename from
15105 `tramp-handle-directory-files-and-attributes-with-*'.
15106 (tramp-handle-directory-files-and-attributes): Use them.
15107 (tramp-method-out-of-band-p): Additional parameter SIZE.
15108 (tramp-do-copy-or-rename-file, tramp-handle-file-local-copy)
15109 (tramp-handle-write-region): Use it.
15110 (tramp-handle-insert-directory): Use "?\ " for compatibility reasons.
15111 (tramp-handle-vc-registered): Check, whether the first run did
15112 return files to be tested.
15113 (tramp-advice-make-auto-save-file-name): Do not call directly
15114 `tramp-handle-make-auto-save-file-name', because this would bypass
15115 the locking mechanism.
15116
15117 * net/tramp-compat.el (top): Autoload used functions from tramp.el.
15118 (file-remote-p, process-file, start-file-process, set-file-times)
15119 (tramp-compat-file-attributes): Compatibility functions shall not
15120 call directly `tramp-handle-*', because this would bypass the
15121 locking mechanism.
15122 (tramp-compat-number-sequence): New defun.
15123
15124 2009-09-02 Glenn Morris <rgm@gnu.org>
15125
15126 * calendar/time-date.el (time-to-seconds): In Emacs, make it an obsolete
15127 alias for float-time.
15128 (time-to-number-of-days): In Emacs, use float-time.
15129 * net/newst-backend.el (time-add): Suppress warnings from compat
15130 function.
15131 * time.el (emacs-uptime, emacs-init-time):
15132 * net/rcirc.el (rcirc-keepalive, rcirc-handler-ctcp-KEEPALIVE):
15133 Use float-time rather than time-to-seconds.
15134
15135 * minibuffer.el (completion-initials-expand): Fix typo.
15136
15137 * faces.el (modeline, modeline-inactive, modeline-highlight)
15138 (modeline-buffer-id):
15139 * info.el (info-menu-5): Mark these face aliases as obsolete.
15140
15141 2009-09-01 Nick Roberts <nickrob@snap.net.nz>
15142
15143 * progmodes/gdb-mi.el (gdb-current-context-command): Move the
15144 space ...
15145 (gdb-gud-context-call): ... to here for pre GDB 7.0 when there is
15146 no "--thread" option.
15147 (gdb-stopped): Don't print "Switched to thread" message when it is
15148 unchanged.
15149
15150 2009-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
15151
15152 * minibuffer.el (completion-try-completion)
15153 (completion-all-completions): Remove ill-defined (and
15154 mistakenly installed and luckily never used nor documented)
15155 `completion-styles' property.
15156 (completion-initials-expand, completion-initials-all-completions)
15157 (completion-initials-try-completion): New functions.
15158 (completion-styles-alist): Add doc to each entry.
15159 Add new `initials' entry.
15160
15161 2009-09-01 Nick Roberts <nickrob@snap.net.nz>
15162
15163 * progmodes/gdb-mi.el (gdb-var-create-handler): Remove redundant
15164 MI command -var-evaluate-expression.
15165 (gdb-var-list-children-regexp): Update from regexp-1 in gdb-ui.el
15166 and tweak for case of string child.
15167 (gdb-var-list-children-handler): Update from handler-1 in gdb-ui.el.
15168
15169 2009-09-01 Glenn Morris <rgm@gnu.org>
15170
15171 * add-log.el (change-log-date-face, change-log-name-face)
15172 (change-log-email-face, change-log-file-face, change-log-list-face)
15173 (change-log-conditionals-face, change-log-function-face)
15174 (change-log-acknowledgement-face):
15175 * cus-edit.el (custom-invalid-face, custom-rogue-face)
15176 (custom-modified-face, custom-set-face, custom-changed-face)
15177 (custom-saved-face, custom-button-face, custom-button-pressed-face)
15178 (custom-documentation-face, custom-state-face, custom-comment-face)
15179 (custom-comment-tag-face, custom-variable-tag-face)
15180 (custom-variable-button-face, custom-face-tag-face)
15181 (custom-group-tag-face-1, custom-group-tag-face):
15182 * diff-mode.el (diff-header-face, diff-file-header-face)
15183 (diff-index-face, diff-hunk-header-face, diff-removed-face)
15184 (diff-added-face, diff-changed-face, diff-function-face)
15185 (diff-context-face, diff-nonexistent-face):
15186 * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
15187 * hilit-chg.el (highlight-changes-face, highlight-changes-delete-face):
15188 * info.el (Info-title-1-face, Info-title-2-face, Info-title-3-face)
15189 (Info-title-4-face):
15190 * isearch.el (isearch-lazy-highlight-face):
15191 * log-view.el (log-view-file-face, log-view-message-face):
15192 * paren.el (show-paren-match-face, show-paren-mismatch-face):
15193 * pcvs-info.el (cvs-header-face, cvs-filename-face, cvs-unknown-face)
15194 (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
15195 (cvs-msg-face):
15196 * smerge-mode.el (smerge-mine-face, smerge-other-face)
15197 (smerge-base-face, smerge-markers-face):
15198 * wid-edit.el (widget-documentation-face, widget-button-face)
15199 (widget-field-face, widget-single-line-field-face)
15200 (widget-inactive-face, widget-button-pressed-face):
15201 * woman.el (woman-italic-face, woman-bold-face, woman-unknown-face)
15202 (woman-addition-face):
15203 * eshell/em-ls.el (eshell-ls-directory-face, eshell-ls-symlink-face)
15204 (eshell-ls-executable-face, eshell-ls-readonly-face)
15205 (eshell-ls-unreadable-face, eshell-ls-special-face)
15206 (eshell-ls-missing-face, eshell-ls-archive-face)
15207 (eshell-ls-backup-face, eshell-ls-product-face)
15208 (eshell-ls-clutter-face):
15209 * eshell/em-prompt.el (eshell-prompt-face):
15210 * eshell/esh-test.el (eshell-test-ok-face, eshell-test-failed-face):
15211 * obsolete/old-whitespace.el (whitespace-highlight-face):
15212 * progmodes/antlr-mode.el (antlr-font-lock-default-face)
15213 (antlr-font-lock-keyword-face, antlr-font-lock-syntax-face)
15214 (antlr-font-lock-ruledef-face, antlr-font-lock-tokendef-face)
15215 (antlr-font-lock-ruleref-face, antlr-font-lock-tokenref-face)
15216 (antlr-font-lock-literal-face):
15217 * progmodes/ebrowse.el (ebrowse-tree-mark-face)
15218 (ebrowse-root-class-face, ebrowse-file-name-face)
15219 (ebrowse-default-face, ebrowse-member-attribute-face)
15220 (ebrowse-member-class-face, ebrowse-progress-face):
15221 * progmodes/make-mode.el (makefile-space-face):
15222 * progmodes/sh-script.el (sh-heredoc-face):
15223 * textmodes/flyspell.el (flyspell-incorrect-face)
15224 (flyspell-duplicate-face):
15225 * textmodes/tex-mode.el (tex-math-face, tex-verbatim-face):
15226 * textmodes/texinfo.el (texinfo-heading-face):
15227 Mark face aliases with "-face" suffix as obsolete.
15228
15229 * mail/feedmail.el (file-name-buffer-file-type-alist): Define for
15230 compiler.
15231
15232 * net/eudc-bob.el (eudc-bob-generic-menu, eudc-bob-image-menu)
15233 (eudc-bob-sound-menu): Use defvar rather than defconst, since
15234 easy-menu-define wants to modify these.
15235
15236 * net/net-utils.el (nslookup): Use make-comint rather than comint-run.
15237
15238 * net/browse-url.el (browse-url-file-url):
15239 * term/internal.el (dos-codepage-setup):
15240 Use default-value rather than default-enable-multibyte-characters.
15241
15242 * progmodes/etags.el (etags-goto-tag-location):
15243 * progmodes/flymake.el (flymake-highlight-line)
15244 (flymake-goto-file-and-line, flymake-goto-line):
15245 * progmodes/gdb-mi.el (gdb-mouse-until, gdb-mouse-jump)
15246 (gdb-goto-breakpoint):
15247 * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
15248 * progmodes/python.el (python-find-function)
15249 (python-pdbtrack-track-stack-file):
15250 * progmodes/verilog-mode.el (verilog-surelint-off):
15251 * term/ns-win.el (ns-open-file-select-line):
15252 * textmodes/bibtex.el (bibtex-validate, bibtex-validate-globally):
15253 Use forward-line rather than goto-line.
15254
15255 * textmodes/reftex-cite.el (reftex-offer-bib-menu):
15256 * textmodes/reftex-index.el (reftex-display-index):
15257 * textmodes/reftex-ref.el (reftex-offer-label-menu):
15258 * textmodes/reftex-toc.el (reftex-toc):
15259 Remove unnecessary bindings of default-major-mode (all are followed by
15260 major-mode check and possible mode switch).
15261
15262 2009-08-31 Nick Roberts <nickrob@snap.net.nz>
15263
15264 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
15265 Handle watchpoints (bug#4282).
15266 (def-gdb-thread-buffer-command): Enable thread to be selected by
15267 clicking without selecting threads buffer first.
15268 (gdb-current-context-command): Use selected frame so that "up",
15269 "down" etc work in the GUD buffer.
15270 (gdb-update): Find selected frame before rendering stack buffer.
15271 (gdb-frame-handler): Set gdb-frame-number for stack buffer.
15272
15273 2009-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
15274
15275 * progmodes/sym-comp.el (displayed-completions): Remove.
15276 (symbol-complete): Use minibuffer-complete.
15277
15278 2009-08-31 Glenn Morris <rgm@gnu.org>
15279
15280 * emacs-lisp/byte-run.el (define-obsolete-face-alias): New macro.
15281
15282 * apropos.el (apropos-symbols-internal):
15283 Handle (obsolete) face aliases.
15284
15285 * faces.el (describe-face): Adjust the output format to be more like
15286 describe-variable, and to mention (obsolete) face aliases.
15287 Adjust the whitespace so that help-setup-xref works.
15288
15289 * calendar/calendar.el (calendar-today-face, diary-face, holiday-face):
15290 * calendar/diary-lib.el (diary-button-face):
15291 Mark these face aliases as obsolete.
15292
15293 * calendar/calendar.el (calendar-today): Doc fix.
15294
15295 2009-08-31 Nick Roberts <nickrob@snap.net.nz>
15296
15297 * progmodes/gdb-mi.el (gdb-control-all-threads)
15298 (gdb-control-current-thread): Force tool bar update.
15299 (gdb-non-stop-handler): New function.
15300 (gdb-init-1): Use it to test if non-stop mode is supported.
15301 Remove unused gdbmi buffer type.
15302
15303 2009-08-30 Kevin Rodgers <kevin.d.rodgers@gmail.com>
15304
15305 * progmodes/grep.el (grep-read-files): Strip trailing <N> from
15306 buffer names not visiting a file (e.g. cloned buffers). (Bug#4210)
15307
15308 2009-08-30 Nick Roberts <nickrob@snap.net.nz>
15309
15310 * comint.el (comint-exec-1): Check command is non-null first.
15311 Part of gdb-mi.el change (2009-08-28).
15312
15313 2009-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
15314
15315 * emacs-lisp/lisp.el (lisp-complete-symbol): Use minibuffer-complete.
15316
15317 2009-08-30 Juanma Barranquero <lekktu@gmail.com>
15318
15319 * subr.el (do-after-load-evaluation): Fix last change: use `mapc'
15320 instead of `dolist' to avoid a recursive require when bootstrapping.
15321
15322 2009-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
15323
15324 * emacs-lisp/lisp.el (field-complete): Use minibuffer-complete.
15325
15326 * net/ldap.el (ldap-search-internal): Use with-current-buffer and push.
15327
15328 * net/imap.el (imap-send-command): Simplify.
15329 (imap-wait-for-tag): point-max -> buffer-size.
15330
15331 * net/ange-ftp.el (internal-ange-ftp-mode): Use define-derived-mode.
15332
15333 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't use symbol-value
15334 with constant argument.
15335
15336 * emacs-lisp/debug.el (debugger-setup-buffer): Make it multibyte.
15337
15338 * emacs-lisp/cl.el (cl-macro-environment): Don't define it here.
15339
15340 * emacs-lisp/checkdoc.el (checkdoc-force-history-flag):
15341 Change default, since most of our files don't have a history.
15342 (checkdoc-display-status-buffer): Don't use a hidden buffer to show to
15343 the user.
15344
15345 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
15346 Add comint-run.
15347
15348 * calc/calc.el: Improve commenting convention.
15349 (calc-digit-map, toplevel): Simplify.
15350
15351 * comint.el (comint-insert-input): Be careful to only set point if we
15352 don't delegate to some other command.
15353
15354 * proced.el (proced-signal-list): Make it an alist.
15355 (proced-grammar-alist): Capitalize names.
15356 (proced-send-signal): Use a non-hidden buffer (since it's displayed).
15357 Disable undo manually and make it read-only.
15358 Use completion-annotate-function.
15359
15360 * minibuffer.el (minibuffer-message): If the current buffer is not
15361 a minibuffer, insert the message in the echo area rather than at the
15362 end of the buffer.
15363 (completion-annotate-function): New variable.
15364 (minibuffer-completion-help): Use it.
15365 (completion--embedded-envvar-table): Environment vars are
15366 always case-sensitive.
15367
15368 2009-08-30 Glenn Morris <rgm@gnu.org>
15369
15370 * progmodes/fortran.el (fortran-start-prog-re): New constant, extracted
15371 from fortran-current-defun.
15372 (fortran-beginning-of-subprogram): Be more precise about finding the
15373 start, to avoid an infinite loop in end-of-defun. (Bug#4259)
15374 (fortran-end-of-subprogram): Simplify.
15375 (fortran-current-defun): Use fortran-start-prog-re.
15376
15377 2009-08-29 Juanma Barranquero <lekktu@gmail.com>
15378
15379 * subr.el (do-after-load-evaluation): Simplify.
15380
15381 2009-08-29 Dan Nicolaescu <dann@ics.uci.edu>
15382
15383 * vc.el (vc-print-log-internal): Move RCS/CVS specific code ...
15384
15385 * vc-rcs.el (vc-rcs-print-log-cleanup): ... here. New function.
15386 (vc-rcs-print-log): Use it.
15387
15388 * vc-cvs.el (vc-cvs-print-log): Use vc-rcs-print-log-cleanup.
15389
15390 2009-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
15391
15392 * paths.el (abbrev-file-name): Move to abbrev.el.
15393 * abbrev.el (abbrev-file-name): Move from paths.el.
15394 Obey user-emacs-directory.
15395 * calc/calc.el (calc-settings-file): Don't autoload and instead obey
15396 user-emacs-directory.
15397 * dos-fns.el (dos-reevaluate-defcustoms): Don't reevaluate
15398 abbrev-file-name and calc-settings-file any more.
15399 * startup.el (command-line): Recompute abbrev-file-name and
15400 abbreviated-home-dir.
15401 (normal-no-mouse-startup-screen): Improve the generic code and get rid
15402 of the special code for when C-h bindings haven't been changed.
15403 (display-startup-echo-area-message): Use with-current-buffer.
15404 (command-line-1): Use a list of strings, rather than a list of lists
15405 of strings for longopts.
15406
15407 * files.el (get-free-disk-space): Use / for default-directory.
15408
15409 * textmodes/ispell.el (ispell-accept-output, ispell-command-loop):
15410 Use with-current-buffer.
15411
15412 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p):
15413 Recognize immutable variables like most-positive-fixnum.
15414 (byte-compile-setq-default): Check and warn if trying to assign
15415 to an immutable variable, or a non-variable.
15416
15417 * progmodes/cc-vars.el (c-comment-continuation-stars):
15418 * progmodes/cc-engine.el (c-looking-at-bos):
15419 * progmodes/cc-cmds.el (c-toggle-auto-state)
15420 (c-forward-into-nomenclature, c-backward-into-nomenclature)
15421 (c-comment-line-break-function): Add version of obsolescence.
15422
15423 2009-08-28 Juri Linkov <juri@jurta.org>
15424
15425 * files.el (magic-fallback-mode-alist): Add ZIP magic number
15426 associated with `archive-mode'.
15427
15428 * image.el (image-type-header-regexps): Use only JPEG magic number
15429 to determine JPEG images, and don't use `image-jpeg-p' because
15430 Emacs can display non-JFIF non-Exif JPEG images.
15431
15432 2009-08-28 Juanma Barranquero <lekktu@gmail.com>
15433
15434 * arc-mode.el (archive-mode):
15435 * emacs-lisp/re-builder.el (re-builder-unload-function):
15436 Protect against the default value of `major-mode' being nil.
15437
15438 2009-08-28 Juanma Barranquero <lekktu@gmail.com>
15439
15440 * international/ucs-normalize.el (ucs-normalize-sort, quick-check-list):
15441 Fix typos in docstrings.
15442
15443 * progmodes/js.el (js--macro-decl-re): Doc fix.
15444 (js--plain-method-re, js--split-name): Refloc docstring.
15445 (js--class-styles, js--make-merged-item, js--splice-into-items):
15446 Fix typos in docstrings; reflow docstrings.
15447 (js--maybe-join, js--function-prologue-beginning, js--flush-caches)
15448 (js--variable-decl-matcher, js--inside-pitem-p)
15449 (js--parse-state-at-point, js--get-all-known-symbols)
15450 (js--symbol-history, js-find-symbol, js--js-references)
15451 (js--moz-interactor, js--js-encode-value, js--read-tab):
15452 Fix typos in docstrings.
15453
15454 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
15455
15456 * textmodes/reftex.el (reftex-get-file-buffer-force):
15457 * progmodes/verilog-mode.el (verilog-batch-execute-func):
15458 * emulation/viper.el (viper-go-away, viper-set-hooks):
15459 * emacs-lisp/re-builder.el (re-builder-unload-function):
15460 * emacs-lisp/bytecomp.el (byte-compile-file):
15461 * ses.el (ses-unload-function):
15462 * hexl.el (hexl-find-file):
15463 * files.el (normal-mode):
15464 * ehelp.el (with-electric-help):
15465 * autoinsert.el (auto-insert-alist):
15466 * arc-mode.el (archive-mode):
15467 Use (default-value 'major-mode) instead of default-major-mode.
15468
15469 * textmodes/ispell.el (ispell-check-version, ispell-send-string):
15470 * international/mule.el (load-with-code-conversion):
15471 * emacs-lisp/debug.el (debug):
15472 * ediff-vers.el (ediff-rcs-get-output-buffer):
15473 * dired.el (dired-internal-noselect): Don't let-bind
15474 default-major-mode around code that doesn't use it.
15475 E.g. buffer creation via get-buffer-create doesn't use it.
15476
15477 2009-08-28 Michael Albinus <michael.albinus@gmx.de>
15478
15479 * net/tramp.el (all): Replace "'(lambda" by "(lambda".
15480 (tramp-handle-file-local-copy): Unset `file-name-handler-alist'
15481 when writing the temp file. Otherwise, epa-file gets confused.
15482 (tramp-register-file-name-handlers): Make it a defun. Move also
15483 `epa-file-handler' to the front of `file-name-handler-alist'.
15484
15485 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
15486
15487 * net/tramp.el (tramp-shell-prompt-pattern): Allow a prompt to
15488 start right after a ^M.
15489 (tramp-root-regexp, tramp-completion-file-name-regexp-unified)
15490 (tramp-completion-file-name-regexp-separate)
15491 (tramp-completion-file-name-regexp-url): Use \\` and \\'.
15492 (tramp-handle-file-attributes, tramp-set-file-uid-gid):
15493 Don't modify last-coding-system-used by accident.
15494 (tramp-completion-file-name-handler): Apply the checks here,
15495 instead during registration.
15496 (tramp-register-file-name-handlers): Renamed from
15497 `tramp-register-file-name-handler'. Register both
15498 `tramp-file-name-handler' and `tramp-completion-file-name-handler'.
15499 (tramp-register-completion-file-name-handler): Remove. (Bug#4260)
15500
15501 2009-08-28 Nick Roberts <nickrob@snap.net.nz>
15502
15503 * progmodes/gdb-mi.el (gdb-use-separate-io-buffer):
15504 Remove variable ...
15505 (gdb-init-1, gdb-display-separate-io-buffer)
15506 (gdb-frame-separate-io-buffer, gdb-setup-windows): ... and
15507 references to it.
15508 (gdb-inferior-io-mode): Use make-comint-in-buffer.
15509 (gdb-inferior-filter): Use comint-output-filter to stop
15510 echoing and remove ^M characters.
15511
15512 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
15513
15514 * emulation/viper-init.el (viper-restore-cursor-type):
15515 * emulation/cua-base.el (cua--update-indications):
15516 Replace default-cursor-type with (default-value 'cursor-type).
15517
15518 * mail/sendmail.el (mail-recover-1):
15519 * international/mule-diag.el (describe-current-coding-system-briefly)
15520 (describe-current-coding-system):
15521 * international/mule-cmds.el (select-safe-coding-system)
15522 (select-message-coding-system)
15523 (set-language-environment-coding-systems, set-locale-environment):
15524 * hexl.el (hexl-insert-multibyte-char):
15525 * dos-w32.el (find-buffer-file-type-coding-system):
15526 * simple.el (what-cursor-position):
15527 Replace uses of default-buffer-file-coding-system
15528 with (default-value 'buffer-file-coding-system).
15529
15530 * emacs-lisp/edebug.el (edebug-display, edebug-outside-excursion):
15531 Replace uses of default-cursor-in-non-selected-windows
15532 with (default-value 'cursor-in-non-selected-windows).
15533 Use with-current-buffer.
15534
15535 * mail/feedmail.el: Use CL macros.
15536 (feedmail-run-the-queue, feedmail-send-it-immediately):
15537 * dos-w32.el (find-buffer-file-type): Replace uses of
15538 default-buffer-file-type with (default-value 'buffer-file-type).
15539
15540 2009-08-28 Glenn Morris <rgm@gnu.org>
15541
15542 * calendar/diary-lib.el (diary-list-entries, diary-goto-entry)
15543 (diary-show-all-entries, diary-mark-entries, diary-make-entry):
15544 Use default-value of major-mode rather than default-major-mode.
15545
15546 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
15547
15548 * Makefile.in (update-elcfiles): Report left over elc files.
15549
15550 * mail/mailalias.el (build-mail-aliases): Use with-temp-buffer,
15551 expand-file-name and with-current-buffer.
15552 (mail-get-names, mail-directory): Use with-current-buffer.
15553
15554 * vc.el (vc-read-revision): New function.
15555 (vc-version-diff, vc-merge): Use it.
15556
15557 2009-08-27 Sam Steingold <sds@gnu.org>
15558
15559 * simple.el (kill-do-not-save-duplicates): New user option.
15560 (kill-new): When it is non-nil, and the new string is the same as
15561 the latest kill, set replace to t to avoid duplicates in kill-ring.
15562
15563 2009-08-27 Julian Scheid <julians37@gmail.com> (tiny change)
15564
15565 * net/tramp.el (tramp-handle-process-file): Do not flush all
15566 caches when `process-file-side-effects' is set.
15567 (tramp-handle-vc-registered): Use `tramp-get-file-exists-command'
15568 instead of `tramp-find-file-exists-command'.
15569 Unset `process-file-side-effects'.
15570
15571 2009-08-27 Michael Albinus <michael.albinus@gmx.de>
15572
15573 * net/tramp.el (tramp-methods): New method "rsyncc".
15574 (top): Add completion function for "rsyncc".
15575 (tramp-message-show-message): New defvar.
15576 (tramp-message, tramp-error): Use it.
15577 (tramp-do-copy-or-rename-file-directly): Extend check for direct
15578 remote copying.
15579 (tramp-do-copy-or-rename-file-out-of-band): Handle new
15580 `tramp-methods' entry `copy-env' of "rsyncc".
15581 (tramp-vc-registered-read-file-names): New defconst.
15582 (tramp-vc-registered-file-names): New defvar.
15583 (tramp-handle-vc-registered): Implement optimization strategy.
15584 (tramp-run-real-handler): Add `tramp-vc-file-name-handler'.
15585 (tramp-vc-file-name-handler): New defun.
15586 (tramp-get-ls-command, tramp-get-test-command)
15587 (tramp-get-file-exists-command, tramp-get-remote-ln)
15588 (tramp-get-remote-perl, tramp-get-remote-stat)
15589 (tramp-get-remote-id): Remove superfluous `with-current-buffer'.
15590
15591 * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
15592 (tramp-cache-inhibit-cache): Extend doc string. It allows also
15593 timestamps.
15594 (tramp-get-file-property): Check for timestamps in
15595 `tramp-cache-inhibit-cache'.
15596 (tramp-set-file-property): Write timestamp.
15597
15598 2009-08-27 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
15599
15600 * language/japan-util.el (japanese-symbol-table): Add entries for
15601 cp932-2-byte.
15602
15603 * international/characters.el: Add category `j' to cp932-2-byte.
15604
15605 2009-08-27 Kenichi Handa <handa@m17n.org>
15606
15607 * international/fontset.el (build-default-fontset-data): New macro.
15608 (setup-default-fontset): Use build-default-fontset-data for CJK,
15609 tibetan, ethiopic, and ipa.
15610
15611 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
15612
15613 * cus-start.el (default-major-mode): Customize `major-mode' instead.
15614 (enable-multibyte-characters): Not customizable any more.
15615
15616 * subr.el (default-mode-line-format, default-header-line-format)
15617 (default-line-spacing, default-abbrev-mode, default-ctl-arrow)
15618 (default-direction-reversed, default-truncate-lines)
15619 (default-left-margin, default-tab-width, default-case-fold-search)
15620 (default-left-margin-width, default-right-margin-width)
15621 (default-left-fringe-width, default-right-fringe-width)
15622 (default-fringes-outside-margins, default-scroll-bar-width)
15623 (default-vertical-scroll-bar, default-indicate-empty-lines)
15624 (default-indicate-buffer-boundaries, default-fringe-indicator-alist)
15625 (default-fringe-cursor-alist, default-scroll-up-aggressively)
15626 (default-scroll-down-aggressively, default-fill-column)
15627 (default-cursor-type, default-buffer-file-type)
15628 (default-cursor-in-non-selected-windows)
15629 (default-buffer-file-coding-system, default-major-mode)
15630 (default-enable-multibyte-characters): Mark as obsolete.
15631
15632 2009-08-27 Dan Nicolaescu <dann@ics.uci.edu>
15633
15634 * vc-dir.el (vc-dir-update): Remove debug helper.
15635
15636 * vc-cvs.el (vc-cvs-update-changelog): Fix typo.
15637
15638 2009-08-26 Sam Steingold <sds@gnu.org>
15639
15640 * simple.el (save-interprogram-paste-before-kill): New user option.
15641 (kill-new): When `save-interprogram-paste-before-kill' is non-nil,
15642 save the interprogram-paste into kill-ring before overriding it
15643 with the Emacs kill.
15644
15645 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
15646
15647 * vc.el (vc-trunk-p): Rename to vc-rcs-trunk-p and move to vc-rcs.el.
15648 (vc-minor-part): Rename to vc-rcs-minor-part and move to vc-rcs.el.
15649 (vc-default-previous-revision): Rename to vc-rcs-previous-revision
15650 and move to vc-rcs.el.
15651 (vc-default-next-revision): Rename to vc-rcs-next-revision and
15652 move to vc-rcs.el.
15653 (vc-cvs-update-changelog): Move to vc-cvs.el, use vc-call-backend.
15654 (vc-rcs-update-changelog): Remove.
15655 (vc-update-changelog-rcs2log): Rename to vc-rcs-update-changelog
15656 and move to vc-rcs.el.
15657
15658 * vc-rcs.el (vc-rcs-latest-on-branch-p, vc-rcs-checkin)
15659 (vc-rcs-checkout, vc-rcs-rollback): Adjust for the vc-rcs-trunk-p
15660 renaming.
15661 (vc-rcs-trunk-p, vc-rcs-minor-part, vc-rcs-previous-revision)
15662 (vc-rcs-next-revision, vc-rcs-update-changelog): Move here from
15663 vc.el, renamed to be RCS specific.
15664
15665 * vc-cvs.el (vc-cvs-previous-revision, vc-cvs-next-revision):
15666 New functions.
15667 (vc-cvs-update-changelog): Move here from vc.el.
15668
15669 * vc-sccs.el (vc-sccs-previous-revision, vc-sccs-next-revision):
15670 New functions.
15671
15672 2009-08-26 Stefan Monnier <monnier@iro.umontreal.ca>
15673
15674 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix up last change.
15675
15676 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
15677
15678 * vc-git.el (vc-git-register): Use "git add" for directories.
15679 (vc-git-stash, vc-git-stash-show): New functions.
15680 (vc-git-extra-menu-map): Bind them.
15681
15682 * vc-dir.el (vc-dir-node-directory, vc-dir-update): Get the parent
15683 directory correctly in case the item is a directory itself.
15684
15685 * vc.el: Document the desired behavior for reverted files in the
15686 `added' state.
15687 (vc-default-prettify-state-info): Remove function, unused.
15688
15689 * vc-bzr.el (vc-bzr-prettify-state-info): Remove function, unused.
15690
15691 2009-08-26 Glenn Morris <rgm@gnu.org>
15692
15693 * bindings.el (standard-mode-line-format): Reposition dashes in
15694 which-func entry. (Bug#4217)
15695
15696 * files.el (enable-local-variables, enable-local-eval)
15697 (safe-local-variable-values, safe-local-eval-forms): Mark as risky in
15698 the defcustoms.
15699 (auto-mode-alist, ignored-local-variables)
15700 (save-some-buffers-action-alist): Move risky declarations to the
15701 definitions.
15702 (dabbrev-case-fold-search, dabbrev-case-replace, display-time-string)
15703 (font-lock-defaults, format-alist, imenu--index-alist)
15704 (imenu-generic-expression, input-method-alist, minor-mode-alist)
15705 (mode-line-buffer-identification, mode-line-client, mode-line-modes)
15706 (mode-line-modified, mode-line-mule-info, mode-line-position)
15707 (mode-line-process, mode-line-remote, outline-level)
15708 (parse-time-rules, rmail-output-file-alist)
15709 (special-display-buffer-names, vc-mode):
15710 Move risky declarations to the relevant files.
15711 * bindings.el (mode-line-client, mode-line-mule-info, mode-line-remote)
15712 (mode-line-modified, mode-line-process, mode-line-position)
15713 (mode-line-modes, mode-line-buffer-identification, minor-mode-alist)
15714 * font-core.el (font-lock-defaults):
15715 * format.el (format-alist):
15716 * vc-hooks.el (vc-mode):
15717 * window.el (special-display-buffer-names):
15718 * international/mule-cmds.el (input-method-alist):
15719 Define riskiness here (dumped file) rather than in files.el.
15720 * dabbrev.el (dabbrev-case-fold-search, dabbrev-case-replace):
15721 * imenu.el (imenu-generic-expression, imenu--index-alist):
15722 * outline.el (outline-level):
15723 * time.el (display-time-string):
15724 * calendar/parse-time.el (parse-time-rules):
15725 * mail/rmailout.el (rmail-output-file-alist):
15726 Autoload riskiness here, rather than placing in files.el.
15727
15728 2009-08-26 Andreas Schwab <schwab@linux-m68k.org>
15729
15730 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Signal overflow.
15731
15732 2009-08-25 Michael Albinus <michael.albinus@gmx.de>
15733
15734 * simple.el (process-file-side-effects): New defvar.
15735
15736 * dired-aux.el (dired-show-file-type):
15737 * vc.el (vc-diff-internal):
15738 * vc-arch.el (vc-arch-diff):
15739 * vc-bzr.el (vc-bzr-sha1, vc-bzr-revision-completion-table):
15740 * vc-cvs.el (vc-cvs-state, vc-cvs-diff, vc-cvs-revision-table):
15741 * vc-git.el (vc-git-registered, vc-git-working-revision)
15742 (vc-git-find-revision, vc-git-diff, vc-git-revision-table)
15743 (vc-git--empty-db-p):
15744 * vc-hooks.el (vc-user-login-name):
15745 * vc-svn.el (vc-svn-registered, vc-svn-state)
15746 (vc-svn-dir-extra-headers, vc-svn-find-revision):
15747 * progmodes/grep.el (grep-probe): Let-bind
15748 `process-file-side-effects' with nil.
15749
15750 * net/dbus.el (dbus-ping): Add optional parameter TIMEOUT.
15751
15752 * net/tramp-gvfs.el (top): Use timeout of 100 msec pinging GVFS
15753 daemon. Replace ping by checking for running service for bluez
15754 and zeroconf. (Bug#4239)
15755
15756 2009-08-25 Kevin Ryde <user42@zip.com.au>
15757
15758 * net/dig.el (dig): Add autoload cookie.
15759
15760 2009-08-25 Glenn Morris <rgm@gnu.org>
15761
15762 * emacs-lisp/bytecomp.el (byte-compile-eval): Fix test for cl in
15763 load-history for absolute file-names.
15764 (byte-compile-file-form-require): Warn about use of the cl package.
15765
15766 * format.el (format-alist): Doc fix.
15767
15768 * play/bubbles.el (top-level): Don't require cl at run-time.
15769
15770 * progmodes/verilog-mode.el (top-level): Don't require lucid (and hence
15771 run-time cl).
15772
15773 2009-08-24 Dmitry Dzhus <dima@sphinx.net.ru>
15774
15775 * progmodes/gdb-mi.el (gdb-mapcar*): Replacement for `mapcar*'
15776 from cl package.
15777 (gdb-table-add-row, gdb-table-string): Use `gdb-mapcar*'.
15778
15779 2009-08-24 Jay Belanger <jay.p.belanger@gmail.com>
15780
15781 * calc/calc-alg.el (math-trig-rewrite)
15782 (math-hyperbolic-trig-rewrite): New functions.
15783 (calc-simplify): Simplify trig functions when asked.
15784
15785 2009-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
15786
15787 * diff-mode.el (diff-find-source-location): Avoid goto-line.
15788
15789 2009-08-24 Kenichi Handa <handa@m17n.org>
15790
15791 * language/ind-util.el (mapthread): Delete it.
15792 (combinatorial): New function.
15793 (indian--puthash-cv): Use combinatorial instead of mapthread.
15794
15795 2009-08-22 Kevin Ryde <user42@zip.com.au>
15796
15797 * emacs-lisp/checkdoc.el (checkdoc-force-history-flag)
15798 (checkdoc-arguments-in-order-flag): Add safe-local-variable booleanp.
15799 (checkdoc-symbol-words): Add safe-local-variable for list of strings.
15800 Clarify docstring that the value is strings not symbols.
15801 (checkdoc-list-of-strings-p): New function.
15802
15803 2009-08-22 Glenn Morris <rgm@gnu.org>
15804
15805 * files.el (auto-mode-alist):
15806 * hippie-exp.el (he-concat-directory-file-name):
15807 * lpr.el (lpr-windows-system, printer-name):
15808 * ls-lisp.el (ls-lisp-emulation, ls-lisp-use-insert-directory-program):
15809 * ps-print.el (ps-windows-system):
15810 * startup.el (command-line):
15811 * emulation/viper-ex.el (viper-glob-function):
15812 * international/mule-cmds.el (set-language-environment-coding-systems):
15813 * net/ange-ftp.el (ange-ftp-write-region):
15814 * obsolete/fast-lock.el (fast-lock-cache-name):
15815 Remove code for defunct system-types emx, macos, mswindows, next-mach,
15816 unisoft-unix, vax-vms, win32, w32.
15817
15818 * calendar/diary-lib.el (diary-mark-entries-1): Only mark all days of a
15819 given name if the pattern is not more specific.
15820
15821 * calendar/lunar.el (lunar-phase-names): New option.
15822 (lunar-phase): Doc fix.
15823 (lunar-cycles-per-year): New constant.
15824 (lunar-index): New function.
15825 (lunar-phase-list, diary-lunar-phases): Use lunar-index.
15826 (lunar-phase-name): Use lunar-phase-names.
15827 (calendar-lunar-phases): Use format.
15828 (lunar-new-moon-on-or-after): Use lunar-cycles-per-year.
15829
15830 * progmodes/cperl-mode.el (cperl-imenu-name-and-position):
15831 Copy imenu-example--name-and-position function here for own use.
15832 (cperl-xsub-scan): Use cperl-imenu-name-and-position.
15833
15834 * bs.el (bs--redisplay):
15835 * cus-edit.el (custom-redraw):
15836 * ibuffer.el (ibuffer-bury-buffer):
15837 * server.el (server-goto-line-column):
15838 * startup.el (command-line-1):
15839 * strokes.el (strokes-xpm-for-stroke):
15840 * term.el (term-display-buffer-line):
15841 * view.el (View-goto-line):
15842 * calc/calc.el (calc-do, calc-trail-buffer):
15843 * play/gamegrid.el (gamegrid-add-score-insecure):
15844 * progmodes/ada-mode.el (ada-compile-goto-error):
15845 * progmodes/ada-xref.el (ada-xref-find-in-modified-ali):
15846 (ebrowse-select-1st-to-9nth):
15847 * progmodes/cperl-mode.el (cperl-time-fontification):
15848 * progmodes/ebrowse.el (ebrowse-toggle-file-name-display)
15849 * progmodes/gud.el (gud-display-line):
15850 (idlwave-shell-display-line):
15851 * progmodes/idlw-shell.el (idlwave-shell-goto-frame)
15852 * progmodes/make-mode.el (makefile-browser-toggle):
15853 (vhdl-speedbar-port-copy, vhdl-compose-components-package):
15854 * progmodes/vhdl-mode.el (vhdl-speedbar-find-file)
15855 * textmodes/picture.el (picture-draw-rectangle):
15856 * textmodes/reftex-index.el (reftex-index-goto-letter):
15857 (reftex-select-jump-to-previous):
15858 * textmodes/reftex-sel.el (reftex-find-start-point)
15859 * textmodes/reftex-toc.el (reftex-toc, reftex-toc-restore-region):
15860 (rst-straighten-deco-spacing, rst-section-tree, rst-toc):
15861 * textmodes/rst.el (rst-promote-region, rst-straighten-decorations)
15862 * textmodes/tex-mode.el (tex-compilation-parse-errors):
15863 * textmodes/two-column.el (2C-associated-buffer):
15864 Use forward-line rather than goto-line.
15865
15866 * emulation/vi.el (vi-goto-line): Don't warn about non-interactive
15867 goto-line.
15868
15869 * international/ucs-normalize.el (nfd, decomposition-translation-alist)
15870 (decomposition-char-recursively, alist-list-to-vector, quick-check-list)
15871 (quick-check-list-to-regexp): Declare.
15872
15873 * progmodes/make-mode.el (makefile-browser-insert-selection):
15874 Use goto-char rather than goto-line.
15875
15876 * progmodes/prolog.el (compilation-error-regexp-alist)
15877 (compilation-forget-errors): Declare.
15878
15879 2009-08-22 Juri Linkov <juri@jurta.org>
15880
15881 * progmodes/grep.el (lgrep, rgrep): At the beginning
15882 set `dir' to `default-directory' unless `dir' is a non-nil
15883 readable directory. (Bug#4052)
15884 (lgrep, rgrep): Change a weird way to report an error
15885 from using `read-string' to using `error'.
15886 Instead of using interactive arguments in the function body,
15887 add new argument `confirm'.
15888
15889 2009-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
15890
15891 * textmodes/remember.el (remember-buffer):
15892 * progmodes/cperl-mode.el (cperl-vc-header-alist):
15893 * calendar/icalendar.el (icalendar-convert-diary-to-ical)
15894 (icalendar-extract-ical-from-buffer):
15895 * net/newst-treeview.el (newsticker-groups-filename):
15896 * net/newst-backend.el (newsticker-cache-filename):
15897 * speedbar.el (speedbar-update-speed, speedbar-navigating-speed)
15898 (speedbar-ignored-path-expressions, speedbar-ignored-path-regexp)
15899 (speedbar-add-ignored-path-regexp, speedbar-line-path)
15900 (speedbar-buffers-line-path, speedbar-path-line)
15901 (speedbar-buffers-line-path):
15902 * epg.el (epg-passphrase-callback-function, epg-start-sign-keys)
15903 (epg-sign-keys):
15904 * epa.el (epa-display-verify-result):
15905 * progmodes/pascal.el (pascal-outline): Add version of obsolescence.
15906
15907 2009-08-21 Glenn Morris <rgm@gnu.org>
15908
15909 * progmodes/js.el (inferior-moz-process): Fix declaration.
15910
15911 * imenu.el (imenu-example--name-and-position): Fix obsolescence message.
15912
15913 * obsolete/rnewspost.el (news-mail-reply):
15914 Use goto-char rather than goto-line.
15915
15916 * term/ns-win.el (ns-open-file-select-line):
15917 Use line-beginning-position rather than goto-line.
15918
15919 * apropos.el (apropos-command):
15920 * ehelp.el (electric-helpify):
15921 * printing.el (pr-show-setup):
15922 * strokes.el (strokes-help):
15923 * tutorial.el (tutorial--describe-nonstandard-key)
15924 (tutorial--detailed-help):
15925 * woman.el (woman-mini-help, woman-display-extended-fonts):
15926 * calc/calc-help.el (calc-describe-key):
15927 * emulation/edt.el (edt-electric-helpify):
15928 * international/mule-diag.el (mule-diag):
15929 * play/yow.el (apropos-zippy):
15930 * progmodes/python.el (python-describe-symbol):
15931 * progmodes/vhdl-mode.el (vhdl-doc-variable, vhdl-doc-mode):
15932 * textmodes/table.el (*table--cell-describe-mode)
15933 (*table--cell-describe-bindings):
15934 Use help-print-return-message rather than the now obsolete alias.
15935
15936 * calendar/cal-move.el (calendar-cursor-to-nearest-date)
15937 (calendar-cursor-to-visible-date):
15938 * play/5x5.el (5x5-position-cursor):
15939 * play/decipher.el (decipher):
15940 * play/gomoku.el (gomoku-goto-xy):
15941 * play/landmark.el (lm-goto-xy):
15942 * play/mpuz.el (mpuz-paint-errors, mpuz-paint-statistics)
15943 (mpuz-paint-digit):
15944 Use forward-line, not goto-line.
15945
15946 * mail/rmail.el (rmail-obsolete): Delete custom group.
15947 (rmail-pop-password, rmail-pop-password-required): Make into aliases.
15948 (rmail-remote-password, rmail-remote-password-required):
15949 Remove unneeded :set-after and :set properties.
15950
15951 2009-08-21 Michael Albinus <michael.albinus@gmx.de>
15952
15953 * net/dbus.el (top): Initialize only when `dbusbind' is loaded.
15954
15955 2009-08-21 Dan Nicolaescu <dann@ics.uci.edu>
15956
15957 * loadup.el: Remove leftover macos code.
15958
15959 * vc-git.el (vc-git-annotate-command): Run asynchronously.
15960 Explicitly pass the date format to git blame so that user local
15961 so that the output format can be parsed.
15962
15963 2009-08-20 Michael Albinus <michael.albinus@gmx.de>
15964
15965 * net/dbus.el (top): Don't check for (getenv
15966 "DBUS_SESSION_BUS_ADDRESS"). It's done in dbusbind.c now.
15967
15968 2009-08-19 Magnus Henoch <magnus.henoch@gmail.com>
15969
15970 * log-edit.el (log-edit-strip-single-file-name): New var.
15971 (log-edit-insert-changelog): Use it. Bug#3571
15972
15973 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
15974
15975 * subr.el (read-passwd): Use read-key so keypad keys work as well.
15976 Bug#3287
15977
15978 * help.el (help-print-return-message): Rename from
15979 print-help-return-message.
15980
15981 * log-view.el (log-view-mode-map): Remove `q' binding, and unreliable
15982 cvs-mode-map parent hack.
15983 (log-view-mode): Derive from special-mode.
15984
15985 * linum.el (linum-mode): window-size-change-functions is redundant.
15986 Adapt to new window-configuration-change-hook behavior.
15987 (linum-after-size, linum-after-config): Remove.
15988
15989 * imenu.el (imenu-example--name-and-position)
15990 (imenu-example--lisp-extract-index-name)
15991 (imenu-example--create-lisp-index, imenu-example--create-c-index):
15992 Mark as obsolete.
15993
15994 * progmodes/prolog.el (inferior-prolog-error-regexp-alist): New var.
15995 (inferior-prolog-mode): Use it.
15996 (inferior-prolog-load-file): Reset list of errors.
15997
15998 2009-08-19 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
15999
16000 * language/tibetan.el ("Tibetan"): Fix sample-text entry.
16001
16002 * language/tai-viet.el ("TaiViet"): Fix sample-text entry.
16003
16004 2009-08-19 Michael Albinus <michael.albinus@gmx.de>
16005
16006 * net/dbus.el (top): Apply `dbus-init-bus' only if the session bus
16007 is running already.
16008
16009 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
16010
16011 * subr.el (listify-key-sequence-1): Use normal syntax since those
16012 integers are nowadays always represented by the same (positive) number
16013 on all platforms.
16014 (read-key-empty-map): New const.
16015 (read-key-delay): New var.
16016 (read-key): New function.
16017 (force-mode-line-update): Use with-current-buffer.
16018 (locate-user-emacs-file): Don't forget to abbreviate the file name.
16019 (start-process-shell-command, start-file-process-shell-command):
16020 Discourage the use of command-args.
16021
16022 2009-08-19 Glenn Morris <rgm@gnu.org>
16023
16024 * emacs-lisp/authors.el (authors-fixed-entries): Remove cvtmail.
16025
16026 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
16027
16028 * simple.el (choose-completion-string): Don't rely on
16029 minibuffer-completing-file-name and ad-hoc checks to decide whether
16030 to continue completion or not.
16031
16032 * minibuffer.el (minibuffer-hide-completions): New function.
16033 (completion--do-completion): Use it.
16034 (completions-annotations): New face.
16035 (completion--insert-strings): Use it.
16036 (completion-pcm--delim-wild-regex): Add docstring.
16037 (completion-pcm--string->pattern): Add support for 0-width delimiters
16038 in completion-pcm--delim-wild-regex.
16039
16040 2009-08-18 Stefan Monnier <monnier@iro.umontreal.ca>
16041
16042 * international/ucs-normalize.el (ucs-normalize-hfs-nfd-post-read-conversion):
16043 Remove unused var `buffer-modified-p'.
16044
16045 * minibuffer.el (completion--do-completion): Move point for the #b001
16046 case as well (bug#4176).
16047 (minibuffer-complete, minibuffer-complete-word): Don't move point.
16048
16049 2009-08-18 Michael Albinus <michael.albinus@gmx.de>
16050
16051 * net/dbus.el (dbus-init-bus): Declare. Apply it for the :system
16052 and :session buses.
16053
16054 2009-08-18 Kenichi Handa <handa@m17n.org>
16055
16056 * international/ucs-normalize.el (ucs-normalize-version):
16057 Change to 1.1.
16058 (ucs-normalize-hfs-nfd-pre-write-conversion): New function.
16059 (utf-8-hfs): Make it perform normalization on encoding too.
16060
16061 * textmodes/paragraphs.el: Change to utf-8. Adjust coding cookie.
16062 (sentence-end-without-space): Delete duplicated chars.
16063 (sentence-end-base): Likewise.
16064
16065 * textmodes/sgml-mode.el: Change to utf-8. Adjust coding cookie.
16066 (html-mode): Delete duplicated chars from sentence-end-base.
16067
16068 * textmodes/texinfo.el: Change to utf-8. Adjust coding cookie.
16069 (texinfo-mode): Delete duplicated chars from sentence-end-base.
16070
16071 2009-08-17 Chong Yidong <cyd@stupidchicken.com>
16072
16073 * files.el (hack-one-local-variable): If the mode function is for
16074 a minor mode, pass it an argument (Bug#4148).
16075
16076 2009-08-17 Michael Albinus <michael.albinus@gmx.de>
16077
16078 * net/tramp.el (tramp-register-completion-file-name-handler):
16079 Check also for (member 'partial-completion completion-styles).
16080
16081 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
16082
16083 * progmodes/cperl-mode.el (cperl-electric-paren): Don't expand
16084 abbrev (Bug#3943).
16085
16086 2009-08-16 Ilya Zakharevich <ilyaz@cpan.org>
16087
16088 * progmodes/cperl-mode.el: Merge upstream 6.2.
16089 (cperl-mode-syntax-table): Modify syntax entry for ["'`].
16090 (cperl-forward-re): Check cperl-brace-recursing.
16091 (cperl-highlight-charclass): New function.
16092 (cperl-find-pods-heres): Use it.
16093 (cperl-fill-paragraph): Synch to save-excursion placement used upstream.
16094 (cperl-beautify-regexp-piece): Fix column calculation.
16095 (cperl-make-regexp-x): Handle case where point is between "q" and "rs".
16096 (cperl-beautify-level): Don't process entire regexp.
16097 (cperl-build-manpage, cperl-perldoc): Bind Man-switches before
16098 calling man.
16099 (cperl-tips-faces, cperl-mode, cperl-electric-backspace): Doc fix.
16100 (cperl-init-faces): Build a list in the normal way.
16101
16102 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
16103
16104 * calendar/parse-time.el (parse-time-string-chars): Save match
16105 data.
16106
16107 2009-08-16 Stefan Monnier <monnier@iro.umontreal.ca>
16108
16109 * progmodes/sql.el (sql-product-alist): Add :name tag to entries.
16110 (sql-product): Use it.
16111 (sql-mode-menu): Auto-generate the menu based on sql-product-alist.
16112 (sql-set-product): Add completion.
16113 (sql-highlight-oracle-keywords, sql-highlight-postgres-keywords)
16114 (sql-highlight-linter-keywords, sql-highlight-ms-keywords)
16115 (sql-highlight-ansi-keywords, sql-highlight-sybase-keywords)
16116 (sql-highlight-informix-keywords, sql-highlight-interbase-keywords)
16117 (sql-highlight-ingres-keywords, sql-highlight-solid-keywords)
16118 (sql-highlight-mysql-keywords, sql-highlight-sqlite-keywords)
16119 (sql-highlight-db2-keywords): Remove.
16120 (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
16121 (sql-highlight-product): Use derived-mode-p.
16122 (sql-set-sqli-buffer): Use with-current-buffer.
16123 (sql-connect-informix, sql-connect-ingres, sql-connect-oracle):
16124 Simplify.
16125
16126 * emacs-lisp/lisp-mode.el (lisp-indent-region): Remove unused function.
16127
16128 * term.el: Fix commenting convention, turn comments into docstrings.
16129
16130 2009-08-16 E. Jay Berkenbilt <ejb@ql.org> (tiny change)
16131
16132 * whitespace.el (whitespace-style): Doc fix (Bug#3661).
16133
16134 2009-08-16 Jan Seeger <jan.seeger@thenybble.de> (tiny change)
16135
16136 * calendar/parse-time.el (parse-time-string-chars): Compute using
16137 character classes, to handle non-ascii characters (Bug#3190).
16138
16139 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
16140
16141 * progmodes/sh-script.el (sh-maybe-here-document): Avoid inserting
16142 another heredoc if the user adds another < (Bug#3226).
16143
16144 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
16145 Don't initialize based on window-system (Bug#4124).
16146
16147 * facemenu.el (facemenu-read-color): Use a completion function
16148 that accepts any defined color, such as RGB triplets (Bug#3677).
16149
16150 * files.el (get-free-disk-space): Change fallback default
16151 directory to /. Expand DIR argument before switching to fallback.
16152 Suggested by Kevin Ryde (Bug#2631, Bug#3911).
16153
16154 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
16155
16156 * files.el (load-library): Doc fix.
16157
16158 2009-08-15 Michael Kifer <kifer@cs.stonybrook.edu>
16159
16160 * emulation/viper-cmd.el (viper-insert-isearch-string): New function.
16161 (viper-if-string): Redefine C-s in the minibuffer to insert the last
16162 incremental search string.
16163
16164 * ediff-init.el (ediff-coding-system): Use escape-quoted in case of
16165 XEmacs.
16166
16167 * ediff-merg.el (ediff-merge-region-is-non-clash-to-skip)
16168 (ediff-merge-region-is-non-clash)
16169 (ediff-skip-merge-region-if-changed-from-default-p): Use defun.
16170 Also check if the job is really a merge job.
16171
16172 * ediff.el (ediff-current-file): New function.
16173
16174 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
16175
16176 * progmodes/js.el: Edit docstrings throughout to follow Emacs
16177 conventions.
16178 (js-insert-and-indent): Delete function.
16179 (js-mode-map): Don't bind keys to js-insert-and-indent.
16180 (js-beginning-of-defun): Rename from js--beginning-of-defun.
16181 (js-end-of-defun): Rename from js--end-of-defun.
16182 (js-auto-indent-flag): Delete variable.
16183
16184 2009-08-14 Chong Yidong <cyd@stupidchicken.com>
16185
16186 * progmodes/js.el: Remove proclaim statement.
16187 Defvar which-func-imenu-joiner-function to silence compiler.
16188
16189 * files.el (auto-mode-alist): Use js-mode for .js files.
16190
16191 * progmodes/js2-mode.el: Remove file.
16192
16193 * Makefile.in (ELCFILES): Add js.el, and remove js2-mode.el.
16194
16195 * speedbar.el (speedbar-supported-extension-expressions): Add .js.
16196
16197 * progmodes/hideshow.el (hs-special-modes-alist): Add js-mode entry.
16198
16199 2009-08-14 Daniel Colascione <dan.colascione@gmail.com>
16200 Karl Landstrom <karl.landstrom@brgeight.se>
16201
16202 * progmodes/js.el: New file.
16203
16204 2009-08-14 Mark A. Hershberger <mah@everybody.org>
16205
16206 * timezone.el (timezone-parse-date): Add ability to understand ISO
16207 basic format (minimal separators) dates in addition to the
16208 already-supported extended format dates.
16209
16210 2009-08-14 Eli Zaretskii <eliz@gnu.org>
16211
16212 * international/ucs-normalize.el: Add a `coding' file variable.
16213
16214 * Makefile.in (ELCFILES): Add international/ucs-normalize.elc.
16215
16216 2009-08-14 Sam Steingold <sds@gnu.org>
16217
16218 * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
16219
16220 2009-08-13 Chong Yidong <cyd@stupidchicken.com>
16221
16222 * faces.el (help-argument-name): Define it here instead of
16223 help-fns.el, because in daemon mode help-fns.el may be loaded when
16224 faces are still uninitialized (Bug#1078).
16225
16226 * help-fns.el (help-argument-name): Move defface to faces.el.
16227
16228 2009-08-13 Nick Roberts <nickrob@snap.net.nz>
16229
16230 * progmodes/gdb-mi.el (gdb-inferior-io-mode): Use start-process to
16231 create buffer with a pty but no process so that GDB can make the
16232 inferior the controlling process.
16233
16234 2009-08-13 Taichi Kawabata <kawabata.taichi@gmail.com>
16235
16236 * international/ucs-normalize.el: New file.
16237
16238 2009-08-13 Richard Stallman <rms@gnu.org>
16239
16240 * mail/rmail.el (rmail-get-attr-names):
16241 Accept an attribute header that is too short.
16242
16243 * mail/rmail.el (rmail-forget-messages):
16244 Ignore nil elt in rmail-message-vector. Use dotimes.
16245
16246 * progmodes/compile.el (compilation-goto-locus):
16247 Use next-error-move-function.
16248
16249 * simple.el (next-error-move-function): New variable.
16250
16251 2009-08-12 Juri Linkov <juri@jurta.org>
16252
16253 * progmodes/grep.el (lgrep): Ensure that `default-directory' is
16254 always non-nil. (Bug#4052)
16255
16256 * replace.el (read-regexp): Return empty string when
16257 `default-value' is nil.
16258 (keep-lines-read-args): Don't use empty string as the
16259 default value for `read-regexp'. (Bug#2495)
16260
16261 2009-08-12 Juri Linkov <juri@jurta.org>
16262
16263 * international/mule-cmds.el (ucs-insert): Change arguments
16264 from `arg' to `character', `count', `inherit' to be the same
16265 as in `insert-char'. Doc fix. (Bug#4039)
16266
16267 * international/mule-conf.el (utf-16be-with-signature): Doc fix.
16268
16269 2009-08-12 Juri Linkov <juri@jurta.org>
16270
16271 * files-x.el: New file.
16272
16273 * files.el: Move code that deals with adding/deleting
16274 file/directory-local variables to files-x.el.
16275
16276 * Makefile.in (ELCFILES): Add files-x.elc.
16277
16278 2009-08-11 Dmitry Dzhus <dima@sphinx.net.ru>
16279
16280 * progmodes/gdb-mi.el (gdb-line-posns): New helper which helps not
16281 to use `goto-line'.
16282 (gdb-place-breakpoints, gdb-get-location): Rewritten without
16283 `goto-line'.
16284 (gdb-invalidate-disassembly): Do not refresh upon receiving
16285 'update signal. Instead, update all disassembly buffers only after
16286 threads list.
16287 (gdb): Send -target-detach when buffer is killed (Bug#3794).
16288 (gdb-starting): Moved -data-list-register-names...
16289 (gdb-stopped): ...here so it's sent when first thread stops.
16290 (gdb-registers-handler-custom): Do nothing if register names are
16291 unknown yet.
16292
16293 * progmodes/gud.el (gud-stop-subjob): Rewritten without macros
16294 from `gdb-mi.el' to avoid extra tangling.
16295
16296 * progmodes/gdb-mi.el (gdb-gud-context-call): Reverting previous
16297 change which breaks `gud-def' definitions used in `gdb'.
16298 (gdb-update-gud-running): No extra fuss for updating frame number.
16299
16300 2009-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
16301
16302 * international/mule-cmds.el (mule-keymap, mule-menu-keymap)
16303 (describe-language-environment-map, setup-language-environment-map)
16304 (set-coding-system-map): Move initialization into declaration.
16305 (set-language-info-alist): Last arg to define-key-after can be skipped.
16306
16307 * international/quail.el (quail-completion-1): Simplify.
16308 (quail-define-rules): Use slightly more compact code.
16309 (quail-insert-decode-map): Propertize keys, compact columns.
16310
16311 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
16312 Add goto-line.
16313
16314 2009-08-10 Miles Bader <miles@gnu.org>
16315
16316 * progmodes/js2-mode.el (js2-warning, js2-error, js2-jsdoc-tag)
16317 (js2-jsdoc-type, js2-jsdoc-value, js2-function-param)
16318 (js2-instance-member, js2-private-member, js2-private-function-call)
16319 (js2-jsdoc-html-tag-name, js2-jsdoc-html-tag-delimiter)
16320 (js2-magic-paren, js2-external-variable):
16321 Remove "-face" suffix from face names.
16322 (js2-jsdoc-highlight-helper, js2-highlight-jsdoc)
16323 (js2-highlight-undeclared-vars, js2-peek-token)
16324 (js2-parse-function-params, js2-mode-show-errors)
16325 (js2-mode-show-warnings, js2-make-magic-delimiter)
16326 (js2-mode-highlight-magic-parens): Update to use new face names.
16327
16328 2009-08-09 Michael Albinus <michael.albinus@gmx.de>
16329
16330 * net/tramp.el (tramp-get-ls-command-with-dired): New defun.
16331 (tramp-handle-insert-directory): Handle "--dired". (Bug#4075)
16332
16333 2009-08-09 Chong Yidong <cyd@stupidchicken.com>
16334
16335 * subr.el: Provide hashtable-print-readable.
16336
16337 * progmodes/hideshow.el (hs-special-modes-alist): Don't use
16338 hs-c-like-adjust-block-beginning.
16339 (hs-hide-block-at-point): Stop hiding at the beginning of
16340 hs-block-end-regexp (Bug#700).
16341
16342 2009-08-09 Dmitry Dzhus <dima@sphinx.net.ru>
16343
16344 * progmodes/gdb-mi.el (gdb-gud-context-call): Does not need to be
16345 a macro.
16346 (gdb-registers-handler-custom): Do not fail when register names
16347 are unavailable.
16348
16349 2009-08-08 Dmitry Dzhus <dima@sphinx.net.ru>
16350
16351 * progmodes/gdb-mi.el (gdb-control-all-threads)
16352 (gdb-control-current-thread): Interactive setters for
16353 `gdb-gud-control-all-threads' to use in menu.
16354 (gdb-show-run-p): Show «Go» when process is not active.
16355 (gud-tool-bar-map): Add non-stop/A,T indicator. Uses
16356 gud/thread.xpm and gud/all.xpm.
16357
16358 2009-08-08 Yoni Rabkin <yoni@rabkins.net>
16359
16360 * net/net-utils.el (net-utils-font-lock-keywords): New var.
16361 (nslookup-font-lock-keywords): Make it a variable.
16362 (net-utils-mode): New mode for viewing diagnostic network output.
16363 (net-utils-remove-ctrl-m-filter): Set inhibit-read-only.
16364 (net-utils-run-simple): New function.
16365 (ifconfig, iwconfig, netstat, arp, route): Use it.
16366
16367 2009-08-08 Dmitry Dzhus <dima@sphinx.net.ru>
16368
16369 * progmodes/gdb-mi.el (gdb-read-memory-custom)
16370 (gdb-memory-set-address, def-gdb-set-positive-number)
16371 (def-gdb-memory-format, def-gdb-memory-unit): Update memory buffer
16372 after changing settings.
16373 (gdb-invalidate-disassembly): Update when first shown.
16374 (gdb-edit-locals-value): Fixed.
16375 (gdb-registers-handler-custom): Print registers in right order and
16376 allow changing register values (only for current thread yet).
16377 (gdb-breakpoints-mode-map): Don't assume threads buffer is present.
16378 (gdb-threads-mode-map): Don't assume breakpoints buffer is present.
16379 (gdb-disassembly-handler-custom, gdb-stack-list-frames-custom)
16380 (gdb-locals-handler-custom, gdb-registers-handler-custom): Thread
16381 info in mode name.
16382 (gdb-registers-mode-map): TAB to switch to locals.
16383
16384 2009-08-08 Eli Zaretskii <eliz@gnu.org>
16385
16386 * mail/rmail.el (rmail-add-mbox-headers)
16387 (rmail-set-message-counters-counter): Search for
16388 rmail-unix-mail-delimiter instead of just "From ". (Bug#4076)
16389
16390 2009-08-08 Glenn Morris <rgm@gnu.org>
16391
16392 * Makefile.in (ELCFILES): Update.
16393
16394 2009-08-07 Eli Zaretskii <eliz@gnu.org>
16395
16396 * mail/sendmail.el (mail-yank-original): Set
16397 buffer-file-coding-system from the one used by the message whose
16398 text is yanked.
16399
16400 * calc/calc-graph.el (calc-graph-plot): Set calc-graph-last-device
16401 to "windows" when "pgnuplot" is used.
16402 (calc-graph-command, calc-gnuplot-command, calc-graph-init): Don't
16403 call accept-process-output if "pgnuplot" is used.
16404 (calc-graph-init): Don't send -display and -geometry to
16405 "pgnuplot". If "pgnuplot" is used, glean gnuplot version by
16406 running "pgnuplot -V" with shell-command-to-string.
16407
16408 * calc/calc.el (calc-gnuplot-name) [windows-nt]: Use "pgnuplot" as
16409 the default.
16410
16411 2009-08-07 Eli Zaretskii <eliz@gnu.org>
16412
16413 * Makefile.in (ELCFILES): org/org-export-latex.elc renamed to
16414 org/org-latex.elc.
16415
16416 2009-08-07 Dan Nicolaescu <dann@ics.uci.edu>
16417
16418 * vc-dispatcher.el (vc-resynch-window): Update comment.
16419
16420 * term.el (term-handle-ansi-escape): Add comments with the
16421 terminfo capabilities implemented.
16422
16423 2009-08-06 Dmitry Dzhus <dima@sphinx.net.ru>
16424
16425 * progmodes/gdb-mi.el (gdb-var-create-regexp): Removed.
16426 (gdb-var-create-handler): Rewritten using JSON parser.
16427 (gdb-propertize-header): Moved earlier.
16428 (gdb-set-header): Removed to avoid duplication.
16429 (gdb-thread-list-handler-custom, gdb-invalidate-disassembly):
16430 Refresh disassembly buffers only after threads list have been
16431 update.
16432 (gdb-threads-header, gdb-registers-header): Per-buffer header line
16433 variables.
16434
16435 2009-08-04 Juri Linkov <juri@jurta.org>
16436
16437 * files.el: Commands to add/delete file/directory-local variables.
16438 (read-file-local-variable, read-file-local-variable-value)
16439 (read-file-local-variable-mode, modify-file-local-variable)
16440 (modify-file-local-variable-prop-line)
16441 (modify-dir-local-variable): New functions.
16442 (add-file-local-variable, delete-file-local-variable)
16443 (add-file-local-variable-prop-line, delete-file-local-variable-prop-line)
16444 (add-dir-local-variable, delete-dir-local-variable)
16445 (copy-file-locals-to-dir-locals, copy-dir-locals-to-file-locals)
16446 (copy-dir-locals-to-file-locals-prop-line): New commands.
16447
16448 2009-08-04 Chong Yidong <cyd@stupidchicken.com>
16449
16450 * abbrev.el (insert-abbrev-table-description): Prettify output.
16451 Suggested by Karl Chen.
16452
16453 2009-08-04 Dmitry Dzhus <dima@sphinx.net.ru>
16454
16455 * progmodes/gdb-mi.el (gdb-frame-number): Initialize with nil.
16456 (gdb-overlay-arrow-position): Rename to `gdb-disassembly-position'.
16457 (gdb-overlay-arrow-position, gdb-thread-position)
16458 (gdb-disassembly-position): Declare variables.
16459 (gdb-wait-for-pending): Function now.
16460 (gdb-add-subscriber, gdb-delete-subscriber, gdb-get-subscribers)
16461 (gdb-emit-signal, gdb-buf-publisher): Declare before first use so
16462 compilation goes smoothly.
16463 (gdb, gdb-non-stop, gdb-buffers): New customization groups.
16464 (gdb-non-stop-setting): New customization setting which replaces
16465 `gdb-non-stop' so changing it doesn't break active GDB session.
16466 (gdb-stack-buffer-locations, gdb-stack-buffer-addresses)
16467 (gdb-thread-buffer-verbose-names, gdb-thread-buffer-arguments)
16468 (gdb-thread-buffer-locations, gdb-thread-buffer-addresses)
16469 (gdb-show-threads-by-default): New customization options.
16470 (gdb-buffer-type, gdb-buffer-shows-main-thread-p): New helper
16471 routines.
16472 (gdb-get-buffer-create): Send buffers update signal when they are
16473 created.
16474 (gdb-invalidate-locals, gdb-invalidate-registers)
16475 (gdb-invalidate-breakpoints)
16476 (gdb-invalidate-threads, gdb-invalidate-disassembly)
16477 (gdb-invalidate-memory): Accept update signal.
16478 (gdb-current-context-command): Use --frame option.
16479 (gdb-update-gud-running, gdb-running, gdb-setq-thread-number):
16480 Implement `gdb-frame-number' selection logic.
16481 (gdb-show-run-p, gdb-show-stop-p): Helper functions which decide
16482 whether to show GUD toolbar buttons.
16483 (gdb-thread-exited): Unselect current thread when it exits.
16484 (gdb-stopped): Typo fixed (now really runs `gdb-stopped-hooks').
16485 (gdb-mark-line): Routine which sets overlay arrow or inverses
16486 video on fringeless displays.
16487 (gdb-table, gdb-table-add-row, gdb-table-string): Structure used
16488 to build aligned columns of data in GDB buffers and set text
16489 properties line-by-line.
16490 (gdb-invalidate-breakpoints)
16491 (gdb-breakpoints-list-handler-custom)
16492 (gdb-thread-list-handler-custom, gdb-disassembly-handler-custom)
16493 (gdb-stack-list-frames-custom, gdb-locals-handler-custom)
16494 (gdb-registers-handler-custom): Align data columns.
16495 (gdb-locals-handler-custom): Now prints data like in variable
16496 declarations.
16497 (gdb-jump-to, gdb-file-button, gdb-insert-file-location-button):
16498 Removed confusing buttons.
16499 (gdb-invalidate-threads): Append --frame.
16500 (gdb-threads-mode-map, gdb-breakpoints-mode-map): TAB to switch
16501 between breakpoints/threads buffers.
16502 (gdb-set-window-buffer): Now can ignore dedicated windows.
16503 (gdb-propertize-header): Use `gdb-set-window-buffer'.
16504 (def-gdb-thread-buffer-simple-command): Numerous typos fixed.
16505 (def-gdb-thread-buffer-gud-command): Replaces
16506 `def-gdb-thread-buffer-gdb-command' and uses standard GUD commands
16507 for fine thread control.
16508 (gdb-preempt-existing-or-display-buffer): New function used to
16509 display bound buffers without breaking window layout.
16510 (gdb-frame-location): Replaces `gdb-insert-frame-location'.
16511 (gdb-select-frame): New version of `gdb-frames-select' which now
16512 sets `gdb-frame-number' so commands may use --frame option instead
16513 of inner debugger state.
16514 (gdb-frame-handler): Do not set `gdb-frame-number'.
16515 (gdb-threads-mode-map): Select threads with mouse.
16516
16517 * progmodes/gud.el (gdb-gud-context-call): Declare function to
16518 avoid compilation warning.
16519 (gud-menu-map, gud-minor-mode-map): Use `gdb-show-run-p` and
16520 `gdb-show-stop-p`.
16521
16522 * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create):
16523 Argument `key' renamed to `buffer-type'.
16524 (gdb-current-context-buffer-name): Do not add thread info to
16525 buffer name when no thread is selected.
16526 (gdbmi-record-list, gdb-shell): Try to handle GDB `shell'
16527 command (bug 3794).
16528 (gdb-thread-selected): Handle `=thread-selected' notification.
16529 (gdb-wait-for-pending): New macro to deal with congestion problems.
16530 (gdb-breakpoints-list-handler-custom): Don't fail on pending
16531 breakpoints.
16532 (gdb-invalidate-disassembly): Use 'fullname instead of 'file.
16533 This fixes problem similar to one described in bug 3947.
16534 (gud-menu-map): More menu items.
16535 (gdb-init-1): Reset `gdb-thread-number' to nil.
16536
16537 * progmodes/gud.el (gud-stop-subjob, gud-menu-map): Respect GDB
16538 non-stop settings.
16539
16540 * progmodes/gdb-mi.el (gdb-thread-number): Initialize with nil.
16541 (gdb-current-context-command): Do not append --thread if
16542 `gdb-thread-number' is nil.
16543 (gdb-running-threads-count, gdb-stopped-threads-count): New
16544 variables.
16545 (gdb-non-stop, gdb-gud-control-all-threads, gdb-switch-reasons)
16546 (gdb-stopped-hooks, gdb-switch-when-another-stopped): New
16547 customization options.
16548 (gdb-gud-context-command, gdb-gud-context-call): New wrappers for
16549 GUD commands.
16550 (gdb): `gud-def' definitions changed to use `gdb-gud-context-call'.
16551 (gdb-init-1): Activate non-stop mode if `gdb-non-stop' is enabled.
16552 (gdb-setq-thread-number, gdb-update-gud-running): New functions to
16553 set `gdb-thread-number' and update `gud-running' properly.
16554 (gdb-running): Update threads list when new threads appear.
16555 (gdb-stopped): Support non-stop operation and new thread switching
16556 logic.
16557 (gdb-jsonify-buffer, gdb-json-read-buffer, gdb-json-string)
16558 (gdb-json-partial-output): New set of JSON routines.
16559 (def-gdb-auto-update-trigger): New `signal-list' optional
16560 argument.
16561 (gdb-thread-list-handler-custom): Update `gud-running',
16562 `gdb-stopped-threads-count' and `gdb-running-threads-count'.
16563 (def-gdb-thread-buffer-gdb-command, gdb-interrupt-thread)
16564 (gdb-continue-thread, gdb-step-thread): New commands for fine
16565 thread execution control.
16566 (gud-menu-map): New menu items to switch non-stop options.
16567 (gdb-reset): Cleanup `gdb-thread-position' overlay arrow marker.
16568 (gdb-send): Mimic RET properly (bug 3794).
16569
16570 * progmodes/gdb-mi.el (gdb-rules-name-maker)
16571 (gdb-rules-buffer-mode, gdb-rules-update-trigger): Accessors for
16572 gdb-buffer-rules.
16573 (def-gdb-auto-update-handler): New nopreserve optional argument.
16574 (gdb-stack-list-frames-custom): Print stack from top to bottom.
16575
16576 * progmodes/gdb-mi.el (gdb-pc-address): Removed unused variable.
16577 (gdb-threads-list, gdb-breakpoints-list): New assoc lists.
16578 (gdb-parent-mode): New mode to derive other GDB modes from.
16579 (gdb-display-disassembly-for-thread)
16580 (gdb-frame-disassembly-for-thread): New commands for threads
16581 buffer.
16582
16583 * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create)
16584 (gdb-init-1, gdb-bind-function-to-buffer, gdb-add-subscriber)
16585 (gdb-get-subscribers, gdb-emit-signal, gdb-buf-publisher)
16586 (gdb-update): We now store all GDB buffers in a list so that they
16587 can be updated by traversing a list instead of calling invalidate
16588 triggers explicitly.
16589 (def-gdb-trigger-and-handler): New macro to define trigger-handler
16590 pair for GDB buffer.
16591 (gdb-stack-buffer-name): Add thread information.
16592 (gdb-add-pending, gdb-pending-p, gdb-delete-pending): Macros to
16593 handle pending triggers.
16594 (gdb-threads-mode-map, def-gdb-thread-buffer-command)
16595 (def-gdb-thread-buffer-simple-command)
16596 (gdb-display-stack-for-thread, gdb-display-locals-for-thread)
16597 (gdb-display-registers-for-thread, gdb-frame-stack-for-thread)
16598 (gdb-frame-locals-for-thread, gdb-frame-registers-for-thread):
16599 New commands which show buffers bound to thread.
16600 (gdb-stack-list-locals-regexp): Removed unused regexp.
16601
16602 * progmodes/gdb-mi.el (gdb-breakpoints-buffer-name)
16603 (gdb-locals-buffer-name, gdb-registers-buffer-name)
16604 (gdb-memory-buffer-name, gdb-stack-buffer-name): Do not switch
16605 to (gud-comint-buffer) in *-buffer-name functions
16606 because (gdb-get-target-string) already does that.
16607 (gdb-locals-handler-custom, gdb-registers-handler-custom)
16608 (gdb-changed-registers-handler): Rewritten without regexps.
16609
16610 * progmodes/gdb-mi.el: Basic thread selection support.
16611 (gdb-thread-number): New variable.
16612 (gdb-current-context-command): New macro which adds --thread
16613 option to command.
16614 (gdb-threads-mode-map): Select thread with SPC.
16615 (gdb-thread-list-handler-custom): Mark current thread with overlay
16616 arrow. Synchronize GDB thread and Emacs thread.
16617 (gdb-select-thread): New command which selects current thread.
16618 (gdb-invalidate-frames, gdb-invalidate-locals)
16619 (gdb-invalidate-registers): Use --thread option.
16620
16621 2009-08-04 Michael Albinus <michael.albinus@gmx.de>
16622
16623 * net/tramp.el (top): Make check for tramp-gvfs loading more
16624 robust. (Bug#3977)
16625 (tramp-handle-insert-file-contents): `unwind-protect' must be
16626 inside `with-parsed-tramp-file-name'.
16627
16628 * net/tramp-gvfs.el (top): Remove superfluous message when loading
16629 fails.
16630
16631 2009-08-03 Nick Roberts <nickrob@snap.net.nz>
16632
16633 * progmodes/gud.el (jdb): Set gud-jdb-classpath-string to current
16634 directory if CLASSPATH is not set.
16635
16636 2009-08-03 Michael Albinus <michael.albinus@gmx.de>
16637
16638 * net/tramp.el (tramp-rfn-eshadow-update-overlay-regexp):
16639 New defconst.
16640 (tramp-rfn-eshadow-update-overlay): Use it. (Bug#4004)
16641
16642 2009-08-02 Kevin Ryde <user42@zip.com.au>
16643
16644 * net/newst-backend.el (newsticker--raw-url-list-defaults):
16645 Update freshmeat link. Delete newsforge.com as it seems gone.
16646
16647 2009-08-02 Chong Yidong <cyd@stupidchicken.com>
16648
16649 * select.el (x-set-selection): Doc fix (Bug#4021).
16650
16651 * w32-fns.el (x-set-selection): Doc fix (Bug#4021).
16652
16653 * help-fns.el (describe-variable): Treat list return values from
16654 dir-locals-find-file properly (Bug#4005).
16655
16656 2009-08-02 Julian Scheid <julians37@googlemail.com> (tiny change)
16657
16658 * net/tramp.el (tramp-debug-message): Print also microseconds.
16659
16660 2009-08-02 Michael Albinus <michael.albinus@gmx.de>
16661
16662 * net/tramp.el (tramp-handle-insert-file-contents): Optimize, when BEG
16663 or END is non-nil.
16664 (tramp-handle-vc-registered): Use `tramp-cache-inhibit-cache'.
16665 (tramp-get-debug-buffer): Change `outline-regexp' according to new
16666 format.
16667
16668 * net/tramp-cache.el (tramp-cache-inhibit-cache): New defvar.
16669 (tramp-get-file-property): Use it.
16670
16671 * autorevert.el (auto-revert-handler): Allow
16672 `auto-revert-tail-mode' for remote files.
16673
16674 2009-08-02 Jason Rumney <jasonr@gnu.org>
16675
16676 * minibuffer.el (read-file-name): Treat confirm options to
16677 MUSTMATCH as nil when invoking x-file-dialog. (Bug#3969)
16678
16679 2009-08-02 Chong Yidong <cyd@stupidchicken.com>
16680
16681 * font-lock.el (font-lock-string-face, font-lock-builtin-face)
16682 (font-lock-variable-name-face, font-lock-constant-face): Darken
16683 the colors for light backgrounds.
16684
16685 2009-08-01 Eli Zaretskii <eliz@gnu.org>
16686
16687 * mail/rmailsum.el (rmail-header-summary): Ignore letter-case of
16688 month names. (Bug#3987)
16689
16690 2009-07-31 Chong Yidong <cyd@stupidchicken.com>
16691
16692 * simple.el (line-move-finish): Pass whole number to
16693 line-move-to-column.
16694 (line-move-visual): Perform hscroll to the recorded position.
16695
16696 2009-07-30 Jay Belanger <jay.p.belanger@gmail.com>
16697
16698 * calc/calc-mode.el (calc-matrix-brackets): Remove "P" from prompt.
16699
16700 2009-07-29 Alan Mackenzie <acm@muc.de>
16701
16702 * progmodes/cc-defs.el (c-version): Bump to 5.31.7.
16703
16704 2009-07-29 Dmitry Dzhus <dima@sphinx.net.ru>
16705
16706 * progmodes/gdb-mi.el (gdb-goto-breakpoint)
16707 (gdb-place-breakpoints): Use full path when setting breakpoints.
16708
16709 2009-07-29 Jay Belanger <jay.p.belanger@gmail.com>
16710
16711 * calc/calc.el (calc-mode-map): Add keybinding for
16712 `calc-transpose-lines'.
16713
16714 2009-07-29 Vincent Belaïche <vincent.belaiche@gmail.com>
16715
16716 * calc/calc-misc.el (calc-transpose-lines): New function.
16717
16718 2009-07-28 Michael Albinus <michael.albinus@gmx.de>
16719
16720 * net/tramp.el (tramp-do-copy-or-rename-file): Add messages.
16721 Simplify check for out-of-band methods.
16722 (tramp-do-copy-or-rename-file-out-of-band): Allow both files to be
16723 remote. Remove messages which are in `tramp-do-copy-or-rename-file'.
16724
16725 2009-07-28 Dan Nicolaescu <dann@ics.uci.edu>
16726
16727 * vc-git.el (vc-git-checkin): Fix typo.
16728
16729 2009-07-28 Steve Yegge <steve.yegge@gmail.com>
16730
16731 * progmodes/js2-mode.el: New file.
16732
16733 2009-07-28 Nick Roberts <nickrob@snap.net.nz>
16734
16735 * progmodes/gud.el (jdb): Add gud-pstar to dump object information.
16736 (gud-menu-map): Adjust tooltip accordingly.
16737
16738 2009-07-27 Dan Nicolaescu <dann@ics.uci.edu>
16739
16740 * vc-bzr.el (vc-bzr-print-log): Pass multiple arguments to bzr log.
16741 (vc-bzr-log-view-mode): Adjust log-view-file-re.
16742
16743 * add-log.el (change-log-mode-map): Add a menu.
16744
16745 2009-07-27 Michael Albinus <michael.albinus@gmx.de>
16746
16747 * net/dbus.el (dbus-call-method-non-blocking): Handle the case the
16748 function returns nil.
16749 (dbus-handle-event): Handle special return value :ignore.
16750 Reported by Jan Moringen <jan.moringen@uni-bielefeld.de>.
16751
16752 2009-07-26 Chong Yidong <cyd@stupidchicken.com>
16753
16754 * view.el (view-mode-enable): Don't define Helper-return-blurb if
16755 it's not needed.
16756
16757 2009-07-25 Eli Zaretskii <eliz@gnu.org>
16758
16759 Fix Bug#3888:
16760
16761 * w32-vars.el (x-select-enable-clipboard): Doc fix.
16762
16763 * term/pc-win.el (x-display-name, x-colors)
16764 (x-select-enable-clipboard, x-select-text): Doc fix.
16765
16766 * term/common-win.el (x-display-name, x-colors): Doc fix.
16767
16768 * term/ns-win.el (x-select-text, x-setup-function-keys, x-colors)
16769 (xw-defined-colors): Doc fix.
16770
16771 * w32-fns.el (x-select-text, x-setup-function-keys)
16772 (x-get-selection, x-set-selection): Doc fix.
16773
16774 * term/x-win.el (x-select-text, x-setup-function-keys)
16775 (x-select-enable-clipboard, xw-defined-colors): Doc fix.
16776
16777 * select.el (x-set-selection): Doc fix.
16778
16779 2009-07-25 Michael Albinus <michael.albinus@gmx.de>
16780
16781 * net/zeroconf.el (zeroconf-init): Check for "GetVersionString"
16782 instead of "IsNSSSupportAvailable". Avahi ought to work also when
16783 "IsNSSSupportAvailable" method is not available. Reported by
16784 Steve Youngs <steve@sxemacs.org>.
16785
16786 2009-07-24 Kenichi Handa <handa@m17n.org>
16787
16788 * international/characters.el: Fix setting of category ?C, ?|, ?K,
16789 and ?H. Fix setting of case for Latin Extended and Greek Extended.
16790 (build-unicode-category-table): Fix range checks.
16791
16792 2009-07-24 Dan Nicolaescu <dann@ics.uci.edu>
16793
16794 * vc-dispatcher.el (vc-resynch-buffers-in-directory): Make sure
16795 the buffer we try to sync is current when calling
16796 vc-resynch-buffer.
16797
16798 * vc-dir.el (vc-dir-resynch-file): Make sure vc-dir-update does
16799 not show up to date files.
16800
16801 2009-07-24 Glenn Morris <rgm@gnu.org>
16802
16803 * emacs-lisp/elint.el (elint-current-buffer, elint-defun):
16804 Add autoload cookies. If necessary, initialize.
16805 (elint-log): Handle non-file buffers.
16806 (elint-initialize): Add optional argument to reinitialize.
16807 (elint-find-builtin-variables): Save excursion.
16808
16809 2009-07-23 Dan Nicolaescu <dann@ics.uci.edu>
16810
16811 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
16812 for Lint.
16813
16814 2009-07-22 Dan Nicolaescu <dann@ics.uci.edu>
16815
16816 * vc.el (vc-print-log-internal): New function, split out from ...
16817 (vc-print-log): ... here.
16818 (vc-dir-move-to-goal-column): Declare.
16819
16820 * vc-git.el (vc-git-add-signoff): New variable.
16821 (vc-git-checkin): Use it.
16822 (vc-git-toggle-signoff): New function.
16823 (vc-git-extra-menu-map): Bind it to menu.
16824 (vc-git--run-command-string): Accept a nil FILE argument.
16825 (vc-git-stash-list): New function.
16826 (vc-git-dir-extra-headers): Use it.
16827
16828 2009-07-23 Glenn Morris <rgm@gnu.org>
16829
16830 * help-fns.el (describe-variable): Describe ignored and risky local
16831 variables in a similar way to that in which we describe safe ones.
16832
16833 * emacs-lisp/bytecomp.el (byte-compile-from-buffer)
16834 (byte-compile-output-file-form, byte-compile-output-docform)
16835 (byte-compile-file-form-defmumble, byte-compile-output-as-comment):
16836 Give some more local variables with common names a "bytecomp-" prefix,
16837 so as not to shadow things during compilation.
16838 * emacs-lisp/cl-macs.el (load-time-value)
16839 * emacs-lisp/cl.el (cl-compiling-file): Update for the name-change
16840 `outbuffer' to `bytecomp-outbuffer'.
16841
16842 * emacs-lisp/elint.el (elint-standard-variables): Remove most members,
16843 since the next two variables cover them automatically now.
16844 (elint-builtin-variables, elint-autoloaded-variables): New.
16845 (elint-unknown-builtin-args): Remove all members, since they can be
16846 parsed automatically now.
16847 (elint-extra-errors): New.
16848 (elint-env-add-env, elint-env-add-macro): Use cadr.
16849 (elint-current-buffer): Use or. Change final message.
16850 (elint-get-top-forms): Use line-end-position.
16851 (elint-init-env): Use cadr. Handle autoload, declare-function,
16852 and defalias.
16853 (elint-add-required-env): Doc fix. Use or. Standardize error.
16854 (regexp-assoc): Remove unused function.
16855 (elint-top-form): Set elint-current-pos, to record the start of the
16856 top-level form, for compilation-mode.
16857 (elint-form): Trap errors in macro expansion. Use dolist.
16858 (elint-unbound-variable): Use elint-builtin-variables and
16859 elint-autoloaded-variables.
16860 (elint-get-args): Use cadr, or.
16861 (elint-check-cond-form): Use dolist, cadr.
16862 (elint-check-condition-case-form): Doc fix. Use cadr.
16863 Use elint-extra-errors.
16864 (elint-log): New function.
16865 (elint-error, elint-warning): Use elint-log for a bytecomp-style format.
16866 Distinguish errors and warnings.
16867 (elint-log-message): Use with-current-buffer. Inhibit read-only.
16868 Use a bytecomp-style format.
16869 (elint-clear-log): Preserve default-directory. Inhibit read-only.
16870 (elint-get-log-buffer): Use compilation mode. Disable undo.
16871 Don't truncate lines.
16872 (elint-initialize): Set builtin and autoloaded variable lists.
16873 Only process elint-unknown-builtin-args if non-nil.
16874 (elint-find-builtin-variables, elint-find-autoloaded-variables):
16875 New functions.
16876 (elint-find-builtin-args): Doc fix. Handle "BODY...)".
16877
16878 2009-07-22 Kevin Ryde <user42@zip.com.au>
16879
16880 * net/newst-backend.el (newsticker--parse-atom-1.0)
16881 (newsticker--parse-rss-0.91, newsticker--parse-rss-0.92)
16882 (newsticker--parse-rss-1.0):
16883 * progmodes/idlwave.el (idlwave-mode):
16884 * progmodes/idlw-shell.el (idlwave-shell-mode):
16885 * progmodes/vera-mode.el (vera-mode):
16886 * progmodes/verilog-mode.el (verilog-auto-inst, verilog-auto):
16887 * progmodes/vhdl-mode.el (vhdl-mode):
16888 * textmodes/table.el (table-generate-source)
16889 (table--warn-incompatibility):
16890 Hyperlink urls in docstrings with URL `...'.
16891
16892 2009-07-22 Glenn Morris <rgm@gnu.org>
16893
16894 * emacs-lisp/advice.el, emacs-lisp/checkdoc.el:
16895 * emacs-lisp/debug.el, emacs-lisp/elp.el, emacs-lisp/gulp.el:
16896 * emacs-lisp/lisp.el, emacs-lisp/pp.el, emacs-lisp/trace.el:
16897 Remove leading * from defcustom docs.
16898
16899 * simple.el (blink-matching-paren-distance): Bump to 100k. (Bug#3889)
16900
16901 * emacs-lisp/shadow.el (shadows-compare-text-p): Remove leading * from
16902 defcustom doc.
16903 (list-load-path-shadows): Optionally, just return shadows as a string.
16904
16905 * mail/emacsbug.el (report-emacs-bug): Include any load-path shadows.
16906
16907 2009-07-21 Chong Yidong <cyd@stupidchicken.com>
16908
16909 * mail/rmailedit.el (rmail-edit-mode): Use
16910 auto-save-include-big-deletions.
16911
16912 * mail/rmail.el (rmail-variables): Use
16913 auto-save-include-big-deletions.
16914
16915 * files.el (auto-save-mode): Revert 2009-07-21 and 2009-07-16
16916 changes.
16917
16918 2009-07-21 Jay Belanger <jay.p.belanger@gmail.com>
16919
16920 * calc/calc.el (calc-undo-length): New variable.
16921 (calc-quit): Truncate rather than eliminate `calc-undo-list'.
16922
16923 2009-07-21 Richard Stallman <rms@gnu.org>
16924
16925 * files.el (auto-save-mode): Handle buffer-save-size = -2
16926 for toggling mode.
16927
16928 2009-07-21 Glenn Morris <rgm@gnu.org>
16929
16930 * textmodes/ispell.el (ispell-looking-back): Update declaration.
16931
16932 * calendar/todo-mode.el (calendar-current-date): Update declaration.
16933
16934 * ps-print.el (ps-jitify, ps-lazify): Remove aliases only used to
16935 silence compiler. Instead...
16936 (jit-lock-fontify-now, lazy-lock-fontify-region): ...Declare.
16937 (ps-print-ensure-fontified): Update for above function name changes.
16938
16939 * printing.el (pr-mh-get-msg-num, pr-mh-show)
16940 (pr-mh-start-of-uncleaned-message): Remove aliases only used to
16941 silence compiler. Instead...
16942 (mh-get-msg-num, mh-show, mh-start-of-uncleaned-message): ...Declare.
16943 (mh-show-buffer): Only define for compiler.
16944 (pr-mh-current-message): Update for above function name changes.
16945
16946 * files.el (abort-if-file-too-large): Explicitly pass `filename'
16947 as an argument.
16948 (find-file-noselect, insert-file-1): Update for above change.
16949
16950 * mail/rmail.el (rmail-retry-ignored-headers): Bump :version.
16951
16952 * mail/mailclient.el (mailclient-send-it): Fix message.
16953
16954 * emacs-lisp/edebug.el (cl-debug-env): Only define for compiler.
16955 (edebug-eval): Check cl-debug-env is bound.
16956 (print-level, print-circle): Don't redefine built-in variables.
16957
16958 * emacs-lisp/cust-print.el: Remove leading * from defcustom docs.
16959 (custom-print-vectors): Remove old comments from doc.
16960
16961 * emerge.el (menu-bar-emerge-menu): Remove unused variable.
16962 (emerge-version): Make the variable an obsolete alias for the
16963 emacs-version variable. Make the function obsolete.
16964 (emerge-fast-keymap, emerge-edit-keymap): Make a separate menu for
16965 Emerge options, rather than merging in into the main Options menu.
16966 (emerge-options-menu): Adjust menu text. Use buttons for skip prefers
16967 and auto advance modes. Disable edit/fast items when not relevant.
16968
16969 2009-07-20 Dan Nicolaescu <dann@ics.uci.edu>
16970
16971 * term/vt420.el (terminal-init-vt420): Fix typo.
16972
16973 2009-07-20 Sam Steingold <sds@gnu.org>
16974
16975 * progmodes/ada-mode.el (compile-auto-highlight): Remove the
16976 variable (removed from compile.el on 2004-03-11).
16977
16978 2009-07-20 Chong Yidong <cyd@stupidchicken.com>
16979
16980 * files.el (hack-local-variables-filter): Fix last change.
16981
16982 2009-07-19 Juri Linkov <juri@jurta.org>
16983
16984 * files.el (ignored-local-variables): Add `dir-local-variables-alist'.
16985 (dir-local-variables-alist): New buffer-local variable.
16986 (hack-local-variables-filter): If variable is not dir-local,
16987 i.e. `dir-name' is nil, then remove it from `dir-local-variables-alist',
16988 because file-local overrides dir-local.
16989 (c-postprocess-file-styles) <declare-function>:
16990 Remove obsolete declaration.
16991 (hack-dir-local-variables): Add dir-local variable/value pair to
16992 `dir-local-variables-alist' and remove duplicates. Doc fix.
16993
16994 * help-fns.el (describe-variable): Add information about
16995 file-local and dir-local variables.
16996
16997 2009-07-19 Chong Yidong <cyd@stupidchicken.com>
16998
16999 * files.el (hack-local-variables-filter): Rewrite.
17000
17001 2009-07-19 Glenn Morris <rgm@gnu.org>
17002
17003 * progmodes/verilog-mode.el (verilog-error-regexp-add-xemacs):
17004 Silence compiler by only defining on XEmacs.
17005
17006 * international/mule.el (auto-coding-regexp-alist): Only match
17007 BABYL... at the start of buffer, not of lines. (Bug#3790)
17008
17009 * calendar/cal-menu.el (cal-menu-set-date-title): Handle calls from
17010 non-calendar buffers (Bug#3862). Restore "not on a date" message.
17011 (cal-menu-context-mouse-menu): Doc fix.
17012
17013 * desktop.el (desktop-buffers-not-to-save): Set :version tag.
17014
17015 * simple.el (mail-user-agent): Doc fix. Set :version tag.
17016
17017 2009-07-18 Juri Linkov <juri@jurta.org>
17018
17019 * info.el: Virtual Info keyword finder.
17020 (add-to-list) <Info-virtual-files>: Add "\\`\\*Finder.*\\*\\'".
17021 (Info-finder-file): New variable.
17022 (Info-finder-find-file): New function.
17023 (finder-known-keywords, finder-package-info)
17024 (find-library-name, lm-commentary): Use defvar and
17025 declare-function to silence compiler warnings.
17026 (Info-finder-find-node): New function.
17027 (info-finder): New command.
17028
17029 * subr.el (process-kill-buffer-query-function): New function.
17030 (add-hook)<kill-buffer-query-functions>: Add hook
17031 `process-kill-buffer-query-function'.
17032
17033 2009-07-18 Alan Mackenzie <acm@muc.de>
17034
17035 * progmodes/cc-mode.el (c-before-hack-hook)
17036 (c-postprocess-file-styles): Give invocation of `c-set-style'
17037 DONT-OVERRIDE parameter of t. Already set style variables will
17038 thus not be overridden by style settings given by `c-file-syle'.
17039
17040 * files.el (hack-local-variables-filter): Remove entries with
17041 duplicate keys from `file-local-variables-alist'.
17042
17043 2009-07-18 Eli Zaretskii <eliz@gnu.org>
17044
17045 * simple.el (deactivate-mark, activate-mark, set-mark): Don't call
17046 x-set-selection if display-selections-p returns nil for the
17047 current frame.
17048
17049 2009-07-18 Chong Yidong <cyd@stupidchicken.com>
17050
17051 * simple.el (region-active-p, use-region-p): Doc fix (Bug#3873).
17052
17053 2009-07-18 Eli Zaretskii <eliz@gnu.org>
17054
17055 * desktop.el (desktop-buffers-not-to-save): Default value is nil.
17056 Accept nil in addition to a regexp.
17057 (desktop-files-not-to-save): Add "(ftp)$" to the default regexp.
17058 Accept nil in addition to a regexp.
17059 (desktop-save-buffer-p): Don't use desktop-buffers-not-to-save for
17060 buffers that have an associated file. Handle nil values of
17061 desktop-buffers-not-to-save and desktop-files-not-to-save.
17062 (Bug#3833)
17063
17064 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
17065 (x-disown-selection-internal): New functions.
17066
17067 2009-07-18 Nick Roberts <nickrob@snap.net.nz>
17068
17069 * progmodes/gdb-mi.el (speedbar-frame): Declare to avoid compiler
17070 warning.
17071 (gdb-breakpoints-header): Move forward to avoid compiler warning.
17072 (gdb-make-header-line-mouse-map): Remove duplicate definition.
17073
17074 2009-07-18 David De La Harpe Golden <david@harpegolden.net>
17075
17076 * simple.el (set-mark): Revert last change.
17077
17078 2009-07-17 Tassilo Horn <tassilo@member.fsf.org>
17079
17080 * doc-view.el (doc-view-initiate-display): Add yes-or-no-p if
17081 rendering of pngs is not possible instead of messaging a long
17082 description.
17083
17084 2009-07-17 David De La Harpe Golden <david@harpegolden.net>
17085
17086 * w32-fns.el (x-selection-owner-p): New function.
17087
17088 * mouse.el (mouse-drag-track): Call deactivate-mark earlier.
17089 (mouse-yank-at-click, mouse-yank-primary): If
17090 select-active-regions is non-nil, deactivate the mark before
17091 insertion.
17092
17093 * simple.el (deactivate-mark, set-mark): Only save selection if we
17094 own it.
17095
17096 2009-07-17 Kenichi Handa <handa@m17n.org>
17097
17098 * case-table.el (describe-buffer-case-table): Fix for the case
17099 that KEY is a cons.
17100
17101 2009-07-16 Dan Nicolaescu <dann@ics.uci.edu>
17102
17103 * vc-rcs.el (vc-rcs-find-file-hook):
17104 * vc-sccs.el (vc-sccs-find-file-hook): Fix cut and paste error.
17105
17106 2009-07-16 Michael Albinus <michael.albinus@gmx.de>
17107
17108 * net/tramp.el (tramp-wait-for-output): Handle the case when
17109 commands do not return a newline but a null byte before the shell
17110 prompt. (Bug#3858)
17111
17112 2009-07-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17113
17114 * term/ns-win.el (ns-set-alpha): Don't declare.
17115 (ns-set-background-alpha): Remove function.
17116
17117 2009-07-16 Kevin Ryde <user42@zip.com.au>
17118
17119 * emacs-lisp/copyright.el (copyright-update): Save match-data across
17120 y-or-n-p, for safety.
17121
17122 2009-07-16 Richard Stallman <rms@gnu.org>
17123
17124 * files.el (auto-save-mode): If buffer-saved-size is -2,
17125 don't clobber it.
17126
17127 * mail/rmail.el (rmail-variables): Set buffer-saved-size to -2.
17128 (rmail-retry-ignored-headers): Add more uninteresting fields.
17129
17130 2009-07-15 Jari Aalto <jari.aalto@cante.net>
17131
17132 * net/rcirc.el (rcirc): Use history variables.
17133 (rcirc-server-name-history, rcirc-nick-name-history)
17134 (rcirc-server-port-history): New variables.
17135
17136 2009-07-15 Kenichi Handa <handa@m17n.org>
17137
17138 * international/mule-cmds.el (set-language-environment-charset):
17139 If coding-system-charset-list returns `iso-2022' or `emacs-mule',
17140 ignore them.
17141
17142 * language/misc-lang.el ("IPA"): Change coding systems to utf-8.
17143 Delete unibyte-display.
17144
17145 2009-07-15 Chong Yidong <cyd@stupidchicken.com>
17146
17147 * simple.el (kill-visual-line): Obey kill-whole-line (Bug#3695).
17148
17149 2009-07-15 Chong Yidong <cyd@stupidchicken.com>
17150
17151 * simple.el (deactivate-mark): Optional argument FORCE.
17152 (set-mark): Use deactivate-mark.
17153
17154 * info.el (Info-search): No need to check transient-mark-mode
17155 before calling deactivate-mark.
17156
17157 * select.el (x-set-selection): Doc fix.
17158 (x-valid-simple-selection-p): Allow buffer values.
17159 (xselect--selection-bounds): Handle buffer values. Suggested by
17160 David De La Harpe Golden.
17161
17162 * mouse.el (mouse-set-region, mouse-drag-track): Call
17163 copy-region-as-kill before setting the mark, to let
17164 select-active-regions work.
17165
17166 2009-07-15 David De La Harpe Golden <david@harpegolden.net>
17167
17168 * simple.el (deactivate-mark): If select-active-regions is
17169 non-nil, copy the selection data into a string.
17170 (activate-mark): If select-active-regions is non-nil, set the
17171 selection to the current buffer.
17172 (set-mark): Update selection if select-active-regions is non-nil.
17173
17174 * select.el (x-valid-simple-selection-p): Allow buffer values.
17175
17176 2009-07-14 Stefan Monnier <monnier@iro.umontreal.ca>
17177
17178 * simple.el (mail-user-agent): Default to the upwardly-UI-compatible
17179 and more featureful message-mode.
17180
17181 2009-07-14 Chong Yidong <cyd@stupidchicken.com>
17182
17183 * select.el (x-set-selection): Doc fix.
17184 (x-valid-simple-selection-p): Disallow selection data consisting
17185 of a list or cons of integers, since that is not used.
17186 (xselect--selection-bounds, xselect--int-to-cons): New functions.
17187 (xselect-convert-to-string, xselect-convert-to-length)
17188 (xselect-convert-to-filename, xselect-convert-to-charpos)
17189 (xselect-convert-to-lineno, xselect-convert-to-colno): Use them.
17190
17191 2009-07-14 Dmitry Dzhus <dima@sphinx.net.ru>
17192
17193 * progmodes/gdb-mi.el (json-partial-output): Fix broken GDB/MI
17194 output in -break-info command (Emacs bug #3794).
17195
17196 2009-07-14 Glenn Morris <rgm@gnu.org>
17197
17198 * emacs-lisp/edebug.el (edebug-setup-hook, edebug-all-forms)
17199 (edebug-eval-macro-args, edebug-save-displayed-buffer-points)
17200 (edebug-print-length, edebug-print-level, edebug-print-circle)
17201 (edebug-sit-for-seconds, edebug-view-outside)
17202 (edebug-bounce-point, edebug-set-global-break-condition)
17203 (edebug-Go-nonstop-mode, edebug-trace-mode)
17204 (edebug-Trace-fast-mode, edebug-continue-mode)
17205 (edebug-Continue-fast-mode, edebug-forward-sexp, edebug-help)
17206 (edebug-visit-eval-list): Doc fixes.
17207
17208 * subr.el (def-edebug-spec): Doc fix.
17209
17210 2009-07-14 Kenichi Handa <handa@m17n.org>
17211
17212 * international/characters.el: Fix setting of category ?C.
17213
17214 2009-07-13 Jan Djärv <jan.h.d@swipnet.se>
17215
17216 * term/ns-win.el (x-select-font): defalias x-select-font to
17217 ns-popup-font-panel instead of generate-fontset-menu.
17218
17219 2009-07-12 Eli Zaretskii <eliz@gnu.org>
17220
17221 * desktop.el (desktop-buffers-not-to-save): Remove ".log". (Bug#3833)
17222
17223 2009-07-12 Peter Jolly <peter@jollys.org> (tiny change)
17224
17225 * arc-mode.el (archive-find-type): Allow for a PK00 string before
17226 the PK\003\004 header (Bug#3770).
17227
17228 2009-07-12 Guanpeng Xu <herberteuler@hotmail.com>
17229
17230 * pcomplete.el (pcomplete-comint-setup): Check for
17231 shell-dynamic-complete-filename too.
17232
17233 2009-07-11 Chong Yidong <cyd@stupidchicken.com>
17234
17235 * simple.el (temporary-goal-column): Change the value for
17236 line-move-visual to a cons cell.
17237 (line-move-visual): Record or set the window hscroll, if
17238 necessary (Bug#3494).
17239 (line-move-1): Handle cons value of temporary-goal-column.
17240
17241 2009-07-11 Kenichi Handa <handa@m17n.org>
17242
17243 * international/mule-diag.el (describe-character-set): Don't show
17244 width.
17245
17246 2009-07-10 Sam Steingold <sds@gnu.org>
17247
17248 * progmodes/compile.el (compilation-mode-font-lock-keywords):
17249 Omake sometimes indents the errors it prints, so allow all
17250 regexps to start with spaces.
17251
17252 2009-07-10 Eli Zaretskii <eliz@gnu.org>
17253
17254 * cus-edit.el (customize-changed-options-previous-release):
17255 Bump value to 22.1. (Bug#3804)
17256
17257 2009-07-08 Sam Steingold <sds@gnu.org>
17258
17259 * progmodes/grep.el (rgrep): Allow grep-find-ignored-directories
17260 to be a cons cell (test . ignored-directory) to selectively ignore
17261 some directories depending on the location of the search.
17262
17263 2009-07-08 Michael Albinus <michael.albinus@gmx.de>
17264
17265 * net/tramp.el (tramp-set-file-uid-gid): Handle the case the
17266 remote user is root, on the local host.
17267 (tramp-local-host-p): Either the local user or the remote user
17268 must be root. (Bug#3771)
17269
17270 2009-07-08 Nick Roberts <nickrob@snap.net.nz>
17271
17272 * progmodes/gdb-mi.el (gdb): Remove description of
17273 gdb-use-separate-io-buffer.
17274 (menu): Don't allow toggling of or enable
17275 gdb-use-separate-io-buffer from menubar.
17276
17277 2009-07-08 E. Jay Berkenbilt <ejb@ql.org> (tiny change)
17278
17279 * mail/unrmail.el (unrmail): Make sure the message ends with two
17280 newlines (Bug#3769).
17281
17282 2009-07-08 Glenn Morris <rgm@gnu.org>
17283
17284 * calendar/calendar.el (calendar-current-date): Rework previous change.
17285
17286 2009-07-08 Ed Reingold <reingold@emr.cs.iit.edu>
17287
17288 * calendar/calendar.el (calendar-current-date):
17289 Add an optional argument giving an offset from today.
17290
17291 2009-07-08 Glenn Morris <rgm@gnu.org>
17292
17293 * tutorial.el (tutorial--describe-nonstandard-key):
17294 Adjust the message for when a key has been unbound.
17295 (help-with-tutorial): Hide the arch-tag.
17296
17297 2009-07-08 Kenichi Handa <handa@m17n.org>
17298
17299 * international/fontset.el (setup-default-fontset): For each
17300 script, append (not set) font-specs.
17301
17302 * language/japanese.el (japanese-shift-jis-2004): Fix typo in the
17303 docstring.
17304
17305 2009-07-08 Nick Roberts <nickrob@snap.net.nz>
17306
17307 * progmodes/gdb-mi.el (gdb-init-1): Move sending
17308 -data-list-register-names to ...
17309 (gdb-starting): ... here because GDB 7.0 requires execution to
17310 have started when using this MI command.
17311 (gdb-set-header): New function to distinguish select and
17312 unselected tabs in gdb buffers.
17313 (gdb-propertize-header): New macro that uses gdb-set-header.
17314 (gdb-breakpoints-header, gdb-locals-header): Use it.
17315 (gdb-disassembly-mode-map): Add keybinding to kill buffer.
17316
17317 2009-07-07 Chong Yidong <cyd@stupidchicken.com>
17318
17319 * Makefile.in (ELCFILES): Remove fadr.elc.
17320
17321 2009-07-07 Dmitry Dzhus <dima@sphinx.net.ru>
17322
17323 * progmodes/gdb-mi.el (gdb-init-1): Disassembly buffer mode name
17324 may contain frame information, so `string-match' should be used.
17325 (gdb-update): Disassembly is invalidated through
17326 `gdb-get-selected-frame'.
17327 (gdb-pad-string): New function to pad string with spaces.
17328 (gdb-invalidate-disassembly): Invalidate only if the buffer
17329 exists.
17330 (gdb-disassembly-handler-custom): Column alignment.
17331 (gdb-disassembly-place-breakpoints): Clear old breakpoints before
17332 placing new ones.
17333 (gdb-toggle-breakpoint, gdb-delete-breakpoint): Now work from the
17334 end of line, too.
17335 (gdb-frame-handler): Match convention to for disassembly buffer
17336 mode name.
17337 (gdb-stack-list-frames-handler): Rewritten without regexps.
17338 (gdb-breakpoints-list-handler-custom): y/n instead of on/off; do
17339 not highlight breakpoints without line information.
17340 (gdb-input): Add trailing newline to command.
17341
17342 * progmodes/gdb-mi.el (gdb-init-1): Set mode name for disassembly
17343 buffer properly.
17344 (gdb-breakpoints-list-handler-custom): Replacement for
17345 `gdb-break-list-handler'. Using real parser instead of regexps
17346 now.
17347 (gdb-place-breakpoints): Replacement for `gdb-break-list-custom'.
17348 Use `gdb-breakpoints-list' instead of parsing breakpoints buffer
17349 to place breakpoints.
17350 (def-gdb-memory-unit): A new macro to define gdb-memory-unit-..
17351 functions.
17352 (gdb-disassembly-handler-custom): Show overlay arrow.
17353 (gdb-disassembly-place-breakpoints): Show breakpoints in
17354 disassembly buffer.
17355 (gdb-toggle-breakpoint, gdb-delete-breakpoint)
17356 (gdb-goto-breakpoint): Using `gdb-breakpoint' text properties
17357 instead of parsing breakpoints buffer. Fixed old menu references
17358 in `gud-menu-map'.
17359
17360 * fadr.el: Remove.
17361
17362 * progmodes/gdb-mi.el: Port memory buffer from gdb-ui.el.
17363 (gdb-memory-address): New variable which holds top address of
17364 memory page shown in memory buffer.
17365 (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit): New
17366 customization variables.
17367 New functions:
17368 (gdb-display-memory-buffer, gdb-frame-memory-buffer): Functions to
17369 display the memory buffer.
17370 (gdb-memory-set-address, gdb-memory-set-repeat-count): Set memory
17371 buffer display parameters.
17372 (def-gdb-memory-format, gdb-memory-format-binary)
17373 (gdb-memory-format-octal, gdb-memory-format-unsigned)
17374 (gdb-memory-format-signed, gdb-memory-format-hexadecimal):
17375 Functions for setting memory buffer format.
17376 (gdb-memory-unit-word, gdb-memory-unit-halfword)
17377 (gdb-memory-unit-giant, gdb-memory-unit-byte): Functions to set
17378 unit size used in memory buffer.
17379 (gdb-memory-show-next-page, gdb-memory-show-previous-page): Switch
17380 to next/previous page of memory buffer.
17381 Now using (bindat-get-field) instead of fadr functions.
17382
17383 2009-07-07 Sam Steingold <sds@gnu.org>
17384
17385 * vc-cvs.el (vc-cvs-merge-news): Fix message parsing for
17386 non-top-level files.
17387
17388 2009-07-07 Kenichi Handa <handa@m17n.org>
17389
17390 * international/mule-cmds.el (reset-language-environment): Put
17391 the highset priority to the charset iso-8859-1.
17392
17393 2009-07-06 Chong Yidong <cyd@stupidchicken.com>
17394
17395 * progmodes/hideshow.el (hs-hide-block-at-point): Don't move point
17396 to the end of the line when locating the block (Bug#700).
17397
17398 2009-07-06 Michael Albinus <michael.albinus@gmx.de>
17399
17400 * net/tramp.el (tramp-handle-write-region): Flush file properties
17401 in case of short track.
17402
17403 2009-07-06 Michael McNamara <mac@mail.brushroad.com>
17404
17405 * progmodes/verilog-mode.el (verilog-error-regexp-emacs-alist):
17406 Coded custom representation of verilog error regular expressions
17407 to work with Emacs-22's new format.
17408 (verilog-error-regexp-xemacs-alist): Coded custom representation
17409 of verilog error regular expressions to work with XEmacs format.
17410 (verilog-error-regexp-add-xemacs): Hook routine to install verilog
17411 error recognition into XEmacs.
17412 (verilog-error-regexp-add-emacs): Hook routine to install verilog
17413 error recognition into Emacs-22.
17414
17415 2009-07-06 Chong Yidong <cyd@stupidchicken.com>
17416
17417 * woman.el: Remove stand-alone closing parentheses.
17418 (woman-file-name, woman2-format-paragraphs)
17419 (woman-leave-blank-lines): Code cleanup.
17420 (woman-use-own-frame): Change default to nil.
17421 (woman-italic, woman-bold, woman-unknown, woman-addition): Change
17422 defaults to inherit from default faces.
17423 (woman2-process-escapes): Consume the newline after a stand-alone
17424 filler character (Bug#3651).
17425
17426 2009-07-06 Glenn Morris <rgm@gnu.org>
17427
17428 * ffap.el (ffap-version): Make it an obsolete alias for emacs-version.
17429 (top-level): Move provide to the end.
17430 (ffap): Remove defunct URL from custom group.
17431
17432 * subr.el (eval-after-load): Doc fix.
17433
17434 2009-07-06 Vincent Belaïche <vincent.belaiche@gmail.com>
17435
17436 * calc/calc-embed.el (calc-embedded-make-info): Don't force when
17437 `calc-embedded-word' is called twice.
17438
17439 2009-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
17440
17441 * files.el (find-alternate-file-other-window, find-alternate-file):
17442 Obey confirm-nonexistent-file-or-buffer.
17443
17444 2009-07-05 Michael Albinus <michael.albinus@gmx.de>
17445
17446 * dired-aux.el (dired-show-file-type): Handle remote files.
17447
17448 2009-07-05 Jari Aalto <jari.aalto@cante.net>
17449
17450 * desktop.el (desktop-globals-to-save):
17451 Add file-name-history (Bug#2750).
17452
17453 2009-07-05 Chong Yidong <cyd@stupidchicken.com>
17454
17455 * add-log.el (add-log-current-defun-header-regexp): Doc fix (Bug#2217).
17456
17457 2009-07-04 Johan Bockgård <bojohan@gnu.org>
17458
17459 * eshell/esh-arg.el (eshell-parse-argument-hook): Put `number'
17460 property on entire argument since this is what eshell-lisp-command
17461 expects.
17462
17463 2009-07-03 Michael Albinus <michael.albinus@gmx.de>
17464
17465 * net/tramp-gvfs.el (tramp-gvfs-methods)
17466 (tramp-gvfs-zeroconf-domain)
17467 (tramp-bluez-discover-devices-timeout): Add version flag.
17468 (tramp-gvfs-handler-mounted-unmounted)
17469 (tramp-gvfs-connection-mounted-p): Polish handling of
17470 incompatibilities between GVFS 0.2 and 1.0.
17471
17472 2009-07-03 Jan Djärv <jan.h.d@swipnet.se>
17473
17474 * cus-start.el (all): Add make-pointer-invisible.
17475
17476 2009-07-03 Jay Belanger <jay.p.belanger@gmail.com>
17477
17478 * calc/calc-math.el (math-use-emacs-fn): Make sure that the number is
17479 formatted correctly.
17480
17481 2009-07-02 Juri Linkov <juri@jurta.org>
17482
17483 * info.el: Virtual Info files and nodes.
17484 (Info-virtual-files, Info-virtual-nodes): New variables.
17485 (Info-current-node-virtual): New variable.
17486 (Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
17487 New functions.
17488 (Info-file-supports-index-cookies): Use Info-virtual-file-p
17489 to check for a virtual file instead of checking a fixed list
17490 of node names.
17491 (Info-find-file): Use Info-virtual-fun and Info-virtual-call
17492 instead of ad-hoc processing of "dir" and (apropos history toc).
17493 (Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
17494 instead of ad-hoc processing of "dir" and (apropos history toc).
17495 Reread a file when moving from a virtual node.
17496 (add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
17497 (Info-directory-toc-nodes, Info-directory-find-file)
17498 (Info-directory-find-node): New functions.
17499 (add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
17500 (Info-history): Move part of code to
17501 `Info-history-find-node'.
17502 (Info-history-toc-nodes, Info-history-find-file)
17503 (Info-history-find-node): New functions.
17504 (add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
17505 (Info-toc): Move part of code to `Info-toc-find-node'.
17506 (Info-toc-find-node): New function.
17507 (Info-toc-insert): Rename from `Info-insert-toc'. Don't insert
17508 the current Info file name to references because now the node
17509 "*TOC*" belongs to the same Info manual.
17510 (Info-toc-build): Rename from `Info-build-toc'.
17511 (Info-toc-nodes): Rename input argument `file' to `filename'.
17512 Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
17513 instead of ad-hoc processing of ("dir" apropos history toc).
17514 (Info-index-nodes): Use Info-virtual-file-p
17515 to check for a virtual file instead of checking a fixed list
17516 of node names.
17517 (Info-index-node): Add check for `Info-current-node-virtual'.
17518 Raise `save-match-data' higher up the tree to contain
17519 `search-forward' too (bug fix).
17520 (add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
17521 (Info-virtual-index-nodes): New variable.
17522 (Info-virtual-index-find-node, Info-virtual-index): New functions.
17523 (add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
17524 (Info-apropos-file, Info-apropos-nodes): New variables.
17525 (Info-apropos-toc-nodes, Info-apropos-find-file)
17526 (Info-apropos-find-node, Info-apropos-matches): New functions.
17527 (info-apropos): Move part of code to `Info-apropos-find-node' and
17528 `Info-apropos-matches'.
17529 (Info-mode-map): Bind "I" to `Info-virtual-index'.
17530 (Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
17531 for a virtual file instead of checking a fixed list of node names.
17532
17533 * simple.el (async-shell-command): New command.
17534
17535 * bindings.el (esc-map): Bind "&" to `async-shell-command'.
17536
17537 * net/tramp-gvfs.el (tramp-gvfs-connection-mounted-p): Use `elt'
17538 instead of `mount-info'.
17539
17540 2009-07-02 Michael Albinus <michael.albinus@gmx.de>
17541
17542 * net/tramp-gvfs.el (tramp-gvfs-handler-mounted-unmounted)
17543 (tramp-gvfs-connection-mounted-p): Handle changed mount-info interface.
17544
17545 2009-07-02 Kenichi Handa <handa@m17n.org>
17546
17547 * international/mule.el (set-keyboard-coding-system): Force *-unix
17548 coding-system to avoid eol conversion.
17549
17550 2009-07-01 Michael Albinus <michael.albinus@gmx.de>
17551
17552 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
17553 Add handler for `process-file', `shell-command' and
17554 `start-file-process'.
17555 (tramp-gvfs-handle-shell-command)
17556 (tramp-gvfs-handle-start-file-process)
17557 (tramp-gvfs-handle-process-file): New defuns.
17558 (tramp-synce-list-devices): Simplify check for existence of property.
17559
17560 2009-07-01 Jan Djärv <jan.h.d@swipnet.se>
17561
17562 * startup.el (command-line-x-option-alist): Add -mm and --maximized.
17563
17564 2009-07-01 Eduard Wiebe <usenet@pusto.de> (tiny change)
17565
17566 * language/korean.el (set-language-info-alist): Add korean-cp949,
17567 cp949 to spec.
17568
17569 2009-07-01 Kenichi Handa <handa@m17n.org>
17570
17571 * Makefile.in (ELCFILES): Delete encoded-kb.elc.
17572
17573 * international/encoded-kb.el: Deleted.
17574
17575 * international/mule.el (set-keyboard-coding-system): Perform the
17576 necessary setup here instead of calling encoded-kbd-setup-display.
17577
17578 2009-07-01 Glenn Morris <rgm@gnu.org>
17579
17580 * progmodes/f90.el (f90-break-delimiters, f90-no-break-re): Doc fixes.
17581
17582 2009-07-01 Evangelos Evangelou <vangelis@email.unc.edu> (tiny change)
17583
17584 * progmodes/f90.el (f90-no-break-re): Add "(/" and "/)". (Bug#3730)
17585
17586 2009-06-30 Michael Albinus <michael.albinus@gmx.de>
17587
17588 * net/tramp.el (tramp-do-copy-or-rename-file-directly):
17589 Handle also the 'rename case, when setting file modes. (Bug#3712)
17590 (tramp-default-file-modes): Remove execute permissions.
17591
17592 * net/tramp-gvfs.el (tramp-gvfs-methods): Add "synce" method.
17593 (top): Add a default for "synce" in `tramp-default-user-alist'.
17594 Add completion function for "synce" method.
17595 (tramp-hal-service, tramp-hal-path-manager)
17596 (tramp-hal-interface-manager, tramp-hal-interface-device):
17597 New defconst.
17598 (tramp-gvfs-connection-mounted-p): Handle empty user name for synce.
17599 (tramp-synce-list-devices, tramp-synce-parse-device-names):
17600 New defuns.
17601
17602 * net/trampver.el: Update release number.
17603
17604 2009-06-30 Kenichi Handa <handa@m17n.org>
17605
17606 * international/fontset.el (setup-default-fontset): Add CJK fonts
17607 for symbols and the other miscellaneous characters.
17608
17609 * language/korea-util.el (setup-korean-environment-internal):
17610 Make char-width-table suitable for Korean environments.
17611 (exit-korean-environment): Cancel above.
17612
17613 * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
17614 ("Chinese-CNS", "Chinese-EUC-TW", "Chinese-GBK"): Add a
17615 setup-function to make char-width-table suitable for respective
17616 environments, and an exit-function to cancel that.
17617
17618 * language/japan-util.el (setup-japanese-environment-internal):
17619 Call use-cjk-char-width-table with arg `ja_JP'.
17620
17621 * international/characters.el (cjk-char-width-table): Delete it.
17622 (cjk-char-width-table-list): New variable.
17623 (use-cjk-char-width-table): New arg local-name.
17624 (use-default-char-width-table): Fix for the case that Emacs is
17625 already using the default char-width-table.
17626
17627 2009-06-29 Michael Albinus <michael.albinus@gmx.de>
17628
17629 * net/tramp.el (tramp-do-copy-or-rename-file-directly): Set file
17630 modes mandatory. (Bug#3712)
17631
17632 2009-06-29 Alan Mackenzie <acm@muc.de>
17633
17634 * progmodes/cc-cmds.el (c-mask-paragraph): Remove a spurious
17635 correction between the visible width of TABs and their number of bytes.
17636
17637 2009-06-29 Chong Yidong <cyd@stupidchicken.com>
17638
17639 * server.el (server-buffer-done): Prevent kill-buffer from
17640 prompting by clearing the buffer modification flag (Bug#3696).
17641
17642 2009-06-28 Michael McNamara <mac@mail.brushroad.com>
17643
17644 * progmodes/verilog-mode.el (verilog-beg-of-statement)
17645 (verilog-endcomment-reason-re): Support unique case and priority case.
17646 (verilog-basic-complete-re): Support localparam lineup.
17647 (verilog-beg-of-statement-1): Fix for robustness, unique case.
17648 (verilog-set-auto-endcomments): Fix for unique case, always_comb
17649 commenting.
17650 (verilog-leap-to-case-head): Now support *nested* unique &
17651 priority case statements.
17652 (verilog-auto-lineup): Make just declarations the default (as it
17653 had been).
17654 (verilog-leap-to-case-head): Support priority/unique case statements.
17655 (verilog-auto-lineup): Rework to give users radio buttons to
17656 select the various styles of automatic lineup.
17657 (verilog-error-regexp-alist): Rework to support the XEmacs style
17658 of error regular expressions from compilers, lint tools &
17659 simulators. Note that GNU Emacs has made it impossible for a mode
17660 to load such things.
17661 (electric-verilog-terminate-line, verilog-indent-declaration)
17662 (verilog-auto-wiure): Rework for radio button selection of
17663 auto-lineup selection of specification of auto lineup.
17664 (verilog-beg-of-statement-1): Redesign to support proper operation
17665 in additional code, based on testing with auto-lineup.
17666 (verilog-calculate-indent, assignments & declarations)
17667 (verilog-backward-token): Enhance to support auto-lineup of
17668 assignments & declarations.
17669 (verilog-in-directive-p, verilog-at-struct-p): New function for
17670 easy test of whether we are.
17671 (verilog-pretty-declarations, verilog-pretty-expr): Massive rework
17672 to support safe execution at almost anyline.
17673 (verilog-calc-1): Properly support indenting deep inside generate
17674 blocks.
17675 (verilog-init-font): Remove definition & use of verilog-init-font,
17676 as it is redundant with font-lock-defaults.
17677 (verilog-mode): Alter the definition of verilog-font-lock-defaults
17678 to avoid circular calls if syntax-ppss is a function (as is the
17679 case now in 22.x GNU Emacs) as that function would sometimes call
17680 itself, leading to (nearly) infinite recursion.
17681 (verilog-ovm-begin-re, verilog-ovm-end-re)
17682 (verilog-ovm-statement-re, verilog-leap-to-head)
17683 (verilog-backward-token): Add support for OVM macros. Some are
17684 complete statements, and others open and close scopes like begin
17685 and end.
17686 (verilog-defun-level-not-generate-re, verilog-defun-level-re)
17687 (verilog-defun-level-generate-only-re): Really fix the defun-list
17688 compilation issue.
17689 (verilog-calc-1, verilog-beg-of-statement): Enhance support for
17690 coverpoint, constraint and cross statements.
17691 (verilog-defun-level-list, verilog-generate-defun-level-list)
17692 (verilog-all-defun-level-list): Redo these specifications - it is
17693 too hard to support eval-when compile aggregation of lists also
17694 built at when-compile time.
17695 (verilog-defun-level-list): Place defconsts of variables used in
17696 building regular expressions which are built in eval-when-compile
17697 bodies in the same eval-when-compile body to facilitate compile
17698 without load.
17699 (verilog-beg-block-re-ordered): Support indenting
17700 virtual/protected tasks and functions.
17701 (verilog-defun-level-list, verilog-in-generate-region-p)
17702 (verilog-backward-ws&directives, verilog-calc-1): Speed up
17703 indentation of some module items (generate items).
17704 (verilog-forward-sexp, verilog-leap-to-head): Support stepping
17705 across virtual/protected tasks and functions.
17706
17707 2009-06-28 Wilson Snyder <wsnyder@wsnyder.org>
17708
17709 * progmodes/verilog-mode.el (verilog-auto-arg, verilog-auto-arg-sort):
17710 Allow sorting AUTOARG lists. Suggested by Andrea Fedeli.
17711 (verilog-read-sub-decls-line): Fix AUTOWIRE signals getting lost
17712 in concatenations. Reported by Yishay Belkind.
17713 (verilog-auto-ascii-enum): Support one-hot state machines in
17714 AUTOASCIIENUM. Suggested by Lloyd Gomez.
17715 (verilog-auto-inst, verilog-auto-inst-port): Include interface
17716 modport in AUTOINST and add vl-modport for users. Reported by
17717 David Rogoff.
17718 (verilog-auto-inout-module, verilog-auto-inst)
17719 (verilog-decls-get-interfaces, verilog-insert-definition)
17720 (verilog-insert-one-definition, verilog-read-decls)
17721 (verilog-read-sub-decls, verilog-read-sub-decls-sig)
17722 (verilog-sig-modport, verilog-signals-combine-bus)
17723 (verilog-subdecls-get-interfaces): Fix expansion of SystemVerilog
17724 interfaces in AUTOINOUTMODULE, AUTOINOUTCOMP, and AUTOINST.
17725 Suggested by David Rogoff.
17726 (verilog-repair-open-comma): Fix non-insertion of comma when
17727 `DEFINE occurs in V2K argument list. Reported by Lane Brooks.
17728 (verilog-make-width-expression): Simplify [A-1:0] expression
17729 widths to just {A{1'b0}}.
17730 (verilog-mode): Cleanup checkdoc warnings.
17731 (verilog-auto-inout-module, verilog-signals-matching-dir-re):
17732 Add third optional regexp to AUTOINOUTMODULE to allow selecting only
17733 inputs/outputs or data type. Suggested by Vasu Kandadi.
17734 (next-error-last-buffer): Fix byte-compiler warning.
17735 (verilog-auto, verilog-auto-insert-lisp, verilog-auto-inst)
17736 (verilog-delete-auto): Add AUTOINSERTLISP to insert arbitrary lisp
17737 or shell command text during AUTO expansion. Suggested by Tad Truex.
17738 (verilog-read-sub-decls-expr, verilog-read-sub-decls-line)
17739 (verilog-read-sub-decls-sig, verilog-symbol-detick-text):
17740 Fix dotted nets {a.b,c.d} and excaped identifiers being mis-included
17741 in AUTOINOUT. Reported by Matthew Lovell.
17742 (verilog-read-always-signals-recurse): Fix AUTORESET "if (a<=b)"
17743 causing use of <= assignments. Reported by Alex Reed.
17744 (verilog-read-decls): Fix triand, trior, wand, wor to be
17745 recognized by AUTOWIRE. Reported by Spencer Isaacson.
17746 (verilog-extended-complete-re): Support import "DPI-C" functions.
17747 (verilog-read-always-signals-recurse): Fix AUTORESET of "x <=
17748 y[a+1:a+1]" to not include a in reset list. Reported by Dan Dever.
17749 (verilog-insert-date, verilog-insert-year)
17750 (verilog-sk-header-tmpl): Fix verilog-header inserting error on
17751 Windows systems. Reported by Michael Potts.
17752 (verilog-read-module-name): Fix AUTOINST when the child module
17753 declaration's name is a tick define. Reported by Elliot Mednick.
17754 (verilog-read-decls): Fix V2K parameter bit subscripts getting
17755 passed to next parameter's definition. Reported by Bruce T.
17756 (verilog-read-decls): Fix detecting "parameter int" when using
17757 AUTOINSTPARAM. Reported by Bruce T.
17758 (verilog-goto-defun): Fix goto not finding modules unless first
17759 perform a verilog-auto expansion. Suggested by Lawrence Butcher.
17760 (verilog-mode): Expand -f flag arguments on entry to mode so
17761 verilog-goto-defun will work. Reported by Lawrence Butcher.
17762 (verilog-getopt): Expand environment variables in -f file
17763 arguments. Suggested by Lawrence Butcher.
17764 (verilog-set-define): Fix "Symbol's value as variable is void"
17765 when reading enumerations.
17766 (verilog-auto-ascii-enum): Fix duplicate labels in AUTOASCIIENUM.
17767 Suggested by Stephen Peltan.
17768 (verilog-read-defines): Fix reading of enumerations in include
17769 files. Reported by Steve Peltan.
17770
17771 2009-06-28 David De La Harpe Golden <david@harpegolden.net>
17772
17773 * files.el (trash-directory): Fix defcustom type.
17774
17775 2009-06-28 Juri Linkov <juri@jurta.org>
17776
17777 * help-fns.el (describe-function-1): Correctly locate adviced
17778 functions in hyperlink (Bug#2438).
17779
17780 2009-06-28 Chong Yidong <cyd@stupidchicken.com>
17781
17782 * files.el (trash-directory): Change default to nil.
17783 (move-file-to-trash): If trash-directory is nil and
17784 system-move-file-to-trash is unbound, perform freedesktop-style
17785 trashing.
17786
17787 2009-06-28 David De La Harpe Golden <david@harpegolden.net>
17788
17789 * files.el (move-file-to-trash): Add freedesktop trash
17790 support (Bug#973).
17791
17792 2009-06-28 Glenn Morris <rgm@gnu.org>
17793
17794 * autorevert.el (global-auto-revert-non-file-buffers)
17795 (global-auto-revert-mode): Doc fixes.
17796
17797 2009-06-27 Johan Bockgård <bojohan@gnu.org>
17798
17799 * emacs-lisp/cl-specs.el (defstruct): Fix :conc-name spec.
17800
17801 2009-06-27 Chong Yidong <cyd@stupidchicken.com>
17802
17803 * faces.el (x-handle-named-frame-geometry): Ensure that we have
17804 opened an X connection before calling x-get-resource (Bug#3194).
17805
17806 * play/doctor.el: Remove reference to obsolete website.
17807 (make-doctor-variables): Correct grammar mistake (Bug#2633).
17808
17809 2009-06-26 Dan Nicolaescu <dann@ics.uci.edu>
17810
17811 Remove find-file-not-found-hook VC method. (Bug#2757)
17812 * vc-hooks.el (vc-file-not-found-hook)
17813 (vc-default-find-file-not-found-hook): Remove functions.
17814 (find-file-not-found-functions): Do not add vc-file-not-found-hook.
17815 * vc-rcs.el (vc-rcs-find-file-not-found-hook): Remove function.
17816 * vc.el:
17817 * vc-hg.el:
17818 * vc-git.el: Do not mention find-file-not-found-hook VC method.
17819
17820 2009-06-25 Agustín Martín <agustin.martin@hispalinux.es>
17821
17822 * textmodes/ispell.el: Add `ispell-looking-back' XEmacs
17823 compatibility function for `looking-back'.
17824
17825 * textmodes/flyspell.el (sgml-mode-flyspell-verify):
17826 Use `ispell-looking-back'.
17827
17828 2009-06-24 Michael Albinus <michael.albinus@gmx.de>
17829
17830 * net/tramp-gvfs.el (tramp-gvfs-handle-make-directory): Use `dir'
17831 rather than `filename'.
17832
17833 2009-06-23 Miles Bader <miles@gnu.org>
17834
17835 * face-remap.el (text-scale-set): New function.
17836
17837 2009-06-23 Glenn Morris <rgm@gnu.org>
17838
17839 * pcmpl-rpm.el (pcomplete/rpm): Doc fix.
17840
17841 * bindings.el (mode-line-modified): Fix case of "Buffer is modified".
17842
17843 * textmodes/ispell.el (ispell-local-dictionary): Doc fix.
17844
17845 * progmodes/gdb-mi.el (gud-remove, gud-break): Update declarations.
17846
17847 * calendar/cal-dst.el (calendar-time-zone-daylight-rules):
17848 Simplify Persian conditionals.
17849
17850 * calc/calc-graph.el (calc-graph-plot): Avoid assignment to free
17851 variable `filename'.
17852
17853 * comint.el (comint-insert-input): Doc fix.
17854
17855 * Makefile.in (ELCFILES): Fix typo in previous change.
17856
17857 2009-06-23 Miles Bader <miles@gnu.org>
17858
17859 * cus-start.el: Add entry for `recenter-redisplay'.
17860
17861 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
17862
17863 * vc-hooks.el (vc-stay-local-p, vc-state, vc-working-revision):
17864 Add an optional argument for the backend, use it instead of
17865 calling vc-backend.
17866 (vc-mode-line): Add an optional argument for the backend.
17867 Pass the backend to vc-state and vc-working-revision. Move code for
17868 special handling for vc-state being a buffer to ...
17869
17870 * vc-rcs.el (vc-rcs-find-file-hook):
17871 * vc-sccs.el (vc-sccs-find-file-hook): ... here. New functions.
17872
17873 * vc-svn.el (vc-svn-state, vc-svn-dir-status, vc-svn-checkout)
17874 (vc-svn-print-log, vc-svn-diff): Pass 'SVN to vc-state,
17875 vc-stay-local-p and vc-mode-line calls.
17876
17877 * vc-cvs.el (vc-cvs-state, vc-cvs-checkout, vc-cvs-print-log)
17878 (vc-cvs-diff, vc-cvs-annotate-command)
17879 (vc-cvs-make-version-backups-p, vc-cvs-stay-local-p)
17880 (vc-cvs-dir-status): Pass 'CVS to vc-state, vc-stay-local-p and
17881 vc-mode-line calls.
17882
17883 * vc.el (vc-deduce-fileset): Use vc-deduce-fileset instead of
17884 direct comparison.
17885 (vc-next-action, vc-transfer-file, vc-rename-file): Also pass the
17886 backend when calling vc-mode-line.
17887 (vc-register): Do not create a closure for calling the vc register
17888 function, call it directly.
17889
17890 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
17891
17892 * emacs-lisp/elp.el (elp-output-insert-symname): Add a link face
17893 to make it obvious item can be clicked.
17894
17895 * vc-mtn.el (vc-mtn-after-dir-status, vc-mtn-dir-status): New functions.
17896
17897 2009-06-23 Kenichi Handa <handa@m17n.org>
17898
17899 * language/korea-util.el (korean-key-bindings): Change the binding
17900 of F9 to hangul-to-hanja-conversion. Bind Hangul_Hanja to the
17901 same command.
17902
17903 2009-06-22 Michael Albinus <michael.albinus@gmx.de>
17904
17905 Sync with Tramp 2.1.16.
17906
17907 * Makefile.in (ELCFILES): Add net/tramp-gvfs.elc.
17908
17909 * net/tramp.el (top): Require tramp-gvfs. Catch `tramp-loading',
17910 when a loading of a package fails. Completion function for rsync
17911 is `tramp-completion-function-alist-ssh'.
17912 (all): Replace all calls of `split-string' and
17913 `tramp-split-string' by `tramp-compat-split-string'.
17914 (tramp-default-method): Use `tramp-compat-process-running-p'.
17915 (tramp-default-proxies-alist): Allow also Lisp forms.
17916 (tramp-remote-path): Add choice "Private Directories".
17917 (tramp-wrong-passwd-regexp): Remove "Tramp connection closed" option.
17918 (tramp-domain-regexp): Allow also "-", "_" and ".".
17919 (tramp-end-of-output): Remove newlines, and add "$" at the end.
17920 (tramp-file-name-handler-alist): Add handler for `dired-uncache'.
17921 (tramp-debug-message): Insert header line in debug buffer.
17922 (tramp-handle-directory-files-and-attributes-with-stat):
17923 Care about filenames with spaces, or starting with "-".
17924 (tramp-handle-dired-uncache): New defun.
17925 (tramp-handle-insert-directory): Don't flush the directory from
17926 cache, this is handled by `dired-uncache' now.
17927 (tramp-handle-insert-file-contents): Improve error handling.
17928 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
17929 Quote `tramp-end-of-output'.
17930 (tramp-action-password): Improve trace message.
17931 (tramp-check-for-regexp): Both echoes must be present, before removing.
17932 (tramp-open-connection-setup-interactive-shell): Trace coding system.
17933 (tramp-compute-multi-hops): Eval cons cells of
17934 `tramp-default-proxies-alist'.
17935 (tramp-maybe-open-connection): Use the same command pattern for
17936 first hop and further hops.
17937 (tramp-wait-for-output): Remove handling of newlines.
17938 (tramp-get-remote-path): Handle also `tramp-own-remote-path'.
17939 (tramp-split-string): Remove function. It is handled in
17940 tramp-compat now.
17941
17942 * net/tramp-cmds.el (tramp-bug):
17943 Recommend `tramp-cleanup-all-connections' in the bug mail.
17944
17945 * net/tramp-compat.el (tramp-compat-split-string)
17946 (tramp-compat-process-running-p): New defuns.
17947
17948 * net/tramp-fish.el (tramp-fish-file-name-handler-alist): Add handler
17949 for `dired-uncache'.
17950
17951 * net/tramp-gvfs.el: New package.
17952
17953 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
17954 Add handler for `dired-uncache'.
17955 (tramp-smb-handle-file-local-copy): Cleanup in case of error.
17956
17957 * net/trampver.el: Update release number. Make version check fit
17958 for SXEmacs 22.
17959
17960 2009-06-22 Jim Meyering <meyering@redhat.com>
17961
17962 Automatically handle .xz suffix (XZ-compressed files), too.
17963 * jka-cmpr-hook.el (jka-compr-compression-info-list): Add xz.
17964 XZ is the successor to LZMA: <http://tukaani.org/xz/>
17965
17966 2009-06-22 Dmitry Dzhus <dima@sphinx.net.ru>
17967 Nick Roberts <nickrob@snap.net.nz>
17968
17969 * progmodes/gdb-mi.el: Pull further modified changes from Dmitry's
17970 repository (http://sphinx.net.ru/hg/gdb-mi/).
17971
17972 2009-06-22 Glenn Morris <rgm@gnu.org>
17973
17974 * files.el (dir-locals-collect-mode-variables): Allow for any number of
17975 `mode' and `eval' entries. (Bug#3430)
17976
17977 * Makefile.in (ELCFILES): Add fadr.elc.
17978
17979 * calendar/appt.el (appt-make-list): Fix off-by-one error caused by
17980 differing behavior of \n and ^ in strings. (Bug#3385)
17981
17982 * emacs-lisp/cl-indent.el: Remove leading "*" from defcustom docs.
17983
17984 * emacs-lisp/lisp-mode.el (lisp-indent-offset): Fix safe-local-variable
17985 property.
17986 (lisp-indent-function): Make it a defcustom.
17987
17988 2009-06-21 Nick Roberts <nickrob@snap.net.nz>
17989
17990 * progmodes/gdb-ui.el: Replace with ...
17991 * progmodes/gdb-mi.el: ... this file.
17992 * progmodes/gud.el: Modify for gdb-mi.el.
17993
17994 2009-06-21 Dmitry Dzhus <dima@sphinx.net.ru>
17995
17996 * fadr.el: New file.
17997
17998 See ChangeLog.14 for earlier changes.
17999
18000 ;; Local Variables:
18001 ;; coding: utf-8
18002 ;; End:
18003
18004 Copyright (C) 2009, 2010 Free Software Foundation, Inc.
18005
18006 This file is part of GNU Emacs.
18007
18008 GNU Emacs is free software: you can redistribute it and/or modify
18009 it under the terms of the GNU General Public License as published by
18010 the Free Software Foundation, either version 3 of the License, or
18011 (at your option) any later version.
18012
18013 GNU Emacs is distributed in the hope that it will be useful,
18014 but WITHOUT ANY WARRANTY; without even the implied warranty of
18015 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18016 GNU General Public License for more details.
18017
18018 You should have received a copy of the GNU General Public License
18019 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.