]> code.delx.au - gnu-emacs/blob - lisp/ChangeLog
xfns.c (x_real_positions): Fix declaration-after-statement problem.
[gnu-emacs] / lisp / ChangeLog
1 2010-11-09 Glenn Morris <rgm@gnu.org>
2
3 * progmodes/tcl.el (tcl-hairy-scan-for-comment): Doc fix.
4
5 2010-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
6
7 * minibuffer.el (minibuffer-completion-help): Specify the end of the
8 completion field (bug#7211).
9
10 * progmodes/python.el (python-font-lock-syntactic-keywords): (bug#7322)
11 Fix handling of backslash escapes.
12 (python-quote-syntax): Adjust accordingly.
13
14 2010-11-08 Richard Levitte <richard@levitte.org> (tiny change)
15
16 * vc-mtn.el (vc-mtn-working-revision, vc-mtn-after-dir-status)
17 (vc-mtn-workfile-branch): Adjust to new output format.
18
19 2010-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
20
21 * international/mule-cmds.el (princ-list): Mark as obsolete.
22
23 2010-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
24
25 * emacs-lisp/smie.el: New package.
26
27 2010-11-06 Michael Albinus <michael.albinus@gmx.de>
28
29 * files.el (backup-by-copying-when-mismatch):
30 Set `permanent-local' property.
31
32 * net/tramp.el (tramp-handle-insert-file-contents): Do not set
33 `permanent-local' property for `backup-by-copying-when-mismatch'.
34
35 2010-11-06 Eli Zaretskii <eliz@gnu.org>
36
37 * ls-lisp.el (insert-directory): Doc fix. (bug#7285)
38 (ls-lisp-classify-file): New function.
39 (ls-lisp-insert-directory): Call it if switches include -F (bug#6294).
40 (ls-lisp-classify): Call ls-lisp-classify-file.
41 (insert-directory): Remove blanks from switches.
42
43 2010-11-07 Wilson Snyder <wsnyder@wsnyder.org>
44
45 * progmodes/verilog-mode.el (verilog-insert-one-definition)
46 (verilog-read-decls, verilog-read-sub-decls-sig): Fix AUTOWIRE and
47 AUTOINOUT for SV style multidimensional arrays, bug294.
48 Reported by Eric Mastromarchi.
49 (verilog-preprocess): Use with-current-buffer and
50 font-lock-fontify-buffer to cleanup style issues.
51
52 2010-11-05 Michael Albinus <michael.albinus@gmx.de>
53
54 * net/trampver.el: Update release number.
55
56 2010-08-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
57
58 * mouse.el (mouse-fixup-help-message): Match "mouse-2" only at the
59 beginning of the string. Use `string-match-p'. (Bug#6765)
60
61 2010-11-01 Glenn Morris <rgm@gnu.org>
62
63 * locate.el (locate, locate-mode): Doc fixes.
64
65 2010-11-01 Chong Yidong <cyd@stupidchicken.com>
66
67 * server.el (server-start): New arg INHIBIT-PROMPT prevents asking
68 user for confirmation.
69 (server-force-stop): Use it.
70 (server-start): Use server-force-stop for kill-emacs-hook, to
71 avoid user interaction while killing Emacs.
72
73 2010-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
74
75 * vc/log-edit.el (log-edit-rewrite-fixes): New var.
76 (log-edit-author): New dynamic var.
77 (log-edit-changelog-ours-p, log-edit-insert-changelog-entries):
78 Use it to return the author if different from committer.
79 (log-edit-insert-changelog): Use them to add Author: and Fixes headers.
80
81 2010-10-31 Eli Zaretskii <eliz@gnu.org>
82
83 * vc/vc-hooks.el (vc-default-mode-line-string): Doc fix.
84
85 2010-10-31 Chong Yidong <cyd@stupidchicken.com>
86
87 * vc/vc.el (vc-deduce-backend): New fun. Handle diff buffers.
88 (vc-root-diff, vc-print-root-log, vc-log-incoming)
89 (vc-log-outgoing): Use it.
90 (vc-diff-internal): Set diff-vc-backend.
91
92 * vc/diff-mode.el (diff-vc-backend): New var.
93
94 2010-10-31 Juri Linkov <juri@jurta.org>
95
96 * vc/vc.el (vc-diff-internal): Set `revert-buffer-function'
97 buffer-locally to lambda that re-runs the vc diff command.
98 (Bug#6447)
99
100 2010-10-31 Dan Nicolaescu <dann@ics.uci.edu>
101
102 * vc/log-view.el (log-view-mode-map): Bind revert-buffer.
103
104 Make 'g' (AKA revert-buffer) rerun VC log, log-incoming and
105 log-outgoing commands.
106 * vc/vc.el (vc-log-internal-common): Add a new argument and use it
107 to create a buffer local revert-buffer-function variable.
108 (vc-print-log-internal, vc-log-incoming, vc-log-outgoing): Pass a
109 revert-buffer-function lambda.
110
111 Improve VC create/retrieve tag/branch.
112 * vc.el (vc-create-tag): Do not read the directory name for VCs
113 with repository revision granularity. Adjust the tag/branch
114 prompt. Reset VC properties.
115 (vc-retrieve-tag): Do not read the directory name for VCs
116 with repository revision granularity. Reset VC properties.
117
118 Add optional support for resetting VC properties.
119 * vc-dispatcher.el (vc-resynch-window): Add new optional argument,
120 call vc-file-clearprops when true.
121 (vc-resynch-buffer): Add new optional argument, pass it down.
122 (vc-resynch-buffers-in-directory): Likewise.
123
124 Improve support for special markup in the VC commit message.
125 * vc-mtn.el (vc-mtn-checkin): Support Author: and Date: markup.
126 * vc-hg.el (vc-hg-checkin): Add support for Date:.
127 * vc-git.el (vc-git-checkin):
128 * vc-bzr.el (vc-bzr-checkin): Likewise.
129
130 Add support for vc-log-incoming, improve vc-log-outgoing for Git.
131 * vc-git.el (vc-git-log-view-mode): Fix font lock for
132 incoming/outgoing logs.
133 (vc-git-log-outgoing, vc-git-log-incoming): New functions.
134
135 * vc-git.el (vc-git-log-outgoing): Use the same format as the
136 short log.
137 (vc-git-log-incoming): Likewise. Run "git fetch" before the log
138 command
139
140 Add bindings for vc-log-incoming and vc-log-outgoing.
141 * vc-hooks.el (vc-prefix-map): Add bindings for vc-log-incoming
142 and vc-log-outgoing.
143 * vc-dir.el (vc-dir-menu-map): Add menu bindings for vc-log-incoming
144 and vc-log-outgoing.
145
146 Improve state updating for VC tag commands.
147 * vc.el (vc-create-tag, vc-retrieve-tag): Call vc-resynch-buffer
148 to update the state of all buffers in the directory.
149
150 2010-05-19 Glenn Morris <rgm@gnu.org>
151
152 * vc-dir.el (vc-dir): Don't pop-up-windows. (Bug#6204)
153
154 2010-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
155
156 * vc.el (vc-checkin, vc-modify-change-comment):
157 Adjust to new vc-start/finish-logentry.
158 (vc-find-conflicted-file): New command.
159 (vc-transfer-file): Adjust to new vc-checkin.
160 (vc-next-action): Improve scoping.
161
162 * vc-git.el (vc-git-checkin): Use log-edit-extract-headers.
163 (vc-git-commits-coding-system): Rename from git-commits-coding-system.
164
165 * vc-dispatcher.el (vc-log-edit): Shorten names for
166 log-edit-show-files.
167
168 * vc-bzr.el (vc-bzr-checkin): Use log-edit-extract-headers.
169 (vc-bzr-conflicted-files): New function.
170
171 * log-edit.el (log-edit-summary, log-edit-header)
172 (log-edit-unknown-header): New faces.
173 (log-edit-headers-alist): New var.
174 (log-edit-header-contents-regexp): New const.
175 (log-edit-match-to-eoh): New function.
176 (log-edit-font-lock-keywords): Use them.
177 (log-edit): Insert a "Summary:" header as default.
178 (log-edit-mode): Mark font-lock rules as case-insensitive.
179 (log-edit-done): Cleanup headers.
180 (log-edit-extract-headers): New function to replace it.
181
182 * vc-dispatcher.el (vc-finish-logentry): Don't mess so badly with
183 the windows/frames.
184
185 * vc-bzr.el (vc-bzr-shelve-apply): Don't use *vc-bzr-shelve*.
186
187 * vc-dir.el (vc-dir-kill-line): New command.
188 (vc-dir-mode-map): Bind it to C-k.
189 (vc-dir-headers): Abbreviate the working dir.
190
191 * vc-git.el (vc-git-revision-table): Include remote branches.
192
193 2010-10-31 Dan Nicolaescu <dann@ics.uci.edu>
194
195 New VC methods: vc-log-incoming and vc-log-outgoing.
196 * vc.el (vc-print-log-setup-buttons, vc-log-internal-common)
197 (vc-incoming-outgoing-internal, vc-log-incoming, vc-log-outgoing):
198 New functions.
199 (vc-print-log-internal): Just call vc-log-internal-common.
200 (vc-log-view-type): New permanent local variable.
201
202 * vc-hooks.el (vc-menu-map): Bind vc-log-incoming and vc-log-outgoing.
203
204 * vc-bzr.el (vc-bzr-log-view-mode): Use vc-log-view-type instead
205 of the dynamic bound vc-short-log.
206 (vc-bzr-log-incoming, vc-bzr-log-outgoing): New functions.
207
208 * vc-git.el (vc-git-log-outgoing): New function.
209 (vc-git-log-view-mode): Use vc-log-view-type instead
210 of the dynamic bound vc-short-log.
211
212 * vc-hg.el (vc-hg-log-view-mode): Use vc-log-view-type instead of
213 the dynamic bound vc-short-log. Highlight the tag.
214 (vc-hg-log-incoming, vc-hg-log-outgoing): New functions.
215 (vc-hg-outgoing, vc-hg-incoming, vc-hg-outgoing-mode):
216 (vc-hg-incoming-mode): Remove.
217 (vc-hg-extra-menu-map): Do not bind vc-hg-incoming and vc-hg-outgoing.
218
219 Fix default-directory for vc-root-diff.
220 * vc.el (vc-root-diff): Bind default-directory to the root
221 directory for the diff command.
222
223 2010-10-31 Sam Steingold <sds@gnu.org>
224
225 * vc-hg.el (vc-hg-push, vc-hg-pull): Use `apply' when calling
226 `vc-hg-command' with a list of flags.
227
228 2010-10-31 Glenn Morris <rgm@gnu.org>
229
230 * vc-bzr.el (vc-bzr-log-edit-mode): Add --fixes support to
231 log-edit-before-checkin-process.
232
233 * vc.el (vc-modify-change-comment): Pass MODE to vc-start-logentry.
234
235 * vc-bzr.el, vc-hg.el (log-edit-mode): Declare.
236
237 * vc-dispatcher.el (vc-start-logentry): Doc fix.
238 (log-view-process-buffer, log-edit-extra-flags): Declare.
239
240 2010-10-31 Dan Nicolaescu <dann@ics.uci.edu>
241
242 Add special markup processing for commit logs.
243 * log-edit.el (log-edit): Add new argument MODE. Use that mode
244 when non-nil instead of the log-view-mode.
245
246 * vc.el (vc-default-log-edit-mode): New function.
247
248 * vc-dispatcher.el (vc-log-edit): Add a mode argument, pass it to
249 log-edit.
250
251 Support for shelving snapshots and for showing shelves.
252 * vc-bzr.el (vc-bzr-shelve-show, vc-bzr-shelve-show-at-point)
253 (vc-bzr-shelve-apply-and-keep-at-point, vc-bzr-shelve-snapshot):
254 New functions.
255 (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
256 (vc-bzr-extra-menu-map): Map them.
257
258 2010-10-30 Michael Albinus <michael.albinus@gmx.de>
259
260 * net/tramp.el (tramp-handle-insert-file-contents): For root,
261 preserve owner and group when editing files. (Bug#7289)
262
263 2010-10-29 Glenn Morris <rgm@gnu.org>
264
265 * speedbar.el (speedbar-mode):
266 * play/fortune.el (fortune-in-buffer, fortune):
267 * play/gomoku.el (gomoku-mode):
268 * play/landmark.el (lm-mode):
269 * textmodes/bibtex.el (bibtex-validate, bibtex-validate-globally):
270 Replace inappropriate uses of toggle-read-only. (Bug#7292)
271
272 2010-10-28 Glenn Morris <rgm@gnu.org>
273
274 * select.el (x-selection): Mark it as an obsolete alias.
275
276 2010-10-27 Aaron S. Hawley <aaron.s.hawley@gmail.com>
277
278 * add-log.el (find-change-log): Use derived-mode-p rather than
279 major-mode (bug#7284).
280
281 2010-10-27 Glenn Morris <rgm@gnu.org>
282
283 * menu-bar.el (menu-bar-files-menu): Make it into an actual alias,
284 rather than just an unused variable that inherits from the real one.
285
286 2010-10-23 Michael McNamara <mac@mail.brushroad.com>
287
288 * verilog-mode.el (verilog-directive-re): Make this variable
289 auto-built for efficiency of execution and updating.
290 (verilog-extended-complete-re): Support 'pure' fucntion & task
291 declarations (these have no bodies).
292 (verilog-beg-of-statement): General cleanup to enable support of
293 'pure' fucntion & task declarations (these have no bodies).
294 These efforts together fix Verilog bug210 from veripool; which was also
295 noticed by Steve Pearlmutter.
296 (verilog-directive-re, verilog-directive-begin, verilog-indent-re)
297 (verilog-directive-nest-re, verilog-set-auto-endcomments):
298 Support `elsif. Reported by Shankar Giri.
299 (verilog-forward-ws&directives, verilog-in-attribute-p): Fixes for
300 attribute handling for lining up declarations and assignments.
301 (verilog-beg-of-statement-1): Fix issue where continued declaration
302 is indented differently if it is after a begin..end clock.
303 (verilog-in-attribute-p, verilog-skip-backward-comments)
304 (verilog-skip-forward-comment-p): Support proper treatment of
305 attributes by indent code. Reported by Jeff Steele.
306 (verilog-in-directive-p): Fix comment to correctly describe function.
307 (verilog-backward-up-list, verilog-in-struct-region-p)
308 (verilog-backward-token, verilog-in-struct-p)
309 (verilog-in-coverage-p, verilog-do-indent)
310 (verilog-pretty-declarations): Use verilog-backward-up-list as
311 wrapper around backward-up-list inorder to properly skip comments.
312 Reported by David Rogoff.
313 (verilog-property-re, verilog-endcomment-reason-re)
314 (verilog-beg-of-statement, verilog-set-auto-endcomments)
315 (verilog-calc-1 ): Fix for assert a; else b; indentation (new form
316 of if). Reported by Max Bjurling and
317 (verilog-calc-1): Fix for clocking block in modport
318 declaration. Reported by Brian Hunter.
319
320 2010-10-23 Wilson Snyder <wsnyder@wsnyder.org>
321
322 * verilog-mode.el (verilog-auto-inst, verilog-gate-ios)
323 (verilog-gate-keywords, verilog-read-sub-decls)
324 (verilog-read-sub-decls-gate, verilog-read-sub-decls-gate-ios)
325 (verilog-read-sub-decls-line, verilog-read-sub-decls-sig): Support
326 AUTOINST for gate primitives, bug284. Reported by Mark Johnson.
327 (verilog-read-decls): Fix spaces in V2K module parameters causing
328 mis-identification as interfaces, bug287.
329 (verilog-read-decls): Fix not treating "parameter string" as a
330 parameter in AUTOINSTPARAM.
331 (verilog-read-always-signals-recurse, verilog-read-decls): Fix not
332 treating `elsif similar to `endif inside AUTOSENSE.
333 (verilog-do-indent): Implement correct automatic or static task or
334 function end comment highlight. Reported by Steve Pearlmutter.
335 (verilog-font-lock-keywords-2): Fix highlighting of single
336 character pins, bug264. Reported by Michael Laajanen.
337 (verilog-auto-inst, verilog-read-decls, verilog-read-sub-decls)
338 (verilog-read-sub-decls-in-interfaced, verilog-read-sub-decls-sig)
339 (verilog-subdecls-get-interfaced, verilog-subdecls-new): Support
340 interfaces with AUTOINST, bug270. Reported by Luis Gutierrez.
341 (verilog-pretty-expr): Fix interactive arguments, bug272.
342 Reported by Mark Johnson.
343 (verilog-auto-tieoff, verilog-auto-tieoff-ignore-regexp):
344 Add 'verilog-auto-tieoff-ignore-regexp' for AUTOTIEOFF,
345 bug269. Suggested by Gary Delp.
346 (verilog-mode-map, verilog-preprocess, verilog-preprocess-history)
347 (verilog-preprocessor, verilog-set-compile-command):
348 Create verilog-preprocess and verilog-preprocessor to show
349 preprocessed output.
350 (verilog-get-beg-of-line, verilog-get-end-of-line)
351 (verilog-modi-file-or-buffer, verilog-modi-name)
352 (verilog-modi-point, verilog-within-string): Move defmacro's
353 before first use to avoid warning. Reported by Steve Pearlmutter.
354 (verilog-colorize-buffer, verilog-colorize-include-files-buffer)
355 (verilog-colorize-region, verilog-highlight-buffer)
356 (verilog-highlight-includes, verilog-highlight-modules)
357 (verilog-highlight-region, verilog-mode): Rename colorize to
358 highlight to match other packages. Disable module highlighting,
359 as received speed complaints, reenable for experimentation only
360 using new verilog-highlight-modules.
361 (verilog-read-decls): Fix regexp stack overflow in very large
362 AUTO_TEMPLATEs, bug250.
363 (verilog-auto, verilog-delete-auto, verilog-save-buffer-state)
364 (verilog-scan): Create verilog-save-buffer-state to standardize
365 making insignificant changes that shouldn't call hooks.
366 (verilog-save-no-change-functions, verilog-save-scan-cache)
367 (verilog-scan, verilog-scan-cache-ok-p, verilog-scan-region):
368 Create verilog-save-no-change-functions to wrap verilog-scan
369 preservation, and fix to work with nested preserved calls.
370 (verilog-auto-inst, verilog-auto-inst-dot-name): Support .name
371 port syntax for AUTOWIRE, and with new verilog-auto-inst-dot-name
372 generate .name with AUTOINST, bug245. Suggested by David Rogoff.
373 (verilog-submit-bug-report): Update variable list to be complete.
374 (verilog-auto, verilog-colorize-region): Fix AUTO expansion
375 breaking on-the-fly font-locking.
376 (verilog-colorize-buffer, verilog-colorize-include-files)
377 (verilog-colorize-include-files-buffer, verilog-colorize-region)
378 (verilog-load-file-at-mouse, verilog-load-file-at-point)
379 (verilog-mode, verilog-read-inst-module-matcher): With point on a
380 AUTOINST cell instance name, middle mouse button now finds-file on
381 it. Suggested by Brad Dobbie.
382 (verilog-alw-get-temps, verilog-auto-reset)
383 (verilog-auto-sense-sigs, verilog-read-always-signals)
384 (verilog-read-always-signals-recurse): Fix loop indexes being
385 AUTORESET. AUTORESET now assumes any variables in the
386 initialization section of a for() should be ignored. Reported by
387 Dan Dever.
388 (verilog-error-font-lock-keywords)
389 (verilog-error-regexp-emacs-alist)
390 (verilog-error-regexp-xemacs-alist): Fix error detection of
391 Cadence HAL, reported by David Asher. Repair drift between the
392 three similar error variables.
393 (verilog-modi-lookup, verilog-modi-lookup-cache)
394 (verilog-modi-lookup-last-current, verilog-modi-lookup-last-mod)
395 (verilog-modi-lookup-last-modi, verilog-modi-lookup-last-tick):
396 Fix slow verilog-auto expansion on very large files.
397 (verilog-read-sub-decls-expr, verilog-read-sub-decls-line):
398 Fix AUTOOUTPUT treating "1*2" as a signal name in submodule connection
399 "{1*2{...". Broke in last revision.
400 (verilog-read-sub-decls-expr): Fix AUTOOUTPUT not detecting
401 submodule connections with replications "{#{a},#{b}}".
402
403 2010-10-23 Glenn Morris <rgm@gnu.org>
404
405 * comint.el (comint-password-prompt-regexp):
406 Match "enter the password". (Bug#7224)
407
408 2010-10-22 Juanma Barranquero <lekktu@gmail.com>
409
410 * progmodes/dcl-mode.el (dcl-electric-reindent-regexps):
411 Fix typo in docstring.
412
413 2010-10-21 Michael Albinus <michael.albinus@gmx.de>
414
415 * net/tramp.el (tramp-get-inline-coding): Return `nil' in case of
416 errors.
417
418 * net/trampver.el: Update release number.
419
420 2010-10-20 Kenichi Handa <handa@m17n.org>
421
422 * face-remap.el (text-scale-adjust): Call read-event with a proper
423 prompt.
424
425 2010-10-19 Michael Albinus <michael.albinus@gmx.de>
426
427 * net/tramp.el (tramp-do-file-attributes-with-stat)
428 (tramp-do-directory-files-and-attributes-with-stat): Use "e0" in
429 order to make stat results a float. Patch by Andreas Schwab
430 <schwab@linux-m68k.org>.
431
432 2010-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
433
434 * repeat.el (repeat): Use read-key (bug#6256).
435
436 2010-10-18 Chong Yidong <cyd@stupidchicken.com>
437
438 * emacs-lisp/unsafep.el: Don't mark functions that display
439 messages as safe. Suggested by Johan Bockgård.
440
441 2010-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
442
443 * emacs-lisp/regexp-opt.el (regexp-opt-group, regexp-opt-charset):
444 Turn comments into docstrings.
445
446 * minibuffer.el (completion--replace): Move point where it belongs
447 when there's a common suffix (bug#7215).
448
449 2010-10-15 Michael Albinus <michael.albinus@gmx.de>
450
451 * net/tramp.el (tramp-open-connection-setup-interactive-shell):
452 Suppress expansion of tabs to spaces. Reported by Dale Sedivec
453 <dale@codefu.org>.
454
455 2010-10-15 Kenichi Handa <handa@m17n.org>
456
457 * international/characters.el: Add category '|' (word breakable)
458 to fullwidth characters.
459
460 2010-10-14 Kenichi Handa <handa@m17n.org>
461
462 * mail/rmail.el (rmail-show-message-1): Catch an error of
463 base64-decode-region and just show an error message (bug#7165).
464
465 * ps-mule.el (ps-mule-font-spec-list): Delete it. Not used anymore.
466 (ps-mule-begin-job): Fix for the case that only ENCODING is set in
467 a font-spec (bug#7197).
468
469 2010-10-13 Glenn Morris <rgm@gnu.org>
470
471 * mail/emacsbug.el (report-emacs-bug): Mention debbugs.gnu.org.
472
473 2010-10-12 Juanma Barranquero <lekktu@gmail.com>
474
475 * international/mule.el (define-coding-system):
476 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
477 * composite.el (compose-region): Fix typo in docstring.
478
479 2010-10-10 Jan Djärv <jan.h.d@swipnet.se>
480
481 * term/ns-win.el (ns-right-alternate-modifier): New defvar.
482 (ns-right-option-modifier): New alias for ns-right-alternate-modifier.
483 (mac-right-option-modifier): New alias for ns-right-option-modifier.
484
485 * cus-start.el (all): ns-right-alternate-modifier is new.
486
487 2010-10-10 Andreas Schwab <schwab@linux-m68k.org>
488
489 * Makefile.in (ELCFILES): Update.
490
491 2010-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
492
493 * emacs-lisp/lisp.el (lisp-completion-at-point):
494 Use emacs-lisp-mode-syntax-table for the whole function.
495
496 2010-10-09 Richard Sharman <richard_sharman@mitel.com> (tiny change)
497
498 * progmodes/gdb-ui.el (gdb-mouse-toggle-breakpoint-margin)
499 (gdb-mouse-toggle-breakpoint-fringe): Correct regexp to
500 work when breakpoint number exceeds nine.
501
502 2010-10-05 David Koppelman <koppel@ece.lsu.edu>
503
504 * hi-lock.el (hi-lock-font-lock-hook): Check font-lock-fontified
505 instead of font-lock-mode before adding keywords.
506 Remove hi-lock-mode off code. Remove inhibit hack.
507 (hi-lock-set-pattern): Only add keywords if font-lock-fontified
508 non-nil; removed hook inhibit hack.
509
510 2010-10-09 Glenn Morris <rgm@gnu.org>
511
512 * emacs-lisp/shadow.el (find-emacs-lisp-shadows): Rename it...
513 (load-path-shadows-find): ... to this.
514 (list-load-path-shadows): Update for above change.
515
516 * mail/mail-utils.el (mail-mbox-from): Also try return-path.
517
518 2010-10-08 Glenn Morris <rgm@gnu.org>
519
520 * emacs-lisp/cl-compat.el, emacs-lisp/lmenu.el: Move to obsolete/.
521
522 * emacs-lisp/shadow.el (lisp-shadow): Change prefix.
523 (shadows-compare-text-p): Make it an obsolete alias for...
524 (load-path-shadows-compare-text): ... new name.
525 (find-emacs-lisp-shadows): Update for above name change.
526 (load-path-shadows-same-file-or-nonexistent): New name for the old
527 shadow-same-file-or-nonexistent.
528
529 2010-10-03 Chong Yidong <cyd@stupidchicken.com>
530
531 * minibuffer.el (completion--some, completion--do-completion)
532 (minibuffer-complete-and-exit, minibuffer-completion-help)
533 (completion-basic-try-completion)
534 (completion-basic-all-completions)
535 (completion-pcm--find-all-completions): Use lexical-let to
536 avoid some false matches in variable completion (Bug#7056)
537
538 2010-10-03 Olof Ohlsson Sax <olof.ohlsson.sax@gmail.com> (tiny change)
539
540 * vc-svn.el (vc-svn-merge-news): Use --non-interactive. (Bug#7152)
541
542 2010-10-03 Leo <sdl.web@gmail.com>
543
544 * dnd.el (dnd-get-local-file-name): If MUST-EXIST is non-nil, only
545 return non-nil if the file exists (Bug#7090).
546
547 2010-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
548
549 * minibuffer.el (completion--replace):
550 Better preserve markers (bug#7138).
551
552 2010-09-29 Juanma Barranquero <lekktu@gmail.com>
553
554 * server.el (server-process-filter): Doc fix.
555
556 2010-09-27 Drew Adams <drew.adams@oracle.com>
557
558 * dired.el (dired-save-positions): Doc fix. (Bug#7119)
559
560 2010-09-27 Andreas Schwab <schwab@linux-m68k.org>
561
562 * Makefile.in (ELCFILES): Update.
563
564 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
565 Avoid infinite recursion on erroneous lambda form. (Bug#7114)
566
567 2010-09-27 Kenichi Handa <handa@m17n.org>
568
569 * tar-mode.el (tar-header-block-tokenize): Decode filenames in
570 "ustar" format.
571
572 2010-09-27 Kenichi Handa <handa@m17n.org>
573
574 * international/mule.el (define-coding-system): Docstring fixed.
575
576 * international/mule-diag.el (describe-character-set): Use princ
577 with proper print-length and print-level instead of insert.
578
579 2010-09-26 Juanma Barranquero <lekktu@gmail.com>
580
581 * window.el (walk-windows): Doc fix (bug#7105).
582
583 2010-09-23 Glenn Morris <rgm@gnu.org>
584
585 * isearch.el (isearch-lazy-highlight-cleanup)
586 (isearch-lazy-highlight-initial-delay)
587 (isearch-lazy-highlight-interval)
588 (isearch-lazy-highlight-max-at-a-time, isearch-lazy-highlight-face):
589 * net/net-utils.el (ipconfig-program-options):
590 Move aliases to options before the associated definitions.
591
592 2010-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
593
594 * newcomment.el (comment-normalize-vars): Better test validity of
595 comment-end-skip.
596
597 2010-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
598
599 * emacs-lisp/float-sup.el (float-pi): New name for `pi'.
600 (float-e): New name for `e'.
601 (degrees-to-radians, radians-to-degrees):
602 * calendar/solar.el (solar-longitude):
603 * calculator.el (calculator-registers, calculator-funcall):
604 * textmodes/artist.el (artist-spray-random-points):
605 * play/bubbles.el (bubbles--initialize-images): Use new names.
606
607 2010-09-19 Eric M. Ludlam <zappo@gnu.org>
608
609 Update to CEDET 1.0's version of EIEIO.
610
611 * emacs-lisp/eieio.el (eieio-specialized-key-to-generic-key):
612 New function.
613 (eieio-defmethod, eieio-generic-form, eieio-generic-call): Use it.
614 (eieio-default-eval-maybe): Eval val instead of unquoting only.
615 (class-precedence-list): If class is nil, return nil.
616 (eieio-generic-call): If class of first input arg is nil, don't
617 look up static methods, and do check for primary methods.
618 (initialize-instance): See if the default needs to be evaluated
619 during the constructor.
620 (eieio-perform-slot-validation-for-default): Don't do the check
621 for values that will eventually be evaluated.
622 (eieio-eval-default-p): New function.
623 (eieio-default-eval-maybe): Use it.
624
625 2010-07-03 Jan Moringen <jan.moringen@uni-bielefeld.de>
626
627 * emacs-lisp/eieio.el (eieio-defclass): Allow :c3
628 method-invocation-order.
629 (eieio-c3-candidate, eieio-c3-merge-lists): New functions.
630 (eieio-class-precedence-dfs): Compute class precedence list using
631 dfs algorithm.
632 (eieio-class-precedence-bfs): Compute class precedence list using
633 bfs algorithm.
634 (eieio-class-precedence-c3): Compute class precedence list using
635 c3 algorithm.
636 (class-precedence-list): New function.
637 (eieiomt-method-list, eieiomt-sym-optimize): Use it.
638 (inconsistent-class-hierarchy): New error symbol.
639 (call-next-method): Stow the replacement argument list for future
640 call-next-method invocations.
641
642 2010-09-15 Glenn Morris <rgm@gnu.org>
643
644 * calendar/appt.el (appt-check): If not displaying the diary,
645 use (diary 1) to only get the entries we need.
646 (appt-make-list): Sort diary-list-entries, if we cannot guarantee
647 that it is in day order. (Bug#7019)
648
649 * calendar/appt.el (appt-check): Rather than showing the diary,
650 just turn off invisible display, and only if needed.
651
652 * calendar/diary-lib.el (diary-list-entries): Doc fix. (Bug#7019)
653
654 2010-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
655
656 * emacs-lisp/byte-run.el (set-advertised-calling-convention):
657 Add `when' argument. Update callers.
658
659 * subr.el (unintern): Declare the obarray arg mandatory.
660
661 2010-09-14 Glenn Morris <rgm@gnu.org>
662
663 * calendar/diary-lib.el (diary-list-entries-hook, diary-sort-entries):
664 Doc fixes.
665
666 * calendar/diary-lib.el (diary-included-files): New variable.
667 (diary-list-entries): Maybe initialize diary-included-files.
668 (diary-include-other-diary-files): Append to diary-included-files.
669 * calendar/appt.el (appt-update-list): Also check the members of
670 diary-included-files. (Bug#6999)
671 (appt-check): Doc fix.
672
673 2010-09-12 David Reitter <david.reitter@gmail.com>
674
675 * simple.el (line-move-visual): Do not truncate goal column to
676 integer size. (Bug#7020)
677
678 2010-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
679
680 * repeat.el (repeat): Allow repeating when the last event is a click.
681 Suggested by Drew Adams (bug#6256).
682
683 2010-09-11 Sascha Wilde <wilde@sha-bang.de>
684
685 * vc/vc-hg.el (vc-hg-state,vc-hg-working-revision):
686 Replace setting HGRCPATH to "" by some less invasive --config options.
687
688 2010-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
689
690 * font-lock.el (font-lock-beginning-of-syntax-function):
691 Mark as obsolete.
692
693 2010-09-10 Glenn Morris <rgm@gnu.org>
694
695 * menu-bar.el (menu-bar-options-save): Fix handling of menu-bar
696 and tool-bar modes. (Bug#6211)
697 (menu-bar-mode): Move setting of standard-value after the
698 minor-mode definition, otherwise it seems to have no effect.
699
700 2010-09-08 Masatake YAMATO <yamato@redhat.com>
701
702 * progmodes/antlr-mode.el (antlr-font-lock-additional-keywords):
703 Fix typo. (Bug#6976)
704
705 2010-09-06 Vinicius Jose Latorre <viniciusjl@ig.com.br>
706
707 * whitespace.el: Allow cleaning up blanks without blank
708 visualization (Bug#6651). Adjust help window for
709 whitespace-toggle-options (Bug#6479). Allow to use fill-column
710 instead of whitespace-line-column (from EmacsWiki). New version 13.1.
711 (whitespace-style): Add new value 'face. Adjust docstring.
712 (whitespace-space, whitespace-hspace, whitespace-tab):
713 Adjust foreground property face.
714 (whitespace-line-column): Adjust docstring and type declaration.
715 (whitespace-style-value-list, whitespace-toggle-option-alist)
716 (whitespace-help-text): Adjust const initialization.
717 (whitespace-toggle-options, global-whitespace-toggle-options):
718 Adjust docstring.
719 (whitespace-display-window, whitespace-interactive-char)
720 (whitespace-style-face-p, whitespace-color-on): Adjust code.
721 (whitespace-help-scroll): New fun.
722
723 2010-09-05 Alexander Klimov <alserkli@inbox.ru> (tiny change)
724
725 * files.el (directory-abbrev-alist): Use \` as default regexp.
726
727 * emacs-lisp/rx.el (rx-any): Don't explode ranges that end in special
728 chars like - or ] (bug#6984).
729 (rx-any-condense-range): Explode 2-char ranges.
730
731 2010-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
732
733 * textmodes/bibtex.el:
734 * proced.el: Update to new email for Roland Winkler <winkler@gnu.org>.
735
736 2010-09-02 Glenn Morris <rgm@gnu.org>
737
738 * desktop.el (desktop-path): Bump :version after 2009-09-15 change.
739
740 2010-08-31 Kenichi Handa <handa@m17n.org>
741
742 * international/mule-cmds.el (standard-display-european-internal):
743 Setup standard-display-table for 8-bit characters by storing 8-bit
744 characters in the element vector.
745
746 * disp-table.el (standard-display-8bit):
747 Setup standard-display-table for 8-bit characters by storing 8-bit
748 characters in the element vector.
749 (standard-display-european): Likewise.
750
751 2010-08-26 Michael Albinus <michael.albinus@gmx.de>
752
753 Sync with Tramp 2.1.19.
754
755 * net/tramp-cmds.el (tramp-cleanup-all-connections)
756 (tramp-reporter-dump-variable, tramp-load-report-modules)
757 (tramp-append-tramp-buffers): Use `tramp-compat-funcall'.
758 (tramp-bug): Recommend setting of `tramp-verbose' to 9.
759
760 * net/tramp-compat.el (top): Do not autoload
761 `tramp-handle-file-remote-p'. Load tramp-util.el and tramp-vc.el
762 only when `start-file-process' is not bound.
763 (byte-compile-not-obsolete-vars): Define if not bound.
764 (tramp-compat-funcall): New defmacro.
765 (tramp-compat-line-beginning-position)
766 (tramp-compat-line-end-position)
767 (tramp-compat-temporary-file-directory)
768 (tramp-compat-make-temp-file, tramp-compat-file-attributes)
769 (tramp-compat-copy-file, tramp-compat-copy-directory)
770 (tramp-compat-delete-file, tramp-compat-delete-directory)
771 (tramp-compat-number-sequence, tramp-compat-process-running-p):
772 Use it.
773 (tramp-advice-file-expand-wildcards): Do not use
774 `tramp-handle-file-remote-p'.
775 (tramp-compat-make-temp-file): Simplify fallback implementation.
776 (tramp-compat-copy-file): Add PRESERVE-SELINUX-CONTEXT.
777 (tramp-compat-copy-tree): Remove function.
778 (tramp-compat-delete-file): New defun.
779 (tramp-compat-delete-directory): Provide implementation for older
780 Emacsen.
781 (tramp-compat-file-attributes): Handle only
782 `wrong-number-of-arguments' error.
783
784 * net/tramp-fish.el (tramp-fish-handle-copy-file):
785 Add PRESERVE_SELINUX_CONTEXT.
786 (tramp-fish-handle-delete-file): Add TRASH arg.
787 (tramp-fish-handle-directory-files-and-attributes):
788 Do not use `tramp-fish-handle-file-attributes.
789 (tramp-fish-handle-file-local-copy)
790 (tramp-fish-handle-insert-file-contents)
791 (tramp-fish-maybe-open-connection): Use `with-progress-reporter'.
792
793 * net/tramp-gvfs.el (top): Require url-util.
794 (tramp-gvfs-mount-point): Remove.
795 (tramp-gvfs-file-name-handler-alist): Add `file-selinux-context'
796 and `set-file-selinux-context'.
797 (tramp-gvfs-stringify-dbus-message, tramp-gvfs-send-command)
798 (tramp-gvfs-handle-file-selinux-context)
799 (tramp-gvfs-handle-set-file-selinux-context): New defuns.
800 (with-tramp-dbus-call-method): Format trace message.
801 (tramp-gvfs-handle-copy-file): Handle PRESERVE-SELINUX-CONTEXT.
802 (tramp-gvfs-handle-copy-file, tramp-gvfs-handle-rename-file):
803 Implement backup call, when operation on local files fails.
804 Use progress reporter. Flush properties of changed files.
805 (tramp-gvfs-handle-delete-file): Add TRASH arg.
806 Use `tramp-compat-delete-file'.
807 (tramp-gvfs-handle-expand-file-name): Expand "~/".
808 (tramp-gvfs-handle-make-directory): Make more traces.
809 (tramp-gvfs-handle-write-region): Protect deleting tmpfile.
810 (tramp-gvfs-url-file-name): Hexify file name in url.
811 (tramp-gvfs-fuse-file-name): Take also prefix (like dav shares)
812 into account for the resulting file name.
813 (tramp-gvfs-handler-askquestion): Preserve current message, in
814 order to let progress reporter continue afterwards. (Bug#6257)
815 Return dummy mountpoint, when the answer is "no".
816 See `tramp-gvfs-maybe-open-connection'.
817 (tramp-gvfs-handler-mounted-unmounted)
818 (tramp-gvfs-connection-mounted-p): Test also for new mountspec
819 attribute "default_location". Set "prefix" property.
820 Handle default-location.
821 (tramp-gvfs-mount-spec): Return both prefix and mountspec.
822 (tramp-gvfs-maybe-open-connection): Test, whether mountpoint
823 exists. Raise an error, if not (due to a corresponding answer
824 "no" in interactive questions, for example).
825 Use `tramp-compat-funcall'.
826
827 * net/tramp-imap.el (top): Autoload `epg-make-context'.
828 (tramp-imap-handle-copy-file): Add PRESERVE-SELINUX-CONTEXT.
829 (tramp-imap-do-copy-or-rename-file)
830 (tramp-imap-handle-insert-file-contents)
831 (tramp-imap-handle-file-local-copy): Use `with-progress-reporter'.
832 (tramp-imap-handle-delete-file): Add TRASH arg.
833
834 * net/tramp-smb.el (tramp-smb-handle-copy-file):
835 Add PRESERVE-SELINUX-CONTEXT.
836 (tramp-smb-handle-copy-file)
837 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
838 (tramp-smb-handle-write-region, tramp-smb-maybe-open-connection):
839 Use `with-progress-reporter'.
840 (tramp-smb-handle-delete-file): Add TRASH arg.
841
842 * net/tramp.el (tramp-methods): Move hostname to the end in all
843 ssh `tramp-login-args'. Add `tramp-async-args' attribute where
844 appropriate.
845 (tramp-verbose): Describe verbose level 9.
846 (tramp-completion-function-alist)
847 (tramp-file-name-regexp, tramp-chunksize)
848 (tramp-local-coding-commands, tramp-remote-coding-commands)
849 (with-connection-property, tramp-completion-mode-p)
850 (tramp-action-process-alive, tramp-action-out-of-band)
851 (tramp-check-for-regexp, tramp-file-name-p, tramp-equal-remote)
852 (tramp-exists-file-name-handler): Fix docstring.
853 (tramp-remote-process-environment): Use `format' instead of
854 `concat'. Protect version string by apostroph.
855 (tramp-shell-prompt-pattern): Do not use a shy group in case of
856 XEmacs.
857 (tramp-file-name-regexp-unified)
858 (tramp-completion-file-name-regexp-unified): On W32 systems, do
859 not regard the volume letter as remote filename. (Bug#5447)
860 (tramp-perl-file-attributes)
861 (tramp-perl-directory-files-and-attributes): Don't pass "$3".
862 (tramp-vc-registered-read-file-names): Read input as
863 here-document, otherwise the command could exceed maximum length
864 of command line.
865 (tramp-file-name-handler-alist): Add `file-selinux-context' and
866 `set-file-selinux-context'.
867 (tramp-debug-message): Add `tramp-compat-funcall' to ignored
868 backtrace functions.
869 (tramp-error-with-buffer): Don't show the connection buffer when
870 we are in completion mode.
871 (tramp-progress-reporter-update, tramp-remote-selinux-p)
872 (tramp-handle-file-selinux-context)
873 (tramp-handle-set-file-selinux-context, tramp-process-sentinel)
874 (tramp-connectable-p, tramp-open-shell, tramp-get-remote-trash):
875 New defuns.
876 (with-progress-reporter): New defmacro.
877 (tramp-debug-outline-regexp): New defconst.
878 (top, tramp-rfn-eshadow-setup-minibuffer)
879 (tramp-rfn-eshadow-update-overlay, tramp-handle-set-file-times)
880 (tramp-handle-dired-compress-file, tramp-handle-shell-command)
881 (tramp-completion-mode-p, tramp-check-for-regexp)
882 (tramp-open-connection-setup-interactive-shell)
883 (tramp-compute-multi-hops, tramp-read-passwd, tramp-clear-passwd)
884 (tramp-time-diff, tramp-coding-system-change-eol-conversion)
885 (tramp-set-process-query-on-exit-flag, tramp-unload-tramp):
886 Use `tramp-compat-funcall'.
887 (tramp-handle-make-symbolic-link): Flush file properties.
888 (tramp-handle-load, tramp-handle-file-local-copy)
889 (tramp-handle-insert-file-contents, tramp-handle-write-region)
890 (tramp-handle-vc-registered, tramp-maybe-send-script)
891 (tramp-find-shell): Use `with-progress-reporter'.
892 (tramp-do-file-attributes-with-stat): Add space in format string,
893 in order to work around a bug in pdksh. Reported by Gilles Pion
894 <gpion@lfdj.com>.
895 (tramp-handle-verify-visited-file-modtime): Do not send a command
896 when the connection is not established.
897 (tramp-handle-set-file-times): Simplify the check for utc.
898 (tramp-handle-directory-files-and-attributes)
899 (tramp-get-remote-path): Use `copy-tree'.
900 (tramp-completion-handle-file-name-all-completions): Ensure, that
901 non remote files are still checked. Oops.
902 (tramp-handle-copy-file, tramp-do-copy-or-rename-file):
903 Handle PRESERVE-SELINUX-CONTEXT.
904 (tramp-do-copy-or-rename-file): Add progress reporter.
905 (tramp-do-copy-or-rename-file-directly): Do not use
906 `tramp-handle-file-remote-p'.
907 (tramp-do-copy-or-rename-file-out-of-band):
908 Use `tramp-compat-delete-directory'.
909 (tramp-do-copy-or-rename-file-out-of-band)
910 (tramp-compute-multi-hops, tramp-maybe-open-connection):
911 Use `format-spec-make'.
912 (tramp-handle-delete-file): Add TRASH arg.
913 (tramp-handle-dired-uncache): Flush directory cache, not only file
914 cache.
915 (tramp-handle-expand-file-name)
916 (tramp-completion-handle-file-name-all-completions)
917 (tramp-completion-handle-file-name-completion):
918 Use `tramp-connectable-p'.
919 (tramp-handle-start-file-process): Set connection property "vec".
920 Use it, in order to invalidate file caches. Check only for
921 `remote-tty' process property.
922 Implement tty setting. (Bug#4604, Bug#6360)
923 (tramp-file-name-for-operation): Add `call-process-region' and
924 `set-file-selinux-context'.
925 (tramp-find-foreign-file-name-handler)
926 (tramp-advice-make-auto-save-file-name)
927 (tramp-set-auto-save-file-modes): Remove superfluous check for
928 `stringp'. This is done inside `tramp-tramp-file-p'.
929 (tramp-file-name-handler): Trace 'quit. Catch the error for some
930 operations when we are in completion mode. This gives the user
931 the chance to correct the file name in the minibuffer.
932 (tramp-completion-mode-p): Use `non-essential'.
933 (tramp-handle-file-name-all-completions): Backward/ XEmacs
934 compatibility: Use `completion-ignore-case' if
935 `read-file-name-completion-ignore-case' does not exist.
936 (tramp-get-debug-buffer): Use `tramp-debug-outline-regexp'.
937 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
938 `tramp-open-shell'.
939 (tramp-action-password): Hide password prompt before next run.
940 (tramp-process-actions): Widen connection buffer for the trace.
941 (tramp-open-connection-setup-interactive-shell): Set `remote-tty'
942 process property. Trace stty settings if `tramp-verbose' >= 9.
943 Apply workaround for IRIX64 bug. Move argument of last
944 `tramp-send-command' where it belongs to.
945 (tramp-maybe-open-connection): Use `async-args' and `gw-args' in
946 front of `login-args'.
947 (tramp-get-ls-command, tramp-get-ls-command-with-dired): Run tests
948 on "/dev/null" instead of "/".
949 (tramp-get-ls-command-with-dired): Make test for "--dired"
950 stronger.
951 (tramp-set-auto-save-file-modes): Adapt version check.
952 (tramp-set-process-query-on-exit-flag): Fix wrong parentheses.
953 (tramp-handle-process-file): Call the program in a subshell, in
954 order to preserve working directory.
955 (tramp-handle-shell-command): Don't use hard-wired "/bin/sh" but
956 `tramp-remote-sh' from `tramp-methods'.
957 (tramp-get-ls-command): Make test for "--color=never" stronger.
958 (tramp-check-for-regexp): Use (forward-line 1).
959
960 * net/trampver.el: Update release number.
961
962 2010-08-26 Magnus Henoch <magnus.henoch@gmail.com>
963
964 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Do not pass
965 empty argument to gvfs-copy.
966
967 2010-08-26 Chong Yidong <cyd@stupidchicken.com>
968
969 * net/tramp-compat.el (tramp-compat-delete-file): Rewrite to
970 handle new TRASH arg of `delete-file'.
971
972 2010-08-26 Christian Lynbech <christian.lynbech@tieto.com> (tiny change)
973
974 * net/tramp.el (tramp-handle-insert-directory): Don't use
975 `forward-word', its default syntax could be changed.
976
977 2010-08-26 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
978 Michael Albinus <michael.albinus@gmx.de>
979
980 Implement compression for inline methods.
981
982 * net/tramp.el (tramp-inline-compress-start-size): New defcustom.
983 (tramp-copy-size-limit): Allow also nil.
984 (tramp-inline-compress-commands): New defconst.
985 (tramp-find-inline-compress, tramp-get-inline-compress)
986 (tramp-get-inline-coding): New defuns.
987 (tramp-get-remote-coding, tramp-get-local-coding): Remove,
988 replaced by `tramp-get-inline-coding'.
989 (tramp-handle-file-local-copy, tramp-handle-write-region)
990 (tramp-method-out-of-band-p): Use `tramp-get-inline-coding'.
991
992 2010-08-26 Noah Lavine <noah549@gmail.com> (tiny change)
993
994 Detect ssh 'ControlMaster' argument automatically in some cases.
995
996 * net/tramp.el (tramp-detect-ssh-controlmaster): New defun.
997 (tramp-default-method): Use it.
998
999 2010-08-26 Karel Klíč <kklic@redhat.com>
1000
1001 * net/tramp.el (tramp-file-name-for-operation):
1002 Add file-selinux-context.
1003
1004 2010-08-26 Łukasz Stelmach <lukasz.stelmach@iem.pw.edu.pl> (tiny change)
1005
1006 * play/cookie1.el (read-cookie): Fix off-by-one error (bug#6921).
1007
1008 2010-08-26 Chong Yidong <cyd@stupidchicken.com>
1009
1010 * simple.el (beginning-of-buffer, end-of-buffer): Doc fix
1011 (Bug#6907).
1012
1013 2010-08-23 Chris Foote <chris@foote.com.au> (tiny change)
1014
1015 * progmodes/python.el (python-block-pairs): Allow use of "finally"
1016 with "else" (Bug#3991).
1017
1018 2010-08-22 Leo <sdl.web@gmail.com>
1019
1020 * net/rcirc.el (rcirc-add-or-remove): Accept a list of elements.
1021 (ignore, bright, dim, keyword): Split list of nicknames before
1022 passing to rcirc-add-or-remove (Bug#6894).
1023
1024 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
1025
1026 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix (Bug#6880).
1027
1028 2010-08-21 Vinicius Jose Latorre <viniciusjl@ig.com.br>
1029
1030 * whitespace.el: Fix slow cursor movement (Bug#6172). Reported by
1031 Christoph Groth <cwg@falma.de> and Liu Xin <x_liu@neusoft.com>.
1032 New version 13.0.
1033 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
1034 Adjust initialization.
1035 (whitespace-bob-marker, whitespace-eob-marker)
1036 (whitespace-buffer-changed): New vars.
1037 (whitespace-cleanup, whitespace-color-on, whitespace-color-off)
1038 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp)
1039 (whitespace-post-command-hook, whitespace-display-char-on):
1040 Adjust code.
1041 (whitespace-looking-back, whitespace-buffer-changed): New funs.
1042 (whitespace-space-regexp, whitespace-tab-regexp): Eliminate funs.
1043
1044 2010-08-21 Leo <sdl.web@gmail.com>
1045
1046 Fix buffer-list rename&refresh after killing a buffer in ido.
1047 * lisp/ido.el: Revert Óscar's.
1048 (ido-kill-buffer-at-head): Exit the minibuffer with ido-exit=refresh.
1049 Remember the buffers at head, rather than their name.
1050 * lisp/iswitchb.el (iswitchb-kill-buffer): Re-make the list.
1051
1052 2010-08-21 Kirk Kelsey <kirk.kelsey@0x4b.net> (tiny change)
1053 Stefan Monnier <monnier@iro.umontreal.ca>
1054
1055 * progmodes/make-mode.el (makefile-fill-paragraph): Account for the
1056 extra backslash added to each line (bug#6890).
1057
1058 2010-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
1059
1060 * subr.el (read-key): Don't echo keystrokes (bug#6883).
1061
1062 2010-08-21 Glenn Morris <rgm@gnu.org>
1063
1064 * menu-bar.el (menu-bar-games-menu): Add landmark.
1065
1066 2010-08-20 Glenn Morris <rgm@gnu.org>
1067
1068 * align.el (align-regexp): Make group and spacing arguments
1069 use the interactive defaults when non-interactive. (Bug#6698)
1070
1071 * mail/rmail.el (rmail-forward): Replace mail-text-start with its
1072 expansion, so as not to need sendmail.
1073 (mail-text-start): Remove declaration.
1074 (rmail-retry-failure): Require sendmail.
1075
1076 2010-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
1077
1078 * subr.el (read-key): Don't hide the menu-bar entries (bug#6881).
1079
1080 2010-08-18 Michael Albinus <michael.albinus@gmx.de>
1081
1082 * progmodes/flymake.el (flymake-start-syntax-check-process):
1083 Use `start-file-process' in order to let it run also on remote hosts.
1084
1085 2010-08-18 Kenichi Handa <handa@m17n.org>
1086
1087 * files.el: Add `word-wrap' as safe local variable.
1088
1089 2010-08-18 Glenn Morris <rgm@gnu.org>
1090
1091 * woman.el (woman-translate): Case matters. (Bug#6849)
1092
1093 2010-08-14 Chong Yidong <cyd@stupidchicken.com>
1094
1095 * simple.el (kill-region): Doc fix (Bug#6787).
1096
1097 2010-08-14 Glenn Morris <rgm@gnu.org>
1098
1099 * calendar/diary-lib.el (diary-header-line-format):
1100 Fit it to the window, not the frame.
1101
1102 2010-08-11 Andreas Schwab <schwab@linux-m68k.org>
1103
1104 * subr.el (ignore-errors): Add debug declaration.
1105
1106 2010-08-09 Geoff Gole <geoffgole@gmail.com> (tiny change)
1107
1108 * whitespace.el (whitespace-color-off): Remove post-command-hook
1109 locally.
1110
1111 2010-08-08 Johan Bockgård <bojohan@gnu.org>
1112
1113 * replace.el (replace-highlight): Bind isearch-forward and
1114 isearch-error, ensuring that highlighting is updated if the user
1115 switches the search direction (Bug#6808).
1116
1117 * isearch.el (isearch-lazy-highlight-forward): New var.
1118 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
1119 (isearch-lazy-highlight-update): Use it.
1120
1121 2010-08-06 Kenichi Handa <handa@m17n.org>
1122
1123 * international/mule.el (define-charset): Store NAME as :base property.
1124 (ctext-non-standard-encodings-table): Pay attention to charset aliases.
1125 (ctext-pre-write-conversion): Sort ctext-standard-encodings by the
1126 current priority. Force using the designation of the specific
1127 charset by adding `charset' text property. Improve the whole
1128 algorithm.
1129
1130 2010-08-05 Juanma Barranquero <lekktu@gmail.com>
1131
1132 * emulation/pc-select.el (pc-selection-mode-hook)
1133 (copy-region-as-kill-nomark, beginning-of-buffer-mark)
1134 (pc-selection-mode): Fix typos in docstrings.
1135
1136 2010-08-04 Kenichi Handa <handa@m17n.org>
1137
1138 * language/cyrillic.el: Don't add "microsoft-cp1251" to
1139 ctext-non-standard-encodings-alist here.
1140
1141 * international/mule.el (ctext-non-standard-encodings-alist):
1142 Add "koi8-r" and "microsoft-cp1251".
1143 (ctext-standard-encodings): New variable.
1144 (ctext-non-standard-encodings-table): List only elements for
1145 non-standard encodings.
1146 (ctext-pre-write-conversion): Adjust for the above change.
1147 Check ctext-standard-encodings.
1148
1149 * international/mule-conf.el (compound-text): Doc fix.
1150 (ctext-no-compositions): Doc fix.
1151 (compound-text-with-extensions): Doc fix.
1152
1153 2010-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
1154
1155 * simple.el (exchange-dot-and-mark): Mark obsolete, finally.
1156
1157 2010-08-03 Juanma Barranquero <lekktu@gmail.com>
1158
1159 * progmodes/which-func.el (which-func-format): Split help-echo text
1160 into lines, like other mode-line tooltips.
1161
1162 * server.el (server-start): When using TCP sockets, force IPv4
1163 and use a literal 127.0.0.1 for localhost. (Related to bug#6781.)
1164
1165 2010-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
1166
1167 * bindings.el (complete-symbol): Run completion-at-point as a fallback.
1168
1169 2010-08-02 Juanma Barranquero <lekktu@gmail.com>
1170
1171 * term.el (term-delimiter-argument-list): Reflow docstring.
1172 (term-read-input-ring, term-write-input-ring, term-send-input)
1173 (term-bol, term-erase-in-display, serial-supported-or-barf):
1174 Fix typos in docstrings.
1175
1176 2010-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
1177
1178 * bindings.el (function-key-map): Add a S-tab => backtab fallback.
1179
1180 2010-08-01 Juanma Barranquero <lekktu@gmail.com>
1181
1182 * dabbrev.el (dabbrev-completion): Fix typo in docstring.
1183
1184 2010-08-01 MON KEY <monkey@sandpframing.com> (tiny change)
1185
1186 * emacs-lisp/syntax.el (syntax-ppss-toplevel-pos):
1187 Fix typo in docstring (bug#6747).
1188
1189 2010-07-30 Leo <sdl.web@gmail.com>
1190
1191 * eshell/esh-io.el (eshell-get-target): Better detection of
1192 read-only file (Bug#6762).
1193
1194 2010-07-30 Juanma Barranquero <lekktu@gmail.com>
1195
1196 * align.el (align-default-spacing): Doc fix.
1197 (align-region-heuristic, align-regexp): Fix typos in docstrings.
1198
1199 2010-07-23 Juanma Barranquero <lekktu@gmail.com>
1200
1201 * help-fns.el (find-lisp-object-file-name): Doc fix (bug#6494).
1202
1203 2010-07-19 Juanma Barranquero <lekktu@gmail.com>
1204
1205 * time.el (display-time-day-and-date): Remove spurious * in docstring.
1206 (display-time-world-buffer-name, display-time-world-mode-map):
1207 Fix typos in docstrings.
1208
1209 2010-07-17 Shyam Karanatt <shyam@swathanthran.in> (tiny change)
1210
1211 * image-mode.el (image-display-size): New function.
1212 (image-forward-hscroll, image-next-line, image-eol, image-eob)
1213 (image-mode-fit-frame): Use it (Bug#6639).
1214
1215 2010-07-17 Chong Yidong <cyd@stupidchicken.com>
1216
1217 * dired.el (dired-buffers-for-dir): Handle list values of
1218 dired-directory (Bug#6636).
1219
1220 2010-07-16 Reiner Steib <Reiner.Steib@gmx.de>
1221
1222 * vc.el (vc-coding-system-inherit-eol): New defvar.
1223 (vc-coding-system-for-diff): Use it to decide whether to inherit
1224 from the file the EOL format for reading the diffs of that file.
1225 (Bug#4451)
1226
1227 2010-07-16 Eli Zaretskii <eliz@gnu.org>
1228
1229 * mail/rmailmm.el (rmail-mime-save): Make the temp buffer
1230 unibyte, so compressed attachments are not compressed again.
1231
1232 2010-07-14 Jan Djärv <jan.h.d@swipnet.se>
1233
1234 * xt-mouse.el (xterm-mouse-event-read): Fix for characters > 127
1235 now that unicode is used (Bug#6594).
1236
1237 2010-07-14 Chong Yidong <cyd@stupidchicken.com>
1238
1239 * simple.el (push-mark-command): Set the selection if
1240 select-active-regions is non-nil.
1241
1242 2010-07-10 Glenn Morris <rgm@gnu.org>
1243
1244 * calendar/calendar.el (calendar-week-end-day): New function.
1245 * calendar/cal-tex.el (cal-tex-cursor-month): Remove unused vars.
1246 Respect calendar-week-start-day. (Bug#6606)
1247 (cal-tex-insert-day-names, cal-tex-insert-blank-days)
1248 (cal-tex-insert-blank-days-at-end): Respect calendar-week-start-day.
1249 (cal-tex-first-blank-p, cal-tex-last-blank-p): Simplify, and
1250 respect calendar-week-start-day.
1251
1252 2010-07-10 Chong Yidong <cyd@stupidchicken.com>
1253
1254 * simple.el (use-region-p): Doc fix (Bug#6607).
1255
1256 2010-07-07 Christoph Scholtes <cschol2112@gmail.com>
1257
1258 * progmodes/python.el (python-font-lock-keywords): Add Python 2.7
1259 builtins (BufferError, BytesWarning, WindowsError; callables
1260 bin, bytearray, bytes, format, memoryview, next, print; __package__).
1261
1262 2010-07-07 Glenn Morris <rgm@gnu.org>
1263
1264 * play/zone.el (zone-fall-through-ws): Fix next-line ->
1265 forward-line fallout.
1266
1267 2010-07-06 Chong Yidong <cyd@stupidchicken.com>
1268
1269 * mouse.el (mouse-appearance-menu): Add docstring.
1270
1271 * help.el (describe-key): Print up-event using key-description.
1272
1273 2010-07-03 Michael Albinus <michael.albinus@gmx.de>
1274
1275 * net/zeroconf.el (zeroconf-resolve-service)
1276 (zeroconf-service-resolver-handler): Use `dbus-byte-array-to-string'.
1277 (zeroconf-publish-service): Use `dbus-string-to-byte-array'.
1278
1279 2010-07-03 Jan Moringen <jan.moringen@uni-bielefeld.de>
1280
1281 * net/zeroconf.el (zeroconf-service-remove-hook): New defun.
1282
1283 2010-06-30 Dan Nicolaescu <dann@ics.uci.edu>
1284
1285 Avoid displaying files with a nil state in vc-dir.
1286 * vc-dir.el (vc-dir-update): Obey the noinsert argument in all
1287 cases that cause insertion.
1288 (vc-dir-resynch-file): Tell vc-dir-update to avoid inserting files
1289 with a nil state.
1290
1291 2010-06-30 Chong Yidong <cyd@stupidchicken.com>
1292
1293 * xml.el (xml-parse-region): Avoid infloop (Bug#5281).
1294
1295 2010-06-29 Leo <sdl.web@gmail.com>
1296
1297 * emacs-lisp/rx.el (rx): Doc fix. (Bug#6537)
1298
1299 2010-06-27 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
1300
1301 * generic-x.el (bat-generic-mode): Fix regexp for command line
1302 switches (Bug#5719).
1303
1304 2010-06-27 Masatake YAMATO <yamato@redhat.com>
1305
1306 * htmlfontify.el (hfy-face-attr-for-class): Use append instead
1307 of nconc to avoid pure storage error (Bug#6239).
1308
1309 2010-06-27 Christoph <cschol2112@googlemail.com> (tiny change)
1310
1311 * bookmark.el (bookmark-bmenu-2-window, bookmark-bmenu-other-window)
1312 (bookmark-bmenu-other-window-with-mouse): Remove unnecessary
1313 bindings of bookmark-automatically-show-annotations (Bug#6515).
1314
1315 2010-06-25 Eli Zaretskii <eliz@gnu.org>
1316
1317 * arc-mode.el (archive-zip-extract): Don't quote the file name on
1318 MS-Windows and MS-DOS. (Bug#6467, Bug#6144)
1319
1320 2010-06-24 Štěpán Němec <stepnem@gmail.com> (tiny change)
1321
1322 * comint.el (make-comint, make-comint-in-buffer): Mention return
1323 value in the docstrings. (Bug#6498)
1324
1325 2010-06-24 Yoni Rabkin <yoni@rabkins.net>
1326
1327 * bs.el (bs-mode-font-lock-keywords): Remove "by" from Dired pattern,
1328 since it is not present when using some non-default switches.
1329
1330 2010-06-23 Karl Fogel <kfogel@red-bean.com>
1331
1332 * simple.el (compose-mail): Fix doc string to refer to
1333 `compose-mail-user-agent-warnings', instead of to the
1334 nonexistent `compose-mail-check-user-agent'.
1335
1336 2010-06-22 Dan Nicolaescu <dann@ics.uci.edu>
1337
1338 Fix vc-annotate for renamed files when using Git.
1339 * vc-git.el (vc-git-find-revision): Deal with empty results from
1340 ls-files. Doe not pass the object as a file name to cat-file, it
1341 is not a file name.
1342 (vc-git-annotate-command): Pass the file name using -- to avoid
1343 ambiguity with the revision.
1344 (vc-git-previous-revision): Pass a relative file name.
1345
1346 2010-06-22 Glenn Morris <rgm@gnu.org>
1347
1348 * progmodes/js.el (js-mode-map): Use standard capitalization and
1349 ellipses for menu entries.
1350
1351 * wid-edit.el (widget-complete): Doc fix.
1352
1353 2010-06-22 Jürgen Hötzel <juergen@hoetzel.info> (tiny change)
1354
1355 * wid-edit.el (widget-complete): Fix typo in 2009-12-02 change.
1356
1357 2010-06-22 Dan Nicolaescu <dann@ics.uci.edu>
1358
1359 Fix annotating other revisions for renamed files in vc-annotate.
1360 * vc-annotate.el (vc-annotate): Add an optional argument for the
1361 VC backend. Use it when non-nil.
1362 (vc-annotate-warp-revision): Pass the VC backend to vc-annotate. (Bug#6487)
1363
1364 Fix vc-annotate-show-changeset-diff-revision-at-line for git.
1365 * vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
1366 Do not pass the file name to the 'previous-revision call when we
1367 don't want a file diff. (Bug#6489)
1368
1369 2010-06-21 Dan Nicolaescu <dann@ics.uci.edu>
1370
1371 Fix finding revisions for renamed files in vc-annotate.
1372 * vc.el (vc-find-revision): Add an optional argument for
1373 the VC backend. Use it when non-nil.
1374 * vc-annotate.el (vc-annotate-find-revision-at-line): Pass the VC
1375 backend to vc-find-revision. (Bug#6487)
1376
1377 2010-06-21 Dan Nicolaescu <dann@ics.uci.edu>
1378
1379 Fix reading file names in Git annotate buffers.
1380 * vc-git.el (vc-git-annotate-extract-revision-at-line):
1381 Remove trailing whitespace. Suggested by Eric Hanchrow. (Bug#6481)
1382
1383 2010-06-20 Alan Mackenzie <acm@muc.de>
1384
1385 * progmodes/cc-mode.el (c-before-hack-hook): When the mode is set
1386 in file local variables, set it first.
1387
1388 2010-06-19 Glenn Morris <rgm@gnu.org>
1389
1390 * descr-text.el (describe-char-unicode-data): Insert separating
1391 space when needed. (Bug#6422)
1392
1393 * progmodes/idlwave.el (idlwave-action-and-binding):
1394 Fix typo in 2009-12-03 change. (Bug#6450)
1395
1396 2010-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
1397
1398 * subr.el (read-quoted-char): Fix up last change (bug#6290).
1399
1400 2010-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
1401
1402 * font-lock.el (font-lock-major-mode): Rename from
1403 font-lock-mode-major-mode to distinguish it from
1404 global-font-lock-mode's own font-lock-mode-major-mode (bug#6135).
1405 (font-lock-set-defaults):
1406 * font-core.el (font-lock-default-function): Adjust users.
1407 (font-lock-mode): Don't set it at all.
1408
1409 2010-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
1410
1411 * vc-annotate.el (vc-annotate): Use vc-read-revision.
1412
1413 2010-06-15 Glenn Morris <rgm@gnu.org>
1414
1415 * calendar/appt.el (appt-time-msg-list): Doc fix.
1416 (appt-check): Let-bind appt-warn-time.
1417 (appt-add): Make the 3rd argument optional.
1418 Simplify argument names. Doc fix. Check for integer WARNTIME.
1419 Only add WARNTIME to the output list if non-nil.
1420
1421 2010-06-15 Ivan Kanis <apple@kanis.eu>
1422
1423 * calendar/appt.el (appt-check): Let the 3rd element of
1424 appt-time-msg-list specify the warning time.
1425 (appt-add): Add new argument with the warning time. (Bug#5176)
1426
1427 2010-06-12 Bob Rogers <rogers-emacs@rgrjr.dyndns.org> (tiny change)
1428
1429 * vc-svn.el (vc-svn-after-dir-status): Fix regexp for Subversions
1430 older than version 1.6. (Bug#6361)
1431
1432 2010-06-12 Helmut Eller <eller.helmut@gmail.com>
1433
1434 * emacs-lisp/cl-macs.el (destructuring-bind): Bind `bind-enquote',
1435 used by cl-do-arglist. (Bug#6408)
1436
1437 2010-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
1438
1439 * emacs-lisp/advice.el (ad-compile-function):
1440 Define warning-suppress-types before we let-bind it (bug#6275).
1441
1442 * vc-dispatcher.el: Rename mode-line-hook to vc-mode-line-hook;
1443 declare it, make it buffer-local and permanent-local (bug#6324).
1444 (vc-resynch-window): Adjust name.
1445 * vc-hooks.el (vc-find-file-hook): Adjust name.
1446
1447 2010-06-07 Jonathan Rockway <jon@jrock.us>
1448
1449 * net/rcirc.el: Add support for password authentication.
1450 (rcirc-server-alist): Add :password keyword.
1451 (rcirc): Ask for a password, or get it from the server's alist.
1452 (rcirc-connect): Add password argument. Pass it to server.
1453
1454 2010-06-05 Juanma Barranquero <lekktu@gmail.com>
1455
1456 * net/dbus.el (dbus-register-method): Declare function.
1457 (dbus-handle-event, dbus-property-handler): Fix typos in docstrings.
1458 (dbus-introspect): Doc fix.
1459 (dbus-event-bus-name, dbus-introspect-get-interface)
1460 (dbus-introspect-get-argument): Reflow docstrings.
1461
1462 2010-06-04 Chong Yidong <cyd@stupidchicken.com>
1463
1464 * term/common-win.el (x-colors): Add "dark green" and "dark
1465 turquoise" (Bug#6332).
1466
1467 2010-06-03 Glenn Morris <rgm@gnu.org>
1468
1469 * desktop.el (desktop-clear-preserve-buffers):
1470 Add "*Warnings*" buffer. (Bug#6336)
1471
1472 2010-06-02 Dan Nicolaescu <dann@ics.uci.edu>
1473
1474 * vc-dir.el (vc-dir-update): Remove entries with a nil state (bug#5539).
1475
1476 2010-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
1477
1478 * vc-bzr.el (vc-bzr-revision-completion-table): Apply
1479 `file-directory-p' to the filename part rather than to the whole text.
1480
1481 2010-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
1482
1483 * man.el (Man-completion-table): Let the user type "-k " (bug#6319).
1484
1485 2010-05-31 Drew Adams <drew.adams@oracle.com>
1486
1487 * files.el (directory-files-no-dot-files-regexp): Doc fix (bug#6298).
1488
1489 2010-05-31 Juanma Barranquero <lekktu@gmail.com>
1490
1491 * subr.el (momentary-string-display): Just use read-event to read
1492 the exit event (Bug#6238).
1493
1494 2010-05-29 Chong Yidong <cyd@stupidchicken.com>
1495
1496 * ansi-color.el: Delete unused escape sequences (Bug#6085).
1497 (ansi-color-drop-regexp): New constant.
1498 (ansi-color-apply, ansi-color-filter-region)
1499 (ansi-color-apply-on-region): Delete unrecognized control sequences.
1500 (ansi-color-apply): Build string list before calling concat.
1501
1502 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
1503
1504 * progmodes/verilog-mode.el (verilog-type-font-keywords):
1505 Use font-lock-constant-face, not obsolete font-lock-reference-face.
1506
1507 2010-05-27 Masatake YAMATO <yamato@redhat.com>
1508
1509 * htmlfontify.el (hfy-face-resolve-face): New function.
1510 (hfy-face-to-style): Use it (Bug#6279).
1511
1512 2010-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
1513
1514 * epa.el (epa--select-keys): Don't explicitly delete the window since
1515 that can fail (e.g. sole window in frame). Use dedication instead.
1516
1517 2010-05-19 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
1518
1519 * textmodes/fill.el (fill-region): Don't fill past the end (bug#6201).
1520
1521 2010-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
1522
1523 * subr.el (read-quoted-char): Resolve modifiers after key
1524 remapping (bug#6212).
1525
1526 2010-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
1527
1528 * tmm.el (tmm-prompt): Don't try to precompute bindings.
1529 (tmm-get-keymap): Compute shortcuts (bug#6171).
1530
1531 2010-05-10 Glenn Morris <rgm@gnu.org>
1532
1533 * desktop.el (desktop-save-buffer-p): Don't mistakenly include
1534 all dired buffers, even tramp ones. (Bug#5755) [Backport from trunk]
1535
1536 2010-05-07 Chong Yidong <cyd@stupidchicken.com>
1537
1538 * Version 23.2 released.
1539
1540 2010-05-03 Chong Yidong <cyd@stupidchicken.com>
1541
1542 * international/mule.el (auto-coding-alist): Only purecopy
1543 car of each item, not the whole list (Bug#6083).
1544
1545 2010-05-02 Chong Yidong <cyd@stupidchicken.com>
1546
1547 * progmodes/js.el (js-mode): Make paragraph variables local before
1548 calling c-setup-paragraph-variables (Bug#6071).
1549
1550 2010-05-01 Eli Zaretskii <eliz@gnu.org>
1551
1552 * composite.el (compose-region, reference-point-alist): Fix typos
1553 in the doc strings.
1554
1555 2010-04-28 Alexander Klimov <alserkli@inbox.ru> (tiny change)
1556
1557 * calc/calc-graph.el (calc-graph-plot): Use the proper form for
1558 gnuplot's "set" command.
1559
1560 2010-04-26 Juanma Barranquero <lekktu@gmail.com>
1561
1562 * abbrev.el (last-abbrev-text): Doc fix.
1563 (abbrev-prefix-mark): Don't escape parenthesis.
1564
1565 2010-04-24 Andreas Schwab <schwab@linux-m68k.org>
1566
1567 * composite.el (find-composition): Doc fix.
1568
1569 2010-04-24 Juanma Barranquero <lekktu@gmail.com>
1570
1571 * progmodes/sql.el (sql-electric-stuff): Fix typo in tag.
1572 (sql-oracle-program, sql-sqlite-options)
1573 (sql-query-placeholders-and-send): Doc fixes.
1574 (sql-set-product, sql-interactive-mode): Reflow docstrings.
1575 (sql-imenu-generic-expression, sql-buffer)
1576 (sql-mode-ansi-font-lock-keywords, sql-mode-oracle-font-lock-keywords)
1577 (sql-mode-postgres-font-lock-keywords, sql-mode-ms-font-lock-keywords)
1578 (sql-mode-sybase-font-lock-keywords)
1579 (sql-mode-informix-font-lock-keywords)
1580 (sql-mode-interbase-font-lock-keywords)
1581 (sql-mode-ingres-font-lock-keywords, sql-mode-solid-font-lock-keywords)
1582 (sql-mode-mysql-font-lock-keywords, sql-mode-sqlite-font-lock-keywords)
1583 (sql-mode-db2-font-lock-keywords, sql-mode-font-lock-keywords)
1584 (sql-product-feature, sql-highlight-product)
1585 (comint-line-beginning-position, sql-rename-buffer)
1586 (sql-toggle-pop-to-buffer-after-send-region)
1587 (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql, sql-solid)
1588 (sql-ingres, sql-ms, sql-postgres, sql-interbase, sql-db2, sql-linter):
1589 Fix typos in docstrings.
1590
1591 2010-04-23 Juri Linkov <juri@jurta.org>
1592
1593 * info.el (Info-fontify-node): Put Info-breadcrumbs to the `display'
1594 property instead of `invisible' and `after-string' (bug#5998).
1595
1596 2010-04-23 Juri Linkov <juri@jurta.org>
1597
1598 * image-mode.el (image-mode-as-text): Fix typo in docstring.
1599
1600 2010-04-23 Juanma Barranquero <lekktu@gmail.com>
1601
1602 * filecache.el (file-cache-add-directory-list)
1603 (file-cache-add-directory-recursively): Fix typos in docstrings.
1604
1605 2010-04-22 Kenichi Handa <handa@m17n.org>
1606
1607 * language/indian.el (gurmukhi-composable-pattern): Fix typo.
1608 (gujarati-composable-pattern): Fix typo.
1609
1610 2010-04-20 Kenichi Handa <handa@m17n.org>
1611
1612 * language/indian.el (oriya-composable-pattern)
1613 (tamil-composable-pattern, malayalam-composable-pattern):
1614 Add two-part vowels to "v" (vowel sign).
1615
1616 2010-04-20 Chong Yidong <cyd@stupidchicken.com>
1617
1618 * files.el (copy-directory): Handle symlinks (Bug#5982).
1619
1620 * progmodes/compile.el (compilation-next-error-function):
1621 Revert 2009-10-12 change (Bug#5983).
1622
1623 2010-04-20 Dan Nicolaescu <dann@ics.uci.edu>
1624
1625 * vc-hg.el (vc-hg-state): Use HGRCPATH, not HGRC.
1626 (vc-hg-working-revision): Likewise. Use hg parents, not hg parent
1627 (Bug#5846).
1628
1629 2010-04-20 Glenn Morris <rgm@gnu.org>
1630
1631 * emacs-lisp/lisp.el (lisp-completion-at-point): Give it a doc string.
1632
1633 * minibuffer.el (completion-at-point): Doc fix.
1634
1635 2010-04-17 Dan Nicolaescu <dann@ics.uci.edu>
1636
1637 Fix the version number for added files.
1638 * vc-hg.el (vc-hg-working-revision): Check if the file is
1639 registered after hg parent fails (Bug#5961).
1640
1641 2010-04-17 Glenn Morris <rgm@gnu.org>
1642
1643 * htmlfontify.el (htmlfontify-buffer)
1644 (htmlfontify-copy-and-link-dir): Autoload entry points.
1645
1646 2010-04-17 Magnus Henoch <magnus.henoch@gmail.com>
1647
1648 * vc-hg.el (vc-hg-annotate-extract-revision-at-line): Expand file
1649 name relative to the project root (Bug#5960).
1650
1651 2010-04-16 Glenn Morris <rgm@gnu.org>
1652
1653 * vc-git.el (vc-git-print-log): Doc fix.
1654
1655 2010-04-14 Óscar Fuentes <ofv@wanadoo.es>
1656
1657 * ido.el (ido-file-internal): Fix 2009-12-02 change.
1658
1659 2010-04-14 Christoph <cschol2112@googlemail.com> (tiny change)
1660
1661 * progmodes/grep.el (grep-compute-defaults): Fix handling of host
1662 default settings (Bug#5928).
1663
1664 2010-04-10 Glenn Morris <rgm@gnu.org>
1665
1666 * progmodes/fortran.el (fortran-match-and-skip-declaration):
1667 New function.
1668 (fortran-font-lock-keywords-3): Use it. (Bug#1385)
1669
1670 2010-04-07 Kenichi Handa <handa@m17n.org>
1671
1672 * language/indian.el (malayalam-composable-pattern): Fix previous
1673 change (add U+0D4D "SIGN VIRAMA").
1674 (oriya-composable-pattern): Add U+0B30 and fix typo in the regexp.
1675 (tamil-composable-pattern): Fix typo in the regexp.
1676 (telugu-composable-pattern): Fix U+0C4D and typo in the regexp.
1677 (kannada-composable-pattern): Fix U+0CB0 and typo in the regexp.
1678 (malayalam-composable-pattern): Fix U+0D4D and typo in the regexp.
1679
1680 2010-04-06 Chong Yidong <cyd@stupidchicken.com>
1681
1682 * textmodes/tex-mode.el (latex-mode): Revert 2008-03-03 change to
1683 paragraph-separate (Bug#5821).
1684
1685 2010-04-05 Juri Linkov <juri@jurta.org>
1686
1687 Put breadcrumbs on overlay instead of inserting to buffer (bug#5809).
1688
1689 * info.el (Info-find-node-2): Comment out code that skips
1690 breadcrumbs line.
1691 (Info-mouse-follow-link): New command.
1692 (Info-link-keymap): New keymap.
1693 (Info-breadcrumbs): Rename from `Info-insert-breadcrumbs'.
1694 Return a string with links instead of inserting breadcrumbs
1695 to the Info buffer.
1696 (Info-fontify-node): Comment out code that inserts breadcrumbs.
1697 Instead of putting the `invisible' text property over the Info
1698 header, make an overlay over the Info header with the `invisible'
1699 property and `after-string' set to the string returned by
1700 `Info-breadcrumbs'.
1701
1702 2010-04-03 Chong Yidong <cyd@stupidchicken.com>
1703
1704 * help.el (help-window-setup-finish): Doc fix (Bug#5830).
1705 Reported by monkey@sandpframing.com.
1706
1707 2010-03-30 Tomas Abrahamsson <tab@lysator.liu.se>
1708
1709 * textmodes/artist.el (artist-mode): Fix typo in docstring.
1710 Reported by Alex Schröder <kensanata@gmail.com>. (Bug#5807)
1711
1712 2010-03-30 Kenichi Handa <handa@m17n.org>
1713
1714 * language/sinhala.el (composition-function-table): Fix regexp for
1715 the new Unicode specification.
1716
1717 * language/indian.el (devanagari-composable-pattern)
1718 (tamil-composable-pattern, kannada-composable-pattern)
1719 (malayalam-composable-pattern): Adjust for the new Unicode
1720 specification.
1721 (bengali-composable-pattern, gurmukhi-composable-pattern)
1722 (gujarati-composable-pattern, oriya-composable-pattern)
1723 (telugu-composable-pattern): New variables to cope with the new
1724 Unicode specification. Use them in composition-function-table.
1725
1726 2010-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
1727
1728 Make tmm-menubar work for the Buffers menu again (bug#5726).
1729 * tmm.el (tmm-prompt): Also handle keymap entries in the form of
1730 vectors rather than cons cells, as used in menu-bar-update-buffers.
1731
1732 2010-03-28 Chong Yidong <cyd@stupidchicken.com>
1733
1734 * progmodes/js.el (js-auto-indent-flag, js-mode-map)
1735 (js-insert-and-indent): Revert 2009-08-15 change, restoring
1736 electric punctuation for "{}();,:" (Bug#5586).
1737
1738 * mail/sendmail.el (mail-default-directory): Doc fix.
1739
1740 2010-03-27 Chong Yidong <cyd@stupidchicken.com>
1741
1742 * mail/sendmail.el (mail-default-directory): Doc fix.
1743
1744 2010-03-27 Eli Zaretskii <eliz@gnu.org>
1745
1746 * subr.el (version-regexp-alist, version-to-list)
1747 (version-list-<, version-list-=, version-list-<=)
1748 (version-list-not-zero, version<, version<=, version=): Doc fix.
1749 (Bug#5744).
1750
1751 2010-03-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1752 Nick Roberts <nickrob@snap.net.nz>
1753
1754 * progmodes/gdb-ui.el (gdb-apple-test): New function.
1755 (gdb-init-1): Use it.
1756
1757 2010-02-10 Dan Nicolaescu <dann@ics.uci.edu>
1758
1759 * vc.el (vc-root-diff): Doc fix.
1760
1761 2010-03-25 Chong Yidong <cyd@stupidchicken.com>
1762
1763 * vc.el (vc-print-log, vc-print-root-log): Doc fix.
1764
1765 * simple.el (append-to-buffer): Fix last change.
1766
1767 2010-03-24 Chong Yidong <cyd@stupidchicken.com>
1768
1769 * simple.el (append-to-buffer): Ensure that point is preserved if
1770 BUFFER is the current buffer. Suggested by YAMAMOTO Mitsuharu.
1771 (Bug#5749)
1772
1773 2010-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
1774
1775 * progmodes/make-mode.el (makefile-rule-action-regex): Backtrack less.
1776 (makefile-make-font-lock-keywords): Adjust rule since submatch 1 may
1777 not be present any more.
1778
1779 2010-03-24 Juanma Barranquero <lekktu@gmail.com>
1780
1781 * faces.el (set-face-attribute): Fix typo in docstring.
1782 (face-valid-attribute-values): Reflow docstring.
1783
1784 2010-03-23 Glenn Morris <rgm@gnu.org>
1785
1786 * textmodes/flyspell.el (sgml-lexical-context): Autoload it (Bug#5752).
1787
1788 2010-03-21 Chong Yidong <cyd@stupidchicken.com>
1789
1790 * indent.el (indent-for-tab-command): Doc fix.
1791
1792 2010-03-22 Juanma Barranquero <lekktu@gmail.com>
1793
1794 * image-dired.el (image-dired-display-thumbs): Fix typo in docstring.
1795 (image-dired-read-comment): Doc fix.
1796
1797 * json.el (json-object-type, json-array-type, json-key-type)
1798 (json-false, json-null, json-read-number):
1799 * minibuffer.el (completion-in-region-functions):
1800 * calendar/cal-tex.el (cal-tex-daily-end, cal-tex-number-weeks)
1801 (cal-tex-cursor-week):
1802 * emacs-lisp/trace.el (trace-function):
1803 * eshell/em-basic.el (eshell/printnl):
1804 * eshell/em-dirs.el (eshell-last-dir-ring, eshell-parse-drive-letter)
1805 (eshell-read-last-dir-ring, eshell-write-last-dir-ring):
1806 * obsolete/levents.el (allocate-event, event-key, event-object)
1807 (event-point, event-process, event-timestamp, event-to-character)
1808 (event-window, event-x, event-x-pixel, event-y, event-y-pixel):
1809 * textmodes/reftex-vars.el (reftex-index-macros-builtin)
1810 (reftex-section-levels, reftex-auto-recenter-toc, reftex-toc-mode-hook)
1811 (reftex-cite-punctuation, reftex-search-unrecursed-path-first)
1812 (reftex-highlight-selection): Fix typos in docstrings.
1813
1814 2010-03-19 Juanma Barranquero <lekktu@gmail.com>
1815
1816 * minibuffer.el (completion-in-region-functions): Fix docstring typos.
1817
1818 2010-03-18 Glenn Morris <rgm@gnu.org>
1819
1820 * mail/rmail.el (rmail-highlight-face): Restore option deleted
1821 2008-02-13 without comment; mark it obsolete.
1822 (rmail-highlight-headers): Use rmail-highlight-face once more.
1823
1824 2010-03-16 Chong Yidong <cyd@stupidchicken.com>
1825
1826 * woman.el (woman2-process-escapes): Only consume the newline if
1827 the filler character is on a line by itself (Bug#5729).
1828
1829 2010-03-16 Kenichi Handa <handa@m17n.org>
1830
1831 * language/indian.el (devanagari-composable-pattern): Add more
1832 consonants.
1833
1834 2010-03-14 Michael Albinus <michael.albinus@gmx.de>
1835
1836 * net/trampver.el: Update release number.
1837
1838 2010-03-13 Glenn Morris <rgm@gnu.org>
1839
1840 * Makefile.in (ELCFILES): Add cedet/semantic/imenu.el.
1841
1842 2010-03-13 Michael Albinus <michael.albinus@gmx.de>
1843
1844 * net/tramp.el (tramp-find-executable):
1845 Use `tramp-get-connection-buffer'. Make the regexp for checking
1846 output of "wc -l" more robust.
1847 (tramp-find-shell): Use another shell but /bin/sh on OpenSolaris.
1848 (tramp-open-connection-setup-interactive-shell): Remove workaround
1849 for OpenSolaris bug, it is not needed anymore.
1850
1851 2010-03-12 Glenn Morris <rgm@gnu.org>
1852
1853 * emacs-lisp/cl-macs.el (defsubst*): Add autoload cookie. (Bug#4427)
1854
1855 2010-03-11 Wilson Snyder <wsnyder@wsnyder.org>
1856
1857 * files.el (auto-mode-alist): Accept more verilog file patterns.
1858
1859 2010-03-09 Miles Bader <miles@gnu.org>
1860
1861 * vc-git.el (vc-git-print-log): Use "tformat:" for shortlog,
1862 instead of "format:"; this ensures that the output is
1863 newline-terminated.
1864
1865 2010-03-08 Chong Yidong <cyd@stupidchicken.com>
1866
1867 * mail/rfc822.el (rfc822-addresses): Use nested catches to ensure
1868 that all errors are caught, and that the return value is always a
1869 list (Bug#5692).
1870
1871 2010-03-08 Kenichi Handa <handa@m17n.org>
1872
1873 * language/misc-lang.el (windows-1256): New coding system.
1874 (cp1256): New alias of windows-1256 (bug#5690).
1875
1876 2010-03-07 Andreas Schwab <schwab@linux-m68k.org>
1877
1878 * mail/rfc822.el (rfc822-addresses): Move catch clause down around
1879 call to rfc822-bad-address. (Bug#5692)
1880
1881 2010-03-07 Štěpán Němec <stepnem@gmail.com> (tiny change)
1882
1883 * vc-git.el (vc-git-annotate-extract-revision-at-line):
1884 Use vc-git-root as default directory for revision path (Bug#5657).
1885
1886 2010-03-06 Chong Yidong <cyd@stupidchicken.com>
1887
1888 * calculator.el (calculator): Don't bind split-window-keep-point
1889 (Bug#5674).
1890
1891 2010-03-06 Stefan Monnier <monnier@iro.umontreal.ca>
1892
1893 * vc-git.el: Re-flow to fit into 80 columns.
1894 (vc-git-after-dir-status-stage, vc-git-dir-status-goto-stage):
1895 Remove spurious `quote' element in each case alternative.
1896 (vc-git-show-log-entry): Use prog1.
1897 (vc-git-after-dir-status-stage): Remove unused var `remaining'.
1898
1899 2010-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
1900
1901 * man.el (Man-files-regexp): Tighten up the regexp (bug#5686).
1902
1903 2010-03-03 Chong Yidong <cyd@stupidchicken.com>
1904
1905 * macros.el (insert-kbd-macro): Look up keyboard macro using the
1906 definition, not the name (Bug#5481).
1907
1908 2010-03-03 Štěpán Němec <stepnem@gmail.com> (tiny change)
1909
1910 * subr.el (momentary-string-display): Don't overwrite the MESSAGE
1911 argument with a local variable. (Bug#5670)
1912
1913 2010-03-02 Juri Linkov <juri@jurta.org>
1914
1915 * info.el (Info-index-next): Decrement line number by 2. (Bug#5652)
1916
1917 2010-03-02 Michael Albinus <michael.albinus@gmx.de>
1918
1919 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Fix an
1920 error when FILENAME and NEWNAME are existing remote directories.
1921
1922 * net/tramp-compat.el (tramp-compat-make-temp-file): Add optional
1923 parameter DIR-FLAG.
1924
1925 2010-03-02 Glenn Morris <rgm@gnu.org>
1926
1927 * calendar/cal-hebrew.el (holiday-hebrew-passover): Fix date
1928 of Yom HaAtzma'ut when it falls on a Monday (rule changed in 2004).
1929
1930 2010-03-01 Kenichi Handa <handa@m17n.org>
1931
1932 * language/burmese.el (burmese-composable-pattern): Rename from
1933 myanmar-composable-pattern.
1934
1935 * international/characters.el (script-list):
1936 * international/fontset.el (script-representative-chars):
1937 Change myanmar to burmese.
1938 (otf-script-alist): Likewise.
1939 (setup-default-fontset): Likewise. Re-fix :otf spec.
1940
1941 2010-02-28 Katsumi Yamaoka <yamaoka@jpl.org>
1942
1943 * menu-bar.el (menu-bar-manuals-menu): Fix typo.
1944
1945 2010-02-28 Jan Djärv <jan.h.d@swipnet.se>
1946
1947 * scroll-bar.el (scroll-bar-drag-1): Add save-excursion, bug #5654.
1948
1949 2010-02-28 Michael Albinus <michael.albinus@gmx.de>
1950
1951 * net/tramp.el (tramp-handle-write-region): START can be a string.
1952 Take care in the checks. Reported by Dan Davison
1953 <davison@stats.ox.ac.uk>.
1954
1955 2010-02-28 Michael Albinus <michael.albinus@gmx.de>
1956
1957 * net/dbus.el (dbus-introspect, dbus-get-property)
1958 (dbus-set-property, dbus-get-all-properties): Use
1959 `dbus-call-method' when noninteractive. (Bug#5645)
1960
1961 2010-02-28 Chong Yidong <cyd@stupidchicken.com>
1962
1963 * textmodes/reftex-toc.el (reftex-toc-promote-prepare):
1964 * emacs-lisp/elint.el (elint-add-required-env):
1965 * calendar/icalendar.el (icalendar--add-diary-entry):
1966 * calc/calcalg2.el (math-tracing-integral):
1967 * files.el (recover-session-finish): Use with-current-buffer
1968 instead of save-excursion.
1969
1970 2010-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
1971
1972 Fix in-buffer completion when after-change-functions modify the buffer.
1973 * minibuffer.el (completion--replace): New function.
1974 (completion--do-completion): Use it and use relative movement.
1975
1976 2010-02-27 Chong Yidong <cyd@stupidchicken.com>
1977
1978 * international/fontset.el (setup-default-fontset): Fix :otf spec.
1979
1980 2010-02-27 Jeremy Whitlock <jcscoobyrs@gmail.com> (tiny change)
1981
1982 * progmodes/python.el (python-pdbtrack-stack-entry-regexp):
1983 Allow the characters _<> in the stack entry (Bug#5653).
1984
1985 2010-02-26 Kenichi Handa <handa@m17n.org>
1986
1987 * language/burmese.el: Fix entries in composition-function-table.
1988 (myanmar-composable-pattern): New variable.
1989
1990 * international/fontset.el (setup-default-fontset): Add an entry
1991 for myanmar.
1992
1993 * international/characters.el (script-list): Add Myanmar
1994 Extended-A.
1995
1996 2010-02-26 Glenn Morris <rgm@gnu.org>
1997
1998 * custom.el (custom-initialize-delay): Doc fix.
1999
2000 * mail/sendmail.el (send-mail-function): Autoload the call
2001 to custom-initialize-delay, not otherwise preserved in loaddefs.el.
2002
2003 2010-02-24 Chong Yidong <cyd@stupidchicken.com>
2004
2005 * files.el (hack-local-variables-filter): For eval forms, also
2006 check safe-local-variable-p (Bug#5636).
2007
2008 2010-02-24 Eduard Wiebe <usenet@pusto.de>
2009
2010 * javascript.el (wisent-javascript-jv-expand-tag): Avoid c(ad)ddr
2011 and use c(ad)r of cddr (Bug#5640).
2012
2013 2010-02-22 Michael Albinus <michael.albinus@gmx.de>
2014
2015 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Protect
2016 setting the modes by `ignore-errors'. It might fail, for example
2017 if the file is not owned by the user but the group.
2018 (tramp-handle-write-region): Ensure, that `tmpfile' is always readable.
2019
2020 2010-02-21 Chong Yidong <cyd@stupidchicken.com>
2021
2022 * files.el (directory-listing-before-filename-regexp): Use
2023 stricter matching for iso-style dates, to avoid false matches with
2024 date-like filenames (Bug#5597).
2025
2026 * htmlfontify.el (htmlfontify): Doc fix.
2027
2028 * eshell/eshell.el (eshell): Doc fix.
2029
2030 * startup.el (fancy-about-screen): In mode-line, apply
2031 mode-line-buffer-id face only to the buffer name (Bug#5613).
2032
2033 2010-02-20 Kevin Ryde <user42@zip.com.au>
2034
2035 * progmodes/compile.el (compilation-error-regexp-alist-alist):
2036 In `watcom' anchor regexp to start of line, to avoid slowness
2037 (Bug#5599).
2038
2039 2010-02-20 Eli Zaretskii <eliz@gnu.org>
2040
2041 * subr.el (remove-yank-excluded-properties): Explain in a comment
2042 why `category' property is removed.
2043
2044 2010-02-19 Chong Yidong <cyd@stupidchicken.com>
2045
2046 * isearch.el (isearch-update-post-hook, isearch-update): Revert
2047 2010-02-17 change.
2048
2049 2010-02-19 Ulf Jasper <ulf.jasper@web.de>
2050
2051 * calendar/icalendar.el (icalendar--convert-ordinary-to-ical)
2052 (icalendar--convert-weekly-to-ical)
2053 (icalendar--convert-yearly-to-ical)
2054 (icalendar--convert-block-to-ical)
2055 (icalendar--convert-cyclic-to-ical)
2056 (icalendar--convert-anniversary-to-ical): Take care of time
2057 specifications where hour has 1-digit only (Bug#5549).
2058
2059 2010-02-19 Nick Roberts <nickrob@snap.net.nz>
2060
2061 * progmodes/gdb-ui.el (gdb-assembler-handler): Accommodate change
2062 of disassemble output in GDB 7.1.
2063
2064 2010-02-19 Glenn Morris <rgm@gnu.org>
2065
2066 * progmodes/f90.el (f90-electric-insert): Give it a delete-selection
2067 property. (Bug#5593)
2068
2069 2010-02-18 Sam Steingold <sds@gnu.org>
2070
2071 * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
2072
2073 2010-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
2074
2075 Use abbreviated file names in bookmarks (bug#5591).
2076 * bookmark.el (bookmark-maybe-load-default-file): Remove redundant
2077 calls to expand-file-name.
2078 (bookmark-relocate): Use abbreviated file names in bookmarks.
2079 (bookmark-load): Use abbreviated file names in messages.
2080
2081 2010-02-18 Michael Albinus <michael.albinus@gmx.de>
2082
2083 * net/tramp.el (tramp-handle-directory-files): When FULL, do not
2084 expand "." and "..". Reported by Thierry Volpiatto
2085 <thierry.volpiatto@gmail.com>.
2086
2087 2010-02-18 Michael Albinus <michael.albinus@gmx.de>
2088
2089 * net/tramp.el (tramp-handle-insert-file-contents): Set always the
2090 permissions of the temporary file to "0600". In case the remote
2091 file has no read permissions for the owner, there might be
2092 problems otherwise. Reported by Ole Laursen <olau@iola.dk>.
2093
2094 22010-02-18 Glenn Morris <rgm@gnu.org>
2095
2096 * emacs-lisp/authors.el (authors-renamed-files-alist):
2097 Add entries for INSTALL.CVS.
2098
2099 2010-02-17 Mark A. Hershberger <mah@everybody.org>
2100
2101 * vc-bzr.el: Fix typo in Known Bugs section.
2102
2103 * isearch.el (isearch-update-post-hook): New hook.
2104 (isearch-update): Use the new hook.
2105
2106 2010-02-16 Michael Albinus <michael.albinus@gmx.de>
2107
2108 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
2109 Fix errors in copying directories.
2110 (tramp-handle-add-name-to-file, tramp-handle-copy-directory)
2111 (tramp-do-copy-or-rename-file, tramp-handle-delete-directory)
2112 (tramp-handle-delete-file)
2113 (tramp-handle-dired-recursive-delete-directory)
2114 (tramp-handle-write-region): Flush also the cache for the upper
2115 directory.
2116
2117 2010-02-16 Chong Yidong <cyd@stupidchicken.com>
2118
2119 * simple.el (save-interprogram-paste-before-kill): Doc fix.
2120
2121 * cus-edit.el (hardware): Doc fix.
2122
2123 * man.el (man): Add to external custom group.
2124
2125 * delim-col.el (columns): Move to wp custom group.
2126
2127 * doc-view.el (doc-view): Add to data custom group.
2128
2129 * nxml/nxml-mode.el (nxml-faces): Remove from font-lock-faces group.
2130
2131 * textmodes/flyspell.el (flyspell-word): Obey the offset specified
2132 by ispell-parse-output (Bug#5575).
2133
2134 2010-02-16 Kenichi Handa <handa@m17n.org>
2135
2136 * international/ja-dic-cnv.el (iso-2022-7bit-short): Delete it.
2137 (skkdic-convert-okuri-ari): Ignore lines starting with '>'.
2138 (skkdic-convert): Use `euc-japan' coding system for writing.
2139
2140 2010-02-16 Glenn Morris <rgm@gnu.org>
2141
2142 * textmodes/tex-mode.el (tex-bibtex-file): Expand the result of
2143 tex-main-file before using it. (Bug#5562)
2144
2145 2010-02-15 Stefan Monnier <monnier@iro.umontreal.ca>
2146
2147 * emacs-lisp/advice.el (ad-compile-function): Suppress byte-compiler
2148 warnings, since it is annoying for the user to see them each time he
2149 runs the code.
2150
2151 2010-02-15 Michael Albinus <michael.albinus@gmx.de>
2152
2153 * net/tramp.el (tramp-process-actions, tramp-read-passwd):
2154 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection): Use VEC
2155 instead of PROC for caching "first-password-request". Otherwise,
2156 new processes would not profit from passwords already entered.
2157
2158 * net/tramp-cache.el (tramp-dump-connection-properties):
2159 Don't save "first-password-request" property.
2160
2161 2010-02-14 Juanma Barranquero <lekktu@gmail.com>
2162
2163 * outline.el (outline-head-from-level):
2164 * simple.el (with-wrapper-hook):
2165 * emacs-lisp/elint.el (elint-extra-errors, elint-current-buffer)
2166 (elint-defun, elint-buffer-env, elint-top-form-logged)
2167 (elint-unbound-variable):
2168 * textmodes/reftex-toc.el (reftex-toc-newhead-from-alist):
2169 Fix typos in docstrings.
2170
2171 2010-02-14 Michael Albinus <michael.albinus@gmx.de>
2172
2173 * files.el (insert-directory): When WILDCARD-REGEXP and
2174 FULL-DIRECTORY-P are nil, insert the file entry instead of the
2175 whole directory. (Bug#5551)
2176
2177 * net/ange-ftp.el (ange-ftp-insert-directory): Insert " " for
2178 dired's alignment sanity. (Bug#5516)
2179
2180 2010-02-14 Juri Linkov <juri@jurta.org>
2181
2182 * man.el (Man-fontify-manpage, Man-cleanup-manpage):
2183 Remove remaining ^H with their preceding chars. (Bug#5566)
2184
2185 2010-02-13 Glenn Morris <rgm@gnu.org>
2186
2187 * simple.el (transpose-subr): Give it a doc-string.
2188
2189 * textmodes/paragraphs.el (transpose-paragraphs, transpose-sentences):
2190 Doc fixes.
2191
2192 2010-02-12 Juri Linkov <juri@jurta.org>
2193
2194 * arc-mode.el (archive-unique-fname): Make directories for nested
2195 archives. (Bug#5540)
2196
2197 2010-02-12 Juri Linkov <juri@jurta.org>
2198
2199 * ffap.el (dired-at-point): Fix docstring. (Bug#5565)
2200
2201 2010-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
2202
2203 * subr.el (copy-overlay): Handle deleted overlays.
2204
2205 * man.el (Man-completion-table): Don't signal an error if we can't run
2206 manual-program (bug#4056).
2207
2208 2010-02-10 Juanma Barranquero <lekktu@gmail.com>
2209
2210 * textmodes/artist.el (artist-mt): Fix typos in docstring.
2211
2212 2010-02-10 Thierry Volpiatto <thierry.volpiatto@gmail.com>
2213
2214 * info.el (Info-bookmark-jump): Simplify.
2215
2216 * bookmark.el (bookmark-handle-bookmark): Catch the right error.
2217 (bookmark-default-handler): Accept new bookmark field `buffer'.
2218
2219 2010-02-10 Chong Yidong <cyd@stupidchicken.com>
2220
2221 * iswitchb.el (iswitchb-completions): Revert last change.
2222
2223 2010-02-10 Michael Albinus <michael.albinus@gmx.de>
2224
2225 * ls-lisp.el (ls-lisp-insert-directory): When WILDCARD-REGEXP and
2226 FULL-DIRECTORY-P are nil, and FILE is absolute, expand it.
2227 This prevents file names like "~/" being listed literally.
2228
2229 2010-02-10 Dan Nicolaescu <dann@ics.uci.edu>
2230
2231 * term/xterm.el (xterm-maybe-set-dark-background-mode):
2232 Remove dead code. (Bug#5546)
2233
2234 2010-02-09 Chong Yidong <cyd@stupidchicken.com>
2235
2236 * eshell/em-ls.el (eshell-ls-applicable): Frob file attributes
2237 correctly (Bug#5548).
2238
2239 2010-02-08 Jose E. Marchesi <jemarch@gnu.org>
2240
2241 * progmodes/ada-mode.el (ada-in-numeric-literal-p): New function.
2242 (ada-adjust-case): Don't adjust case in hexadecimal number literals.
2243
2244 2010-02-08 Kenichi Handa <handa@m17n.org>
2245
2246 * international/mule-util.el (with-coding-priority): Add autoload
2247 cookie for putting `lisp-indent-function'.
2248
2249 2010-02-07 Glenn Morris <rgm@gnu.org>
2250
2251 * progmodes/f90.el (f90-font-lock-keywords-1, f90-font-lock-keywords-2):
2252 Move F2003 named interfaces from keywords-2 to keywords-1, and
2253 use function-name-face rather than constant-face.
2254 Simplify "abstract interface" regexp.
2255
2256 2010-02-07 Chong Yidong <cyd@stupidchicken.com>
2257
2258 * eshell/esh-util.el (eshell-file-attributes): New optional arg
2259 ID-FORMAT. Pass it to `file-attributes'.
2260
2261 * eshell/em-ls.el (eshell-do-ls): Use it (Bug#5528).
2262
2263 2010-02-07 sj <prime.wizard+emacs@gmail.com> (tiny change)
2264
2265 * faces.el (set-face-attribute): Allow calling
2266 internal-set-lisp-face-attribute with 'unspecified family and
2267 foundry argument (Bug#5536).
2268
2269 2010-02-07 Glenn Morris <rgm@gnu.org>
2270
2271 * progmodes/f90.el (f90-font-lock-keywords-2)
2272 (f90-looking-at-type-like, f90-looking-at-program-block-end):
2273 Handle F2003 named interfaces.
2274
2275 2010-02-06 Chong Yidong <cyd@stupidchicken.com>
2276
2277 * progmodes/cc-mode.el (c-common-init): Bind temporary variables
2278 beg and end before calling c-get-state-before-change-functions.
2279
2280 2010-02-06 Dan Nicolaescu <dann@ics.uci.edu>
2281
2282 * vc-bzr.el (vc-bzr-dir-extra-headers): Disable the pending merges header.
2283
2284 2010-02-05 Juri Linkov <juri@jurta.org>
2285
2286 * doc-view.el (doc-view-mode):
2287 * image-mode.el (image-mode): Put property mode-class=special.
2288 (Bug#4896)
2289
2290 2010-02-05 Mark A. Hershberger <mah@everybody.org>
2291
2292 * vc-svn.el (vc-svn-revision-table): New function.
2293
2294 2010-02-05 Michael Albinus <michael.albinus@gmx.de>
2295
2296 * net/ange-ftp.el (ange-ftp-insert-directory):
2297 * net/tramp-imap.el (tramp-imap-handle-insert-directory):
2298 * net/tramp-smb.el (tramp-smb-handle-insert-directory):
2299 Handle also directories. (Bug#5478)
2300
2301 2010-02-05 Glenn Morris <rgm@gnu.org>
2302
2303 * progmodes/f90.el (f90-font-lock-keywords-2): Fix `enum'.
2304
2305 2010-02-05 Chong Yidong <cyd@stupidchicken.com>
2306
2307 * startup.el (command-line-1): Convert options beginning with a
2308 single dash as well (Bug#5519).
2309
2310 2010-02-05 Stefan Monnier <monnier@iro.umontreal.ca>
2311
2312 Make `initials' completion work for /hh -> /home/horn again (bug#5524).
2313 * minibuffer.el (completion-initials-expand): Only check the presence
2314 of delims *within* the boundaries, since otherwise the / delim is
2315 always found for files.
2316
2317 Fix up various corner case problems.
2318 * doc-view.el (doc-view-last-page-number): New function.
2319 (doc-view-mode, doc-view-last-page, doc-view-goto-page): Use it.
2320 (doc-view-goto-page): Avoid inf-loops when the conversion fails.
2321 (doc-view-kill-proc): Avoid inf-loop in freak cases.
2322 (doc-view-reconvert-doc): Use the new recursive delete-directory.
2323 (doc-view-convert-current-doc): Don't create the resolution.el file
2324 here any more.
2325 (doc-view-pdf/ps->png): Do it here instead.
2326 (doc-view-already-converted-p): Check that resolution.el is present.
2327 (doc-view-pdf->png): Don't rely on doc-view-pdf/ps->png for the few
2328 windows that are not yet showing images.
2329
2330 2010-02-04 Michael Albinus <michael.albinus@gmx.de>
2331
2332 * dired.el (dired-revert): If DIRED-DIRECTORY is a cons cell, call
2333 `dired-uncache' for every elemnt which is an absolute file name.
2334
2335 * net/tramp.el (tramp-handle-dired-uncache): When DIR is not a
2336 directory, handle its directory component.
2337 (tramp-handle-file-remote-p): Let-bind `tramp-verbose' to 3; this
2338 function is called permanently and creates noise, otherwise.
2339
2340 * net/tramp-imap.el (tramp-imap-handle-insert-directory):
2341 * net/tramp-smb.el (tramp-smb-handle-insert-directory):
2342 Handle the case, FILENAME is not in `default-directory'. (Bug#5478)
2343
2344 2010-02-04 David Burger <dburger@google.com> (tiny change)
2345
2346 * macros.el (apply-macro-to-region-lines):
2347 Minor simplification. (Bug#5485)
2348
2349 2010-02-04 Glenn Morris <rgm@gnu.org>
2350
2351 * mail/rmail.el (rmail-show-message-1): Handle malformed
2352 quoted-printable text. (Bug#5441)
2353
2354 * mail/mail-utils.el (mail-unquote-printable-region): Doc fix.
2355
2356 * simple.el (visual-line-mode): Capitalize lighter.
2357
2358 2010-02-03 John Wiegley <jwiegley@gmail.com>
2359
2360 * iswitchb.el (iswitchb-completions): Add bookmark files to the
2361 list of files considered for "virtual buffer" completions.
2362
2363 2010-02-03 Michael Albinus <michael.albinus@gmx.de>
2364
2365 * net/ange-ftp.el (ange-ftp-insert-directory): Parse directory
2366 also in case of (and (not full) (not wildcard)). This is needed,
2367 when dired is called with a list of files, which are not in
2368 `default-directory'. (Bug#5478)
2369
2370 2010-02-03 Stefan Monnier <monnier@iro.umontreal.ca>
2371
2372 * vc-hooks.el (vc-path): Make it an obsolete var, rather than function.
2373
2374 2010-02-02 Juri Linkov <juri@jurta.org>
2375
2376 * textmodes/ispell.el (ispell-message-text-end): Remove final newline
2377 from unidiff to allow function-line after @@.
2378
2379 2010-02-02 Juri Linkov <juri@jurta.org>
2380
2381 * ediff-util.el (ediff-file-checked-in-p): Replace '(nil CVS) by
2382 '(RCS SCCS) with inverted condition.
2383
2384 2010-02-02 Michael Albinus <michael.albinus@gmx.de>
2385
2386 * net/ange-ftp.el (ange-ftp-skip-msgs): Ignore all ""^500 .*AUTH"
2387 messages.
2388
2389 2010-02-01 Juri Linkov <juri@jurta.org>
2390
2391 * arc-mode.el (archive-zip-extract): Use `member-ignore-case' to
2392 compare with "pkunzip" and "pkzip" instead of only "pkzip".
2393 In the `archive-extract-by-stdout' branch use `shell-quote-argument'
2394 only when (car archive-zip-extract) is "unzip". (Bug#5475)
2395
2396 2010-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
2397
2398 * doc-view.el (doc-view-new-window-function): Be a bit more defensive.
2399 (doc-view-revert-buffer): New command.
2400 (doc-view-mode-map): Use it.
2401
2402 2010-02-01 Dan Nicolaescu <dann@ics.uci.edu>
2403
2404 * vc-bzr.el (vc-bzr-dir-extra-headers): Add a header when a
2405 pending merge is detected.
2406
2407 2010-01-31 Juri Linkov <juri@jurta.org>
2408
2409 * progmodes/grep.el (zrgrep): Call `grep-compute-defaults' at the
2410 beginning of interactive spec like all other grep commands do.
2411 Put "all" in front of "gz". (Bug#5260)
2412
2413 2010-01-29 Dan Nicolaescu <dann@ics.uci.edu>
2414
2415 * vc-bzr.el (vc-bzr-after-dir-status): Match another renaming indicator.
2416
2417 2010-01-29 Chong Yidong <cyd@stupidchicken.com>
2418
2419 * dirtrack.el (dirtrack): Warn instead of signalling error if the
2420 regexp is incorrect (Bug#5476).
2421
2422 2010-01-29 Michael Albinus <michael.albinus@gmx.de>
2423
2424 * net/tramp.el (tramp-handle-insert-directory): Handle also
2425 symlinks, when FILENAME is not in `default-directory'.
2426
2427 2010-01-28 Michael Albinus <michael.albinus@gmx.de>
2428
2429 * net/ange-ftp.el (ange-ftp-insert-directory): Handle the case,
2430 FILE is not in `default-directory'. (Bug#5478)
2431
2432 * net/tramp.el (tramp-handle-insert-directory): Simplify handling
2433 of SWITCHES. Handle the case, FILENAME is not in
2434 `default-directory'. (Bug#5478)
2435 (tramp-register-file-name-handlers): Add safe-magic property.
2436
2437 2010-01-28 Chong Yidong <cyd@stupidchicken.com>
2438
2439 * arc-mode.el (archive-zip-extract): Quote the argument passed to
2440 unzip (Bug#5475).
2441
2442 2010-01-28 Nil Geisweiller <ngeiswei@googlemail.com> (tiny change)
2443
2444 * progmodes/flymake.el (flymake-allowed-file-name-masks)
2445 (flymake-master-make-header-init): Add other C++ filename masks.
2446 (flymake-find-possible-master-files)
2447 (flymake-check-patch-master-file-buffer): Doc fixes (Bug#5488).
2448
2449 2010-01-28 Michael Albinus <michael.albinus@gmx.de>
2450
2451 Fix some busybox annoyances.
2452
2453 * net/tramp.el (tramp-wrong-passwd-regexp): Add "Timeout, server
2454 not responding." string.
2455 (tramp-open-connection-setup-interactive-shell): Dump stty
2456 settings. Enable "neveropen" arg for all `tramp-send-command'
2457 calls. Handle "=" in variable values properly.
2458 (tramp-find-inline-encoding): Raise an error, when no encoding is
2459 found.
2460 (tramp-wait-for-output): Check, whether PROC buffer is available.
2461 Remove spurious " ^H" sequences, sent by busybox.
2462 (tramp-get-ls-command): Suppress coloring, if possible.
2463
2464 2010-01-28 Glenn Morris <rgm@gnu.org>
2465
2466 * vc-svn.el (vc-svn-update): Use "svn --non-interactive". (Bug#4280)
2467
2468 * log-edit.el (log-edit-strip-single-file-name): Add missing
2469 :safe, :group, and :version tags.
2470
2471 2010-01-27 Stephen Berman <stephen.berman@gmx.net>
2472
2473 * calendar/diary-lib.el (diary-unhide-everything): Handle narrowed
2474 buffers. (Bug#5477)
2475
2476 2010-01-27 David De La Harpe Golden <david@harpegolden.net>
2477
2478 * files.el (delete-directory): Handle moving to trash without
2479 first doing recursion (Bug#5436).
2480
2481 2010-01-26 Dan Nicolaescu <dann@ics.uci.edu>
2482
2483 * vc-hooks.el (vc-path): Mark as obsolete.
2484
2485 2010-01-25 Dan Nicolaescu <dann@ics.uci.edu>
2486
2487 * vc-annotate.el (vc-annotate-revision-at-line): Compare file
2488 names too.
2489
2490 * vc-bzr.el (vc-bzr-print-log): Use the more compact --line option
2491 for the short log.
2492 (vc-bzr-log-view-mode): Adjust regexp for the above change.
2493
2494 2010-01-25 Mark A. Hershberger <mah@everybody.org>
2495
2496 * progmodes/python.el: Replace reference to obsolete c-subword-mode.
2497
2498 * vc-bzr.el (vc-bzr-revision-table): New function.
2499
2500 2010-01-25 Eric Hanchrow <eric.hanchrow@gmail.com> (tiny change)
2501
2502 * vc-git.el (vc-git-dir-status-goto-stage): Pass --relative to the
2503 diff-index command. This requires at least git-1.5.5. (Bug#1589).
2504
2505 2010-01-24 Dan Nicolaescu <dann@ics.uci.edu>
2506
2507 Remove support for adding --signoff on commit.
2508 Future support will use an incompatible generic mechanism.
2509 * vc-git.el (vc-git-add-signoff): Remove variable.
2510 (vc-git-toggle-signoff): Remove function.
2511 (vc-git-extra-menu-map): Do not bind vc-git-toggle-signoff.
2512
2513 * term/xterm.el (xterm-maybe-set-dark-background-mode): Rename
2514 from xterm-set-background-mode. Return t if the background mode
2515 was set.
2516 (terminal-init-xterm): Move tty-set-up-initial-frame-faces
2517 earlier, call it again in case the background mode has changed.
2518
2519 2010-01-23 Dmitri Paduchikh <dpaduch@k66.ru> (tiny change)
2520
2521 * emacs-lisp/advice.el (ad-set-orig-definition): Fix typo
2522 (Bug#3541).
2523
2524 2010-01-23 Chong Yidong <cyd@stupidchicken.com>
2525
2526 * emacs-lisp/assoc.el (aelement): Doc fix.
2527 (aput, adelete, amake): Use lexical-let (Bug#5450).
2528
2529 2010-01-23 Stephen Leake <stephen_leake@member.fsf.org>
2530
2531 * progmodes/ada-mode.el (ada-in-paramlist-p): Pragma syntax
2532 is the same as subprogram call, not declaration. (Bug#5435).
2533
2534 2010-01-23 Michael Albinus <michael.albinus@gmx.de>
2535
2536 * net/tramp-smb.el (tramp-smb-conf): New defcustom.
2537 (tramp-smb-maybe-open-connection): Use it.
2538
2539 2010-01-22 Michael Albinus <michael.albinus@gmx.de>
2540
2541 * net/tramp-imap.el (top): Autoload needed packages. (Bug#5448)
2542
2543 2010-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
2544
2545 * mail/rmailmm.el (rmail-mime-handle): Don't set the buffer to unibyte
2546 just because we see "encoding: 8bit".
2547 * mail/rmail.el (rmail-show-message-1): Decode the body's QP into bytes.
2548
2549 2010-01-22 Chong Yidong <cyd@stupidchicken.com>
2550
2551 * isearch.el (isearch-allow-scroll): Doc fix (Bug#5446).
2552
2553 2010-01-22 Eli Zaretskii <eliz@gnu.org>
2554
2555 * jka-compr.el (jka-compr-load): If load-file is not in
2556 load-history, try its file-truename version. (bug#5447)
2557
2558 2010-01-21 Alan Mackenzie <acm@muc.de>
2559
2560 Fix a situation where deletion of a cpp construct throws an error.
2561 * progmodes/cc-engine.el (c-invalidate-state-cache): Before
2562 invoking c-with-all-but-one-cpps-commented-out, check that the
2563 special cpp construct is still in the buffer.
2564 (c-parse-state): Record the special cpp with markers, not numbers.
2565
2566 2010-01-21 Kenichi Handa <handa@m17n.org>
2567
2568 * textmodes/sgml-mode.el (sgml-maybe-name-self): No need to
2569 process last-command-event, as it is now decoded first (Bug#5380).
2570
2571 2010-01-20 Chong Yidong <cyd@stupidchicken.com>
2572
2573 * term.el (term-send-raw-meta): Revert 2009-12-04 change (Bug#5330).
2574
2575 2010-01-20 Glenn Morris <rgm@gnu.org>
2576
2577 * indent.el (tab-always-indent): Fix custom-type.
2578
2579 2010-01-19 Alan Mackenzie <acm@muc.de>
2580
2581 * progmodes/cc-defs.el: Fix bug#5395: typing '#' in an empty
2582 buffer throws "args out of range".
2583 (c-set-cpp-delimiters, c-clear-cpp-delimiters): Check for EOB
2584 playing the role of delimiter.
2585
2586 2010-01-18 Stephen Leake <stephen_leake@member.fsf.org>
2587
2588 * progmodes/ada-mode.el: Fix bug#5400.
2589 (ada-matching-decl-start-re): Move into ada-goto-decl-start.
2590 (ada-goto-decl-start): Rename from ada-goto-matching-decl-start; callers
2591 changed. Delete RECURSIVE parameter; never used. Improve doc string.
2592 Improve comments in "is" portion. Handle null procedure declaration.
2593 (ada-move-to-end): Improve doc string.
2594
2595 2010-01-18 Óscar Fuentes <ofv@wanadoo.es>
2596
2597 * ido.el (ido-cur-list): Initialize to nil.
2598 Remove obsolete information from commentary.
2599 (ido-choice-list): Initialize to nil.
2600 (ido-get-bufname): Reject minibuffers.
2601 (ido-make-buffer-list): If "default" is a nonexistent
2602 buffer, ignore it, as per the function's comment.
2603 (ido-kill-buffer-internal): New function.
2604 (ido-kill-buffer-at-head): Use it.
2605 (ido-visit-buffer): Likewise.
2606
2607 2010-01-18 Chong Yidong <cyd@stupidchicken.com>
2608
2609 * calendar/time-date.el (date-to-time): Doc fix (Bug#5408).
2610
2611 2010-01-18 Juanma Barranquero <lekktu@gmail.com>
2612
2613 * emacs-lisp/chart.el (chart-file-count, chart-rmail-from):
2614 Fix typos in chart titles.
2615
2616 * whitespace.el (whitespace-style, global-whitespace-newline-mode):
2617 * emacs-lisp/eieio.el (eieio-error-unsupported-class-tags)
2618 (eieio-generic-form, eieio-help-mode-augmentation-maybee, eieio-browse)
2619 (describe-class, eieio-describe-generic, describe-generic):
2620 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click)
2621 (eieio-speedbar-expand):
2622 * emulation/viper-cmd.el (viper-exec-form-in-vi)
2623 (viper-exec-form-in-emacs, viper-harness-minor-mode, viper-ESC)
2624 (viper-repeat, viper-replace-state-exit-cmd, viper-toggle-search-style)
2625 (viper-del-backward-char-in-replace, viper-backward-indent)
2626 (viper-brac-function, viper-register-to-point, viper-submit-report):
2627 * net/tramp.el (tramp-remote-coding-commands):
2628 * term/x-win.el (emacs-session-save, x-menu-bar-open, icon-map-list):
2629 Fix typos in docstrings.
2630
2631 2010-01-17 Chong Yidong <cyd@stupidchicken.com>
2632
2633 * mail/sendmail.el (mail-yank-original): Set the mark if the
2634 specified function for yanking does not do it.
2635
2636 2010-01-17 Dan Nicolaescu <dann@ics.uci.edu>
2637
2638 * vc.el (with-vc-properties): Deal with directory arguments. (Bug#5298)
2639
2640 * vc-dir.el (vc-dir-resynch-file): Update the vc-dir header when
2641 resyncing a directory.
2642
2643 2010-01-17 Stephen Leake <stephen_leake@member.fsf.org>
2644
2645 * progmodes/ada-mode.el: Fix bug#1920.
2646 (ada-ident-re): Delete ., allow multibyte characters.
2647 (ada-goto-label-re): New; matches goto labels.
2648 (ada-block-label-re): New; matches block labels.
2649 (ada-label-re): New; matches both.
2650 (ada-named-block-re): Deleted; callers changed to use
2651 `ada-block-label-re' instead.
2652 (ada-get-current-indent, ada-get-indent-noindent, ada-get-indent-loop):
2653 Use `ada-block-label-re'.
2654 (ada-indent-on-previous-lines): Improve handling of goto labels.
2655 (ada-get-indent-block-start): Special-case block label.
2656 (ada-get-indent-label): Split into `ada-indent-block-label' and
2657 `ada-indent-goto-label'.
2658 (ada-goto-stmt-start, ada-goto-next-non-ws):
2659 Optionally ignore goto labels.
2660 (ada-goto-next-word): Simplify.
2661 (ada-indent-newline-indent-conditional): Insert newline before
2662 trying to fix indentation; doc fix.
2663
2664 2010-01-17 Jay Belanger <jay.p.belanger@gmail.com>
2665
2666 * calc/calc.el (calc-command-flags): Give it an initial value.
2667
2668 2010-01-17 Juanma Barranquero <lekktu@gmail.com>
2669
2670 * files.el (minibuffer-with-setup-hook):
2671 * textmodes/artist.el (artist-mt, artist-key-undraw-continously)
2672 (artist-key-draw-continously, artist-key-do-continously-continously)
2673 (artist-key-set-point-continously, artist-mouse-draw-continously):
2674 Fix typos in docstrings.
2675
2676 2010-01-16 Lennart Borgman <lennart.borgman@gmail.com>
2677
2678 * nxml/nxml-mode.el (nxml-extend-after-change-region): Never
2679 return t (Bug#3898).
2680
2681 2010-01-16 Frédéric Perrin <frederic.perrin@resel.fr> (tiny change)
2682
2683 * vc-dispatcher.el (vc-do-command): Set LC_MESSAGES, so that we
2684 can parse the output of the external commands (Bug#5279).
2685
2686 2010-01-16 Jari Aalto <jari.aalto@cante.net>
2687
2688 * pcmpl-unix.el (pcmpl-unix-read-passwd-file): Doc fix.
2689
2690 2010-01-16 Chong Yidong <cyd@stupidchicken.com>
2691
2692 * emacs-lisp/advice.el (ad-add-advice): Doc fix (Bug#5274)
2693
2694 * emacs-lisp/cl-macs.el (defstruct): Doc fix (Bug#5267).
2695
2696 * startup.el (command-line): Remove unused --icon-type arg.
2697 Handle --display arg, passing it to command-line-1 (Bug#5392).
2698
2699 2010-01-16 Mario Lang <mlang@delysid.org>
2700
2701 * emacs-lisp/chart.el (chart-translate-namezone):
2702 * textmodes/artist.el (artist-compute-popup-menu-table):
2703 Remove duplicated words in doc-strings.
2704
2705 2010-01-15 David Abrahams <dave@boostpro.com> (tiny change)
2706
2707 * net/mairix.el (mairix-widget-send-query): Send -1 instead of nil
2708 to mairix-search to suppress threading (Bug#5342).
2709
2710 2010-01-15 Kenichi Handa <handa@m17n.org>
2711
2712 * international/mule-cmds.el (canonicalize-coding-system-name):
2713 Convert "msXXX", "ibmXXX", "windows-XXX" to "cpXXX" (Bug#5387).
2714
2715 2010-01-15 Glenn Morris <rgm@gnu.org>
2716
2717 * log-view.el (top-level): Require 'wid-edit. (Bug#5311)
2718
2719 * wid-edit.el (widget-keymap): Doc fix.
2720
2721 * vc-svn.el (vc-svn-print-log): Use --limit rather than -l since the
2722 former seems to be more widely accepted by various svn versions.
2723
2724 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
2725
2726 * find-cmd.el (find-constituents):
2727 * vc-arch.el (vc-arch-root):
2728 * window.el (window-body-height, pop-up-frames):
2729 * emacs-lisp/eieio-base.el (eieio-singleton, slot-missing):
2730 * progmodes/ada-stmt.el (ada-if):
2731 * progmodes/gdb-ui.el (gdb-jsonify-buffer):
2732 * textmodes/ispell.el (ispell-grep-options, ispell-dictionary-alist)
2733 (ispell-encoding8-command, ispell-aspell-supports-utf8)
2734 (ispell-last-program-name, ispell-help): Fix typos in docstrings.
2735
2736 * progmodes/flymake.el (flymake-post-syntax-check):
2737 Fix typo in error message.
2738
2739 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
2740
2741 * hexl.el (hexl-printable-character): Fix check of `hexl-iso',
2742 which is always a string. (Bug#5313)
2743
2744 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
2745
2746 * progmodes/ada-xref.el (ada-default-prj-properties):
2747 Simplify previous change.
2748
2749 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
2750
2751 * progmodes/ada-xref.el (ada-default-prj-properties):
2752 Default ada_project_path to $ADA_PROJECT_PATH.
2753
2754 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
2755
2756 * progmodes/ada-mode.el (ada-create-keymap):
2757 Override `narrow-to-defun' with `ada-narrow-to-defun'.
2758
2759 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
2760
2761 * progmodes/ada-mode.el: Deal with Ada 2005 "overriding" keyword.
2762 (ada-subprog-start-re, ada-imenu-subprogram-menu-re): Add keyword.
2763 (ada-get-current-indent, ada-imenu-generic-expression)
2764 (ada-which-function): Check for it.
2765
2766 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
2767
2768 * progmodes/ada-mode.el (ada-clean-buffer-before-saving): Make obsolete.
2769 (ada-mode): Don't obey `ada-clean-buffer-before-saving' anymore.
2770
2771 2010-01-14 Glenn Morris <rgm@gnu.org>
2772
2773 * frame.el (show-trailing-whitespace): Safe if boolean. (Bug#5312)
2774
2775 2010-01-14 Kenichi Handa <handa@m17n.org>
2776
2777 * composite.el (auto-composition-mode): Make it a buffer local
2778 variable (permanent-local).
2779 (auto-composition-function): Set the default value to
2780 auto-compose-chars.
2781 (auto-composition-mode): Make it a simple function, not a minor mode.
2782 (global-auto-composition-mode): Likewise.
2783 (turn-on-auto-composition-if-enabled): Delete it.
2784
2785 2010-01-13 Karl Fogel <kfogel@red-bean.com>
2786
2787 * bookmark.el (bookmark-bmenu-execute-deletions): Doc fix (Bug#5276).
2788
2789 2010-01-12 Michael Albinus <michael.albinus@gmx.de>
2790
2791 * files.el (copy-directory): Compute target for recursive
2792 directories with identical names. (Bug#5343)
2793
2794 2010-01-12 Glenn Morris <rgm@gnu.org>
2795
2796 * mail/emacsbug.el (report-emacs-bug-pretest-address): Set
2797 it to bug-gnu-emacs rather than emacs-pretest-bug.
2798
2799 2010-01-11 Sam Steingold <sds@gnu.org>
2800
2801 * imenu.el (imenu-default-create-index-function): Detect infinite
2802 loops caused by imenu-prev-index-position-function.
2803
2804 2010-01-11 Juanma Barranquero <lekktu@gmail.com>
2805
2806 * htmlfontify.el (htmlfontify-load-rgb-file)
2807 (htmlfontify-unload-rgb-file, hfy-fallback-colour-values)
2808 (htmlfontify-manual, htmlfontify, hfy-page-header, hfy-page-footer)
2809 (hfy-src-doc-link-style, hfy-src-doc-link-unstyle, hfy-link-extn)
2810 (hfy-link-style-fun, hfy-index-file, hfy-instance-file)
2811 (hfy-html-quote-regex, hfy-init-kludge-hook, hfy-post-html-hooks)
2812 (hfy-default-face-def, hfy-etag-regex, hfy-html-quote-map)
2813 (hfy-etags-cmd-alist-default, hfy-etags-bin, hfy-ignored-properties)
2814 (hfy-which-etags, hfy-etags-cmd, hfy-istext-command, hfy-display-class)
2815 (hfy-optimisations, hfy-tags-cache, hfy-tags-sortl, hfy-tags-rmap)
2816 (hfy-style-assoc, hfy-sheet-assoc, hfy-facemap-assoc, hfy-interq)
2817 (hfy-colour-vals, hfy-default-header, hfy-link-style-string)
2818 (hfy-triplet, hfy-slant, hfy-weight, hfy-combined-face-spec)
2819 (hfy-face-attr-for-class, hfy-face-to-style-i, hfy-size-to-int)
2820 (hfy-flatten-style, hfy-face-to-style, hfy-face-or-def-to-name)
2821 (hfy-face-to-css, hfy-p-to-face, hfy-p-to-face-lennart, hfy-face-at)
2822 (hfy-fontified-p, hfy-merge-adjacent-spans, hfy-buffer)
2823 (hfy-html-enkludge-buffer, hfy-html-quote, hfy-html-dekludge-buffer)
2824 (hfy-force-fontification, htmlfontify-buffer, hfy-dirname)
2825 (hfy-make-directory, hfy-text-p, hfy-mark-tag-names, hfy-relstub)
2826 (hfy-href-stub, hfy-href, hfy-mark-tag-hrefs, hfy-prepare-index-i)
2827 (hfy-prepare-index, hfy-prepare-tag-map, hfy-subtract-maps)
2828 (htmlfontify-run-etags): Fix typos in docstrings and remove superfluous
2829 backslash-quoting from parentheses, etc.
2830
2831 2010-01-11 Chong Yidong <cyd@stupidchicken.com>
2832
2833 * progmodes/js.el: Autoload javascript-mode alias.
2834
2835 2010-01-11 Juanma Barranquero <lekktu@gmail.com>
2836
2837 * ffap.el (ffap-shell-prompt-regexp, ffap-all-subdirs, ffap-url-p)
2838 (ffap-alist, ffap-tex-path, ffap-url-at-point, ffap-gopher-regexp)
2839 (ffap-gopher-at-point, ffap-file-at-point, ffap-read-file-or-url)
2840 (ffap-read-url-internal, ffap-menu, ffap-at-mouse):
2841 Fix typos in docstrings.
2842 (ffap-url-regexp): Doc fix.
2843 (ffap-at-mouse): Fix typo in message.
2844
2845 2010-01-11 Glenn Morris <rgm@gnu.org>
2846
2847 * version.el (emacs-copyright): Set copyright year to 2010.
2848
2849 2010-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
2850
2851 * format.el (format-annotate-function): Only set
2852 write-region-post-annotation-function after running to-fn so as not to
2853 affect nested write-region calls (bug#5273).
2854
2855 2010-01-10 Chong Yidong <cyd@stupidchicken.com>
2856
2857 * Makefile.in (ELCFILES): Add wisent/python-wy.el and
2858 wisent/python.el.
2859
2860 2010-01-09 Chong Yidong <cyd@stupidchicken.com>
2861
2862 * man.el (Man-goto-section): Signal error if the section is not
2863 found (Bug#5317).
2864
2865 2010-01-09 Juanma Barranquero <lekktu@gmail.com>
2866
2867 * vc-bzr.el (vc-bzr-working-revision): On Windows and MS-DOS, accept
2868 URLs with a leading triple slash in the file: scheme. (Bug#5345)
2869
2870 2010-01-09 Chong Yidong <cyd@stupidchicken.com>
2871
2872 * progmodes/compile.el: Don't treat compile-command as safe if
2873 compilation-read-command might be nil (Bug#4218).
2874
2875 2010-01-09 Jan Djärv <jan.h.d@swipnet.se>
2876
2877 * startup.el (command-line-1): Use orig-argi to check for ignored X and
2878 NS options.
2879
2880 2010-01-08 Kenichi Handa <handa@m17n.org>
2881
2882 * international/fontset.el (build-default-fontset-data):
2883 Exclude characters in scripts kana, hangul, han, or cjk-misc.
2884
2885 2010-01-07 Juanma Barranquero <lekktu@gmail.com>
2886
2887 * vc-dir.el (vc-dir-prepare-status-buffer): Pass a (fake) filename
2888 to `create-file-buffer' as it expects, not just a buffer name.
2889 (vc-dir-mode): Include the buffer name in `list-buffers-directory',
2890 to help uniquify. (Bug#3224)
2891
2892 2010-01-06 Jan Djärv <jan.h.d@swipnet.se>
2893
2894 * font-setting.el (font-setting-change-default-font): Use user-spec
2895 instead of name.
2896
2897 2010-01-06 Dan Nicolaescu <dann@ics.uci.edu>
2898
2899 * vc-bzr.el (vc-bzr-after-dir-status): Ignore pending merges.
2900
2901 2010-01-05 Tom Tromey <tromey@redhat.com>
2902
2903 * progmodes/python.el (python-font-lock-keywords):
2904 Handle qualified decorators (Bug#881).
2905
2906 2010-01-05 Dan Nicolaescu <dann@ics.uci.edu>
2907
2908 * vc-bzr.el (vc-bzr-working-revision): Fix looking for a revision
2909 in a lightweight checkout.
2910
2911 2010-01-05 Kenichi Handa <handa@m17n.org>
2912
2913 * language/indian.el (malayalam-composable-pattern): Fix ZWNJ and ZWJ.
2914
2915 2010-01-05 Dan Nicolaescu <dann@ics.uci.edu>
2916
2917 * vc-bzr.el (vc-bzr-diff): Obey vc-disable-async-diff.
2918
2919 2010-01-04 Dan Nicolaescu <dann@ics.uci.edu>
2920
2921 * vc-bzr.el (vc-bzr-state-heuristic): Make it work for lightweight
2922 checkouts. (Bug#618)
2923 (vc-bzr-log-view-mode): Also highlight the author.
2924 (vc-bzr-shelve-map): Change binding for vc-bzr-shelve-apply-at-point.
2925 (vc-bzr-shelve-menu-map):
2926 (vc-bzr-dir-extra-headers): Improve menu and tooltip text.
2927 (vc-bzr-shelve-apply): Make prompt more explicit.
2928
2929 2010-01-02 Chong Yidong <cyd@stupidchicken.com>
2930
2931 * net/browse-url.el (browse-url-encode-url): Don't escape commas.
2932 They are valid characters in URL paths (rfc3986), and at least
2933 Firefox does not understand the encoded version (Bug#3166).
2934
2935 2010-01-02 Daniel Elliott <danelliottster@gmail.com> (tiny change)
2936
2937 * progmodes/octave-mod.el (octave-end-keywords)
2938 (octave-block-begin-or-end-regexp, octave-block-match-alist):
2939 Add "end" keyword (Bug#3061).
2940 (octave-end-as-array-index-p): New function.
2941 (calculate-octave-indent): Use it.
2942
2943 2010-01-02 Karl Fogel <kfogel@red-bean.com>
2944
2945 * bookmark.el: Consistently put the text property on the bookmark name.
2946 (bookmark-bmenu-marks-width): Bump back to 2, to include
2947 annotation marks.
2948 (bookmark-bmenu-hide-filenames): Adjust for above, and put the text
2949 property on the bookmark name, instead of not putting it at all.
2950 (bookmark-bmenu-list): Fix where we put the text property.
2951
2952 2010-01-02 Karl Fogel <kfogel@red-bean.com>
2953
2954 * bookmark.el (bookmark-bmenu-save): Just depend on the new logic
2955 for showing buffer modified state (as added in the previous change).
2956
2957 2010-01-02 Karl Fogel <kfogel@red-bean.com>
2958
2959 * bookmark.el: Show modified state of bookmark buffer more accurately.
2960 (bookmark-bmenu-list): Initialize buffer-modified-p properly.
2961 (bookmark-send-edited-annotation): Mark bookmark-alist as modified.
2962 (with-buffer-modified-unmodified): New macro.
2963 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
2964 (bookmark-bmenu-mark, bookmark-bmenu-unmark, bookmark-bmenu-delete):
2965 Use new macro to preserve the buffer modified state.
2966
2967 2010-01-02 Karl Fogel <kfogel@red-bean.com>
2968
2969 * bookmark.el (bookmark-bmenu-select, bookmark-bmenu-1-window)
2970 (bookmark-bmenu-2-window, bookmark-bmenu-this-window)
2971 (bookmark-bmenu-other-window, bookmark-bmenu-switch-other-window)
2972 (bookmark-bmenu-show-annotation, bookmark-bmenu-edit-annotation)
2973 (bookmark-bmenu-rename, bookmark-bmenu-locate)
2974 (bookmark-bmenu-relocate, bookmark-bmenu-goto-bookmark):
2975 Remove unnecessary calls to `bookmark-bmenu-ensure-position'.
2976
2977 2010-01-02 Eli Zaretskii <eliz@gnu.org>
2978
2979 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
2980 Make the lines in the generated doc string shorter. (Bug#4668)
2981
2982 2010-01-02 Ryan Yeske <rcyeske@gmail.com>
2983
2984 * net/rcirc.el: Add follow-link binding (Bug#4738).
2985
2986 2010-01-02 Eli Zaretskii <eliz@gnu.org>
2987
2988 * Makefile.in (bzr-update): Rename from cvs-update.
2989 (cvs-update): New target for backward compatibility.
2990
2991 * makefile.w32-in (bzr-update): Rename from cvs-update.
2992 (cvs-update): New target for backward compatibility.
2993
2994 2010-01-02 Karl Fogel <kfogel@red-bean.com>
2995
2996 * bookmark.el: Remove gratuitous gratitude.
2997
2998 2010-01-02 Karl Fogel <kfogel@red-bean.com>
2999
3000 * bookmark.el (bookmark-bmenu-any-marks): New function
3001 (bookmark-bmenu-save): Clear buffer modification if no marks.
3002
3003 2010-01-02 Karl Fogel <kfogel@red-bean.com>
3004
3005 * bookmark.el (bookmark-bmenu-marks-width): Define to 1, not 2.
3006 (bookmark-bmenu-list, bookmark-bmenu-bookmark): Calculate property
3007 positions by using `bookmark-bmenu-marks-width', instead of hardcoding.
3008 This fixes the `bookmark-bmenu-execute-deletions' bug reported here:
3009
3010 http://lists.gnu.org/archive/html/emacs-devel/2009-12/msg00819.html
3011 From: Sun Yijiang <sunyijiang {_AT_} gmail.com>
3012 To: emacs-devel {_AT_} gnu.org
3013 Subject: bookmark.el bug report
3014 Date: Mon, 28 Dec 2009 14:19:16 +0800
3015 Message-ID: 5065e2900912272219y3734fc9fsdaee41167ef99ad7@mail.gmail.com
3016
3017 2010-01-02 Karl Fogel <kfogel@red-bean.com>
3018
3019 * bookmark.el: Improvements suggested by Drew Adams:
3020 (bookmark-bmenu-ensure-position): New name for
3021 `bookmark-bmenu-check-position'. Just ensure the position,
3022 don't return any meaningful value.
3023 (bookmark-bmenu-header-height, bookmark-bmenu-marks-width):
3024 New constants.
3025
3026 2010-01-02 Juanma Barranquero <lekktu@gmail.com>
3027
3028 * bookmark.el (bookmarks-already-loaded): Doc fix (don't use `iff').
3029 (bookmark-yank-point, bookmark-bmenu-check-position):
3030 Fix typos in docstrings.
3031 (bookmark-save-flag, bookmark-bmenu-toggle-filenames)
3032 (bookmark-name-from-full-record, bookmark-get-position)
3033 (bookmark-set-position, bookmark-set, bookmark-handle-bookmark)
3034 (bookmark-delete, bookmark-save, bookmark-save, bookmark-bmenu-mode):
3035 Remove useless quoting of parenthesis, etc. in docstrings.
3036
3037 * ediff-mult.el (ediff-prepare-meta-buffer): Fix typo in help message.
3038 (ediff-append-custom-diff): Fix typo in error message.
3039 (ediff-meta-mark-equal-files): Fix typos in messages.
3040
3041 * mpc.el (mpc-playlist-delete): Fix typo in error messages.
3042
3043 * net/imap-hash.el (imap-hash-make): Doc fix.
3044 (imap-hash-test): Fix typo in error message; reflow docstring.
3045 (imap-hash-p, imap-hash-get, imap-hash-put, imap-hash-make-message)
3046 (imap-hash-count, imap-hash-server, imap-hash-port, imap-hash-ssl)
3047 (imap-hash-mailbox, imap-hash-user, imap-hash-password):
3048 Fix typos in docstrings.
3049 (imap-hash-open-connection): Fix typo in error message.
3050
3051 * play/gomoku.el (gomoku): Fix typos in docstring.
3052
3053 * progmodes/gdb-ui.el (gdb-location-alist): Reflow docstring.
3054 (gdb-jsonify-buffer): Fix typos in docstring.
3055 (gdb-goto-breakpoint): Fix typo in error message.
3056 ("Display Other Windows"): Fix typo in help message.
3057 (gdb-speedbar-expand-node): Fix typo in question.
3058
3059 * progmodes/idlw-help.el (idlwave-help-browse-url-available)
3060 (idlwave-html-system-help-location, idlwave-html-help-location)
3061 (idlwave-help-browser-function, idlwave-help-browser-generic-program)
3062 (idlwave-help-browser-generic-args, idlwave-help-directory)
3063 (idlwave-html-help-is-available, idlwave-help-mode-line-indicator)
3064 (idlwave-help-mode-map, idlwave-help-mode, idlwave-do-context-help)
3065 (idlwave-online-help, idlwave-help-html-link)
3066 (idlwave-help-show-help-frame, idlwave-help-assistant-command):
3067 Fix typos in docstrings.
3068 (idlwave-help-with-source, idlwave-help-find-routine-definition):
3069 Reflow docstrings.
3070 (idlwave-help-assistant-start): Fix typo in error message.
3071
3072 * progmodes/octave-mod.el (octave-mode, octave-electric-semi)
3073 (octave-electric-space): Fix typos in docstrings.
3074
3075 2010-01-01 Chong Yidong <cyd@stupidchicken.com>
3076
3077 * files.el (minibuffer-with-setup-hook): Doc fix (Bug#5149).
3078
3079 2010-01-01 Juri Linkov <juri@jurta.org>
3080
3081 * comint.el (comint-input-ring-size): Make it a defcustom and
3082 increase the default to 500 (Bug#5148).
3083
3084 2009-12-31 Nick Roberts <nickrob@snap.net.nz>
3085
3086 Further changes from EMACS_23_1_RC branch (2009-12-29 contd).
3087 * term/x-win.el (x-gtk-stock-map): Map some GUD buttons.
3088 * progmodes/gud.el (gud-menu-map): Add reverse-execution commands.
3089
3090 2009-12-30 Nick Roberts <nickrob@snap.net.nz>
3091
3092 Show working revision correctly for mercurial.
3093 * vc-hg.el (vc-hg-working-revision): Use hg parent instead of
3094 hg log as suggested by Alex Harsanyi <alexharsanyi@gmail.com>.
3095
3096 2009-12-29 Juanma Barranquero <lekktu@gmail.com>
3097
3098 Declare some functions for the byte-compiler.
3099 * progmodes/gdb-ui.el (speedbar-change-initial-expansion-list)
3100 (speedbar-timer-fn, speedbar-change-expand-button-char)
3101 (speedbar-delete-subblock, speedbar-center-buffer-smartly): Declare.
3102
3103 2009-12-29 Nick Roberts <nickrob@snap.net.nz>
3104
3105 This changeset reverts GDB Graphical Interface to use annotations.
3106 * progmodes/gdb-ui.el, progmodes/gud.el: Import from EMACS_23_1_RC.
3107
3108 2009-12-29 Dan Nicolaescu <dann@ics.uci.edu>
3109
3110 Make vc-dir work on subdirectories of the bzr root.
3111 * vc-bzr.el (vc-bzr-after-dir-status): Add new argument. Return
3112 file names relative to it.
3113 (vc-bzr-dir-status, vc-bzr-dir-status-files): Pass the bzr root
3114 relative directory to vc-bzr-after-dir-status.
3115
3116 2009-12-28 Tassilo Horn <tassilo@member.fsf.org>
3117
3118 * font-lock.el (font-lock-refresh-defaults): New function, which
3119 can be used to let font-lock react to external changes in
3120 variables like font-lock-defaults and keywords.
3121 See http://thread.gmane.org/gmane.emacs.devel/118777/focus=118802
3122
3123 2009-12-28 Dan Nicolaescu <dann@ics.uci.edu>
3124
3125 * vc-rcs.el (vc-rcs-register): Fix registering a specific version.
3126
3127 * vc-bzr.el (vc-bzr-log-view-mode): Fix short log regexp.
3128
3129 2009-12-28 Juanma Barranquero <lekktu@gmail.com>
3130
3131 Supersede color.diff settings in git log (bug#5211).
3132
3133 * vc-git.el (vc-git-print-log): Pass "--no-color" to log to avoid
3134 escape chars in its output when the user has color.diff set to `always'.
3135 This fix works on git 1.4.2 and newer (released on 2006-08-13).
3136
3137 2009-12-26 Kevin Ryde <user42@zip.com.au>
3138
3139 * info-look.el (sh-mode): Look for coreutils new "Concept Index"
3140 node. Keep previous "Index" name to work with past coreutils too.
3141
3142 * man.el (man): Revise docstring a bit to show -a and -l as
3143 examples. Add -k description since support for it has otherwise
3144 been a secret. (Further to bug#3717.)
3145 (Man-bgproc-sentinel): When "-k foo" produces no output show error
3146 "no matches" rather than "Can't find manpage", as the latter reads
3147 like -k was interpreted as a page name, which is not so. (Bug#5431)
3148
3149 2009-12-26 Michael Albinus <michael.albinus@gmx.de>
3150
3151 * net/tramp.el (tramp-handle-insert-directory): Quote "'" in the
3152 switches. Check also for //SUBDIRED// line.
3153
3154 2009-12-25 Kenichi Handa <handa@m17n.org>
3155
3156 * language/indian.el (devanagari-composable-pattern): Fixed to
3157 handle ZWNJ and ZWJ. Use it in composition-function-table for
3158 Devanagari.
3159 (malayalam-composable-pattern): Fix previous change.
3160
3161 2009-12-23 Vinicius Jose Latorre <viniciusjl@ig.com.br>
3162
3163 * ps-print.el (ps-face-attributes): It was not returning the
3164 attribute face for faces specified as string. Reported by harven
3165 <harven@free.fr>. (Bug#5254)
3166 (ps-print-version): New version 7.3.5.
3167
3168 2009-12-18 Ulf Jasper <ulf.jasper@web.de>
3169
3170 * calendar/icalendar.el (icalendar--convert-tz-offset): Fixed
3171 timezone names.
3172 (icalendar--convert-tz-offset): Fixed the "last-day-problem".
3173 (icalendar--add-diary-entry): Remove the trailing blank that
3174 diary-make-entry inserts.
3175
3176 2009-12-17 Michael Albinus <michael.albinus@gmx.de>
3177
3178 Make `file-expand-wildcards' work for remote files.
3179
3180 * files.el (file-expand-wildcards): In case of remote files, check
3181 only local file name part for wildcards. Provide feature 'files
3182 and subfeature 'remote-wildcards. (Bug#5198)
3183
3184 * net/tramp.el (tramp-handle-file-remote-p): Expand file name only
3185 if there is already an established connection.
3186 (tramp-advice-file-expand-wildcards): Remove it.
3187
3188 * net/tramp-compat.el (top): Autoload `tramp-handle-file-remote-p'.
3189 (tramp-advice-file-expand-wildcards): Moved from tramp.el.
3190 Activate advice for older GNU Emacs versions. (Bug#5237)
3191
3192 2009-12-17 Juanma Barranquero <lekktu@gmail.com>
3193
3194 Some doc fixes (more needed).
3195
3196 * find-cmd.el (find-constituents): Reflow docstring.
3197 (find-cmd, find-prune, find-command): Fix typos in docstrings.
3198 (find-generic): Doc fix.
3199
3200 2009-12-17 Juri Linkov <juri@jurta.org>
3201
3202 Fix regression from 23.1 to allow multiple modes in Local Variables.
3203
3204 * files.el (hack-local-variables-filter): While ignoring duplicates,
3205 don't take `mode' into account.
3206 (hack-local-variables-filter, hack-dir-local-variables): Don't
3207 remove duplicate `mode' from local-variables-alist (like `eval').
3208
3209 2009-12-17 Juri Linkov <juri@jurta.org>
3210
3211 Make `dired-diff' more safe. (Bug#5225)
3212
3213 * dired-aux.el (dired-diff): Signal an error when `file' equals to
3214 `current' or when `file' is a directory of the `current' file.
3215
3216 2009-12-17 Andreas Schwab <schwab@linux-m68k.org>
3217
3218 * emacs-lisp/autoload.el (batch-update-autoloads): Only exclude
3219 unconditionally preloaded files.
3220
3221 2009-12-16 Juri Linkov <juri@jurta.org>
3222
3223 Revert to old 23.1 logic of using the file at the mark as default.
3224 * dired-aux.el (dired-diff): Use the file at the mark as default
3225 if it's not the same as the current file, and the target dir is
3226 the current dir or the mark is active. Add the current file
3227 as the arg of `dired-dwim-target-defaults'. Use the default file
3228 in the prompt. (Bug#5225)
3229
3230 2009-12-15 Michael Albinus <michael.albinus@gmx.de>
3231
3232 * net/tramp.el (tramp-echo-mark-marker-length): New defconst.
3233 (tramp-echo-mark, tramp-echoed-echo-mark-regexp): Use it.
3234 (tramp-check-for-regexp): Check also, when an echoing shell stops
3235 to echo sent commands.
3236
3237 2009-12-14 Chong Yidong <cyd@stupidchicken.com>
3238
3239 * Makefile.in: Revert last change (Bug#5191).
3240
3241 2009-12-14 Dan Nicolaescu <dann@ics.uci.edu>
3242
3243 * vc-hg.el (vc-hg-print-log): Fix argument order.
3244 (vc-hg-working-revision): Make sure the command is executed in a
3245 known environment so that we can parse the output. (Bug#4417)
3246
3247 2009-12-14 Chong Yidong <cyd@stupidchicken.com>
3248
3249 * progmodes/python.el (python-symbol-completions): Remove text
3250 properties from symbol string before calling python-send-receive.
3251
3252 2009-12-14 Nick Roberts <nickrob@snap.net.nz>
3253
3254 * progmodes/gdb-mi.el (gdb-frame-handler): Only set gud-lat-frame
3255 when there are values for both file and line. (Bug#5060)
3256
3257 2009-12-14 Juri Linkov <juri@jurta.org>
3258
3259 * ediff-ptch.el (ediff-context-diff-label-regexp): Don't match
3260 whitespace after the file name of the first line of unified format,
3261 because git-diff doesn't output whitespace and file modification time
3262 after the file name.
3263
3264 2009-12-14 David Kastrup <dak@gnu.org>
3265
3266 * info.el (Info-hide-cookies-node): Before hiding a cookie,
3267 check if it already has the `display' property added by
3268 `Info-display-images-node', and not put the `invisible' property
3269 in this case.
3270
3271 2009-12-13 Glenn Morris <rgm@gnu.org>
3272
3273 * mail/emacsbug.el (message-sort-headers): Define for compiler.
3274 (report-emacs-bug): In message-mode, sort manually before storing
3275 original report text. (Bug#5178)
3276 Remove superfluous save-excursion.
3277
3278 2009-12-12 Michael Albinus <michael.albinus@gmx.de>
3279
3280 * net/dbus.el (dbus-property-handler): Filter lambda forms out
3281 when responding to "GetAll" properties.
3282
3283 2009-12-12 Chong Yidong <cyd@stupidchicken.com>
3284
3285 * simple.el (compose-mail): Remove mail-setup-with-from from
3286 customization checks.
3287
3288 2009-12-12 Eli Zaretskii <eliz@gnu.org>
3289
3290 * arc-mode.el (archive-rar-summarize): Support Attribute fields in
3291 RAR archives created on Unix systems.
3292
3293 2009-12-12 Stefan Monnier <monnier@iro.umontreal.ca>
3294
3295 * minibuffer.el (minibuffer-local-must-match-filename-map): Re-instate
3296 the varalias that was accidentally removed by the 2009-11-19 change
3297 (bug#5186).
3298
3299 2009-12-12 Kenichi Handa <handa@m17n.org>
3300
3301 * language/indian.el (indian-compose-regexp): New function.
3302 (malayalam-composable-pattern): Fix the pattern.
3303 (composition-function-table): Set malayalam-composable-pattern for
3304 Malayalam characters.
3305
3306 2009-12-11 Chong Yidong <cyd@stupidchicken.com>
3307
3308 * progmodes/bug-reference.el (bug-reference-map): Bind mouse-2
3309 rather than down-mouse-1, based on follow-link conventions.
3310
3311 * makefile.w32-in: Ensure that Lisp files in CEDET subdirectories
3312 are compiled.
3313
3314 2009-12-11 Michael McNamara <mac@mail.brushroad.com>
3315
3316 * progmodes/verilog-mode.el (verilog-vmm-begin-re, verilog-vmm-end-re)
3317 (verilog-vmm-statement-re, verilog-ovm-statement-re)
3318 (verilog-defun-level-not-generate-re, verilog-calculate-indent)
3319 (verilog-leap-to-head, verilog-backward-token):
3320 Fix indenting VMM macros. Reported by Jonathan Ashbrook.
3321
3322 2009-12-11 Wilson Snyder <wsnyder@wsnyder.org>
3323
3324 * progmodes/verilog-mode.el (verilog-auto-lineup)
3325 (verilog-nameable-item-re): Cleanup user-visible spelling and
3326 documentation errors. One reported by Gary Delp.
3327 (verilog-submit-bug-report): Mention bug tracking and CC co-author.
3328 (verilog-read-decls): Fix AUTOWIRE with types declared in a
3329 package, bug195. Reported by Pierre-David Pfister.
3330
3331 2009-12-11 Glenn Morris <rgm@gnu.org>
3332
3333 * progmodes/cc-engine.el (safe-pos-list): Define for compiler.
3334
3335 * mail/emacsbug.el: No longer require sendmail.
3336 Replace sendmail's `mail-text' by `rfc822-goto-eoh'. (Bug#5174)
3337 (report-emacs-bug-orig-text): Doc fix.
3338 (report-emacs-bug-send-command, report-emacs-bug-send-hook):
3339 New local variables, to adapt to different mail-user-agents.
3340 (report-emacs-bug): Fix test for a gnu.org address.
3341 Use overlays for emphasis, since font-lock defeats 'face property.
3342 Pretest bugs also end up at the newsgroup these days.
3343 Stop message-mode stripping text properties.
3344 Set and use the new buffer-local variables.
3345 (report-emacs-bug-hook): Add doc-string.
3346 Remove some unnecessary save-excursions and simplify.
3347 Use the appropriate hook and send-command.
3348
3349 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Standardize the
3350 capitalization of some menu entries.
3351
3352 2009-12-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
3353
3354 * whitespace.el (whitespace-display-char-on): Ensure
3355 `buffer-display-table' is unique when two or more windows are
3356 visible. Reported by Martin Pohlack <mp26@os.inf.tu-dresden.de>.
3357 New version 12.1.
3358
3359 2009-12-10 Eli Zaretskii <eliz@gnu.org>
3360
3361 * arc-mode.el (archive-rar-summarize): Allow between 6 and 7
3362 characters in the Attribute field.
3363
3364 2009-12-10 Dan Nicolaescu <dann@ics.uci.edu>
3365
3366 * vc-svn.el (vc-svn-after-dir-status): Fix regexp. (Bug#4741)
3367
3368 2009-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
3369
3370 Let loaddefs.el adjust to changes in autoload-excludes (bug#5162).
3371 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
3372 Disregard autoload-excludes.
3373 (update-directory-autoloads): Obey autoload-excludes here instead.
3374 But don't store its contents in no-autoloads and remove entries that
3375 refer to excludes files.
3376
3377 2009-12-10 Glenn Morris <rgm@gnu.org>
3378
3379 * mail/feedmail.el (top-level): Move require 'mail-utils to start.
3380 (expand-mail-aliases): Define for compiler.
3381
3382 * vc-annotate.el (log-view-vc-backend, log-view-vc-fileset):
3383 Define for compiler.
3384
3385 * mail/emacsbug.el (report-emacs-bug): Use whichever send command is
3386 appropriate for the mail-user-agent in use.
3387
3388 2009-12-09 Michael Albinus <michael.albinus@gmx.de>
3389
3390 * net/tramp.el (tramp-handle-insert-directory): Suppress error messages.
3391
3392 2009-12-09 Dan Nicolaescu <dann@ics.uci.edu>
3393
3394 Fix short log parsing and fontification.
3395 * vc-bzr.el (vc-bzr-log-view-mode): Match dot in revision number.
3396 Fix fontification for the [merge] label.
3397
3398 2009-12-09 Vivek Dasmohapatra <vivek@etla.org>
3399
3400 Drop some properties to avoid surprises.
3401 * htmlfontify.el (hfy-ignored-properties): New defcustom.
3402 (hfy-fontify-buffer): Use it.
3403
3404 2009-12-09 Stefan Monnier <monnier@iro.umontreal.ca>
3405
3406 Minor cleanup.
3407 * ffap.el (ffap-symbol-value): Replace ffap-soft-value.
3408 Adjust all callers.
3409 (ffap-locate-file): Remove unused arg `dir-ok' and make other
3410 args compulsory. Adjust callers.
3411 (ffap-gopher-at-point): Remove unused var `name'.
3412
3413 Get rid of the ELCFILES abomination.
3414 * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
3415 (compile-elcfiles): New phony target.
3416 (compile-main): Compute ELCFILES dynamically.
3417 (compile-clean): New target to remove left-over elc files.
3418 (compile, all): Use it.
3419
3420 2009-12-09 Kenichi Handa <handa@etlken>
3421
3422 * international/mule-diag.el: Require help-mode instead of help-fns.
3423
3424 2009-12-09 Kenichi Handa <handa@m17n.org>
3425
3426 * international/mule-cmds.el (ucs-names): Supply sufficiently
3427 fine ranges instead of pre-calculating accurate ranges.
3428 Iterate with bigger gc-cons-threshold.
3429
3430 2009-12-08 Dan Nicolaescu <dann@ics.uci.edu>
3431
3432 Add support for stashing a snapshot of the current tree.
3433 * vc-git.el (vc-git-stash-snapshot): New function.
3434 (vc-git-stash-map, vc-git-extra-menu-map): Add a mapping for it.
3435
3436 2009-12-08 Jose E. Marchesi <jemarch@gnu.org>
3437
3438 * play/gomoku.el (gomoku-mode-map): Remap `move-(beginning|end)-of-line'
3439 instead of `(beginning|end)-of-line'.
3440
3441 2009-12-08 Glenn Morris <rgm@gnu.org>
3442
3443 * vc-mtn.el (vc-mtn-print-log): Fix typo in previous.
3444
3445 * Makefile.in (ELCFILES): Regenerate.
3446
3447 2009-12-07 Juri Linkov <juri@jurta.org>
3448
3449 Don't lazy-highlight the comint output in history Isearch mode.
3450
3451 * comint.el (comint-history-isearch-search): Instead of
3452 `comint-line-beginning-position', use `comint-after-pmark-p'
3453 to check if point if before the process mark, and go to
3454 `process-mark' in this case.
3455
3456 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
3457
3458 * textmodes/tex-mode.el (latex-complete)
3459 (latex-indent-or-complete): Remove.
3460 (latex-mode): Set completion-at-point-functions instead.
3461
3462 Provide a standard completion command and hook it into TAB.
3463 * minibuffer.el (completion-at-point-functions): New var.
3464 (completion-at-point): New command.
3465 * indent.el (indent-for-tab-command): Handle the `complete' behavior.
3466 * progmodes/python.el (python-mode-map): Use completion-at-point.
3467 (python-completion-at-point): Rename from python-partial-symbol and
3468 adjust for use in completion-at-point-functions.
3469 (python-mode): Setup completion-at-point for Python completion.
3470 * emacs-lisp/lisp.el (lisp-completion-at-point): New function
3471 extracted from lisp-complete-symbol.
3472 (lisp-complete-symbol): Use it.
3473 * emacs-lisp/lisp-mode.el (emacs-lisp-mode): Use define-derived-mode,
3474 setup completion-at-point for Elisp completion.
3475 (emacs-lisp-mode-map, lisp-interaction-mode-map):
3476 Use completion-at-point.
3477 * ielm.el (ielm-map): Use completion-at-point.
3478 (inferior-emacs-lisp-mode): Setup completion-at-point-functions.
3479 * progmodes/sym-comp.el: Move to...
3480 * obsolete/sym-comp.el: Move from progmodes.
3481
3482 2009-12-07 Eli Zaretskii <eliz@gnu.org>
3483
3484 Prevent save-buffer in Rmail buffers from using the coding-system
3485 of the current message, and from clobbering the encoding mnemonics
3486 in the mode line (Bug#4623).
3487
3488 * mail/rmail.el (rmail-swap-buffers): Swap encoding and modified
3489 flag, too.
3490 (rmail-message-encoding): New variable.
3491 (rmail-write-region-annotate): Record the encoding of the current
3492 message in rmail-message-encoding.
3493 (rmail-after-save-hook): New function, restores the encoding of
3494 the current message after the message collection is saved.
3495
3496 2009-12-07 Juri Linkov <juri@jurta.org>
3497
3498 * progmodes/grep.el (grep-read-files): Use `completing-read'
3499 instead of `read-string'. Set its `collection' arg to
3500 `read-file-name-internal'. (Bug#4301)
3501
3502 2009-12-07 Juri Linkov <juri@jurta.org>
3503
3504 Correctly restore original Isearch point. (Bug#4994)
3505
3506 * isearch.el (isearch-mode): Move `isearch-push-state' after
3507 `(run-hooks 'isearch-mode-hook)'.
3508 (isearch-cancel): When `isearch-push-state-function' is defined,
3509 let-bind `isearch-cmds' to the first state (the last element of
3510 `isearch-cmds') and call `isearch-top-state' (it calls pop-state
3511 function and restores the original point). Otherwise, move point
3512 to `isearch-opoint'.
3513
3514 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
3515
3516 * international/mule-cmds.el (ucs-names): Weed out at compile-time the
3517 chars that don't have names, so the table can be built much faster at
3518 run-time.
3519
3520 2009-12-07 Chong Yidong <cyd@stupidchicken.com>
3521
3522 * vc-bzr.el (vc-bzr-annotate-command): More elegant form for last
3523 change. Suggested by David Kastrup.
3524
3525 * simple.el (compose-mail): Check for incompatibilities and warn.
3526 (compose-mail-user-agent-warnings): New option.
3527
3528 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
3529
3530 Support showing a single log entry from vc-annotate.
3531 * vc.el (print-log): Add a new argument: START-REVISION.
3532 (vc-print-log-internal): Add a new optional argument and
3533 pass it to the backend.
3534 (vc-print-log, vc-print-root-log): Adjust callers.
3535 * vc-annotate.el (vc-annotate-show-log-revision-at-line): If a
3536 buffer already displays the requested log entry, use it.
3537 Otherwise display only the log entry in question.
3538 * vc-svn.el (vc-svn-print-log):
3539 * vc-mtn.el (vc-mtn-print-log):
3540 * vc-hg.el (vc-hg-state):
3541 * vc-git.el (vc-git-print-log): Add support for new argument START-REVISION.
3542 (vc-git-show-log-entry): Return t on success.
3543 * vc-bzr.el (vc-bzr-print-log): Add support new argument START-REVISION.
3544 (vc-bzr-show-log-entry): Return t on success.
3545 * vc-rcs.el (vc-rcs-print-log):
3546 * vc-sccs.el (vc-sccs-print-log):
3547 * vc-cvs.el (vc-cvs-print-log): Add new argument, ignore it.
3548
3549 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
3550
3551 * ediff-mult.el (ediff-setup-meta-map, ediff-prepare-meta-buffer):
3552 Add menus to the meta mode. (Bug#5043)
3553
3554 2009-12-07 Michael Kifer <kifer@cs.stonybrook.edu>
3555
3556 * ediff-init.el (ediff-event-key): Use event-to-character instead of
3557 event-key.
3558
3559 * ediff.el (ediff-buffers-internal): Add unwind-protect.
3560
3561 2009-12-07 Michael Albinus <michael.albinus@gmx.de>
3562
3563 Handle prompt rules of ksh in OpenBSD 4.5. Reported by Raphaël
3564 Berbain <raphael.berbain@gmail.com>.
3565
3566 * net/tramp.el (tramp-end-of-output): Move up. Use `#' and `$'
3567 characters.
3568 (tramp-initial-end-of-output): New defconst.
3569 (tramp-methods, tramp-find-shell)
3570 (tramp-open-connection-setup-interactive-shell)
3571 (tramp-maybe-open-connection): Use it.
3572 (tramp-shell-prompt-pattern, tramp-wait-for-output): Handle
3573 existence of `#' and `$'.
3574
3575 * net/tramp-fish.el (tramp-fish-maybe-open-connection): Use
3576 `tramp-initial-end-of-output'.
3577
3578 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
3579
3580 Get the background mode from the terminal for xterm, and set
3581 faces accordingly.
3582 * term/xterm.el (xterm-set-background-mode): New function.
3583 (terminal-init-xterm): Use it in case xterm supports background
3584 color queries. Recompute faces after getting the background
3585 color.
3586
3587 2009-12-07 Ulrich Mueller <ulm@gentoo.org>
3588
3589 * emacs-lisp/bytecomp.el (byte-compile-insert-header): Put the version
3590 number comment back on its own line, for easier parsing.
3591
3592 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
3593
3594 Make it work for non-file buffers (bug#5102).
3595 * doc-view.el (doc-view-current-cache-dir):
3596 Use doc-view-buffer-file-name rather than buffer-file-name.
3597 (doc-view-mode): Use buffer-name when buffer-file-name is nil.
3598
3599 2009-12-06 Óscar Fuentes <ofv@wanadoo.es>
3600
3601 * vc-bzr.el (vc-bzr-annotate-command): Handle the case where the
3602 author field is too short.
3603
3604 2009-12-06 Dan Nicolaescu <dann@ics.uci.edu>
3605
3606 * vc-git.el (vc-git-print-log): Handle a limit argument.
3607 Display the short log in graph form and with labels.
3608 (vc-git-log-view-mode): Handle labels.
3609
3610 Make vc-revert change VC state from 'added to 'unregistered.
3611 * vc-git.el (vc-git-revert): Call git reset first.
3612
3613 2009-12-06 Ulf Jasper <ulf.jasper@web.de>
3614
3615 * net/newst-backend.el, net/newst-plainview.el:
3616 * net/newst-reader.el, net/newst-ticker.el:
3617 * net/newst-treeview.el, net/newsticker.el:
3618 Require/provide newst-... (instead of newsticker-...). (Bug#5096)
3619
3620 2009-12-06 Chong Yidong <cyd@stupidchicken.com>
3621
3622 * log-view.el (log-view-mode-map): Bind "=" to log-view-diff too.
3623
3624 * vc-bzr.el (vc-bzr-annotate-command): Show author in annotation.
3625 Handle empty author field (Bug#4144). Suggested by Óscar Fuentes.
3626 (vc-bzr-annotate-time, vc-bzr-annotate-extract-revision-at-line):
3627 Update annotation regexp.
3628
3629 * simple.el (beginning-of-visual-line): Constrain to field
3630 boundaries (Bug#5106).
3631
3632 2009-12-06 Ulf Jasper <ulf.jasper@web.de>
3633
3634 * xml.el (xml-substitute-numeric-entities): Move
3635 newsticker--decode-numeric-entities in newst-backend.el to
3636 xml-substitute-numeric-entities in xml.el. (Bug#5008)
3637 * net/newst-backend.el (newsticker--parse-generic-feed)
3638 (newsticker--parse-generic-items)
3639 (newsticker--decode-numeric-entities): Move
3640 newsticker--decode-numeric-entities in newst-backend.el to
3641 xml-substitute-numeric-entities in xml.el. (Bug#5008)
3642
3643 2009-12-06 Daniel Colascione <dan.colascione@gmail.com>
3644
3645 * progmodes/js.el (js--js-not): Add null to the list of values.
3646
3647 2009-12-06 Chong Yidong <cyd@stupidchicken.com>
3648
3649 * ansi-color.el (ansi-color-for-comint-mode): Add :version keyword.
3650
3651 2009-12-06 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
3652
3653 * textmodes/bibtex.el (bibtex-enclosing-field): Exclude entry
3654 delimiter if it is at the end of the current line.
3655 (bibtex-generate-url-list): Fix docstring.
3656
3657 2009-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
3658
3659 * minibuffer.el (minibuffer-complete-and-exit): Don't replace the
3660 minibuffer's content with itself.
3661 Fold the confirm-after-completion case into the `confirm' case.
3662 (completion-pcm-word-delimiters): Add : and / to the delimiters.
3663
3664 2009-12-06 Kevin Ryde <user42@zip.com.au>
3665
3666 * ffap.el (ffap-rfc-path): Make this a defcustom since
3667 `ffap-rfc-directories' is also a defcustom. (Bug#4514.)
3668
3669 * info-look.el: Add setup for apropos-mode to use emacs-lisp-mode
3670 manuals, similar to existing setup for help-mode. (Bug#3913.)
3671
3672 2009-12-05 Juri Linkov <juri@jurta.org>
3673
3674 Save and restore dired buffer's point positions too. (Bug#4880)
3675
3676 * dired.el (dired-save-positions): Return in the first element
3677 buffer's position in format (BUFFER DIRED-FILENAME BUFFER-POINT).
3678 Doc fix.
3679 (dired-restore-positions): First restore buffer's position.
3680 While restoring window's positions, check if window still displays
3681 the original buffer.
3682
3683 2009-12-05 Chong Yidong <cyd@stupidchicken.com>
3684
3685 * bindings.el (complete-symbol): Call semantic-ia-complete-symbol
3686 if possible.
3687
3688 * shell.el (shell): Require ansi-color (Bug#5113).
3689
3690 * ansi-color.el (ansi-color-for-comint-mode): Default to t.
3691
3692 * hl-line.el (global-hl-line-highlight): Minor doc fix (Bug#4925).
3693
3694 2009-12-05 Alan Mackenzie <acm@muc.de>
3695
3696 * progmodes/cc-mode.el (c-before-hack-hook)
3697 (c-postprocess-file-styles): Revert change 2009-07-18T21:03:43Z!acm@muc.de to permit
3698 `c-file-style' to work again. This reversion restores the current
3699 software to its state in Emacs 23.1. (Bug#4146)
3700
3701 2009-12-05 Kevin Ryde <user42@zip.com.au>
3702
3703 * textmodes/sgml-mode.el (sgml-lexical-context): Recognise
3704 comment-start-skip to comment-end-skip as comment (Bug#4781).
3705
3706 2009-12-05 Juri Linkov <juri@jurta.org>
3707
3708 * info.el (Info-find-node-2): Set `Info-current-subfile' to nil
3709 for virtual nodes. (Bug#4147)
3710 (Info-find-node-2): Set `Info-current-node-virtual' to nil
3711 when moving from a virtual node.
3712 (Info-mode-menu): Add `Info-virtual-index' to the menu.
3713 (Info-mode): Add `Info-virtual-index' to the docstring.
3714
3715 2009-12-05 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
3716
3717 * textmodes/bibtex.el (bibtex-map-entries): Use marker to keep
3718 track of the buffer position of the end of a BibTeX entry as this
3719 position may change during reformatting.
3720 (bibtex-format-entry): Remove whitespace before processing
3721 numerical fields so that we recognize the latter properly.
3722 (bibtex-reformat): Do not use push which changes the global value
3723 of bibtex-entry-format.
3724 (bibtex-field-braces-alist, bibtex-field-strings-alist)
3725 (bibtex-field-re-init): Replace only space characters by regexp
3726 for whitespace.
3727 (bibtex-generate-url-list, bibtex-cite-matcher-alist): Fix docstring.
3728 (bibtex-initialize): Also update bibtex-strings.
3729 (bibtex-kill-field): Preserve white space at end of entry.
3730 (bibtex-kill-entry, bibtex-yank-pop, bibtex-insert-kill):
3731 Update bibtex-reference-keys.
3732
3733 2009-12-05 Stefan Monnier <monnier@iro.umontreal.ca>
3734
3735 * minibuffer.el (completion-pcm--merge-try): Also consider placing
3736 point after a star, if that's the only place where modifications can
3737 make progress.
3738
3739 2009-12-05 Dan Nicolaescu <dann@ics.uci.edu>
3740
3741 * vc-dir.el (vc-dir): Use the correct markup for showing keymaps
3742 in docstrings.
3743
3744 2009-12-04 Juri Linkov <juri@jurta.org>
3745
3746 * proced.el (proced): Call `(proced-update t)' to update process
3747 information instead of only running proced-post-display-hook.
3748 (proced-send-signal): Add a leading space to the buffer name
3749 " *Marked Processes*" to make this buffer ephemeral.
3750
3751 2009-12-04 Juri Linkov <juri@jurta.org>
3752
3753 * dired.el (dired-auto-revert-buffer): New defcustom.
3754 (dired-internal-noselect): Use it.
3755
3756 2009-12-04 Juri Linkov <juri@jurta.org>
3757
3758 Change roles of modes and functions in image-mode.el (Bug#5062).
3759
3760 * image-mode.el: Replace `image-mode-maybe' with `image-mode'
3761 in `auto-mode-alist'.
3762 (image-mode-previous-major-mode): New variable.
3763 (image-minor-mode-map): Rename from `image-mode-text-map'.
3764 (image-mode): Move graceful error-handling code from
3765 `image-minor-mode' to here. On errors call `image-mode-as-text'.
3766 (image-minor-mode): Remove all image-handling code.
3767 Replace `image-mode-text-map' with `image-minor-mode-map'.
3768 Check for `image-type' in mode-line format string.
3769 (image-mode-maybe): Make obsolete with an alias to `image-mode'.
3770 (image-mode-as-text): New function with most code from
3771 `image-mode-maybe'.
3772 (image-toggle-display-text): Move code that removes image
3773 properties from `image-toggle-display' to here.
3774 (image-toggle-display-image): New function with code that adds
3775 image properties copied from `image-toggle-display'.
3776 (image-toggle-display): Remove most code with leaving only code
3777 that toggles between `image-mode-as-text' and `image-mode'.
3778
3779 2009-12-04 Ulf Jasper <ulf.jasper@web.de>
3780
3781 * net/newst-treeview.el
3782 (newsticker--treeview-list-highlight-start): Restored call to
3783 save-excursion: Selected item was stuck.
3784 (newsticker--treeview-list-select): New.
3785 (newsticker--treeview-item-show-text)
3786 (newsticker--treeview-item-show)
3787 (newsticker--treeview-item-update): Use new
3788 newsticker-treeview-item-mode.
3789 (newsticker-treeview-update): Keep current item.
3790 (newsticker-treeview-next-new-or-immortal-item): Doc change.
3791 (newsticker--treeview-first-feed): Doc change.
3792 (newsticker-treeview-list-menu)
3793 (newsticker-treeview-item-menu): Added menu entries.
3794 (newsticker-treeview-item-mode): New.
3795
3796 * net/newst-backend.el (newsticker-customize): Delete other
3797 windows.
3798
3799 2009-12-04 Sam Steingold <sds@gnu.org>
3800
3801 * log-view.el (log-view-mode-map): "q" calls quit-window,
3802 like in all the other non-self-insert buffers.
3803
3804 2009-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
3805
3806 Minor cleanup.
3807 * term.el (term-send-raw, term-send-raw-meta): Use read-key-sequence's
3808 key decoding rather than do it manually via last-input-event +
3809 ascii-character.
3810 (term-exec): Use delete-and-extract-region.
3811 (term-handle-ansi-terminal-messages): Remove unused var `end'.
3812 (term-process-pager): Remove unused var `i'.
3813 (term-dynamic-simple-complete): Make obsolete.
3814 (serial-update-config-menu): Remove unused vars `y' and `str'.
3815 (term-update-mode-line): Remove unused var `temp'.
3816
3817 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
3818
3819 Limit the number of log entries displayed by default.
3820 * vc.el (vc-print-log-internal): Fix check for limit-unsupported.
3821 (vc-print-log, vc-print-root-log): Use vc-log-show-limit when not
3822 using a prefix argument.
3823
3824 2009-12-03 Glenn Morris <rgm@gnu.org>
3825
3826 * progmodes/idlwave.el (class): Restore still useful declaration.
3827
3828 2009-12-03 Alan Mackenzie <acm@muc.de>
3829
3830 Enhance `c-parse-state' to run efficiently in "brace deserts".
3831
3832 * progmodes/cc-mode.el (c-basic-common-init):
3833 Call c-state-cache-init.
3834 (c-neutralize-syntax-in-and-mark-CPP): Rename from
3835 c-extend-and-neutralize-syntax-in-CPP. Mark each CPP construct by
3836 placing `category' properties value 'c-cpp-delimiter at its boundaries.
3837
3838 * progmodes/cc-langs.el (c-before-font-lock-function):
3839 c-extend-and-neutralize-syntax-in-CPP has been renamed
3840 c-neutralize-syntax-in-and-mark-CPP.
3841
3842 * progmodes/cc-fonts.el (c-cpp-matchers): Mark template brackets
3843 with `category' properties now, not `syntax-table' ones.
3844
3845 * progmodes/cc-engine.el (c-syntactic-end-of-macro): A new
3846 enhanced (but slower) version of c-end-of-macro that won't land
3847 inside a literal or on another awkward character.
3848 (c-state-cache-too-far, c-state-cache-start)
3849 (c-state-nonlit-pos-interval, c-state-nonlit-pos-cache)
3850 (c-state-nonlit-pos-cache-limit, c-state-point-min)
3851 (c-state-point-min-lit-type, c-state-point-min-lit-start)
3852 (c-state-min-scan-pos, c-state-brace-pair-desert)
3853 (c-state-old-cpp-beg, c-state-old-cpp-end): New constants and
3854 buffer local variables.
3855 (c-state-literal-at, c-state-lit-beg)
3856 (c-state-cache-non-literal-place, c-state-get-min-scan-pos)
3857 (c-state-mark-point-min-literal, c-state-cache-top-lparen)
3858 (c-state-cache-top-paren, c-state-cache-after-top-paren)
3859 (c-get-cache-scan-pos, c-get-fallback-scan-pos)
3860 (c-state-balance-parens-backwards, c-parse-state-get-strategy)
3861 (c-renarrow-state-cache)
3862 (c-append-lower-brace-pair-to-state-cache)
3863 (c-state-push-any-brace-pair, c-append-to-state-cache)
3864 (c-remove-stale-state-cache)
3865 (c-remove-stale-state-cache-backwards, c-state-cache-init)
3866 (c-invalidate-state-cache-1, c-parse-state-1)
3867 (c-invalidate-state-cache): New defuns/defmacros/defsubsts.
3868 (c-parse-state): Enhance and refactor.
3869 (c-debug-parse-state): Amend to deal with all the new variables.
3870
3871 * progmodes/cc-defs.el (c-<-as-paren-syntax, c-mark-<-as-paren)
3872 (c->-as-paren-syntax, c-mark->-as-paren, c-unmark-<->-as-paren):
3873 modify to use category text properties rather than syntax-table ones.
3874 (c-suppress-<->-as-parens, c-restore-<->-as-parens): New defsubsts
3875 to switch off/on the syntactic paren property of C++ template
3876 delimiters using the category property.
3877 (c-with-<->-as-parens-suppressed): Macro to invoke code with
3878 template delims suppressed.
3879 (c-cpp-delimiter, c-set-cpp-delimiters, c-clear-cpp-delimiters):
3880 New constant/macros which apply category properties to the start
3881 and end of preprocessor constructs.
3882 (c-comment-out-cpps, c-uncomment-out-cpps): Defsubsts which
3883 "comment out" the syntactic value of characters in preprocessor
3884 constructs.
3885 (c-with-cpps-commented-out)
3886 (c-with-all-but-one-cpps-commented-out): Macros to invoke code
3887 with characters in all or all but one preprocessor constructs
3888 "commented out".
3889
3890 2009-12-03 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
3891
3892 * proced.el (proced-filter-alist): Use regexp-quote.
3893
3894 2009-12-03 Michael Albinus <michael.albinus@gmx.de>
3895
3896 Cleanup.
3897 * eshell/em-unix.el (top): Require 'esh-opt and 'pcomplete.
3898 (eshell/su, eshell/sudo): Require 'tramp. Fix problems reading
3899 arguments. Expand `default-directory'.
3900
3901 * net/tramp.el (tramp-handle-file-remote-p): Expand FILENAME for
3902 the benefit of returning an expanded localname.
3903 (tramp-tramp-file-p): Handle the case NAME is not a string.
3904
3905 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
3906
3907 Add support for bzr shelve/unshelve.
3908 * vc-bzr.el (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
3909 (vc-bzr-extra-menu-map): New variables.
3910 (vc-bzr-extra-menu, vc-bzr-extra-status-menu, vc-bzr-shelve)
3911 (vc-bzr-shelve-apply, vc-bzr-shelve-list)
3912 (vc-bzr-shelve-get-at-point, vc-bzr-shelve-delete-at-point)
3913 (vc-bzr-shelve-apply-at-point, vc-bzr-shelve-menu): New functions.
3914 (vc-bzr-dir-extra-headers): Display shelves.
3915
3916 * vc-bzr.el (vc-bzr-print-log): Deal with nil arguments better.
3917
3918 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
3919
3920 * textmodes/bibtex.el (bibtex-complete-internal):
3921 Use completion-in-region.
3922 (bibtex-text-in-field-bounds): Remove unused var `opoint'.
3923
3924 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
3925
3926 Support applying stashes. Improve UI.
3927 * vc-git.el (vc-git-dir-extra-headers): Add tooltips.
3928 (vc-git-stash-apply, vc-git-stash-pop)
3929 (vc-git-stash-apply-at-point, vc-git-stash-pop-at-point)
3930 (vc-git-stash-menu): New functions.
3931 (vc-git-stash-menu-map): New variable.
3932 (vc-git-stash-map): Add bindings to popup a menu and to apply stashes.
3933
3934 2009-12-03 Glenn Morris <rgm@gnu.org>
3935
3936 * vc.el (log-view-vc-backend, log-view-vc-fileset): Declare.
3937 (vc-print-log-internal): Fix previous change.
3938 (vc-revert): Correct pluralization.
3939
3940 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
3941
3942 * progmodes/make-mode.el (makefile-special-targets-list): No need for
3943 it to be an alist any more.
3944 (makefile-complete): Use completion-in-region.
3945
3946 * progmodes/octave-mod.el (octave-complete-symbol):
3947 Use completion-in-region.
3948
3949 Misc cleanup.
3950 * progmodes/idlwave.el (idlwave-comment-hook): Simplify with `or'.
3951 (idlwave-code-abbrev, idlwave-display-user-catalog-widget)
3952 (idlwave-complete-class): Don't quote lambda.
3953 (idlwave-find-symbol-syntax-table, idlwave-mode-syntax-table)
3954 (idlwave-mode-map): Move initialization into declaration.
3955 (idlwave-action-and-binding): Use backquotes.
3956 (idlwave-in-quote, idlwave-reset-sintern, idlwave-complete-in-buffer):
3957 Simplify.
3958 (idlwave-is-pointer-dereference): Remove unused var `pos'.
3959 (idlwave-xml-create-rinfo-list): Remove unused var `entry'.
3960 (idlwave-convert-xml-clean-sysvar-aliases): Remove unused vars `new',
3961 `parts', and `all-parts'.
3962 (idlwave-xml-create-sysvar-alist): Remove unused var `fields'.
3963 (idlwave-convert-xml-system-routine-info): Remove unused string
3964 `version-string'.
3965 (idlwave-display-user-catalog-widget): Use dolist.
3966 (idlwave-scanning-lib): Declare dynamically-scoped var.
3967 (idlwave-scan-library-catalogs): Remove unused var `flags'.
3968 (completion-highlight-first-word-only): Declare to silence bytecomp.
3969 (idlwave-popup-select): Tighten scope of `resp'.
3970 (idlwave-find-struct-tag): Remove unused var `beg'.
3971 (idlwave-after-load-rinfo-hook): Declare.
3972 (idlwave-sintern-class-info): Remove unused var `taglist'.
3973 (idlwave-find-class-definition): Remove unused var `list'.
3974 (idlwave-complete-sysvar-tag-help): Remove unused var `main-base'.
3975 (idlwave-what-module-find-class): Remove unused var `classes'.
3976
3977 2009-12-03 Juanma Barranquero <lekktu@gmail.com>
3978
3979 * progmodes/pascal.el: Require CL when compiling (for lexical-let).
3980
3981 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
3982
3983 * hippie-exp.el (try-expand-dabbrev-visible): Preserve point in the
3984 buffers visited. Remove redundant current-buffer-saving.
3985
3986 2009-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
3987
3988 Use completion-in-buffer and remove uses of dynamic scoping.
3989 * progmodes/pascal.el (pascal-str, pascal-all, pascal-pred)
3990 (pascal-buffer-to-use, pascal-flag): Don't declare.
3991 (pascal-func-completion, pascal-type-completion, pascal-var-completion)
3992 (pascal-get-completion-decl, pascal-keyword-completion):
3993 Add `pascal-str' argument, save-excursion,
3994 return the found completions, and don't filter with pascal-pred.
3995 (pascal-completion-cache): New var.
3996 (pascal-completion): Don't switch buffer any more (it was never
3997 necessary). Don't save-excursion any more (it's done by the called
3998 subroutines). Use a cache to avoid redundant computations.
3999 Use complete-with-action rather than pascal-completion-response and
4000 let it apply the predicate as well.
4001 (pascal-complete-word): Use completion-in-buffer when
4002 pascal-toggle-completions is nil.
4003 (pascal-show-completions): Don't bind pascal-buffer-to-use since it's
4004 not used any more.
4005 (pascal-comp-defun): Don't change buffer any more.
4006 Use complete-with-action rather than pascal-completion-response and
4007 let it apply the predicate as well.
4008 (pascal-goto-defun): Change buffer before calling pascal-comp-defun
4009 when neded.
4010
4011 2009-12-02 Kenichi Handa <handa@m17n.org>
4012
4013 * language/indian.el: Include ZWJ and ZWNJ in the patterns to
4014 shape for all Indic scripts.
4015
4016 2009-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
4017
4018 Use completion-in-buffer.
4019 * wid-edit.el (widget-field-text-end): New function.
4020 (widget-field-value-get): Use it.
4021 (widget-string-complete, widget-file-complete)
4022 (widget-color-complete): Use it and completion-in-region.
4023 (widget-complete): Don't narrow the buffer.
4024
4025 2009-12-02 Glenn Morris <rgm@gnu.org>
4026
4027 * mail/rmail.el (rmail-pop-to-buffer): New function. (Bug#2282)
4028 (rmail-select-summary): Use rmail-pop-to-buffer.
4029 * mail/rmailsum.el: Replace all pop-to-buffer calls with
4030 rmail-pop-to-buffer, to prevent horizontal splits.
4031
4032 * calendar/diary-lib.el (diary-list-entries): Replace superfluous
4033 save-excursion with save-current-buffer.
4034 Widen before searching. (Bug#5093)
4035 (diary-list-sexp-entries): Remove superfluous save-excursion.
4036
4037 2009-12-02 Michael Welsh Duggan <mwd@cert.org>
4038
4039 * woman.el (woman-make-bufname): Handle man-pages with "." in the
4040 name. (Bug#5038)
4041
4042 2009-12-02 Andreas Politz <politza@fh-trier.de> (tiny change)
4043
4044 * ido.el (ido-file-internal): Handle filenames at point that do
4045 not have a directory part. (Bug#5049)
4046
4047 2009-12-02 Juanma Barranquero <lekktu@gmail.com>
4048
4049 * mpc.el (mpc-intersection, mpc-host, mpc-songs-playlist)
4050 (mpc-songs-jump-to, mpc-resume): Doc fixes.
4051
4052 2009-12-01 Rob Riepel <riepel@networking.Stanford.EDU>
4053
4054 * emulation/tpu-extras.el (tpu-cursor-free-mode): Emit message.
4055 (tpu-set-cursor-free, tpu-set-cursor-bound): Don't emit a message
4056 any more.
4057
4058 2009-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
4059
4060 * comint.el (comint-insert-input): Ignore clicks to the right of
4061 the field. Reported by Bob Nnamtrop <bobnnamtrop@gmail.com>.
4062
4063 * vc.el (vc-print-log-internal): Don't wait for the process to
4064 terminate before setting up the major mode.
4065
4066 * pcmpl-unix.el (pcomplete/cd): Complete more than one argument, just
4067 in case.
4068
4069 * pcomplete.el (pcomplete-std-complete): Don't try to complete past
4070 the last element.
4071
4072 * simple.el (normal-erase-is-backspace-mode): Fix thinko in message.
4073
4074 2009-12-01 Glenn Morris <rgm@gnu.org>
4075
4076 * window.el (window--display-buffer-2): Fix previous changes.
4077
4078 2009-12-01 Chong Yidong <cyd@stupidchicken.com>
4079
4080 * mail/sendmail.el (mail-setup-hook, mail-send-hook): Doc fixes.
4081
4082 2009-12-01 Glenn Morris <rgm@gnu.org>
4083
4084 * Makefile.in (ELCFILES): Add mpc.elc.
4085
4086 2009-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
4087
4088 * mpc.el: New file.
4089
4090 2009-12-01 Glenn Morris <rgm@gnu.org>
4091
4092 * window.el (window-to-use): Define for compiler.
4093
4094 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Make message
4095 consistent with others (no final period).
4096
4097 * mail/rmailmm.el (rmail-mime-handle): Doc fix.
4098 (rmail-mime-show): Downcase the encoding. (Bug#5070)
4099
4100 2009-12-01 Dan Nicolaescu <dann@ics.uci.edu>
4101
4102 Make vc-print-log buttons work.
4103 * log-view.el (log-view-mode-map): Inherit from widget-keymap.
4104
4105 2009-11-30 Ryan C. Thompson <rct@thompsonclan.org> (tiny change)
4106
4107 * savehist.el (savehist-autosave-interval): Allow setting to nil
4108 through customize. (Bug#5056)
4109
4110 2009-11-30 Juanma Barranquero <lekktu@gmail.com>
4111
4112 Fix references to jit-lock properties.
4113 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
4114 Refer to jit-lock-defer-multiline, not jit-lock-multiline.
4115 (perl-font-lock-special-syntactic-constructs):
4116 Quote jit-lock-defer-multiline property.
4117
4118 2009-11-30 Dan Nicolaescu <dann@ics.uci.edu>
4119
4120 * vc-git.el (vc-git-registered): Call vc-git-root only once.
4121
4122 2009-11-30 Juri Linkov <juri@jurta.org>
4123
4124 * misearch.el (multi-isearch-search-fun): Always provide a non-nil
4125 value `buffer' of `multi-isearch-next-buffer-current-function'.
4126 Use `(current-buffer)' when `buffer' is nil.
4127 (multi-isearch-next-buffer-from-list): Don't fallback to
4128 `(current-buffer)' when `buffer' is nil. (Bug#4947)
4129
4130 2009-11-30 Juri Linkov <juri@jurta.org>
4131
4132 * misearch.el (multi-isearch-read-buffers): Move canonicalization
4133 of buffers with `get-buffer' to `multi-isearch-buffers'.
4134 (multi-isearch-buffers, multi-isearch-buffers-regexp):
4135 Canonicalize BUFFERS with `get-buffer'. Doc fix.
4136 (multi-isearch-files, multi-isearch-files-regexp): Canonicalize
4137 FILES with `expand-file-name' converting relative file names
4138 to absolute. Doc fix. (Bug#4727)
4139
4140 2009-11-30 Juri Linkov <juri@jurta.org>
4141
4142 * misearch.el (multi-isearch-read-buffers)
4143 (multi-isearch-read-matching-buffers): New functions.
4144 (multi-isearch-buffers, multi-isearch-buffers-regexp):
4145 Use them in the `interactive' spec. Doc fix.
4146 (multi-isearch-read-files, multi-isearch-read-matching-files):
4147 New functions.
4148 (multi-isearch-files, multi-isearch-files-regexp):
4149 Use them in the `interactive' spec. Doc fix. (Bug#4725)
4150
4151 2009-11-30 Juri Linkov <juri@jurta.org>
4152
4153 * doc-view.el (doc-view-continuous):
4154 Rename from `doc-view-continuous-mode'.
4155 (doc-view-menu): Move "Toggle display" to the top.
4156 Add submenu "Continuous" with radio buttons "Off"/"On"
4157 and "Save as Default".
4158 (doc-view-scroll-up-or-next-page)
4159 (doc-view-scroll-down-or-previous-page)
4160 (doc-view-next-line-or-next-page)
4161 (doc-view-previous-line-or-previous-page): Rename
4162 `doc-view-continuous-mode' to `doc-view-continuous'. (Bug#4896)
4163
4164 2009-11-30 Juri Linkov <juri@jurta.org>
4165
4166 * comint.el (comint-mode-map): Rebind `M-r' from
4167 `comint-previous-matching-input' to
4168 `comint-history-isearch-backward-regexp'.
4169 Unbind `M-s' to allow global key binding `M-s'.
4170 Add menu items for `comint-history-isearch-backward' and
4171 `comint-history-isearch-backward-regexp'. (Bug#3746)
4172
4173 2009-11-30 Juri Linkov <juri@jurta.org>
4174
4175 * replace.el (perform-replace): Let-bind recenter-last-op to nil.
4176 For def=recenter, replace `recenter' with `recenter-top-bottom'
4177 that is called with `this-command' and `last-command' let-bound
4178 to `recenter-top-bottom'. When the last `def' was not `recenter',
4179 set `recenter-last-op' to nil. (Bug#4981)
4180
4181 2009-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
4182
4183 Minor cleanup and simplification.
4184 * filecache.el (file-cache-add-directory)
4185 (file-cache-add-directory-recursively)
4186 (file-cache-add-from-file-cache-buffer)
4187 (file-cache-delete-file-regexp, file-cache-delete-directory)
4188 (file-cache-files-matching-internal, file-cache-display): Use dolist.
4189 (file-cache-temp-minibuffer-message): Delete function.
4190 (file-cache-minibuffer-complete): Use minibuffer-message instead.
4191
4192 * progmodes/perl-mode.el (perl-font-lock-special-syntactic-constructs):
4193 Don't signal an error when bumping into EOB in tr, s, or y.
4194
4195 2009-11-29 Juri Linkov <juri@jurta.org>
4196
4197 * startup.el (fancy-about-text): Fix wording of Guided Tour.
4198 (Bug#4960)
4199
4200 * descr-text.el (describe-char-unidata-list): Use lowercase name
4201 for "Unicode name" like in other tags.
4202
4203 2009-11-29 Juri Linkov <juri@jurta.org>
4204
4205 * ediff-util.el (ediff-minibuffer-with-setup-hook):
4206 New compatibility macro.
4207 (ediff-read-file-name): Use it instead of `minibuffer-with-setup-hook'.
4208
4209 2009-11-29 Juri Linkov <juri@jurta.org>
4210
4211 Add defcustom to define the cycling order of `recenter-top-bottom'.
4212 (Bug#4981)
4213
4214 * window.el (recenter-last-op): Doc fix.
4215 (recenter-positions): New defcustom.
4216 (recenter-top-bottom): Rewrite to use `recenter-positions'.
4217 (move-to-window-line-top-bottom): Rewrite to use `recenter-positions'.
4218
4219 2009-11-29 Michael Albinus <michael.albinus@gmx.de>
4220
4221 Improve integration of Tramp and ange-ftp in eshell.
4222
4223 * eshell/em-unix.el (eshell/whoami): Make it a defun but a defalias.
4224 (eshell/su): Flatten args. Apply better args parsing. Use "cd".
4225 (eshell/sudo): Flatten args. Let-bind `default-directory'.
4226
4227 * eshell/esh-util.el (top): Require also Tramp when compiling.
4228 (eshell-directory-files-and-attributes): Check for FTP remote
4229 connection.
4230 (eshell-parse-ange-ls): Let-bind `ange-ftp-name-format',
4231 `ange-ftp-ftp-name-arg', `ange-ftp-ftp-name-res'.
4232 (eshell-file-attributes): Handle ".". Return `entry'.
4233
4234 * net/ange-ftp.el (ange-ftp-parse-filename): Use `save-match-data'.
4235 (ange-ftp-directory-files-and-attributes)
4236 (ange-ftp-real-directory-files-and-attributes): New defuns.
4237
4238 * net/tramp.el (tramp-maybe-open-connection): Open the remote
4239 shell with "exec" when possible. This prevents trailing prompts
4240 in `start-file-process'.
4241
4242 2009-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
4243
4244 Try and remove assumptions about point-min==1.
4245 * nxml/rng-valid.el (rng-validate-mode): Don't hardcode point-min==1.
4246 (rng-compute-mode-line-string): Show the validation percentage in
4247 terms of the narrowed text, not the widened text.
4248 (rng-do-some-validation): Don't catch internal errors when debugging.
4249 (rng-first-error): Simplify.
4250 (rng-after-change-function): Remove work around. AFAIK the bug has
4251 been fixed a while ago.
4252
4253 * image-mode.el (image-minor-mode): Exit more gracefully when the image
4254 cannot be displayed (e.g. when doing C-x C-f some-new-file.svg RET).
4255
4256 * man.el (Man-completion-table): Make it easier to enter "<sec> <name>".
4257
4258 * eshell/em-prompt.el (eshell-prompt-function): Abbreviate pwd, since
4259 `cd' doesn't always do it for us (bug#5067).
4260
4261 * pcomplete.el (pcomplete-entries): Revert change installed mistakenly
4262 on 2009-10-25 as part of some other change (bug#5067).
4263
4264 2009-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
4265
4266 * emacs-lisp/bytecomp.el (byte-compile-warning-types): New type
4267 `suspicious'.
4268 (byte-compile-warnings): Use byte-compile-warning-types.
4269 (byte-compile-save-excursion): Warn about use of set-buffer right
4270 after save-excursion.
4271
4272 * progmodes/gud.el (gud-basic-call): Don't only save the buffer but
4273 the excursion as well.
4274
4275 2009-11-27 Michael Albinus <michael.albinus@gmx.de>
4276
4277 * eshell/em-unix.el (eshell/su, eshell/sudo): New defuns,
4278 providing a Tramp related implementation of "su" and "sudo".
4279 (eshell-unix-initialize): Add "su" and "sudo".
4280
4281 2009-11-27 Daiki Ueno <ueno@unixuser.org>
4282
4283 * net/socks.el (socks-send-command): Convert binary request to
4284 unibyte before sending. This fixes mishandling of some port
4285 numbers such as 129.
4286
4287 2009-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
4288
4289 * help.el (describe-bindings-internal): Remove `interactive'.
4290
4291 * man.el (Man-completion-table): Trim a terminating "(".
4292 Remove the space between name page a section.
4293 Add the command's description on the `help-echo' property.
4294 Remove `process-connection-type' binding since it's unused by
4295 call-process.
4296 Provide completion for the "<section> <name>" format as well.
4297 (Man-default-man-entry): Remove spurious var shadowing the argument.
4298
4299 2009-11-26 Kevin Ryde <user42@zip.com.au>
4300
4301 * log-view.el: Add "Keywords: tools", since its other keywords
4302 aren't in finder-known-keywords, and following vc.el.
4303
4304 * sha1.el (sha1-string-external): default-directory "/" in case
4305 otherwise non-existent. process-connection-type pipe for touch of
4306 efficiency recommended by elisp manual. (An aside in Bug#3911.)
4307
4308 2009-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
4309
4310 Misc coding convention cleanups.
4311 * htmlfontify.el (hfy-init-kludge-hook): Rename from
4312 hfy-init-kludge-hooks.
4313 (hfy-etags-cmd, hfy-flatten-style, hfy-invisible-name, hfy-face-at)
4314 (hfy-fontify-buffer, hfy-prepare-index-i, hfy-subtract-maps)
4315 (hfy-save-kill-buffers, htmlfontify-copy-and-link-dir): Use dolist
4316 and push.
4317 (hfy-slant, hfy-weight): Use tables rather than code.
4318 (hfy-box-to-border-assoc, hfy-box-to-style, hfy-decor)
4319 (hfy-face-to-style-i, hfy-fontify-buffer): Use `case'.
4320 (hfy-face-attr-for-class): Initialize `face-spec' directly.
4321 (hfy-face-to-css): Remove `nconc' with single arg.
4322 (hfy-p-to-face-lennart): Use `or'.
4323 (hfy-face-at): Hoist common code. Remove spurious quotes in `case'.
4324 (hfy-overlay-props-at, hfy-mark-tag-hrefs): Eta-reduce.
4325 (hfy-compile-stylesheet, hfy-merge-adjacent-spans)
4326 (hfy-compile-face-map, hfy-parse-tags-buffer): Use push.
4327 (hfy-force-fontification): Use run-hooks.
4328
4329 2009-11-26 Vivek Dasmohapatra <vivek@etla.org>
4330
4331 Various minor fixes.
4332 * htmlfontify.el (hfy-default-header): Add toggle_invis since
4333 Javascript belongs in the header, not the body.
4334 (hfy-javascript): Remove.
4335 (hfy-fontify-buffer): Don't insert it any more.
4336 (hfy-face-at): Handle (face0 face1 face2) style face properties.
4337 Fix bug in invis handling when there were no invis props in a chunk.
4338
4339 2009-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
4340
4341 * vc-bzr.el (vc-bzr-annotate-command): Make operation asynchronous.
4342
4343 2009-11-26 Dan Nicolaescu <dann@ics.uci.edu>
4344
4345 * finder.el (finder-mode-map): Add a menu.
4346
4347 2009-11-26 Michael McNamara <mac@mail.brushroad.com>
4348
4349 * progmodes/verilog-mode.el (verilog-at-struct-p): Support "signed" and
4350 "unsigned" structs.
4351
4352 (verilog-leap-to-head, verilog-backward-token): Handle "disable
4353 fork" statement better.
4354
4355 2009-11-26 Wilson Snyder <wsnyder@wsnyder.org>
4356
4357 * progmodes/verilog-mode.el (verilog-auto-insert-lisp)
4358 (verilog-delete-auto, verilog-delete-empty-auto-pair)
4359 (verilog-library-filenames): Fix AUTOINSERTLISP to support insert-file.
4360 Reported by Clay Douglass.
4361
4362 (verilog-auto-inst, verilog-auto-star-safe)
4363 (verilog-delete-auto-star-implicit, verilog-read-sub-decls):
4364 Fix removing "// Interfaces" when saving .* expansions. Reported by
4365 Pierre-David Pfister.
4366
4367 2009-11-26 Glenn Morris <rgm@gnu.org>
4368
4369 * eshell/em-dirs.el (eshell/cd): Don't throw to a tag outside
4370 the scope.
4371
4372 2009-11-25 Johan Bockgård <bojohan@gnu.org>
4373
4374 * vc-annotate.el (vc-annotate-revision-previous-to-line):
4375 Really use previous revision.
4376
4377 2009-11-25 Kevin Ryde <user42@zip.com.au>
4378
4379 * man.el (Man-completion-table): default-directory "/" in case
4380 doesn't otherwise exist. process-environment COLUMNS=999 so as
4381 not to truncate long names. process-connection-type pipe to avoid
4382 any chance of hitting the pseudo-tty TIOCGWINSZ.
4383 (man): completion-ignore-case t for friendliness and since man
4384 itself is case-insensitive on the command line.
4385 Further to Bug#3717.
4386
4387 * arc-mode.el: Add "Keywords: files", so the details in its
4388 commentary can be reached from finder-by-keyword.
4389 * textmodes/dns-mode.el: Add "Keywords: comm". It's only an
4390 editing mode, but it's comms related and sgml-mode.el has "comm"
4391 on that basis too.
4392 * textmodes/bibtex-style.el: Add "Keywords: tex".
4393 * international/isearch-x.el, international/ja-dic-cnv.el:
4394 * international/ja-dic-utl.el, international/kkc.el:
4395 Add "Keywords: i18n", so they can be reached from finder-by-keyword.
4396
4397 2009-11-25 Juri Linkov <juri@jurta.org>
4398
4399 * man.el (Man-completion-table): Modify regexp to include
4400 section names to completion strings. (Bug#3717)
4401
4402 2009-11-25 Juri Linkov <juri@jurta.org>
4403
4404 Search recursively in gzipped files. (Bug#4982)
4405
4406 * progmodes/grep.el (grep-highlight-matches): Add new options
4407 `always' and `auto'. Doc fix.
4408 (grep-process-setup): Check `grep-highlight-matches' for
4409 `auto-detect' to determine the need to compute grep defaults.
4410 Move Windows/DOS specific --colors settings handling
4411 to `grep-compute-defaults'. Check `grep-highlight-matches'
4412 to get the value of "--color=".
4413 (grep-compute-defaults): Compute `grep-highlight-matches' when it
4414 has the value `auto-detect'. Move Windows/DOS specific settings
4415 from `grep-process-setup'.
4416 (zrgrep): New command with alias `rzgrep'.
4417
4418 2009-11-25 Juri Linkov <juri@jurta.org>
4419
4420 * doc-view.el (doc-view-mode): Set buffer-local `view-read-only'
4421 to nil instead of switching off view-mode. (Bug#4896)
4422
4423 2009-11-25 Juri Linkov <juri@jurta.org>
4424
4425 Mouse-wheel scrolling for DocView Continuous mode. (Bug#4896)
4426
4427 * mwheel.el (mwheel-scroll-up-function)
4428 (mwheel-scroll-down-function): New defvars.
4429 (mwheel-scroll): Funcall `mwheel-scroll-up-function' instead of
4430 `scroll-up', and `mwheel-scroll-down-function' instead of
4431 `scroll-down'.
4432
4433 * doc-view.el (doc-view-scroll-up-or-next-page)
4434 (doc-view-scroll-down-or-previous-page): Add optional ARG.
4435 Use this ARG in the call to image-scroll-up/image-scroll-down.
4436 Change `interactive' spec to "P". Goto next/previous page only
4437 when `doc-view-continuous-mode' is non-nil or ARG is nil (for the
4438 SPC/DEL case). Doc fix.
4439 (doc-view-next-line-or-next-page)
4440 (doc-view-previous-line-or-previous-page): Rename arg to ARG
4441 for consistency.
4442 (doc-view-mode): Set buffer-local `mwheel-scroll-up-function' to
4443 `doc-view-scroll-up-or-next-page', and buffer-local
4444 `mwheel-scroll-down-function' to
4445 `doc-view-scroll-down-or-previous-page'.
4446
4447 2009-11-25 Juri Linkov <juri@jurta.org>
4448
4449 Provide additional default values (directories at other Dired
4450 windows) via M-n in the minibuffer of some Dired commands.
4451
4452 * dired-aux.el (dired-diff, dired-compare-directories)
4453 (dired-do-create-files): Use `dired-dwim-target-defaults' to set
4454 `minibuffer-default' in `minibuffer-with-setup-hook'.
4455 (dired-dwim-target-directory): Find a window that displays Dired
4456 buffer instead of failing when the next window is not Dired.
4457 Use `get-window-with-predicate' to find for the next Dired window.
4458 (dired-dwim-target-defaults): New function.
4459
4460 * ediff-util.el (ediff-read-file-name):
4461 Use `dired-dwim-target-defaults' to set `minibuffer-default'
4462 in `minibuffer-with-setup-hook'.
4463
4464 2009-11-25 Juri Linkov <juri@jurta.org>
4465
4466 Provide additional default values (file name at point or at the
4467 current Dired line) via M-n for file reading minibuffers. (Bug#5010)
4468
4469 * minibuffer.el (read-file-name-defaults): New function.
4470 (read-file-name): Reset `minibuffer-default' to nil when
4471 it duplicates initial input `insdef'.
4472 Bind `minibuffer-default-add-function' to lambda that
4473 calls `read-file-name-defaults' in `minibuffer-selected-window'.
4474 (minibuffer-insert-file-name-at-point): New command.
4475
4476 * files.el (file-name-at-point-functions): New defcustom.
4477 (find-file-default): Remove defvar.
4478 (find-file-read-args): Don't use `find-file-default'.
4479 Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
4480 to `read-file-name'.
4481 (find-file-literally): Use `read-file-name' with
4482 `confirm-nonexistent-file-or-buffer'.
4483
4484 * ffap.el (ffap-guess-file-name-at-point): New autoloaded function.
4485
4486 * dired.el (dired-read-dir-and-switches):
4487 Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
4488 to `read-file-name'.
4489 (dired-file-name-at-point): New function.
4490 (dired-mode): Add hook `dired-file-name-at-point' to
4491 `file-name-at-point-functions'.
4492
4493 2009-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
4494
4495 Really make the *Completions* window soft-dedicated (bug#5030).
4496 * window.el (window--display-buffer-2): Add `dedicated' argument.
4497 (display-buffer): Pass it when needed so the dedicated flag is set
4498 after calling set-window-buffer, which would otherwise reset it.
4499
4500 2009-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
4501
4502 * progmodes/meta-mode.el (meta-complete-symbol):
4503 * progmodes/etags.el (complete-tag):
4504 * mail/mailabbrev.el (mail-abbrev-complete-alias):
4505 Use completion-in-region.
4506
4507 * dabbrev.el (dabbrev--minibuffer-origin): Use minibuffer-selected-window.
4508 (dabbrev-completion): Use completion-in-region.
4509 (dabbrev--abbrev-at-point): Simplify regexp.
4510
4511 * abbrev.el (abbrev--before-point): Use word-motion functions
4512 if :regexp is not specified (bug#5031).
4513
4514 * subr.el (string-prefix-p): New function.
4515
4516 * man.el (Man-completion-cache): New var.
4517 (Man-completion-table): Use it.
4518
4519 * vc.el (vc-print-log-internal): Make `limit' optional for better
4520 compatibility (e.g. with vc-annotate.el).
4521
4522 2009-11-24 Kevin Ryde <user42@zip.com.au>
4523
4524 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp):
4525 Build value with regexp-opt instead of explicit joining loop. (Bug#4927)
4526
4527 * emacs-lisp/elint.el (elint-add-required-env): Better error message
4528 when .el source file not found or other error.
4529
4530 2009-11-24 Markus Triska <markus.triska@gmx.at>
4531
4532 * linum.el (linum-update-window): Ignore intangible (bug#4996).
4533
4534 2009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
4535
4536 Handle the [back] button properly (bug#4979).
4537 * descr-text.el (describe-text-properties): Add a `buffer' argument.
4538 Use help-setup-xref, help-buffer, and with-help-window.
4539 (describe-char): Add `buffer' argument.
4540 Pass proper command to help-setup-xref. Don't meddle with
4541 help-xref-stack-item directly.
4542 (describe-text-category): Use with-help-window and help-buffer.
4543
4544 * emacs-lisp/shadow.el (list-load-path-shadows): Setup a major mode
4545 for the displayed buffer (bug#4887).
4546
4547 * man.el (Man-completion-table): New function.
4548 (man): Use it.
4549
4550 2009-11-24 David Reitter <david.reitter@gmail.com>
4551
4552 * vc-git.el (vc-git-registered): Use checkout directory (where
4553 .git is) rather than the file's directory and a relative path spec
4554 to work around a bug in git.
4555
4556 2009-11-24 Michael Albinus <michael.albinus@gmx.de>
4557
4558 Improve handling of processes on remote hosts.
4559
4560 * eshell/esh-util.el (eshell-path-env): New defvar.
4561 (eshell-parse-colon-path): New defun.
4562 (eshell-file-attributes): Use `eshell-parse-colon-path'.
4563
4564 * eshell/esh-ext.el (eshell-search-path):
4565 Use `eshell-parse-colon-path'.
4566 (eshell-remote-command): Remove argument HANDLER.
4567 (eshell-external-command): Check for FTP remote connection.
4568
4569 * eshell/esh-proc.el (eshell-gather-process-output):
4570 Use `file-truename', in order to start also symlinked files.
4571 Apply `start-file-process' instead of `start-process'.
4572 Shorten `command' to the local file name part.
4573
4574 * eshell/em-cmpl.el (eshell-complete-commands-list):
4575 Use `eshell-parse-colon-path'.
4576
4577 * eshell/em-unix.el (eshell/du): Check for FTP remote connection.
4578
4579 * net/tramp.el (tramp-eshell-directory-change): New defun. Add it
4580 to `eshell-directory-change-hook'.
4581
4582 2009-11-24 Tassilo Horn <tassilo@member.fsf.org>
4583
4584 * doc-view.el (doc-view-mode): Switch off view-mode explicitly,
4585 because it could be enabled automatically if view-read-only is non-nil.
4586
4587 2009-11-24 Michael Kifer <kifer@cs.stonybrook.edu>
4588
4589 * ediff-vers.el (ediff-rcs-get-output-buffer): Revert the change
4590 made on 2009-11-22.
4591
4592 2009-11-24 Glenn Morris <rgm@gnu.org>
4593
4594 * bookmark.el (bookmark-bmenu-hide-filenames): Remove assignment to
4595 deleted variable bookmark-bmenu-bookmark-column.
4596
4597 2009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
4598
4599 * bookmark.el (bookmark-bmenu-search): Clear echo area when exiting.
4600
4601 2009-11-23 Ken Brown <kbrown@cornell.edu> (tiny change)
4602
4603 * net/browse-url.el (browse-url-filename-alist): On Windows, add
4604 two slashes to the "file:" prefix.
4605 (browse-url-file-url): De-munge Cygwin filenames before passing
4606 them to Windows browser.
4607 (browse-url-default-windows-browser): Use call-process.
4608
4609 2009-11-23 Juri Linkov <juri@jurta.org>
4610
4611 Implement DocView Continuous mode. (Bug#4896)
4612 * doc-view.el (doc-view-continuous-mode): New defcustom.
4613 (doc-view-mode-map): Bind C-n/<down> to
4614 `doc-view-next-line-or-next-page', C-p/<up> to
4615 `doc-view-previous-line-or-previous-page'.
4616 (doc-view-next-line-or-next-page)
4617 (doc-view-previous-line-or-previous-page): New commands.
4618
4619 2009-11-23 Juri Linkov <juri@jurta.org>
4620
4621 Implement Isearch in comint input history. (Bug#3746)
4622 * comint.el (comint-mode): Add `comint-history-isearch-setup' to
4623 `isearch-mode-hook'.
4624 (comint-history-isearch): New defcustom.
4625 (comint-history-isearch-backward)
4626 (comint-history-isearch-backward-regexp): New commands.
4627 (comint-history-isearch-message-overlay): New buffer-local variable.
4628 (comint-history-isearch-setup, comint-history-isearch-end)
4629 (comint-goto-input, comint-history-isearch-search)
4630 (comint-history-isearch-message, comint-history-isearch-wrap)
4631 (comint-history-isearch-push-state)
4632 (comint-history-isearch-pop-state): New functions.
4633
4634 2009-11-23 Michael Albinus <michael.albinus@gmx.de>
4635
4636 * net/tramp.el (tramp-shell-prompt-pattern): Use \r for carriage
4637 return.
4638 (tramp-handle-make-symbolic-link)
4639 (tramp-handle-dired-compress-file, tramp-handle-expand-file-name):
4640 Quote file names.
4641 (tramp-send-command-and-check): New argument DONT-SUPPRESS-ERR.
4642 (tramp-handle-process-file): Use it.
4643
4644 2009-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
4645
4646 * window.el (move-to-window-line-last-op): Remove.
4647 (move-to-window-line-top-bottom): Reuse recenter-last-op instead.
4648
4649 2009-11-23 Deniz Dogan <deniz.a.m.dogan@gmail.com> (tiny change)
4650
4651 Make M-r mirror the new cycling behavior of C-l.
4652 * window.el (move-to-window-line-last-op): New var.
4653 (move-to-window-line-top-bottom): New command.
4654 (global-map): Bind M-r move-to-window-line-top-bottom.
4655
4656 2009-11-23 Sven Joachim <svenjoac@gmx.de>
4657
4658 * dired-x.el (dired-guess-shell-alist-default):
4659 Support xz format. (Bug#4953)
4660
4661 2009-11-22 Michael Kifer <kifer@cs.stonybrook.edu>
4662
4663 * emulation/viper-cmd.el: Use viper-last-command-char instead of
4664 last-command-char/last-command-event.
4665 (viper-prefix-arg-value): Do correct conversion of event-char for
4666 XEmacs.
4667
4668 * emulation/viper-util.el, emulation/viper.el:
4669 Use viper-last-command-char instead of
4670 last-command-char/last-command-event.
4671
4672 * ediff-init.el, ediff-mult.el, ediff-util.el:
4673 Replace last-command-char and last-command-event
4674 with (ediff-last-command-char) everywhere.
4675
4676 * ediff-vers.el (ediff-rcs-get-output-buffer): Make sure the buffer is
4677 created in fundamental mode.
4678
4679 * ediff.el (ediff-version): Revert the change of interactive-p to
4680 called-interactively-p.
4681
4682 2009-11-22 Tassilo Horn <tassilo@member.fsf.org>
4683
4684 * progmodes/subword.el (subword-mode-map): Fix subword-mode-map
4685 generation from word-movement command names.
4686
4687 2009-11-21 Jan Djärv <jan.h.d@swipnet.se>
4688
4689 * cus-start.el (all): Add native condition for font-use-system-font.
4690
4691 2009-11-21 Nathaniel Flath <flat0103@gmail.com>
4692
4693 * progmodes/cc-menus.el (cc-imenu-java-generic-expression):
4694 Correct the patch from 2009-11-18. (Bug#3910)
4695
4696 2009-11-21 Tassilo Horn <tassilo@member.fsf.org>
4697
4698 * progmodes/subword.el: Rename from lisp/subword.el.
4699
4700 * subword.el: Rename to progmodes/subword.el.
4701
4702 * Makefile.in (ELCFILES): Adapt to subword.el move.
4703
4704 2009-11-21 Thierry Volpiatto <thierry.volpiatto@gmail.com>
4705 Stefan Monnier <monnier@iro.umontreal.ca>
4706
4707 * bookmark.el (bookmark-bmenu-bookmark-column): Remove var.
4708 (bookmark-bmenu-list): Save name on `bookmark-name-prop' text-prop.
4709 (bookmark-bmenu-show-filenames): Use push.
4710 (bookmark-bmenu-hide-filenames): Use local var instead of
4711 bookmark-bmenu-bookmark-column. Use pop. Don't save window-excursion.
4712 (bookmark-bmenu-bookmark): Use the new `bookmark-name-prop' text-prop.
4713 (bookmark-bmenu-execute-deletions): Don't bother adding/removing the
4714 filenames now that the bookmark names are always available.
4715
4716 2009-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
4717
4718 * bookmark.el (bookmark-search-prompt, bookmark-search-timer): Remove.
4719 (bookmark-search-pattern): Move and leave unbound.
4720 (bookmark-bmenu-mode-map): Change binding.
4721 (bookmark-read-search-input): Simplify.
4722 Don't use text-char-description. Don't error on non-char events.
4723 (bookmark-filtered-alist-by-regexp-only): Remove by folding into the
4724 only caller (i.e. bookmark-bmenu-filter-alist-by-regexp).
4725 (bookmark-bmenu-search): Don't check we're in a bookmark-list buffer.
4726 Use a local var for the timer.
4727 (bookmark-bmenu-cancel-search): Remove by folding into the only caller
4728 (i.e. bookmark-bmenu-search).
4729
4730 2009-11-21 Glenn Morris <rgm@gnu.org>
4731
4732 * mail/rmailmm.el (rmail-mime): Decode in fundamental-mode. (Bug#4993)
4733
4734 2009-11-20 Ken Brown <kbrown@cornell.edu> (tiny change)
4735
4736 * net/browse-url.el (browse-url-default-windows-browser):
4737 Use cygstart for cygwin.
4738
4739 2009-11-20 Karl Fogel <karl.fogel@red-bean.com>
4740
4741 * bookmark.el: Formatting and doc fixes only:
4742 (bookmark-search-delay): Shorten doc string to fit in 80 columns.
4743 (bookmark-bmenu-search): Wrap to fit within 80 columns.
4744 Minor grammar and punctuation fixes in doc string.
4745 (bookmark-read-search-input): Adjust to fit within 80 columns.
4746
4747 2009-11-20 Tassilo Horn <tassilo@member.fsf.org>
4748
4749 * progmodes/cc-cmds.el (c-forward-into-nomenclature)
4750 (c-backward-into-nomenclature): Adapt to subword renaming.
4751
4752 * subword.el (subword-forward, subword-backward, subword-mark)
4753 (subword-kill, subword-backward-kill, subword-transpose)
4754 (subword-downcase, subword-upcase, subword-capitalize)
4755 (subword-forward-internal, subword-backward-internal):
4756 Rename from forward-subword, backward-subword, mark-subword,
4757 kill-subword, backward-kill-subword, transpose-subwords,
4758 downcase-subword, upcase-subword, capitalize-subword,
4759 forward-subword-internal, backward-subword-internal.
4760
4761 2009-11-20 Thierry Volpiatto <thierry.volpiatto@gmail.com>
4762
4763 * bookmark.el (bookmark-search-delay, bookmark-search-prompt):
4764 New options.
4765 (bookmark-search-pattern, bookmark-search-timer, bookmark-quit-flag):
4766 New vars.
4767 (bookmark-read-search-input, bookmark-filtered-alist-by-regexp-only)
4768 (bookmark-bmenu-filter-alist-by-regexp)
4769 (bookmark-bmenu-goto-bookmark, bookmark-bmenu-cancel-search): New funs.
4770 (bookmark-bmenu-search): New command.
4771 (bookmark-bmenu-mode-map): Bind it.
4772
4773 2009-11-20 Tassilo Horn <tassilo@member.fsf.org>
4774
4775 * progmodes/cc-cmds.el: declare-functioned forward-subword and
4776 backward-subword to quit the byte-compiler.
4777
4778 * makefile.w32-in: Don't refer cc-subword.elc but subword.elc.
4779
4780 * Makefile.in: Don't refer cc-subword.elc but subword.elc.
4781
4782 * progmodes/cc-cmds.el (c-update-modeline)
4783 (c-forward-into-nomenclature, c-backward-into-nomenclature):
4784 Refer to subword.el functions instead of cc-subword.el.
4785
4786 * progmodes/cc-mode.el (subword-mode, c-mode-base-map): Refer to
4787 subword.el functions instead of cc-subword.el.
4788
4789 * progmodes/cc-subword.el: Rename to subword.el.
4790 * subword.el: Rename from progmodes/cc-subword.el.
4791 (subword-mode-map): Rename from c-subword-mode-map.
4792 (subword-mode): Rename from c-subword-mode.
4793 (global-subword-mode): New global minor mode.
4794 (forward-subword): Rename from c-forward-subword.
4795 (backward-subword): Rename from c-backward-subword.
4796 (mark-subword): Rename from c-mark-subword.
4797 (kill-subword): Rename from c-kill-subword.
4798 (backward-kill-subword): Rename from c-backward-kill-subword.
4799 (transpose-subwords): Rename from c-tranpose-subword.
4800 (downcase-subword): Rename from c-downcase-subword.
4801 (capitalize-subword): Rename from c-capitalize-subword.
4802 (forward-subword-internal): Rename from c-forward-subword-internal.
4803 (backward-subword-internal): Rename from c-backward-subword-internal.
4804
4805 2009-11-20 Dan Nicolaescu <dann@ics.uci.edu>
4806
4807 * vc.el (vc-deduce-fileset): Allow non-state changing operations
4808 from a dired buffer.
4809 (vc-dired-deduce-fileset): New function.
4810 (vc-root-diff, vc-print-root-log): Use it.
4811
4812 * vc-annotate.el (vc-annotate-show-log-revision-at-line): Pass a
4813 nil LIMIT argument to vc-print-log-internal.
4814
4815 2009-11-20 Glenn Morris <rgm@gnu.org>
4816
4817 * Makefile.in (ELCFILES): Regenerate.
4818
4819 2009-11-20 Jay Belanger <jay.p.belanger@gmail.com>
4820
4821 * calc/calc.el (calc-set-mode-line):
4822 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
4823 (math-format-number): Rename `math-format-complement-signed' to
4824 `math-format-twos-complement'.
4825
4826 * calc/calc-bin.el (math-format-twos-complement): Rename from
4827 math-format-complement-signed.
4828 (calc-radix): Rename `calc-complement-signed-mode' to
4829 `calc-twos-complement-mode'.
4830 (calc-octal-radix, calc-hex-radix): Add an argument for
4831 two's complement.
4832
4833 * calc/calc-embed.el (calc-embedded-mode-vars):
4834 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
4835
4836 * calc/calc-ext.el (calc-init-extensions):
4837 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
4838 (math-format-number-fancy): Let `calc-twos-complement-mode' be nil.
4839
4840 * calc/calc-units.el (math-build-units-table-buffer):
4841 Let `calc-twos-complement-mode' be nil.
4842
4843 * calc/calc-menu.el (calc-modes-menu): Clean up two's complement
4844 entries.
4845
4846 * calc/calc-vec.el (calcFunc-vunpack):
4847 * calc/calc-aent.el (calc-do-calc-eval):
4848 * calc/calc-forms.el (math-format-date):
4849 * calc/calc-graph.el (calc-graph-plot):
4850 * calc/calc-math.el (math-use-emacs-fn):
4851 * calc/calccomp.el (math-compose-expr):
4852 Let `calc-twos-complement-mode' be nil.
4853
4854 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
4855
4856 * abbrev.el (abbrev-with-wrapper-hook): (re)move...
4857 * simple.el (with-wrapper-hook): ...to here. Add argument `args'.
4858 * minibuffer.el (completion-in-region-functions): New hook.
4859 (completion-in-region): New function.
4860 * emacs-lisp/lisp.el (lisp-complete-symbol):
4861 * pcomplete.el (pcomplete-std-complete): Use it.
4862
4863 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
4864
4865 * textmodes/tex-mode.el (latex-complete-bibtex-cache)
4866 (latex-complete-alist): New vars.
4867 (latex-string-prefix-p, latex-complete-bibtex-keys)
4868 (latex-complete-envnames, latex-complete-refkeys)
4869 (latex-complete-data): New functions.
4870 (latex-complete, latex-indent-or-complete): New commands.
4871
4872 * window.el (display-buffer-mark-dedicated): New var.
4873 (display-buffer): Obey it.
4874 * minibuffer.el (minibuffer-completion-help): Use it.
4875
4876 * progmodes/sym-comp.el (symbol-complete): Use completion-in-region.
4877
4878 * filecache.el (file-cache-add-file): Use push and cons.
4879 (file-cache-delete-file-regexp): Use push.
4880 (file-cache-complete): Use completion-in-region.
4881
4882 * simple.el (with-wrapper-hook): Fix thinko.
4883
4884 * hfy-cmap.el (hfy-rgb-file): Use locate-file.
4885 (htmlfontify-load-rgb-file): Remove unnused var `ff'.
4886 Use with-current-buffer and string-to-number.
4887 (hfy-fallback-colour-values): Use assoc-string.
4888 * htmlfontify.el (hfy-face-to-css): Remove unused var `style'.
4889 (hfy-face-at): Remove unused var `found-face'.
4890 (hfy-compile-stylesheet): Remove unused var `css'.
4891 (hfy-fontify-buffer): Remove unused vars `in-style', `invis-button',
4892 and `orig-buffer'.
4893 (hfy-buffer, hfy-copy-and-fontify-file, hfy-parse-tags-buffer):
4894 Use with-current-buffer.
4895 (hfy-text-p): Use expand-file-name and fewer setq.
4896
4897 2009-11-19 Vivek Dasmohapatra <vivek@etla.org>
4898
4899 * htmlfontify.el, hfy-cmap.el: New files.
4900
4901 2009-11-19 Juri Linkov <juri@jurta.org>
4902
4903 * minibuffer.el (completions-format): New defcustom.
4904 (completion--insert-strings): Implement vertical format.
4905
4906 * simple.el (switch-to-completions): Move point to the first
4907 completion when point was at the beginning of the buffer.
4908
4909 2009-11-19 Juri Linkov <juri@jurta.org>
4910
4911 * find-dired.el (find-name-arg): Remove autoload. (Bug#4387)
4912
4913 * progmodes/grep.el (rgrep): Require `find-dired' for `find-name-arg'.
4914
4915 2009-11-19 Chong Yidong <cyd@stupidchicken.com>
4916
4917 * mail/sendmail.el (mail-yank-prefix): Change default to "> ".
4918 (mail-signature): Change default to t.
4919 (mail-from-style): Deprecate `system-default' value.
4920 (mail-insert-from-field): For default value of mail-from-style,
4921 default to `angles' unless `angles' needs quoting and `parens'
4922 does not.
4923 (mail-citation-prefix-regexp): Use citation regexp from
4924 message-mode.
4925
4926 2009-11-19 Michael Albinus <michael.albinus@gmx.de>
4927
4928 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
4929 Set variables for computing the prompt for reading password.
4930
4931 2009-11-19 Glenn Morris <rgm@gnu.org>
4932
4933 * dired-aux.el (dired-compress-file-suffixes): Add ".xz". (Bug#4953)
4934
4935 * textmodes/flyspell.el (sgml-lexical-context): Declare.
4936
4937 * net/newst-treeview.el (newsticker-treeview-treewindow-width)
4938 (newsticker-treeview-listwindow-height): Fix custom type.
4939
4940 2009-11-19 Kenichi Handa <handa@m17n.org>
4941
4942 * descr-text.el (describe-char-padded-string): Compose with TAB
4943 only if there's a font for CH.
4944 (describe-char): Fix the condition for detecting a trivial composition.
4945
4946 2009-11-18 Nathaniel Flath <flat0103@gmail.com>
4947
4948 * progmodes/cc-menus.el (cc-imenu-java-generic-expression): A new,
4949 more accurate version of the regexp. (Bug#3910)
4950
4951 2009-11-18 Bernhard Herzog <bernhard.herzog@intevation.de> (tiny change)
4952
4953 * vc-hg.el (vc-hg-diff): Fix last patch: do not change directory.
4954
4955 2009-11-18 Juanma Barranquero <lekktu@gmail.com>
4956
4957 * font-setting.el (font-use-system-font): Declare for byte-compiler.
4958 (font-setting-change-default-font): Fix typo in docstring.
4959
4960 2009-11-18 Alan Mackenzie <acm@muc.de>
4961
4962 * progmodes/cc-defs.el (c-version): Bump to 5.31.8.
4963
4964 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
4965
4966 * font-setting.el (font-use-system-font): Move ...
4967
4968 * cus-start.el (all): ... to here.
4969
4970 2009-11-17 Michael Albinus <michael.albinus@gmx.de>
4971
4972 * net/tramp.el (tramp-advice-file-expand-wildcards): Simplify.
4973 Don't set `ad-return-value' if `ad-do-it' doesn't.
4974
4975 * net/tramp-gvfs.el (tramp-gvfs-handle-write-region): Set file
4976 modification time.
4977
4978 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
4979
4980 * menu-bar.el: Put "Use system font" in Option-menu.
4981 (menu-bar-options-save): Add font-use-system-font.
4982
4983 * loadup.el: If feature system-font-setting or font-render-setting is
4984 there, load font-setting.
4985
4986 * Makefile.in (ELCFILES): Add font-settings.el.
4987 * font-setting.el: New file.
4988
4989 2009-11-17 Glenn Morris <rgm@gnu.org>
4990
4991 * vc-svn.el (vc-svn-print-log): Fix typo in previous.
4992
4993 * net/newst-treeview.el (newsticker--treeview-list-update-faces):
4994 Preserve point in the list buffer. (Bug#4939)
4995 Use point-at-eol.
4996 (newsticker--treeview-list-update-highlight)
4997 (newsticker--treeview-tree-update-highlight): Use point-at-bol/eol.
4998
4999 2009-11-16 Jay Belanger <jay.p.belanger@gmail.com>
5000
5001 * calc/calc-bin.el (math-symclip, calcFunc-symclip, calc-symclip):
5002 Remove.
5003
5004 * calc/calc-ext.el (calc-init-extensions): Remove references to
5005 symclip.
5006
5007 * calc/calc-menu.el (calc-arithmetic-menu): Remove `calc-symclip'.
5008
5009 * calc/calc-map.el (calc-get-operator, calc-b-oper-keys):
5010 * calc/calc-help.el (calc-b-prefix-help): Remove references to
5011 `calc-symclip'.
5012
5013 2009-11-16 Kevin Ryde <user42@zip.com.au>
5014
5015 * textmodes/flyspell.el (sgml-mode-flyspell-verify):
5016 Use `sgml-lexical-context' instead of own parse for tag (Bug#4511).
5017
5018 * emacs-lisp/lisp-mnt.el (lm-keywords): Allow multi-line keywords.
5019 (lm-keywords-list): Allow comma-only separator like "foo,bar".
5020 Ignore trailing spaces by omit-nulls to split-string (fixing
5021 regression from Emacs 21 due to the incompatible split-string
5022 change). (Bug #4928.)
5023
5024 2009-11-16 Dan Nicolaescu <dann@ics.uci.edu>
5025
5026 * vc.el (vc-log-show-limit): Default to 2000.
5027 (vc-print-log-internal): Insert buttons to request more entries
5028 when limiting the output.
5029
5030 * vc-sccs.el (vc-sccs-print-log):
5031 * vc-rcs.el (vc-rcs-print-log):
5032 * vc-cvs.el (vc-cvs-print-log):
5033 * vc-git.el (vc-git-print-log): Return 'limit-unsupported when
5034 LIMIT is non-nil.
5035
5036 2009-11-16 Michael Albinus <michael.albinus@gmx.de>
5037
5038 * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error): Raise only an
5039 error when `tramp-gvfs-dbus-event-vector' is set.
5040 (tramp-gvfs-maybe-open-connection): Loop over `read-event'.
5041
5042 2009-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
5043
5044 * vc-rcs.el (vc-rcs-consult-headers): Add missing save-excursion.
5045
5046 2009-11-16 Michael Albinus <michael.albinus@gmx.de>
5047
5048 * net/dbus.el (dbus-unregister-service): New defun.
5049 (dbus-register-property): Register the handlers of
5050 "org.freedesktop.DBus.Properties" for SERVICE.
5051 (dbus-property-handler): Fix docstring.
5052
5053 2009-11-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5054
5055 * emacs-lisp/bytecomp.el (byte-compile-output-file-form):
5056 Quote doc string reference in defvaralias as it is not in special form.
5057 (byte-compile-output-docform): Doc fix.
5058
5059 2009-11-16 Jay Belanger <jay.p.belanger@gmail.com>
5060
5061 * calc/calc.el (math-2-word-size, math-half-2-word-size)
5062 (calc-complement-signed-mode): New variables.
5063 (calc-set-mode-line): Add indicator for twos-complements.
5064 (math-format-number): Format twos-complement notation.
5065
5066 * calc/calc-bin.el (calc-word-size): Reset the variables
5067 `math-2-word-size' and `math-half-2-word-size'.
5068 (math-format-complement-signed, math-symclip, calcFunc-symclip)
5069 (calc-symclip): New functions.
5070
5071 * calc/calc-aent.el (math-read-token): Read complement signed numbers.
5072
5073 * calc/calc-embed.el (calc-embedded-mode-vars):
5074 Add `calc-complement-signed-mode' to the list of modes.
5075
5076 * calc/calc-map.el (calc-get-operator): Add `calc-symclip'.
5077 (calc-b-oper-keys): Add `calc-symclip' to list.
5078
5079 * calc/calc-ext.el (math-read-number-fancy): Read complement
5080 signed numbers.
5081 (calc-init-extensions): Add binding for `calc-symclip'.
5082 Add autoload for `calcFunc-symclip' and `calc-symclip'.
5083
5084 * calc/calc-menu.el (calc-arithmetic-menu): Add item for
5085 `calc-symclip'.
5086 (calc-modes-menu): Add item for twos complement mode.
5087
5088 * calc/calc-help.el (calc-b-prefix-help): Add help for `calc-symclip'.
5089
5090 2009-11-15 Chong Yidong <cyd@stupidchicken.com>
5091
5092 * register.el (jump-to-register, insert-register): Handle Semantic
5093 tags. From commented-out advice in semantic/senator.el.
5094
5095 2009-11-15 Dan Nicolaescu <dann@ics.uci.edu>
5096
5097 * vc.el (vc-log-show-limit): New variable.
5098 (vc-print-log, vc-print-root-log): Add new argument LIMIT. Set it
5099 when using a prefix argument.
5100 (vc-print-log-internal): Add new argument LIMIT.
5101
5102 * vc-svn.el (vc-svn-print-log):
5103 * vc-mtn.el (vc-mtn-print-log):
5104 * vc-hg.el (vc-hg-print-log):
5105 * vc-bzr.el (vc-bzr-print-log): Add new optional argument LIMIT,
5106 pass it to the log command when set. Make the BUFFER argument
5107 non-optional.
5108
5109 * vc-sccs.el (vc-sccs-print-log):
5110 * vc-rcs.el (vc-rcs-print-log):
5111 * vc-git.el (vc-git-print-log):
5112 * vc-cvs.el (vc-cvs-print-log): Add new optional argument LIMIT,
5113 ignore it. Make the BUFFER argument non-optional
5114
5115 * bindings.el (mode-line-buffer-identification): Do not purecopy.
5116
5117 2009-11-15 Chong Yidong <cyd@stupidchicken.com>
5118
5119 * dired.el (dired-mode-map): Move encryption items to "Operate"
5120 menu (Bug#4703).
5121
5122 * strokes.el (strokes-update-window-configuration): Make strokes
5123 buffer current before erasing (Bug#4906).
5124
5125 2009-11-15 Juri Linkov <juri@jurta.org>
5126
5127 * simple.el (set-mark-default-inactive): Add :type, :group
5128 and :version. (Bug#4876)
5129
5130 2009-11-15 Michael Albinus <michael.albinus@gmx.de>
5131
5132 * arc-mode.el (archive-maybe-copy): Move creation of directory ...
5133 (archive-unique-fname): ... here. (Bug#4929)
5134
5135 2009-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
5136
5137 * help-mode.el (help-make-xrefs): Undo the last revert, and replace it
5138 with a real fix.
5139
5140 * novice.el (disabled-command-function): Add useful args.
5141 Setup the help buffer so that [back] works.
5142 Remove redundant call to help-mode.
5143 (disabled-command-function): Use `case'.
5144 (en/disable-command): New function extracted from enable-command.
5145 (enable-command, disable-command): Use it.
5146
5147 2009-11-14 Glenn Morris <rgm@gnu.org>
5148
5149 * menu-bar.el (menu-bar-tools-menu): Read and send mail entries are not
5150 constants. (Bug#4913)
5151
5152 * emacs-lisp/elint.el (elint-standard-variables): Doc fix.
5153
5154 2009-11-14 Shigeru Fukaya <shigeru.fukaya@gmail.com>
5155
5156 * emacs-lisp/elint.el (elint-standard-variables): Add some variables
5157 defined in C that have no doc-strings. (Bug#1063)
5158
5159 2009-11-14 Francis Wright <F.J.Wright@qmul.ac.uk>
5160
5161 * cus-edit.el (data, files):
5162 * ps-print.el (postscript): Doc fixes for custom groups. (Bug#3327)
5163
5164 2009-11-14 Chong Yidong <cyd@stupidchicken.com>
5165
5166 * simple.el (shell-command): Doc fix (Bug#4891).
5167
5168 * help-mode.el (help-make-xrefs): Revert 2009-11-13 change.
5169
5170 2009-11-14 Glenn Morris <rgm@gnu.org>
5171
5172 * emulation/viper.el (viper-set-hooks): Remove duplicate advice
5173 statements for vc-diff, emerge-quit, and rmail-cease-edit.
5174 If they are already loaded, eval-after-load will do the right thing.
5175
5176 * speedbar.el (top-level): Remove unnecessary load of ange-ftp when
5177 compiling.
5178
5179 * emacs-lisp/bytecomp.el (byte-compile-single-version): Remove, unused.
5180
5181 * simple.el (x-selection-owner-p): Declare.
5182 (read-mail-command): Use custom radio type rather than choice.
5183 (completion-no-auto-exit): Doc fix.
5184
5185 * custom.el (defgroup):
5186 * epg-config.el (epg): Doc fixes.
5187
5188 2009-11-14 Dan Nicolaescu <dann@ics.uci.edu>
5189
5190 * bindings.el (mode-line-buffer-identification): Purecopy only the string.
5191 * international/ccl.el (define-ccl-program): Do not purecopy the
5192 docstring, defconst does it anyway.
5193
5194 2009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
5195
5196 * add-log.el (add-change-log-entry): Avoid displaying the changelog
5197 a second time.
5198
5199 * x-dnd.el (x-dnd-maybe-call-test-function):
5200 * window.el (split-window-vertically):
5201 * whitespace.el (whitespace-help-on):
5202 * vc-rcs.el (vc-rcs-consult-headers):
5203 * userlock.el (ask-user-about-lock-help)
5204 (ask-user-about-supersession-help):
5205 * type-break.el (type-break-force-mode-line-update):
5206 * time-stamp.el (time-stamp-conv-warn):
5207 * terminal.el (te-set-output-log, te-more-break, te-filter)
5208 (te-sentinel, terminal-emulator):
5209 * term.el (make-term, term-exec, term-sentinel, term-read-input-ring)
5210 (term-write-input-ring, term-check-source, term-start-output-log):
5211 (term-display-buffer-line, term-dynamic-list-completions):
5212 (term-ansi-make-term, serial-term):
5213 * subr.el (selective-display):
5214 * strokes.el (strokes-xpm-to-compressed-string, strokes-decode-buffer)
5215 (strokes-encode-buffer, strokes-xpm-for-compressed-string):
5216 * speedbar.el (speedbar-buffers-tail-notes, speedbar-buffers-item-info)
5217 (speedbar-reconfigure-keymaps, speedbar-add-localized-speedbar-support)
5218 (speedbar-remove-localized-speedbar-support)
5219 (speedbar-set-mode-line-format, speedbar-create-tag-hierarchy)
5220 (speedbar-update-special-contents, speedbar-buffer-buttons-engine)
5221 (speedbar-buffers-line-directory):
5222 * simple.el (shell-command-on-region, append-to-buffer)
5223 (prepend-to-buffer):
5224 * shadowfile.el (shadow-save-todo-file):
5225 * scroll-bar.el (scroll-bar-set-window-start, scroll-bar-drag-1)
5226 (scroll-bar-maybe-set-window-start):
5227 * sb-image.el (speedbar-image-dump):
5228 * saveplace.el (save-place-alist-to-file, save-places-to-alist)
5229 (load-save-place-alist-from-file):
5230 * ps-samp.el (ps-print-message-from-summary):
5231 * ps-print.el (ps-flush-output, ps-insert-file, ps-get-boundingbox)
5232 (ps-background-image, ps-begin-job, ps-do-despool):
5233 * ps-bdf.el (bdf-find-file, bdf-read-font-info):
5234 * printing.el (pr-interface, pr-ps-file-print, pr-find-buffer-visiting)
5235 (pr-ps-message-from-summary, pr-lpr-message-from-summary):
5236 (pr-call-process, pr-file-list, pr-interface-save):
5237 * novice.el (disabled-command-function)
5238 (enable-command, disable-command):
5239 * mouse.el (mouse-buffer-menu-alist):
5240 * mouse-copy.el (mouse-kill-preserving-secondary):
5241 * macros.el (kbd-macro-query):
5242 * ledit.el (ledit-go-to-lisp, ledit-go-to-liszt):
5243 * informat.el (batch-info-validate):
5244 * ido.el (ido-copy-current-word, ido-initiate-auto-merge):
5245 * hippie-exp.el (try-expand-dabbrev-visible):
5246 * help-mode.el (help-make-xrefs):
5247 * help-fns.el (describe-variable):
5248 * generic-x.el (bat-generic-mode-run-as-comint):
5249 * finder.el (finder-mouse-select):
5250 * find-dired.el (find-dired-sentinel):
5251 * filesets.el (filesets-file-close):
5252 * files.el (list-directory):
5253 * faces.el (list-faces-display, describe-face):
5254 * facemenu.el (list-colors-display):
5255 * ezimage.el (ezimage-image-association-dump, ezimage-image-dump):
5256 * epg.el (epg--process-filter, epg-cancel):
5257 * epa.el (epa--marked-keys, epa--select-keys, epa-display-info)
5258 (epa--read-signature-type):
5259 * emerge.el (emerge-copy-as-kill-A, emerge-copy-as-kill-B)
5260 (emerge-file-names):
5261 * ehelp.el (electric-helpify):
5262 * ediff.el (ediff-regions-wordwise, ediff-regions-linewise):
5263 * ediff-vers.el (rcs-ediff-view-revision):
5264 * ediff-util.el (ediff-setup):
5265 * ediff-mult.el (ediff-append-custom-diff):
5266 * ediff-diff.el (ediff-exec-process, ediff-process-sentinel)
5267 (ediff-wordify):
5268 * echistory.el (Electric-command-history-redo-expression):
5269 * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
5270 * disp-table.el (describe-display-table):
5271 * dired.el (dired-find-buffer-nocreate):
5272 * dired-aux.el (dired-rename-subdir, dired-dwim-target-directory):
5273 * dabbrev.el (dabbrev--same-major-mode-p):
5274 * chistory.el (list-command-history):
5275 * apropos.el (apropos-documentation):
5276 * allout.el (allout-obtain-passphrase):
5277 (allout-copy-exposed-to-buffer):
5278 (allout-verify-passphrase): Use with-current-buffer.
5279
5280 2009-11-13 Glenn Morris <rgm@gnu.org>
5281
5282 * Makefile.in (ELCFILES): Regenerate.
5283
5284 2009-11-13 Michael Albinus <michael.albinus@gmx.de>
5285
5286 * net/dbus.el (dbus-registered-objects-table): Rename from
5287 `dbus-registered-functions-table', because it contains also properties.
5288 (dbus-unregister-object): Unregister also properties.
5289 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
5290 Use a timeout of 500 msec, in order to not block.
5291 (dbus-register-property, dbus-property-handler): New defuns.
5292
5293 2009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
5294
5295 * simple.el (minibuffer-default-add-completions): Drop deprecated
5296 4th arg.
5297
5298 2009-11-13 Tomas Abrahamsson <tab@lysator.liu.se>
5299
5300 * textmodes/artist.el (artist-mouse-choose-operation):
5301 Call `tmm-prompt' instead of `x-popup-menu' if we cannot popup
5302 menus. Bug noticed by Eli Zaretskii <eliz@gnu.org>.
5303 (artist-compute-up-event-key): New function.
5304 (artist-mouse-choose-operation, artist-down-mouse-1): Call it.
5305
5306 2009-11-13 Kenichi Handa <handa@m17n.org>
5307
5308 * language/japan-util.el: Make sure that the value of jisx0208
5309 property is jisx0208 character.
5310
5311 2009-11-13 Dan Nicolaescu <dann@ics.uci.edu>
5312
5313 * international/mule.el (auto-coding-regexp-alist): Only purecopy
5314 car or each item, not the whole list.
5315
5316 2009-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
5317
5318 * minibuffer.el (minibuffer-completion-help):
5319 Use minibuffer-hide-completions.
5320
5321 2009-11-12 Per Starbäck <per@starback.se> (tiny change)
5322
5323 * dired.el (dired-save-positions, dired-restore-positions): New funs.
5324 (dired-revert): Use them (bug#4880).
5325
5326 2009-11-12 Dan Nicolaescu <dann@ics.uci.edu>
5327
5328 * tooltip.el (tooltip-frame-parameters): Undo previous change.
5329
5330 2009-11-12 Juri Linkov <juri@jurta.org>
5331
5332 * ffap.el (ffap-alternate-file-other-window, ffap-literally):
5333 New functions.
5334 (find-file-literally-at-point): Alias of `ffap-literally'.
5335
5336 2009-11-12 Dan Nicolaescu <dann@ics.uci.edu>
5337
5338 * textmodes/ispell.el (ispell-skip-region-alist):
5339 * textmodes/css-mode.el (auto-mode-alist):
5340 * progmodes/compile.el (auto-mode-alist):
5341 * international/mule.el (ctext-non-standard-encodings-alist)
5342 (ctext-non-standard-encodings-regexp):
5343 * simple.el (shell-command-switch, text-read-only):
5344 * replace.el (occur-mode-map):
5345 * paths.el (rmail-file-name):
5346 * jka-cmpr-hook.el (jka-compr-build-file-regexp):
5347 * find-file.el (ff-special-constructs):
5348 * files.el (file-name-handler-alist):
5349 * composite.el: Purecopy strings.
5350
5351 * emacs-lisp/cl-macs.el (define-compiler-macro): Purecopy the file name.
5352
5353 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
5354
5355 * widget.el (define-widget): Purecopy the docstring.
5356 * international/mule-cmds.el (charset): Do not purecopy the
5357 docstring here, define-widget does it.
5358
5359 * textmodes/texinfo.el (texinfo-open-quote, texinfo-close-quote):
5360 * textmodes/bibtex-style.el (auto-mode-alist):
5361 * progmodes/inf-lisp.el (inferior-lisp-prompt):
5362 * progmodes/compile.el (compile-command):
5363 * language/korea-util.el (default-korean-keyboard):
5364 * international/mule-conf.el (file-coding-system-alist):
5365 * emacs-lisp/eldoc.el (eldoc-minor-mode-string):
5366 * tooltip.el (tooltip-frame-parameters):
5367 * newcomment.el (comment-end, comment-padding):
5368 * dired.el (dired-trivial-filenames):
5369 * comint.el (comint-file-name-prefix): Purecopy initial values.
5370
5371 2009-11-11 Michael Albinus <michael.albinus@gmx.de>
5372
5373 * net/tramp.el (tramp-advice-minibuffer-electric-separator)
5374 (tramp-advice-minibuffer-electric-tilde): Unload advices via
5375 `tramp-unload'.
5376 (tramp-advice-make-auto-save-file-name)
5377 (tramp-advice-file-expand-wildcards): Apply also `ad-activate'
5378 after removing the advice.
5379
5380 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
5381
5382 * progmodes/grep.el (grep-regexp-alist):
5383 * international/mule-cmds.el (iso-2022-control-alist):
5384 * emacs-lisp/timer.el (timer-duration-words):
5385 * subr.el (version-separator, version-regexp-alist):
5386 * minibuffer.el (completion-styles-alist):
5387 * faces.el (face-attribute-name-alist, list-faces-sample-text):
5388 Change defvars to defconsts.
5389
5390 * Makefile.in (ELCFILES): Add international/mule-conf.elc.
5391 * loadup.el ("international/mule-conf"): Load the byte compiled version.
5392 * international/mule-conf.el: Allow to be byte compiled.
5393
5394 * international/mule.el (define-charset): Purecopy props.
5395 (load-with-code-conversion): Purecopy doc string and file name.
5396 (put-charset-property): Purecopy strings.
5397 (auto-coding-alist, auto-coding-regexp-alist): Purecopy initial value.
5398
5399 * international/mule-cmds.el (register-input-method): Purecopy arguments.
5400 (define-char-code-property): Correctly purecopy the table.
5401
5402 * international/ccl.el (define-ccl-program): Purecopy the docstring.
5403
5404 * emacs-lisp/easy-mmode.el (define-minor-mode): Purecopy :lighter.
5405
5406 * subr.el (add-hook): Purecopy strings.
5407 (eval-after-load): Purecopy load-history-regexp and the form.
5408
5409 * custom.el (custom-declare-group): Purecopy load-file-name.
5410
5411 * subr.el (menu-bar-separator): New defconst.
5412 * net/eudc.el (eudc-tools-menu):
5413 * international/mule-cmds.el (set-coding-system-map)
5414 (mule-menu-keymap):
5415 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
5416 * vc-hooks.el (vc-menu-map):
5417 * replace.el (occur-mode-map):
5418 * menu-bar.el (menu-bar-file-menu, menu-bar-search-menu)
5419 (menu-bar-edit-menu, menu-bar-goto-menu)
5420 (menu-bar-custom-menu, menu-bar-showhide-menu)
5421 (menu-bar-options-menu, menu-bar-tools-menu)
5422 (menu-bar-encryption-decryption-menu, menu-bar-describe-menu)
5423 (menu-bar-search-documentation-menu, menu-bar-manuals-menu)
5424 (menu-bar-help-menu):
5425 * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu):
5426 * buff-menu.el (Buffer-menu-mode-map): Use menu-bar-separator.
5427
5428 * term/x-win.el (x-gtk-stock-map):
5429 * progmodes/vera-mode.el (auto-mode-alist):
5430 * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
5431 (inferior-lisp-program, inferior-lisp-load-command):
5432 * progmodes/hideshow.el (hs-special-modes-alist):
5433 * progmodes/gud.el (same-window-regexps):
5434 * progmodes/grep.el (grep-program, find-program, xargs-program):
5435 * net/telnet.el (same-window-regexps):
5436 * net/rlogin.el (same-window-regexps):
5437 * language/ethiopic.el (font-ccl-encoder-alist):
5438 * vc-sccs.el (vc-sccs-master-templates):
5439 * vc-rcs.el (vc-rcs-master-templates):
5440 * subr.el (cl-assertion-failed):
5441 * simple.el (next-error-overlay-arrow-position):
5442 * lpr.el (lpr-command):
5443 * locate.el (locate-ls-subdir-switches):
5444 * info.el (same-window-regexps, info)
5445 (Info-goto-emacs-command-node, Info-goto-emacs-key-command-node):
5446 * image-mode.el (image-mode, auto-mode-alist):
5447 * hippie-exp.el (hippie-expand-ignore-buffers):
5448 * format.el (format-alist):
5449 * find-dired.el (find-ls-subdir-switches, find-grep-options)
5450 (find-name-arg):
5451 * facemenu.el (facemenu-keybindings):
5452 * dired.el (dired-listing-switches, dired-chown-program):
5453 * diff.el (diff-switches, diff-command):
5454 * cus-edit.el (same-window-regexps):
5455 * bindings.el (mode-line-mule-info)
5456 (mode-line-buffer-identification): Purecopy strings.
5457
5458 2009-11-11 Juri Linkov <juri@jurta.org>
5459
5460 * simple.el (dired-get-filename) <declare-function>:
5461 Tell the byte-compiler about dired-get-filename.
5462 (shell-command): In Dired mode, get filename from the current line
5463 as the default value.
5464
5465 2009-11-10 Glenn Morris <rgm@gnu.org>
5466
5467 * dired.el, hi-lock.el, calendar/cal-menu.el, calendar/calendar.el:
5468 * calendar/holidays.el, progmodes/cperl-mode.el:
5469 Update x-popup-menu declarations.
5470
5471 * emacs-lisp/shadow.el (find-emacs-lisp-shadows)
5472 (list-load-path-shadows): Use dolist.
5473 (list-load-path-shadows): Use with-current-buffer.
5474
5475 2009-11-10 Juri Linkov <juri@jurta.org>
5476
5477 * minibuffer.el (read-file-name): Support a list of default values
5478 in `default-filename'. Use the first file name where only one
5479 element is required. Doc fix.
5480
5481 2009-11-09 Michael Albinus <michael.albinus@gmx.de>
5482
5483 * net/dbus.el (dbus-unregister-object): Release service, if no
5484 other method is registered for it.
5485
5486 2009-11-08 Markus Rost <rost@math.uni-bielefeld.de>
5487
5488 * bookmark.el (bookmark-completing-read): Sort bookmark names if
5489 bookmark-sort-flag is non-nil (Bug#4653).
5490
5491 2009-11-08 Chong Yidong <cyd@stupidchicken.com>
5492
5493 * emulation/cua-base.el: Add CUA property to some CC mode commands
5494 (Bug#4100).
5495
5496 2009-11-08 Kevin Ryde <user42@zip.com.au>
5497
5498 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp): Match noun
5499 at end of sentence (Bug#4818).
5500
5501 2009-11-08 Jared Finder <jfinder@crypticstudios.com>
5502
5503 * progmodes/compile.el (compilation-error-regexp-alist-alist):
5504 Handle "see declaration of" MSFT statements (Bug#4100).
5505
5506 2009-11-08 Michael Albinus <michael.albinus@gmx.de>
5507
5508 * net/tramp.el (tramp-advice-make-auto-save-file-name)
5509 (tramp-advice-file-expand-wildcards): Unload via
5510 `ad-remove-advice'.
5511
5512 * net/trampver.el: Update release number.
5513
5514 2009-11-08 Kevin Ryde <user42@zip.com.au>
5515
5516 * net/tramp.el (tramp-advice-file-expand-wildcards): Don't rely on
5517 `ad-do-it'.
5518
5519 2009-11-08 Andr <m00naticus@gmail.com> (tiny change)
5520
5521 * net/tramp.el (tramp-handle-write-region): Copy but rename temp file,
5522 in order to keep context in SELinux.
5523
5524 2009-11-08 Chong Yidong <cyd@stupidchicken.com>
5525
5526 * dired-aux.el (dired-query): Place cursor in echo area and allow
5527 C-g.
5528
5529 * dired.el (dired-mode-map): Disable dired-maybe-insert-subdir
5530 menu item if not on a directory (Bug#4701).
5531
5532 2009-11-07 Michael Albinus <michael.albinus@gmx.de>
5533
5534 Sync with Tramp 2.1.17.
5535
5536 * net/tramp.el (tramp-handle-copy-directory): Don't use
5537 `file-remote-p' (due to compatibility).
5538
5539 * net/tramp-compat.el (tramp-compat-copy-directory)
5540 (tramp-compat-delete-directory): New defuns.
5541
5542 * net/tramp-fish.el (tramp-fish-handle-delete-directory):
5543 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory): Use
5544 `tramp-compat-delete-directory'.
5545
5546 * net/tramp-smb.el (tramp-smb-handle-copy-directory)
5547 (tramp-smb-handle-delete-directory): Use
5548 `tramp-compat-copy-directory' and `tramp-compat-delete-directory'.
5549
5550 * net/trampver.el: Update release number.
5551
5552 2009-11-07 Chong Yidong <cyd@stupidchicken.com>
5553
5554 * tar-mode.el (tar-copy): Call write-region on the right buffer
5555 (Bug#4857).
5556
5557 * mail/rmailsum.el (rmail-summary-rmail-update): Call linum-update
5558 by hand, if necessary (Bug#4878).
5559
5560 2009-11-06 Chong Yidong <cyd@stupidchicken.com>
5561
5562 * buff-menu.el (Buffer-menu-buffer+size): Use display property to
5563 align size column (Bug#4839).
5564
5565 * emacs-lisp/autoload.el (autoload-rubric): Always issue a provide
5566 statement.
5567
5568 2009-11-05 Dan Nicolaescu <dann@ics.uci.edu>
5569
5570 * progmodes/ld-script.el (auto-mode-alist):
5571 * vc-hooks.el (vc-directory-exclusion-list): Purecopy strings.
5572
5573 * cus-face.el (custom-declare-face): Purecopy face spec.
5574
5575 2009-11-06 Kenichi Handa <handa@m17n.org>
5576
5577 * international/uni-bidi.el: Re-generated.
5578 * international/uni-category.el: Re-generated.
5579 * international/uni-combining.el: Re-generated.
5580 * international/uni-mirrored.el: Re-generated.
5581
5582 2009-11-05 Dan Nicolaescu <dann@ics.uci.edu>
5583
5584 * textmodes/tex-mode.el (tex-alt-dvi-print-command)
5585 (tex-dvi-print-command, tex-bibtex-command, tex-start-commands)
5586 (tex-start-options, slitex-run-command, latex-run-command)
5587 (tex-run-command, tex-directory):
5588 * textmodes/ispell.el (ispell-html-skip-alists)
5589 (ispell-tex-skip-alists, ispell-tex-skip-alists):
5590 * textmodes/fill.el (adaptive-fill-first-line-regexp):
5591 (adaptive-fill-regexp):
5592 * textmodes/dns-mode.el (auto-mode-alist):
5593 * progmodes/python.el (interpreter-mode-alist):
5594 * progmodes/etags.el (tags-compression-info-list):
5595 * progmodes/etags.el (tags-file-name):
5596 * net/browse-url.el (browse-url-galeon-program)
5597 (browse-url-firefox-program):
5598 * mail/sendmail.el (mail-signature-file)
5599 (mail-citation-prefix-regexp):
5600 * international/mule-conf.el (eight-bit):
5601 * international/latexenc.el (latex-inputenc-coding-alist):
5602 * international/fontset.el (x-pixel-size-width-font-regexp):
5603 * emacs-lisp/warnings.el (warning-type-format):
5604 * emacs-lisp/trace.el (trace-buffer):
5605 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-map)
5606 (emacs-lisp-mode-map):
5607 * calendar/holidays.el (holiday-solar-holidays)
5608 (holiday-bahai-holidays, holiday-islamic-holidays)
5609 (holiday-christian-holidays, holiday-hebrew-holidays)
5610 (hebrew-holidays-4, hebrew-holidays-3, hebrew-holidays-2)
5611 (hebrew-holidays-1, holiday-oriental-holidays)
5612 (holiday-general-holidays):
5613 * x-dnd.el (x-dnd-known-types):
5614 * tool-bar.el (tool-bar):
5615 * startup.el (site-run-file):
5616 * shell.el (shell-dumb-shell-regexp):
5617 * rfn-eshadow.el (file-name-shadow-tty-properties)
5618 (file-name-shadow-properties):
5619 * paths.el (remote-shell-program, news-directory):
5620 * mouse.el ([C-down-mouse-3]):
5621 * menu-bar.el (menu-bar-tools-menu):
5622 * jka-cmpr-hook.el (jka-compr-load-suffixes)
5623 (jka-compr-mode-alist-additions, jka-compr-compression-info-list)
5624 (jka-compr-compression-info-list):
5625 * isearch.el (search-whitespace-regexp):
5626 * image-file.el (image-file-name-extensions):
5627 * find-dired.el (find-ls-option):
5628 * files.el (directory-listing-before-filename-regexp)
5629 (directory-free-space-args, insert-directory-program)
5630 (list-directory-brief-switches, magic-fallback-mode-alist)
5631 (magic-fallback-mode-alist, auto-mode-interpreter-regexp)
5632 (automount-dir-prefix):
5633 * faces.el (face-x-resources, x-font-regexp, x-font-regexp-head)
5634 (x-font-regexp-slant, x-font-regexp-weight, face-x-resources)
5635 (face-font-registry-alternatives, face-font-registry-alternatives)
5636 (face-font-family-alternatives):
5637 * facemenu.el (facemenu-add-new-face, facemenu-background-menu)
5638 (facemenu-foreground-menu, facemenu-face-menu):
5639 * epa-hook.el (epa-file-name-regexp):
5640 * dnd.el (dnd-protocol-alist):
5641 * textmodes/rst.el (auto-mode-alist):
5642 * button.el (default-button): Purecopy strings.
5643
5644 2009-11-06 Glenn Morris <rgm@gnu.org>
5645
5646 * Makefile.in (ELCFILES): Update.
5647
5648 2009-11-05 Stefan Monnier <monnier@iro.umontreal.ca>
5649
5650 * emacs-lisp/lucid.el: Move to obsolete/lucid.el.
5651 * emacs-lisp/levents.el: Move to obsolete/levents.el.
5652
5653 * nxml/xsd-regexp.el (xsdre-gen-categories):
5654 * nxml/xmltok.el (xmltok-parse-entity):
5655 * nxml/rng-parse.el (rng-parse-validate-file):
5656 * nxml/rng-maint.el (rng-format-manual)
5657 (rng-manual-output-force-new-line):
5658 * nxml/rng-loc.el (rng-save-schema-location-1):
5659 * nxml/rng-cmpct.el (rng-c-parse-file):
5660 * nxml/nxml-maint.el (nxml-insert-target-repertoire-glyph-set):
5661 * nxml/nxml-parse.el (nxml-parse-file): Use with-current-buffer.
5662
5663 2009-11-05 Wilson Snyder <wsnyder@wsnyder.org>
5664
5665 * progmodes/verilog-mode.el (verilog-getopt-file, verilog-set-define):
5666 Remove extra save-excursions and make-variable-buffer-local's.
5667 Suggested by Stefan Monnier.
5668
5669 (verilog-getopt-file, verilog-module-inside-filename-p)
5670 (verilog-set-define): Merge GNU 1.35 and repair changes from
5671 switching to using with-current-buffer.
5672
5673 (verilog-read-always-signals-recurse): Fix "a == 2'b00 ? b : c"
5674 being treated as a number and confusing AUTORESET.
5675 Reported by Dan Dever.
5676
5677 (verilog-auto-ignore-concat, verilog-read-sub-decls-expr):
5678 Add verilog-auto-ignore-concat to fix backward compatibility with
5679 older verilog-modes. Reported by Dan Katz.
5680
5681 (verilog-read-auto-template): Fix AUTO_TEMPLATEs with regexps
5682 containing closing anchors "...$".
5683
5684 (verilog-read-decls): Fix AUTOREG not detecting "assign {a,b}".
5685 Reported by Wade Smith.
5686
5687 (verilog-batch-execute-func): Comment on function usage.
5688
5689 2009-11-05 Michael McNamara <mac@mail.brushroad.com>
5690
5691 * progmodes/verilog-mode.el (verilog-label-re): Fix regular expression
5692 for labels.
5693
5694 (verilog-label-re, verilog-calc-1): Support proper indent of named
5695 asserts.
5696
5697 (verilog-backward-token, verilog-basic-complete-re)
5698 (verilog-beg-of-statement, verilog-indent-re): Support proper
5699 indent of the assert statement at the beginning of a block of text.
5700
5701 (verilog-beg-block-re, verilog-ovm-begin-re): Support the
5702 `ovm_object_param_utils_begin and `ovm_component_param_utils_begin
5703 tokens as begins.
5704
5705 2009-11-05 Glenn Morris <rgm@gnu.org>
5706
5707 * emacs-lisp/bytecomp.el (byte-compile-insert-header): Drop test for
5708 Emacs 19. (Bug#1531)
5709 (byte-compile-fix-header): Update for the above change.
5710 Drop test for epoch::version.
5711
5712 * emacs-lisp/autoload.el (autoload-rubric): Add optional feature arg.
5713 * cus-dep.el (custom-make-dependencies):
5714 * finder.el (finder-compile-keywords):
5715 Use autoload-rubric's feature argument.
5716
5717 * calendar/diary-lib.el (top-level): Make load behave more like require.
5718
5719 * vc-git.el (vc-git-stash-map): Move definition before use.
5720
5721 2009-11-04 Dan Nicolaescu <dann@ics.uci.edu>
5722
5723 * custom.el (custom-declare-group): Purecopy standard-value.
5724 (custom-declare-group): Purecopy custom-prefix.
5725
5726 * international/mule.el (load-with-code-conversion):
5727 Call do-after-load-evaluation unconditionally.
5728
5729 * emacs-lisp/bytecomp.el (byte-compile-output-file-form): Handle defvaralias.
5730
5731 2009-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
5732
5733 * descr-text.el: Require help-mode rather than help-fns (bug#4861).
5734
5735 2009-11-04 Glenn Morris <rgm@gnu.org>
5736
5737 * emacs-lisp/bytecomp.el (byte-compile-version-cond): Remove macro.
5738 (byte-compile-compatibility): Remove option.
5739 (byte-compile-close-variables, byte-compile-fix-header)
5740 (byte-compile-insert-header, byte-compile-output-docform)
5741 (byte-compile-file-form-defmumble, byte-compile-byte-code-maker)
5742 (byte-compile-lambda, byte-compile-form, byte-defop-compiler19)
5743 (byte-compile-list, byte-compile-concat, byte-compile-function-form)
5744 (byte-compile-insert, byte-compile-defun):
5745 Remove support for byte-compile-compatibility and Emacs 18. (Bug#4571)
5746 (byte-defop-compiler19): Remove.
5747 Without byte-compile-compatibility, the 'emacs19-opcode property is not
5748 used by anything. Replace all calls with byte-defop-compiler.
5749
5750 2009-11-04 Juri Linkov <juri@jurta.org>
5751
5752 * menu-bar.el (menu-bar-make-mm-toggle): Quote each element of `props'.
5753 (menu-bar-options-menu): Don't quote the `prop' arg of
5754 `menu-bar-make-mm-toggle'.
5755
5756 2009-11-04 Juanma Barranquero <lekktu@gmail.com>
5757
5758 * calendar/calendar.el (cal-loaddefs):
5759 * calendar/diary-lib.el (diary-loaddefs):
5760 * calendar/holidays.el (hol-loaddefs):
5761 * eshell/esh-module.el (esh-groups): Load rather than require.
5762
5763 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
5764
5765 * calendar/todo-mode.el (todo-add-category): Don't hardcode
5766 point-min==1.
5767 (todo-top-priorities): Only display-buffer when called interactively.
5768 (todo-item-start): Don't save excursion point.
5769 (todo-item-end): Be slightly more careful. Add `include-sep' arg.
5770 (todo-insert-item-here, todo-file-item, todo-remove-item):
5771 Adjust uses of todo-item-start and todo-item-end.
5772
5773 * emacs-lisp/autoload.el (generated-autoload-feature): Remove.
5774 (autoload-rubric): Don't use any more.
5775
5776 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Use dolist,
5777 and only put a prop if it is non-nil.
5778
5779 2009-11-03 Juri Linkov <juri@jurta.org>
5780
5781 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle)
5782 (menu-bar-options-menu): Fix list quoting (Bug#4429).
5783
5784 * buff-menu.el (Buffer-menu-mode-map): Add hyphen between "Buffer"
5785 and "Menu" to make top-level menu item visually one unit (like
5786 it's done for "Lisp-Interaction", "Emacs-Lisp" and other
5787 multi-word menu items). Fix :help string for quit-window.
5788
5789 2009-11-03 Glenn Morris <rgm@gnu.org>
5790
5791 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar)
5792 (byte-compile-file-form-define-abbrev-table)
5793 (byte-compile-file-form-custom-declare-variable)
5794 (byte-compile-variable-ref, byte-compile-defvar):
5795 Whether or not a warning is enabled should only affect whether we issue
5796 the warning, not whether or not we collect the relevant data.
5797 Eg warnings can be turned on and off throughout the course of a file.
5798
5799 * eshell/esh-mode.el (ansi-color-apply-on-region): Autoload it...
5800 (eshell-handle-ansi-color): ... Rather than requiring ansi-color.
5801
5802 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
5803
5804 * term/ns-win.el (ns-scroll-bar-move, ns-face-at-pos):
5805 * play/mpuz.el (mpuz-create-buffer):
5806 * play/landmark.el (lm-prompt-for-move, lm-print-wts, lm-print-smell)
5807 (lm-print-y,s,noise, lm-print-w0, lm-init):
5808 * play/gomoku.el (gomoku-prompt-for-move):
5809 * play/fortune.el (fortune-in-buffer):
5810 * play/dissociate.el (dissociated-press):
5811 * play/decipher.el (decipher-adjacency-list, decipher-display-regexp)
5812 (decipher-analyze-buffer, decipher-stats-buffer, decipher-stats-buffer):
5813 * mail/supercite.el (sc-eref-show):
5814 * mail/smtpmail.el (smtpmail-send-it):
5815 * mail/rmailsum.el (rmail-summary-next-labeled-message)
5816 (rmail-summary-previous-labeled-message, rmail-summary-wipe)
5817 (rmail-summary-undelete-many, rmail-summary-rmail-update)
5818 (rmail-summary-goto-msg, rmail-summary-expunge)
5819 (rmail-summary-get-new-mail, rmail-summary-search-backward)
5820 (rmail-summary-add-label, rmail-summary-output-menu)
5821 (rmail-summary-output-body):
5822 * mail/rfc822.el (rfc822-addresses):
5823 * mail/reporter.el (reporter-dump-variable, reporter-dump-state):
5824 * mail/mailpost.el (post-mail-send-it):
5825 * mail/hashcash.el (hashcash-generate-payment):
5826 * mail/feedmail.el (feedmail-run-the-queue)
5827 (feedmail-queue-send-edit-prompt-help-first)
5828 (feedmail-send-it-immediately, feedmail-give-it-to-buffer-eater)
5829 (feedmail-deduce-address-list):
5830 * eshell/esh-ext.el (eshell-remote-command):
5831 * eshell/em-unix.el (eshell-occur-mode-mouse-goto):
5832 * emulation/viper-util.el (viper-glob-unix-files, viper-save-setting)
5833 (viper-wildcard-to-regexp, viper-glob-mswindows-files)
5834 (viper-save-string-in-file, viper-valid-marker):
5835 * emulation/viper-keym.el (viper-toggle-key):
5836 * emulation/viper-ex.el (ex-expand-filsyms, viper-get-ex-file)
5837 (ex-edit, ex-global, ex-mark, ex-next-related-buffer, ex-quit)
5838 (ex-get-inline-cmd-args, ex-tag, ex-command, ex-compile):
5839 * emulation/viper-cmd.el (viper-exec-form-in-vi)
5840 (viper-exec-form-in-emacs, viper-brac-function):
5841 * emulation/viper.el (viper-delocalize-var):
5842 * emulation/vip.el (vip-mode, vip-get-ex-token, vip-ex, vip-get-ex-pat)
5843 (vip-get-ex-command, vip-get-ex-opt-gc, vip-get-ex-buffer)
5844 (vip-get-ex-count, vip-get-ex-file, ex-edit, ex-global, ex-mark)
5845 (ex-map, ex-unmap, ex-quit, ex-read, ex-tag, ex-command):
5846 * emulation/vi.el (vi-switch-mode, vi-ex-cmd):
5847 * emulation/edt.el (edt-electric-helpify):
5848 * emulation/cua-rect.el (cua--rectangle-aux-replace):
5849 * emulation/cua-gmrk.el (cua--insert-at-global-mark)
5850 (cua--delete-at-global-mark, cua--copy-rectangle-to-global-mark)
5851 (cua-indent-to-global-mark-column):
5852 * calendar/diary-lib.el (calendar-mark-1):
5853 * calendar/cal-hebrew.el (calendar-hebrew-mark-date-pattern):
5854 Use with-current-buffer.
5855 * emulation/viper.el (viper-delocalize-var): Use dolist.
5856
5857 2009-11-03 Chong Yidong <cyd@stupidchicken.com>
5858
5859 * comint.el (comint-replace-by-expanded-history-before-point):
5860 Replace !! with the previous input string literally (Bug#1795).
5861
5862 2009-11-02 Jay Belanger <jay.p.belanger@gmail.com>
5863
5864 * calc/calc-forms.el (calc-date-notation): Allow a "blank string"
5865 to be made up of whitespace.
5866
5867 2009-11-02 Chong Yidong <cyd@stupidchicken.com>
5868
5869 * minibuffer.el (read-file-name): Don't use file dialogs for
5870 remote directories (Bug#99).
5871
5872 2009-11-01 Chong Yidong <cyd@stupidchicken.com>
5873
5874 * progmodes/sh-script.el (sh-font-lock-paren): Fix last change.
5875
5876 2009-11-01 Andreas Schwab <schwab@linux-m68k.org>
5877
5878 * view.el (view-mode-exit): If OLD-BUF is dead bury the buffer
5879 instead of deleting the window or frame.
5880
5881 2009-10-31 Chong Yidong <cyd@stupidchicken.com>
5882
5883 * textmodes/sgml-mode.el (sgml-mode-facemenu-add-face-function):
5884 Support face colors.
5885
5886 * textmodes/tex-mode.el (tex-facemenu-add-face-function):
5887 New function. Support face colors (Bug#1168).
5888 (tex-common-initialization): Use it.
5889
5890 * facemenu.el (facemenu-enable-faces-p): Enable facemenu if the
5891 mode allows it (Bug#1168).
5892
5893 2009-10-31 Juri Linkov <juri@jurta.org>
5894
5895 * facemenu.el (list-colors-display): Don't mark buffer as
5896 modified (Bug#3948).
5897
5898 2009-10-31 Chong Yidong <cyd@stupidchicken.com>
5899
5900 * international/mule-diag.el (list-character-sets-1): Minor
5901 message fix (Bug#3526).
5902
5903 * progmodes/etags.el (etags-list-tags, etags-tags-apropos): Fix
5904 face property (Bug#4834).
5905 (etags-list-tags, etags-tags-apropos-additional)
5906 (etags-tags-apropos, tags-select-tags-table): Add follow-link
5907 property.
5908
5909 * menu-bar.el (menu-bar-tools-menu): Add Semantic and EDE menu
5910 items.
5911
5912 2009-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
5913
5914 * textmodes/two-column.el (2C-split):
5915 * textmodes/texnfo-upd.el (texinfo-multi-file-included-list):
5916 * textmodes/tex-mode.el (tex-set-buffer-directory):
5917 * textmodes/spell.el (spell-region, spell-string):
5918 * textmodes/reftex.el (reftex-erase-buffer):
5919 (reftex-get-file-buffer-force, reftex-kill-temporary-buffers):
5920 * textmodes/reftex-toc.el (reftex-toc-promote-action):
5921 * textmodes/reftex-sel.el (reftex-get-offset, reftex-insert-docstruct)
5922 (reftex-select-item):
5923 * textmodes/reftex-ref.el (reftex-label-info-update)
5924 (reftex-offer-label-menu):
5925 * textmodes/reftex-index.el (reftex-index-change-entry)
5926 (reftex-index-phrases-info):
5927 * textmodes/reftex-global.el (reftex-create-tags-file)
5928 (reftex-save-all-document-buffers, reftex-ensure-write-access):
5929 * textmodes/reftex-dcr.el (reftex-echo-ref, reftex-echo-cite)
5930 (reftex-view-crossref-from-bibtex):
5931 * textmodes/reftex-cite.el (reftex-bibtex-selection-callback)
5932 (reftex-extract-bib-entries-from-thebibliography)
5933 (reftex-all-used-citation-keys, reftex-create-bibtex-file):
5934 * textmodes/refbib.el (r2b-capitalize-title):
5935 (r2b-convert-buffer, r2b-help):
5936 * textmodes/page-ext.el (pages-directory)
5937 (pages-directory-goto-with-mouse):
5938 * textmodes/bibtex.el (bibtex-validate-globally):
5939 * textmodes/bib-mode.el (bib-capitalize-title):
5940 * textmodes/artist.el (artist-clear-buffer, artist-system):
5941 * progmodes/xscheme.el (global-set-scheme-interaction-buffer):
5942 (local-set-scheme-interaction-buffer, xscheme-process-filter)
5943 (verify-xscheme-buffer, xscheme-enter-interaction-mode)
5944 (xscheme-enter-debugger-mode, xscheme-debugger-mode-p)
5945 (xscheme-send-control-g-interrupt, xscheme-start-process)
5946 (xscheme-process-sentinel, xscheme-cd):
5947 * progmodes/verilog-mode.el (verilog-read-always-signals)
5948 (verilog-set-define, verilog-getopt-file)
5949 (verilog-module-inside-filename-p):
5950 * progmodes/sh-script.el:
5951 * progmodes/python.el (python-pdbtrack-get-source-buffer)
5952 (python-pdbtrack-grub-for-buffer, python-execute-file):
5953 * progmodes/octave-inf.el (inferior-octave):
5954 * progmodes/idlwave.el (idlwave-scan-user-lib-files)
5955 (idlwave-shell-compile-helper-routines, idlwave-set-local)
5956 (idlwave-display-completion-list-xemacs, idlwave-list-abbrevs)
5957 (idlwave-display-completion-list-emacs, idlwave-list-load-path-shadows)
5958 (idlwave-completion-fontify-classes, idlwave-display-calling-sequence):
5959 * progmodes/idlw-shell.el (idlwave-shell-examine-display-clear)
5960 (idlwave-shell-filter, idlwave-shell-examine-highlight)
5961 (idlwave-shell-sentinel, idlwave-shell-filter-directory)
5962 (idlwave-shell-display-line, idlwave-shell-set-bp-in-module)
5963 (idlwave-shell-examine-display, idlwave-shell-run-region)
5964 (idlwave-shell-filter-bp, idlwave-shell-save-and-action)
5965 (idlwave-shell-sources-filter, idlwave-shell-goto-next-error):
5966 * progmodes/idlw-help.el (idlwave-help-get-special-help)
5967 (idlwave-help-get-help-buffer):
5968 * progmodes/gud.el (gud-basic-call, gud-find-class)
5969 (gud-tooltip-activate-mouse-motions-if-enabled):
5970 * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
5971 * progmodes/ebrowse.el (ebrowse-member-table, ebrowse-save-tree-as)
5972 (ebrowse-view-exit-fn, ebrowse-tags-list-members-in-file)
5973 (ebrowse-tags-next-file):
5974 * progmodes/ebnf2ps.el (ebnf-generate-eps, ebnf-generate-eps)
5975 (ebnf-eps-production-list, ebnf-begin-file, ebnf-log)
5976 (ebnf-eps-finish-and-write):
5977 * progmodes/cpp.el (cpp-edit-save):
5978 * progmodes/cperl-mode.el (cperl-pod-to-manpage):
5979 * progmodes/cc-defs.el (c-emacs-features):
5980 * progmodes/antlr-mode.el (antlr-invalidate-context-cache)
5981 (antlr-directory-dependencies):
5982 * progmodes/ada-xref.el (ada-gnat-parse-gpr, ada-get-ali-file-name)
5983 (ada-run-application, ada-find-in-src-path, ada-goto-parent)
5984 (ada-find-any-references, ada-make-filename-from-adaname)
5985 (ada-make-body-gnatstub):
5986 * obsolete/rnews.el (news-list-news-groups):
5987 * obsolete/resume.el (resume-suspend-hook, resume-write-buffer-to-file):
5988 * obsolete/iso-acc.el (iso-acc-minibuf-setup):
5989 * net/rcirc.el (rcirc-debug):
5990 * net/newst-treeview.el (newsticker--treeview-list-add-item)
5991 (newsticker--treeview-list-clear, newsticker-treeview-browse-url)
5992 (newsticker--treeview-list-update-faces, newsticker-treeview-save)
5993 (newsticker--treeview-item-show-text, newsticker--treeview-item-show)
5994 (newsticker--treeview-tree-update-tag, newsticker--treeview-buffer-init)
5995 (newsticker-treeview-show-item, newsticker--treeview-unfold-node)
5996 (newsticker--treeview-list-clear-highlight)
5997 (newsticker--treeview-list-update-highlight)
5998 (newsticker--treeview-list-highlight-start)
5999 (newsticker--treeview-tree-update-highlight)
6000 (newsticker--treeview-get-selected-item)
6001 (newsticker-treeview-mark-list-items-old)
6002 (newsticker--treeview-set-current-node):
6003 * net/newst-plainview.el (newsticker--buffer-set-uptodate):
6004 * net/newst-backend.el (newsticker--get-news-by-funcall)
6005 (newsticker--get-news-by-wget, newsticker--image-get)
6006 (newsticker--image-sentinel):
6007 * net/mairix.el (mairix-rmail-fetch-field, mairix-gnus-fetch-field):
6008 * net/eudcb-ph.el (eudc-ph-do-request, eudc-ph-open-session):
6009 (eudc-ph-close-session):
6010 * net/eudc.el (eudc-save-options):
6011 * language/thai-word.el (thai-update-word-table):
6012 * language/japan-util.el (japanese-string-conversion):
6013 * international/titdic-cnv.el (tsang-quick-converter)
6014 (ziranma-converter, ctlau-converter):
6015 * international/mule-cmds.el (describe-language-environment):
6016 * international/ja-dic-cnv.el (skkdic-convert-okuri-ari)
6017 (skkdic-convert-postfix, skkdic-convert-prefix):
6018 (skkdic-convert-okuri-nasi, skkdic-convert):
6019 * emacs-lisp/re-builder.el (reb-update-overlays):
6020 * emacs-lisp/pp.el (pp-to-string, pp-display-expression):
6021 * emacs-lisp/gulp.el (gulp-send-requests):
6022 * emacs-lisp/find-gc.el (trace-call-tree):
6023 * emacs-lisp/eieio-opt.el (eieio-browse, eieio-describe-class)
6024 (eieio-describe-generic):
6025 * emacs-lisp/eieio-base.el (eieio-persistent-read):
6026 * emacs-lisp/edebug.el (edebug-outside-excursion):
6027 * emacs-lisp/debug.el (debugger-make-xrefs):
6028 * emacs-lisp/cust-print.el (custom-prin1-to-string):
6029 * emacs-lisp/chart.el (chart-new-buffer):
6030 * emacs-lisp/authors.el (authors-scan-el, authors-scan-change-log):
6031 Use with-current-buffer.
6032 * textmodes/artist.el (artist-system): Don't call
6033 copy-sequence on a fresh string.
6034 * progmodes/idlw-shell.el (easymenu setup): Use dolist.
6035
6036 2009-10-31 Stephen Berman <stephen.berman@gmx.net>
6037
6038 * calendar/todo-mode.el (todo-edit-item): Signal an error if there
6039 is no item to edit. (Bug#4820)
6040 (todo-top-priorities): Restore point and restore narrowing in Todo
6041 buffer. (Bug#4820)
6042
6043 2009-10-31 Glenn Morris <rgm@gnu.org>
6044
6045 * net/ange-ftp.el (top-level): Don't require dired when compiling.
6046 (comint-last-output-start, comint-last-input-start)
6047 (comint-last-input-end): Don't defvar when compiling.
6048 (ange-ftp-process-file): Use bound-and-true-p.
6049
6050 * pcmpl-rpm.el (top-level): Move provide statement to end.
6051 (pcmpl-rpm): Remove unused custom group.
6052
6053 * pcmpl-gnu.el (tar-parse-info, tar-header-name): Declare for compiler.
6054
6055 * mail/emacsbug.el (report-emacs-bug): Request `emacs -Q' recipes.
6056
6057 * emacs-lisp/bytecomp.el (byte-compile-warning-types)
6058 (byte-compile-warnings): Add `constants' as an option.
6059 (byte-compile-callargs-warn, byte-compile-arglist-warn)
6060 (display-call-tree): Update for byte-compile-fdefinition possibly
6061 returning `(macro lambda ...)'. (Bug#4778)
6062 (byte-compile-variable-ref, byte-compile-setq-default):
6063 Respect `constants' member of byte-compile-warnings.
6064
6065 2009-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
6066
6067 * vc-bzr.el (vc-bzr-revision-keywords): New var.
6068 (vc-bzr-revision-completion-table): Use it to fix completion of "s:"
6069 to "submit:".
6070
6071 2009-10-30 Dan Nicolaescu <dann@ics.uci.edu>
6072
6073 * textmodes/ispell.el (ispell-skip-region-alist):
6074 * international/mule-conf.el (eight-bit):
6075 * international/fontset.el (font-encoding-alist):
6076 * startup.el (pure-space-overflow-message):
6077 * simple.el (overwrite-mode-textual, overwrite-mode-binary):
6078 * paths.el (gnus-nntp-service, rmail-spool-directory)
6079 (term-file-prefix):
6080 * files.el (save-some-buffers-action-alist):
6081 * cmuscheme.el (same-window-buffer-names):
6082 * ielm.el (same-window-buffer-names):
6083 * shell.el (same-window-buffer-names):
6084 * mail/sendmail.el (same-window-buffer-names):
6085 * progmodes/inf-lisp.el (same-window-buffer-names):
6086 * bindings.el (mode-line-client)
6087 (mode-line-column-line-number-mode-map):
6088 * language/tibetan.el (tibetan-precomposition-rule-regexp)
6089 (tibetan-precomposed-regexp): Purecopy string arguments.
6090
6091 2009-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
6092
6093 * calc/calc.el (calc, calc-refresh, calc-trail-buffer, calc-record)
6094 (calcDigit-nondigit):
6095 * calc/calc-yank.el (calc-copy-to-buffer):
6096 * calc/calc-units.el (calc-invalidate-units-table):
6097 * calc/calc-trail.el (calc-trail-yank):
6098 * calc/calc-store.el (calc-insert-variables):
6099 * calc/calc-rewr.el (math-rewrite, math-rewrite-phase):
6100 * calc/calc-prog.el (calc-read-parse-table):
6101 * calc/calc-keypd.el (calc-do-keypad, calc-keypad-right-click):
6102 * calc/calc-help.el (calc-describe-bindings, calc-describe-key):
6103 * calc/calc-graph.el (calc-graph-delete, calc-graph-add-curve)
6104 (calc-graph-juggle, calc-graph-count-curves, calc-graph-plot)
6105 (calc-graph-plot, calc-graph-format-data, calc-graph-set-styles)
6106 (calc-graph-name, calc-graph-find-command, calc-graph-view)
6107 (calc-graph-view, calc-gnuplot-command, calc-graph-init):
6108 * calc/calc-ext.el (calc-realign):
6109 * calc/calc-embed.el (calc-do-embedded, calc-do-embedded)
6110 (calc-embedded-finish-edit, calc-embedded-make-info)
6111 (calc-embedded-finish-command, calc-embedded-stack-change):
6112 * calc/calc-aent.el (calcAlg-enter): Use with-current-buffer.
6113
6114 * pcomplete.el (pcomplete-comint-setup): If there's a choice, replace
6115 shell-dynamic-complete-filename in preference to
6116 comint-dynamic-complete-filename.
6117
6118 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
6119 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
6120 Don't consider whether the display supports colors.
6121 (bookmark-import-new-list): Use dolist.
6122 (bookmark-bmenu-mode-map): Move initialization into declaration.
6123 (bookmark-bmenu-list): Use dolist, simplify.
6124 (bookmark-show-all-annotations): Use save-selected-window and dolist.
6125 (menu-bar-final-items): Use push.
6126
6127 2009-10-28 Bernhard Herzog <bernhard.herzog@intevation.de> (tiny change)
6128
6129 * vc-hg.el (vc-hg-state, vc-hg-working-revision): Use process-file so
6130 it works on remote files.
6131 (vc-hg-diff): Don't pass any `--cwd' argument.
6132
6133 2009-10-27 Kevin Ryde <user42@zip.com.au>
6134
6135 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
6136 Use help-xref-info-regexp and help-xref-url-regexp to identify links.
6137 (Further to Bug#3921).
6138
6139 2009-10-27 Michael Albinus <michael.albinus@gmx.de>
6140
6141 * net/tramp-imap.el (top): Add `X-Size' to `imap-hash-headers'.
6142 (tramp-imap-do-copy-or-rename-file): Don't use the inode, when
6143 calling `tramp-imap-put-file'. Add file size to the call.
6144 (tramp-imap-get-file-entries): Compute also user name, file size,
6145 and date.
6146 (tramp-imap-handle-insert-directory): Insert uid and gid.
6147 (tramp-imap-handle-file-attributes): Transform uid and gid
6148 according to `id-format'.
6149 (tramp-imap-put-file): New optional parameter SIZE. Encode file
6150 size in header X-Size.
6151
6152 2009-10-26 Juanma Barranquero <lekktu@gmail.com>
6153
6154 * simple.el (transpose-subr): Give clearer error when the mark
6155 is not set. (Bug#4807)
6156
6157 2009-10-26 Michael Albinus <michael.albinus@gmx.de>
6158
6159 * net/tramp.el (tramp-perl-file-truename): New defconst.
6160 Perl code contributed by yary <not.com@gmail.com> (tiny change).
6161 (tramp-handle-file-truename, tramp-get-remote-perl): Use it.
6162 Check also for "perl-file-spec" and "perl-cwd-realpath" properties.
6163 (tramp-handle-write-region): In case of APPEND, reuse the tmpfile name.
6164
6165 * net/tramp-imap.el (tramp-imap-file-name-handler-alist):
6166 Ignore `dired-call-process'.
6167 (tramp-imap-make-iht): Use `user' and `ssl' with `imap-hash-make'.
6168
6169 2009-10-26 Julian Scheid <julians37@gmail.com>
6170
6171 * net/tramp.el (tramp-perl-file-name-all-completions): New defconst.
6172 (tramp-get-remote-readlink): New defun.
6173 (tramp-handle-file-truename): Use it.
6174 (tramp-handle-file-exists-p): Check file-attributes cache, assume
6175 file exists if cache value present.
6176 (tramp-check-cached-permissions): New defun.
6177 (tramp-handle-file-readable-p): Use it.
6178 (tramp-handle-file-writable-p): Likewise.
6179 (tramp-handle-file-executable-p): Likewise.
6180 (tramp-handle-file-name-all-completions): Try using Perl to get
6181 partial completions. When perl not available, combine `cd' and
6182 `ls' into single remote operation and use shell expansion to get
6183 partial remote directory contents. Set `file-exists-p' cache for
6184 directory and any files returned by ls. Change cache handling to
6185 support partial directory contents. Use error message emitted by
6186 remote `cd' or Perl code for local tramp-error.
6187 (tramp-do-copy-or-rename-file-directly): Avoid separate
6188 tramp-send-command-and-check call.
6189 (tramp-handle-process-file): Merge three remote ops into one.
6190 Do not flush all caches when `process-file-side-effects' is set.
6191 (tramp-handle-write-region): Avoid tramp-set-file-uid-gid if
6192 file-attributes shows uid/gid to be set already.
6193
6194 2009-10-26 Dan Nicolaescu <dann@ics.uci.edu>
6195
6196 * textmodes/tex-mode.el (tex-dvi-view-command)
6197 (tex-show-queue-command, tex-open-quote):
6198 * progmodes/ruby-mode.el (auto-mode-alist)
6199 (interpreter-mode-alist): Purecopy strings.
6200
6201 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Purecopy item names.
6202
6203 * emacs-lisp/derived.el (define-derived-mode): Purecopy the doc
6204 string for the hook, keymap and abbrev table.
6205
6206 * emacs-lisp/byte-run.el (make-obsolete): Purecopy the current name.
6207
6208 * x-dnd.el (x-dnd-xdnd-to-action):
6209 * startup.el (fancy-startup-text, fancy-about-text): Change to
6210 defconst from defvar.
6211
6212 * ps-print.el (ps-page-dimensions-database): Purecopy initial value.
6213
6214 * mouse.el (mouse-buffer-menu-mode-groups, x-fixed-font-alist):
6215 Purecopy initialization strings.
6216
6217 * mail/sendmail.el (mail-header-separator)
6218 (mail-personal-alias-file):
6219 * mail/rmail.el (rmail-default-dont-reply-to-names)
6220 (rmail-ignored-headers, rmail-retry-ignored-headers)
6221 (rmail-highlighted-headers, rmail-secondary-file-directory)
6222 (rmail-secondary-file-regexp):
6223 * files.el (null-device, file-name-invalid-regexp)
6224 (locate-dominating-stop-dir-regexp)
6225 (inhibit-first-line-modes-regexps): Purecopy initialization strings.
6226 (interpreter-mode-alist): Use mapcar instead of mapc.
6227
6228 * buff-menu.el (Buffer-menu-mode-map): Purecopy name.
6229
6230 * bindings.el (mode-line-major-mode-keymap): Purecopy name.
6231 (completion-ignored-extensions):
6232 (debug-ignored-errors): Purecopy strings.
6233
6234 2009-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
6235
6236 * pcomplete.el (pcomplete-std-complete): Obey pcomplete-use-paring.
6237 (pcomplete, pcomplete-parse-buffer-arguments, pcomplete-opt)
6238 (pcomplete--here): Use push.
6239
6240 * subr.el (all-completions): Declare the 4th arg obsolete.
6241
6242 2009-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
6243
6244 * pcomplete.el (pcomplete-unquote-argument-function): New var.
6245 (pcomplete-unquote-argument): New function.
6246 (pcomplete--common-suffix): Always pay attention to case.
6247 (pcomplete--table-subvert): Quote and unquote the text.
6248 (pcomplete--common-quoted-suffix): New function.
6249 (pcomplete-std-complete): Use it and pcomplete-begin.
6250
6251 * bookmark.el (bookmark-bmenu-list): Don't use switch-to-buffer if
6252 we're inside a dedicated or minibuffer window.
6253
6254 2009-10-24 Karl Fogel <kfogel@red-bean.com>
6255
6256 * bookmark.el: Update documentation, especially documentation
6257 of `bookmark-alist' and of the bookmark file format.
6258 Patch by Drew Adams, with minor tweaks from me. (Bug#4195)
6259
6260 2009-10-24 Chong Yidong <cyd@stupidchicken.com>
6261
6262 * mail/emacsbug.el (report-emacs-bug): Clarify that the
6263 keybindings apply to the mail buffer (Bug#4003). Shrink help
6264 window to buffer.
6265
6266 * whitespace.el (whitespace-mode, whitespace-newline-mode)
6267 (global-whitespace-mode, global-whitespace-newline-mode)
6268 (whitespace-toggle-options, global-whitespace-toggle-options):
6269 Doc fix (Bug#3660).
6270
6271 * nxml/nxml-mode.el (nxml-balanced-close-start-tag): Use the value
6272 of xmltok-start before the end tag was inserted (Bug#2840).
6273
6274 * progmodes/sh-script.el (sh-font-lock-paren): Handle case
6275 patterns that are preceded by an open-paren (Bug#1320).
6276
6277 2009-10-24 Sven Joachim <svenjoac@gmx.de>
6278
6279 * files.el (delete-directory): Delete symlinks to directories with
6280 delete-file (Bug#4739).
6281
6282 2009-10-24 Dan Nicolaescu <dann@ics.uci.edu>
6283
6284 * vc.el (vc-backend-for-registration): Rename from
6285 vc-get-backend-for-registration. Update callers.
6286
6287 * international/mule-cmds.el (set-language-info-alist):
6288 Purecopy lang-env.
6289 (leim-list-header, leim-list-entry-regexp): Change defvars to defconst.
6290 (charset): Purecopy the name.
6291 (define-char-code-property): Purecopy string arguments.
6292
6293 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
6294 Purecopy string arguments.
6295
6296 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
6297 * ediff-hook.el (menu-bar-ediff-menu):
6298 * buff-menu.el (Buffer-menu-mode-map): Purecopy names and tooltips.
6299 * bookmark.el (menu-bar-bookmark-map): Add :help and purecopy the name.
6300
6301 2009-10-24 Glenn Morris <rgm@gnu.org>
6302
6303 * comint.el (comint-dynamic-list-completions):
6304 * term.el (term-dynamic-list-completions): Use choose-completion rather
6305 than obsolete alias mouse-choose-completion.
6306
6307 * filecache.el (file-cache-completions-keymap): Bind mouse-2 to
6308 file-cache-choose-completion.
6309 (file-cache-choose-completion): Handle an optional event argument.
6310 (file-cache-mouse-choose-completion): Make it an obsolete alias.
6311
6312 * progmodes/octave-mod.el (octave-complete-symbol):
6313 Use choose-completion if mouse-choose-completion is ever removed.
6314
6315 * textmodes/sgml-mode.el (sgml-looking-back-at): Move definition before
6316 use.
6317
6318 * emacs-lisp/checkdoc.el (generate-autoload-cookie): Define for
6319 compiler.
6320
6321 * vc-hooks.el (vc-responsible-backend): Fix declaration.
6322
6323 2009-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
6324
6325 * minibuffer.el (completion--embedded-envvar-table): Fix last change.
6326 Ignore `pred' now that we receive one.
6327 Handle test-completion specially.
6328
6329 2009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
6330
6331 * vc.el (vc-responsible-backend): Throw an error if not backend is
6332 found. Remove the REGISTER argument. Move the code dealing with
6333 REGISTER ...
6334 (vc-get-backend-for-registration): ... here. New function.
6335 (vc-deduce-fileset): Call vc-get-backend-for-registration instead
6336 of vc-responsible-backend, pass the file name instead of the
6337 directory name.
6338
6339 2009-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
6340
6341 * pcomplete.el (pcomplete-common-suffix, pcomplete-table-subvert):
6342 New funs.
6343 (pcomplete-std-complete): Use them. Obey pcomplete-termination-string.
6344 (pcomplete-comint-setup): Don't modify a global var via
6345 accidental side-effects.
6346 (pcomplete-shell-setup): Adjust call accordingly.
6347 (pcomplete-parse-comint-arguments): Use push.
6348
6349 2009-10-23 Chong Yidong <cyd@stupidchicken.com>
6350
6351 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
6352 Allow uncapitalized info node names (Bug#3921).
6353
6354 * mail/emacsbug.el (report-emacs-bug): Tweak the sentence pointing
6355 to the DEBUG file (Bug#3781).
6356
6357 2009-10-23 Jari Aalto <jari.aalto@cante.net>
6358
6359 * textmodes/ispell.el (ispell-dictionary-base-alist): Add finnish
6360 dictionary entry (Bug#4579).
6361
6362 2009-10-23 Michael Albinus <michael.albinus@gmx.de>
6363
6364 * net/tramp.el (top): Remove `tramp-rfn-eshadow-update-overlay'
6365 from `rfn-eshadow-update-overlay-hook' when unloading.
6366 (tramp-methods): Add `tramp-copy-keep-tmpfile' for "rsync" and
6367 "rsyncc". Adjust doc string.
6368 (tramp-temp-buffer-file-name): New buffer-local defvar.
6369 (tramp-handle-insert-file-contents, tramp-handle-write-region):
6370 Keep temporary file when indicated by method ("rsync" and
6371 "rsyncc").
6372 (tramp-handle-write-region): Handle APPEND.
6373 (tramp-delete-temp-file-function): New defun. Added to
6374 `kill-buffer-hook'.
6375
6376 2009-10-23 Juanma Barranquero <lekktu@gmail.com>
6377
6378 * menu-bar.el (cua-enable-cua-keys): Declare for the byte-compiler.
6379
6380 2009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
6381
6382 * term/tty-colors.el (msdos-color-values): Remove declaration, unused.
6383 (color-name-rgb-alist, tty-standard-colors)
6384 (tty-color-mode-alist): Change to defconst.
6385
6386 * simple.el (mark-inactive): Purecopy message.
6387
6388 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle): Fix macro.
6389 (global-map, yank-menu):
6390 * textmodes/ispell.el (ispell-menu-map):
6391 * net/eudc.el (eudc-tools-menu):
6392 * international/mule-cmds.el (describe-language-environment-map)
6393 (setup-language-environment-map, set-coding-system-map)
6394 (mule-menu-keymap):
6395 * vc-hooks.el (vc-menu-entry, vc-menu-map):
6396 * replace.el (occur-mode-map):
6397 * pcvs-defs.el (cvs-global-menu): Purecopy names and tooltips.
6398
6399 2009-10-23 Jay Belanger <jay.p.belanger@gmail.com>
6400
6401 * calc/calc.el (math-read-number, math-read-number-simple): Use
6402 `save-match-data'.
6403
6404 2009-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
6405
6406 * simple.el (normal-erase-is-backspace-mode): Use input-decode-map
6407 rather than fiddling with global-map bindings, since it should only
6408 affect per-terminal settings.
6409 See http://bugs.gentoo.org/show_bug.cgi?id=289709.
6410
6411 * minibuffer.el (completion-table-with-terminator): Allow to specify
6412 the terminator-regexp.
6413
6414 * simple.el (switch-to-completions): Look for *Completions* in other
6415 frames as well.
6416
6417 * pcomplete.el: Allow the use of completion-tables.
6418 (pcomplete-std-complete): New command.
6419 (pcomplete-dirs-or-entries): Use a single call to pcomplete-entries.
6420 (pcomplete--here): Use a function for `form' rather than an expression,
6421 so it can be byte-compiled.
6422 (pcomplete-here, pcomplete-here*): Adjust accordingly.
6423 Add edebug declaration.
6424 (pcomplete-show-completions): Remove unused var `curbuf'.
6425 (pcomplete-do-complete, pcomplete-stub):
6426 Don't assume `completions' is a list of strings any more.
6427
6428 2009-10-22 Juanma Barranquero <lekktu@gmail.com>
6429
6430 * find-dired.el (find-name-arg): Fix typo in docstring.
6431
6432 2009-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
6433
6434 * pcmpl-linux.el (pcomplete/kill): Don't abuse pcomplete-entries.
6435 (pcmpl-linux-fs-types): Same, and update to new modules layout.
6436
6437 * pcmpl-gnu.el (pcmpl-gnu-makefile-names): Use a single call to
6438 pcomplete-entries.
6439
6440 * comint.el (comint-read-input-ring, comint-write-input-ring)
6441 (comint-substitute-in-file-name)
6442 (comint-dynamic-complete-as-filename)
6443 (comint-dynamic-simple-complete)
6444 (comint-dynamic-list-filename-completions)
6445 (comint-dynamic-list-completions)
6446 (comint-redirect-results-list-from-process): Minor simplifications.
6447
6448 2009-10-21 Kevin Ryde <user42@zip.com.au>
6449
6450 * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
6451 When inserting ";;; Code" put it before any ";;;###autoload" cookie on
6452 the first form. And insert a blank line after ";;; Code" since
6453 that's usual style. (Bug#4612)
6454
6455 * net/dns.el: Add "Keywords: comm", as per net/net-utils.el.
6456
6457 2009-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
6458
6459 * minibuffer.el (completion-table-with-terminator): Properly implement
6460 boundaries, in case `terminator' appears in the suffix.
6461 (completion--embedded-envvar-table): Don't return boundaries if
6462 there's no valid completion. Simplify.
6463 (completion-file-name-table): New completion table extracted from
6464 completion--file-name-table.
6465 (completion--file-name-table): Use it.
6466 (read-file-name-predicate): Declare obsolete.
6467 (read-file-name): Use the pred arg i.s.o read-file-name-predicate.
6468 * vc-bzr.el (vc-bzr-revision-completion-table): Use the new
6469 completion-file-name-table, and use the `pred' argument.
6470 * files.el (locate-file-completion-table): Use the `pred' arg rather
6471 than read-file-name-predicate.
6472 (abbreviate-file-name): Use \` rather than ^ for BOS.
6473
6474 2009-10-21 Dan Nicolaescu <dann@ics.uci.edu>
6475
6476 * vc.el (vc-deduce-fileset): Undo previous change, do not tell
6477 vc-responsible-backend to register, it causes problems.
6478
6479 2009-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
6480
6481 * help-fns.el: Don't require help-mode (to avoid bootstrap issues).
6482
6483 2009-10-21 Michael Albinus <michael.albinus@gmx.de>
6484
6485 * net/tramp-smb.el (tramp-smb-get-stat-capability): New defun.
6486 (tramp-smb-handle-file-attributes): Use it.
6487 (tramp-smb-do-file-attributes-with-stat): Don't raise an error.
6488 (tramp-smb-handle-insert-directory): Use `mapc' rather than
6489 `mapcar'. Use `tramp-smb-get-stat-capability'.
6490 Add `dired-filename' text properties.
6491 (tramp-smb-get-cifs-capabilities): Apply `save-match-data'.
6492 (tramp-smb-maybe-open-connection): Simplify check for smbclient
6493 version.
6494
6495 2009-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
6496
6497 * subr.el (read-key-delay): Reduce to 0.01.
6498 (read-key): Use read-key-sequence-vector to avoid turning M-t into 244
6499 (bug#4751).
6500
6501 2009-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
6502
6503 * bindings.el (function-key-map): Map C-@ to C-SPC if C-@ is unbound.
6504
6505 * info.el (Info-complete-menu-item): Handle `boundaries' explicitly.
6506 (Info-menu): Remove unused vars `last' and `completions'.
6507 (Info-index-nodes): Remove unused var `node'.
6508
6509 * info.el (Info-complete-menu-item): Use complete-with-action.
6510
6511 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
6512
6513 Make vc-annotate work through copies and renames.
6514 * vc-annotate.el (vc-annotate-extract-revision-at-line):
6515 Return the file name too.
6516 (vc-annotate-revision-at-line)
6517 (vc-annotate-find-revision-at-line)
6518 (vc-annotate-revision-previous-to-line)
6519 (vc-annotate-show-log-revision-at-line): Update to get the file
6520 name from vc-annotate-extract-revision-at-line.
6521 (vc-annotate-show-diff-revision-at-line-internal): Change the
6522 argument to mean whether to show a file diff or not. Get the file
6523 name from vc-annotate-extract-revision-at-line.
6524 (vc-annotate-show-diff-revision-at-line):
6525 Update vc-annotate-show-diff-revision-at-line call.
6526 (vc-annotate-warp-revision): Add an optional file argument.
6527
6528 * vc-git.el (vc-git-annotate-command): Pass -C -C to the blame command.
6529 (vc-git-annotate-extract-revision-at-line): Also return the file
6530 name if found.
6531
6532 * vc-hg.el (vc-hg-annotate-command): Pass --follow to the annotate
6533 command. Remove unused code.
6534 (vc-hg-annotate-re): Update to match --follow output.
6535 (vc-hg-annotate-extract-revision-at-line): Also return the file
6536 name if found.
6537
6538 * vc.el: Update annotate-extract-revision-at-line documentation.
6539
6540 2009-10-18 Kevin Ryde <user42@zip.com.au>
6541
6542 * ibuffer.el (ibuffer-confirm-operation-on): Correction to error
6543 re-throw, `err' is a pair not a list so can't use apply (Bug#4740).
6544
6545 * net/browse-url.el (browse-url): Identify alist with "consp and
6546 not functionp" and let all other things go down the `apply' leg,
6547 as suggested by Stefan. (Further to bug#4531.)
6548
6549 2009-10-18 Chong Yidong <cyd@stupidchicken.com>
6550
6551 * minibuffer.el (read-file-name): Check for repeat before putting
6552 a default argument in file-name-history (Bug#4657).
6553
6554 * emacs-lisp/lisp-mode.el (preceding-sexp): Recognize hash table
6555 read syntax (Bug#4737).
6556
6557 * textmodes/sgml-mode.el (sgml-delete-tag): Use sgml-looking-back-at.
6558
6559 2009-10-18 Aaron S. Hawley <aaron.s.hawley@gmail.com>
6560
6561 * textmodes/sgml-mode.el (sgml-tag-help): Prompt user for tag.
6562 (html-tag-alist, html-tag-help): Add descriptions for undocumented
6563 entries and make note of obsolete tags.
6564
6565 2009-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
6566
6567 * net/ange-ftp.el (ange-ftp-file-size): Use unwind-protect.
6568
6569 2009-10-18 Glenn Morris <rgm@gnu.org>
6570
6571 * Makefile.in (compile-last): Ensure GREP_OPTIONS is null before calling
6572 grep, so that binary files (eg international/uni-bidi.el) can match.
6573 Remove test for "UnicodeData" files, since it is hopefully unnecessary
6574 now, and in any case the file header format has changed.
6575
6576 2009-10-17 Glenn Morris <rgm@gnu.org>
6577
6578 * textmodes/flyspell.el (flyspell-large-region, flyspell-word)
6579 (flyspell-get-word, flyspell-large-region)
6580 (flyspell-auto-correct-previous-word): Doc/error message fixes.
6581
6582 2009-10-17 Chong Yidong <cyd@stupidchicken.com>
6583
6584 * Makefile.in (ELCFILES): Add ede/shell.
6585
6586 2009-10-17 Dan Nicolaescu <dann@ics.uci.edu>
6587
6588 * term/common-win.el (x-colors): Purecopy it.
6589
6590 2009-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
6591
6592 * tar-mode.el (tar-data-swapped-p): Make the assertion a bit more
6593 permissive for when the buffer is empty.
6594 (tar-header-block-tokenize): Decode the username and groupname.
6595 (tar-chown-entry, tar-chgrp-entry): Encode the names (bug#4730).
6596
6597 2009-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
6598
6599 * international/mule-cmds.el (select-safe-coding-system): If the file
6600 has a coding cookie, use it regardless of any other setting (bug#4712).
6601
6602 2009-10-17 Glenn Morris <rgm@gnu.org>
6603
6604 * foldout.el (foldout-mouse-swallow-events):
6605 * gs.el (gs-load-image): Replace obsolete forms of sit-for, sleep-for.
6606
6607 * dired.el (dired-ls-F-marks-symlinks, dired-keep-marker-rename)
6608 (dired-keep-marker-copy, dired-keep-marker-hardlink)
6609 (dired-keep-marker-symlink, dired-dwim-target)
6610 (dired-copy-preserve-time): Do not autoload these defcustoms.
6611
6612 * mail/rmail.el (rmail-write-region-annotate): Prevent viewing different
6613 messages from messing up the file coding. (Bug#4623)
6614
6615 2009-10-17 Jari Aalto <jari.aalto@cante.net>
6616
6617 * textmodes/ispell.el (ispell-get-decoded-string): Give an error
6618 if no match is found for the current dictionary. (Bug#4578)
6619
6620 * textmodes/flyspell.el (flyspell-get-word): Make `following' argument
6621 optional, since that is how it is documented, and this is often called
6622 with a nil argument. (Bug#4577)
6623 (flyspell-external-point-words, flyspell-auto-correct-word)
6624 (flyspell-correct-word-before-point, flyspell-word-search-forward)
6625 (flyspell-word-search-backward): Remove nil argument in calls to
6626 flyspell-get-word, since it is not needed now.
6627
6628 2009-10-17 Ulrich Mueller <ulm@gentoo.org>
6629
6630 * play/doctor.el (doctor-adverbp): Exclude some nouns. (Bug#4565)
6631
6632 2009-10-16 Glenn Morris <rgm@gnu.org>
6633
6634 * net/rcirc.el (rcirc-authenticate): Simplify previous change.
6635
6636 2009-10-16 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
6637
6638 * net/ange-ftp.el (ange-ftp-send-cmd): Handle `size' like `mdtm'.
6639 (ange-ftp-file-size): New function.
6640 (ange-ftp-file-attributes): Use it.
6641
6642 2009-10-16 Michael Albinus <michael.albinus@gmx.de>
6643
6644 * net/tramp-smb.el (tramp-smb-version): New defvar.
6645 (tramp-smb-maybe-open-connection): Use it, in order to avoid
6646 repeated checks.
6647
6648 2009-10-16 Glenn Morris <rgm@gnu.org>
6649
6650 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Doc fix.
6651 Maybe copy some custom properties from old to new name. (Bug#4706)
6652
6653 2009-10-16 Juanma Barranquero <lekktu@gmail.com>
6654
6655 * subr.el (error, sit-for, start-process-shell-command)
6656 (start-file-process-shell-command): Set the calling convention
6657 after the function definition.
6658
6659 2009-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
6660
6661 * subr.el (error, sit-for, start-process-shell-command)
6662 (start-file-process-shell-command): Use the new
6663 set-advertised-calling-convention feature.
6664
6665 2009-10-16 Taichi Kawabata <kawabata.taichi@gmail.com>
6666
6667 * international/ucs-normalize.el (ucs-normalize-version):
6668 Change to 1.2.
6669 (check-range): Adjust for Unicode 5.2.
6670
6671 2009-10-15 Juri Linkov <juri@jurta.org>
6672
6673 * menu-bar.el (menu-bar-file-menu): Convert `separator-exit'
6674 to the `menu-item' format.
6675
6676 2009-10-15 Michael Albinus <michael.albinus@gmx.de>
6677
6678 * net/tramp.el (tramp-replace-environment-variables): Do not fail
6679 if the environment variable does not exist.
6680
6681 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
6682 (tramp-smb-get-share, tramp-smb-get-localname): Use only VEC as
6683 parameter.
6684 (tramp-smb-handle-add-name-to-file)
6685 (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
6686 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
6687 (tramp-smb-handle-file-attributes)
6688 (tramp-smb-do-file-attributes-with-stat)
6689 (tramp-smb-handle-file-local-copy)
6690 (tramp-smb-handle-insert-directory)
6691 (tramp-smb-handle-make-directory)
6692 (tramp-smb-handle-make-directory-internal)
6693 (tramp-smb-handle-make-symbolic-link)
6694 (tramp-smb-handle-rename-file, tramp-smb-handle-set-file-modes)
6695 (tramp-smb-handle-write-region, tramp-smb-get-file-entries)
6696 (tramp-smb-maybe-open-connection): Apply the changed parameters.
6697 (tramp-smb-read-file-entry): Read Disk names in compressed format.
6698 Handle long file names.
6699 (tramp-smb-get-cifs-capabilities): Check, whether the connection
6700 process is running.
6701 (tramp-smb-maybe-open-connection): Trace "smbclient -V" command.
6702 Read share names with "-g" option.
6703
6704 2009-10-15 Ryan Yeske <rcyeske@gmail.com>
6705
6706 * net/rcirc.el (rcirc-view-log-file): New command.
6707 (rcirc-track-minor-mode-map): Remove C-c ` binding.
6708 (rcirc-authenticate, rcirc-authinfo): Allow nickserv-nick to be
6709 specified.
6710
6711 2009-10-15 Glenn Morris <rgm@gnu.org>
6712
6713 * w32-fns.el (w32-batch-update-autoloads): Take autoload-make-program
6714 from the second command-line argument.
6715 * makefile.w32-in (autoloads, $(lisp)/calendar/cal-loaddefs.el)
6716 ($(lisp)/calendar/diary-loaddefs.el, $(lisp)/calendar/hol-loaddefs.el)
6717 ($(lisp)/mh-e/mh-loaddefs.el): Pass $(MAKE) as second argument to
6718 w32-batch-update-autoloads.
6719 * emacs-lisp/autoload.el (autoload-make-program): New variable.
6720 (batch-update-autoloads): Handle autoload-excludes on windows-nt.
6721
6722 * mail/rmailedit.el (rmail-cease-edit): Give an error if the end of
6723 the headers cannot be located. Simplify, subtracting superflous
6724 save-excursions.
6725
6726 2009-10-15 Stefan Monnier <monnier@iro.umontreal.ca>
6727
6728 Replace completion-base-size by completion-base-position to fix bugs
6729 such as (bug#4699).
6730 * simple.el (completion-base-position): New var.
6731 (completion-base-size): Mark as obsolete.
6732 (choose-completion): Make it work for mouse events as well.
6733 Pass the new base-position to choose-completion-string.
6734 (choose-completion-guess-base-position): New function, extracted from
6735 choose-completion-delete-max-match.
6736 (choose-completion-delete-max-match): Use it. Make obsolete.
6737 (choose-completion-string): Use the new base-position info.
6738 (completion-root-regexp): Delete.
6739 (completion-setup-function): Preserve completion-base-position.
6740 Eliminate obsolete base-size manipulation.
6741 * minibuffer.el (display-completion-list): Don't mess with base-size.
6742 (minibuffer-completion-help): Set completion-base-position instead.
6743 * mouse.el (mouse-choose-completion): Redefine as a mere alias to
6744 choose-completion.
6745 * textmodes/bibtex.el (bibtex-complete):
6746 * emacs-lisp/crm.el (crm--choose-completion-string):
6747 Adjust to new calling convention.
6748 * complete.el (partial-completion-mode): Use minibufferp to avoid
6749 bumping into incompatible change to choose-completion-string-functions.
6750 * ido.el (ido-choose-completion-string): Make its calling convention
6751 more permissive.
6752 * comint.el (comint-dynamic-list-input-ring-select): Remove obsolete
6753 base-size manipulation.
6754 (comint-dynamic-list-input-ring): Use dotimes and push.
6755 * iswitchb.el (iswitchb-completion-help): Remove dead-code call to
6756 fundamental-mode. Use `or'.
6757
6758 2009-10-14 Juri Linkov <juri@jurta.org>
6759
6760 * misearch.el (multi-isearch-next-buffer-from-list)
6761 (multi-isearch-next-file-buffer-from-list): Doc fix. (Bug#4723)
6762
6763 2009-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
6764
6765 * Makefile.in (compile-onefile): Load `bytecomp' rather than
6766 `bytecomp.el'.
6767
6768 * minibuffer.el (completion-pcm--merge-completions): Make sure the
6769 string we return is all made up of text from the completions rather
6770 than part from the completions and part from the input (bug#4219).
6771
6772 * ido.el (ido-everywhere): Use define-minor-mode.
6773
6774 * buff-menu.el (list-buffers, ctl-x-map):
6775 Mark the entry points with ;;;###autoload cookies.
6776
6777 2009-10-14 Dan Nicolaescu <dann@ics.uci.edu>
6778
6779 * vc-git.el (vc-git-dir-extra-headers): Set the branch name
6780 correctly in the detached head case.
6781 (vc-git-print-log): Remove unused binding.
6782
6783 * vc.el (vc-responsible-backend): When a directory is passed for
6784 for registration create a VC repository if no backend is
6785 responsible for the directory argument.
6786 (vc-deduce-fileset): Tell vc-responsible-backend to register.
6787
6788 * vc.el: Move comments about RCS and SCCS ...
6789 * vc-rcs.el:
6790 * vc-sccs.el: ... here, respectively.
6791
6792 2009-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
6793
6794 * minibuffer.el (completion--file-name-table): Return nil if there's
6795 no file completion, even if substitute-in-file-name changed
6796 the string (bug#4708).
6797
6798 2009-10-13 Juri Linkov <juri@jurta.org>
6799
6800 * files-x.el (read-file-local-variable-value): Don't filter out
6801 minor modes from mode name completion (bug#4664).
6802
6803 2009-10-13 Juanma Barranquero <lekktu@gmail.com>
6804
6805 * international/mule-cmds.el (ucs-names): Remove exclusion of
6806 "Enclosed Ideographic Supplement" range (U+1F200..U+1F2FF).
6807
6808 2009-10-13 Kenichi Handa <handa@m17n.org>
6809
6810 * international/uni-name.el: Regenerated.
6811
6812 2009-10-13 Juanma Barranquero <lekktu@gmail.com>
6813
6814 * bs.el (bs-mode): Fix last change. (`revert-buffer-function'
6815 should be automatically buffer-local, but isn't.)
6816
6817 2009-10-12 Sam Steingold <sds@gnu.org>
6818
6819 * progmodes/compile.el (compilation-next-error-function): Fix the
6820 timestamps if the buffer has been visited before.
6821 (compilation-mode-font-lock-keywords): Do not prepend "^ *" to
6822 non-anchored patterns, like the perl one (bug#3928).
6823
6824 2009-10-12 Glenn Morris <rgm@gnu.org>
6825
6826 * net/tramp-smb.el (tramp-smb-do-file-attributes-with-stat):
6827 Let-bind `size'.
6828
6829 2009-10-12 Juanma Barranquero <lekktu@gmail.com>
6830
6831 * proced.el (proced-unload-function): New function.
6832
6833 * bs.el (bs-mode): Set `revert-buffer-function' to `bs-refresh'.
6834 (bs-refresh): Add IGNORED arg for `revert-buffer' compatibility.
6835 Doc fix.
6836
6837 * menu-bar.el (menu-bar-file-menu): Fix format of `separator-exit' item.
6838
6839 2009-10-11 Juri Linkov <juri@jurta.org>
6840
6841 * files-x.el (read-file-local-variable-value):
6842 Provide default value only for bound variables (bug#4664).
6843
6844 2009-10-11 Michael Albinus <michael.albinus@gmx.de>
6845
6846 * net/tramp.el (tramp-local-host-p): Function shall return nil for
6847 connection methods like smb.
6848
6849 * net/tramp-cache.el (tramp-flush-connection-property): The hash
6850 can be empty.
6851
6852 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
6853 (tramp-smb-file-name-handler-alist): Add handlers for
6854 `add-name-to-file', `make-symbolic-link'.
6855 (tramp-smb-handle-add-name-to-file)
6856 (tramp-smb-do-file-attributes-with-stat)
6857 (tramp-smb-handle-make-symbolic-link)
6858 (tramp-smb-get-cifs-capabilities): New defuns.
6859 (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
6860 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
6861 (tramp-smb-handle-file-local-copy)
6862 (tramp-smb-handle-make-directory-internal)
6863 (tramp-smb-handle-rename-file, tramp-smb-handle-write-region):
6864 The file name syntax depends on cifs capabilities.
6865 (tramp-smb-handle-file-attributes):
6866 Call `tramp-smb-do-file-attributes-with-stat' if possible.
6867 (tramp-smb-handle-insert-directory): Use posix attributes if possible.
6868 (tramp-smb-handle-set-file-modes): It is applicable for posix only.
6869
6870 2009-10-11 Chong Yidong <cyd@stupidchicken.com>
6871
6872 * emacs-lisp/eieio.el: Avoid requiring cl at runtime.
6873 (eieio-defclass): Apply deftype handler and setf-method properties
6874 directly.
6875 (eieio-add-new-slot): Avoid union function from cl library.
6876 (eieio--typep): New function.
6877 (eieio-perform-slot-validation): Use it.
6878
6879 2009-10-10 Karl Fogel <kfogel@red-bean.com>
6880
6881 * bookmark.el (bookmark-yank-word, bookmark-insert-current-bookmark):
6882 Update documentation to refer to the variables documented in r1.135.
6883 (Bug#4188)
6884
6885 2009-10-10 Karl Fogel <kfogel@red-bean.com>
6886
6887 * bookmark.el (Info-suffix-list): Remove this unused variable.
6888 (bookmark-current-point): Remove this obsolete variable.
6889 (bookmark-set, bookmark-rename, bookmark-send-edited-annotation):
6890 Adjust for removal of bookmark-current-point.
6891
6892 (bookmarks-already-loaded, bookmark-current-buffer)
6893 (bookmark-yank-point): Document. (Bug#4188)
6894
6895 2009-10-10 Glenn Morris <rgm@gnu.org>
6896
6897 * frame.el (frame-height): Doc fix.
6898
6899 * calendar/calendar.el (calendar-split-width-threshold): New option.
6900 (calendar-basic-setup): Use calendar-split-width-threshold.
6901
6902 2009-10-09 Juanma Barranquero <lekktu@gmail.com>
6903
6904 * international/mule-cmds.el (ucs-names): Exclude new "Enclosed
6905 Ideographic Supplement" range (U+1F200..U+1F2FF).
6906
6907 2009-10-09 Karl Fogel <kfogel@red-bean.com>
6908
6909 * bookmark.el (bookmark-bmenu-rename): Don't call bookmark-bmenu-list,
6910 since the list will have been rebuilt anyway. (Bug#4349)
6911
6912 2009-10-09 Karl Fogel <kfogel@red-bean.com>
6913
6914 * bookmark.el (bookmark-delete): Don't let batch arg prevent saving.
6915 (bookmark-bmenu-execute-deletions): Don't save here, as
6916 bookmark-delete will now do so if necessary.
6917 Suggested by Thierry Volpiatto <thierry.volpiatto {_AT_} gmail.com>.
6918 (Bug#4348)
6919
6920 2009-10-09 Glenn Morris <rgm@gnu.org>
6921
6922 * mail/emacsbug.el (report-emacs-bug): Also print `features'.
6923
6924 2009-10-09 Karl Fogel <kfogel@red-bean.com>
6925
6926 * bookmark.el (bookmark-jump): Add new `display-func' parameter.
6927 (bookmark-jump-other-window): Just invoke bookmark-jump with new
6928 argument now, so the two function's behaviors will match. (Bug#3645)
6929
6930 2009-10-08 Michael Albinus <michael.albinus@gmx.de>
6931
6932 * net/tramp.el (tramp-file-name-real-user, tramp-file-name-domain)
6933 (tramp-file-name-real-host, tramp-file-name-port):
6934 Apply `save-match-data'.
6935
6936 * net/tramp-smb.el (tramp-smb-handle-copy-directory): Handle the
6937 case both directories are remote.
6938 (tramp-smb-handle-expand-file-name): Implement "~" expansion.
6939 (tramp-smb-maybe-open-connection): Flush the cache only if necessary.
6940
6941 2009-10-07 Juanma Barranquero <lekktu@gmail.com>
6942
6943 * makefile.w32-in (WINS_UPDATES): Fix typo in previous change.
6944
6945 2009-10-07 Glenn Morris <rgm@gnu.org>
6946
6947 * emacs-lisp/autoload.el (batch-update-autoloads): Remove useless use
6948 of concat.
6949
6950 2009-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
6951
6952 * files-x.el (read-file-local-variable): Include some
6953 non-user-variables in the completion table (bug#4664).
6954
6955 2009-10-07 Michael Albinus <michael.albinus@gmx.de>
6956
6957 * net/tramp-cache.el (tramp-flush-connection-property): Add trace
6958 message.
6959
6960 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
6961 (tramp-smb-file-name-handler-alist): Add handler for
6962 `copy-directory', `expand-file-name', `set-file-modes'.
6963 (tramp-smb-handle-copy-directory)
6964 (tramp-smb-handle-expand-file-name)
6965 (tramp-smb-handle-set-file-modes): New defuns.
6966 (tramp-smb-handle-copy-file): Handle KEEP-DATE.
6967 (tramp-smb-handle-file-attributes): Simplify check for retrieving
6968 entry.
6969 (tramp-smb-handle-insert-directory): Don't flush the cache.
6970 (tramp-smb-maybe-open-connection): Check for samba client and
6971 server versions.
6972
6973 2009-10-07 Eli Zaretskii <eliz@gnu.org>
6974
6975 * emacs-lisp/autoload.el (batch-update-autoloads): Fix last change
6976 to not error out of search for "^lisp=" fails.
6977
6978 2009-10-07 Juanma Barranquero <lekktu@gmail.com>
6979
6980 * makefile.w32-in (WINS_UPDATES): New macro.
6981 (custom-deps, finder-data, autoloads): Use it.
6982
6983 2009-10-07 Glenn Morris <rgm@gnu.org>
6984
6985 * Makefile.in (autoloads): Revert previous change.
6986 * emacs-lisp/autoload.el (batch-update-autoloads): Rather than having
6987 the list of preloaded files passed on the command-line, get
6988 it from src/Makefile.
6989
6990 * calendar/calendar.el (calendar-basic-setup): In the wide frame case,
6991 show the original buffer rather than a random one.
6992
6993 2009-10-07 Markus Rost <rost@math.uni-bielefeld.de>
6994
6995 * help.el (describe-no-warranty): Place point in a slightly better
6996 position in the GPLv3 text.
6997
6998 2009-10-06 Sam Steingold <sds@gnu.org>
6999
7000 * net/tramp-compat.el (tramp-compat-process-running-p): Check that
7001 the comm attribute is present before calling regexp-quote.
7002
7003 2009-10-06 Juanma Barranquero <lekktu@gmail.com>
7004
7005 * play/animate.el (animate-string): For good effect, make sure
7006 `indent-tabs-mode' and `show-trailing-whitespace' are nil.
7007
7008 * play/animate.el (animate-sequence, animate-birthday-present):
7009 * misc.el (butterfly): Don't set `indent-tabs-mode'.
7010
7011 2009-10-06 Glenn Morris <rgm@gnu.org>
7012
7013 * emacs-lisp/byte-run.el (define-obsolete-face-alias): Doc fix.
7014
7015 * emacs-lisp/autoload.el (autoload-excludes): New variable.
7016 (autoload-generate-file-autoloads): Skip files in autoload-excludes.
7017 (batch-update-autoloads): Process a string value of autoload-excludes,
7018 set during the build process.
7019 * Makefile.in (autoloads): Skip preloaded files. (Bug#4446)
7020
7021 * net/tramp.el (tramp-handle-start-file-process): Move tramp-error call
7022 inside with-parsed... macro so that `v' is defined.
7023
7024 * progmodes/f90.el (f90-end-of-block, f90-beginning-of-block):
7025 * progmodes/fortran.el (fortran-end-of-block)
7026 (fortran-beginning-of-block):
7027 Also push mark in the macro case.
7028
7029 * emerge.el (emerge-show-file-name):
7030 * calc/calc.el (calc-quit):
7031 * calc/calc-misc.el (calc-big-or-small):
7032 * calc/calc-graph.el (calc-graph-view):
7033 * calc/calc-ext.el (calc-reset):
7034 * calendar/calendar.el (calendar-basic-setup):
7035 Use window-full-height-p.
7036
7037 * mail/rmailedit.el (rmail-cease-edit): If there is a Content-Type
7038 header we don't understand, don't insert another. (Bug#4624)
7039 If changing mime charset, insert the new one in the right place.
7040
7041 2009-10-06 Matthew Junker <matthew.junker@sbcglobal.net> (tiny change)
7042
7043 * calendar/cal-tex.el (cal-tex-cursor-month-landscape)
7044 (cal-tex-cursor-month): Correctly increment the end date for diary and
7045 holiday listing. (Bug#4626)
7046
7047 2009-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
7048
7049 * help-fns.el (describe-function-1): Don't burp if the function is not
7050 a symbol.
7051
7052 2009-10-05 Juanma Barranquero <lekktu@gmail.com>
7053
7054 * emacs-lisp/chart.el (chart-face-pixmap-list, chart-new-buffer, chart)
7055 (chart-axis-range, chart-axis-names, chart-sequece, chart-bar)
7056 (chart-draw, chart-axis-draw, chart-sort, chart-sort-matchlist)
7057 (chart-draw-line, chart-bar-quickie): Fix typos in docstrings.
7058
7059 * emacs-lisp/eieio.el (generic-p, eieiomt-next, eieio-generic-form)
7060 (eieio-default-superclass): Reflow docstrings.
7061 (this, class-option-assoc, defclass, eieio-class-un-autoload)
7062 (eieio-unbind-method-implementations, defmethod)
7063 (eieio-validate-slot-value, eieio-validate-class-slot-value)
7064 (oref-default, eieio-oref-default, eieio-oset, eieio-oset-default)
7065 (with-slots, eieio-add-new-slot, object-assoc, object-remove-from-list)
7066 (eieio-slot-originating-class-p, eieio-slot-name-index)
7067 (eieio-pre-method-execution-hooks, eieio-initarg-to-attribute)
7068 (constructor, initialize-instance, no-next-method, object-print)
7069 (object-write, eieio-override-prin1, eieio-edebug-prin1-to-string):
7070 Fix typos in docstrings.
7071 (eieio-defclass, eieio-perform-slot-validation-for-default, defgeneric)
7072 (child-of-class-p, object-slots, slot-boundp, slot-exists-p)
7073 (next-method-p): Doc fixes.
7074 (eieio-add-new-slot, call-next-method, eieiomt-add, change-class):
7075 Fix typos in error messages.
7076 (eieio-defmethod): Fix typo in description of generic method.
7077
7078 * emacs-lisp/eieio-base.el (eieio-instance-inheritor, slot-unbound)
7079 (eieio-persistent-save-interactive, slot-missing):
7080 Fix typos in docstrings.
7081 (eieio-instance-inheritor-slot-boundp): Doc fix.
7082
7083 * emacs-lisp/eieio-comp.el (byte-compile-file-form-defmethod)
7084 (byte-compile-defmethod-param-convert): Fix typos in docstrings.
7085
7086 * emacs-lisp/eieio-custom.el (eieio-done-customizing)
7087 (eieio-custom-object-apply-reset):
7088 Fix typos in docstrings and error messages.
7089
7090 * emacs-lisp/eieio-datadebug.el (data-debug-show):
7091 Fix typo in docstring.
7092
7093 * emacs-lisp/eieio-opt.el (top): Fix typo in error message.
7094 (eieio-browse-tree): Doc fix.
7095 (eieio-all-generic-functions, eieio-class-speedbar): Reflow docstrings.
7096 (eieio-help-mode-augmentation-maybee, eieio-class-speedbar-make-map):
7097 Fix typos in docstrings.
7098
7099 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-file-button): Doc fix.
7100 (eieio-speedbar-key-map, eieio-speedbar-create-engine)
7101 (eieio-speedbar-buttons, eieio-speedbar, eieio-speedbar-object-children)
7102 (eieio-speedbar-make-tag-line, eieio-speedbar-object-expand):
7103 Reflow docstrings.
7104
7105 2009-10-05 Dan Nicolaescu <dann@ics.uci.edu>
7106
7107 * vc-hg.el (log-view-vc-backend): Declare for compiler.
7108 (vc-hg-outgoing-mode, vc-hg-incoming-mode):
7109 Set log-view-vc-backend so that diff can work.
7110
7111 * log-view.el (log-view-diff): Use vc-diff-internal instead of
7112 vc-version-diff.
7113 (vc-diff-internal): Autoload this instead of vc-version-diff.
7114
7115 2009-10-05 Eli Zaretskii <eliz@gnu.org>
7116
7117 * simple.el (eval-expression): Doc fix.
7118
7119 * progmodes/cwarn.el (cwarn-mode): Doc fix.
7120
7121 2009-10-05 Michael Albinus <michael.albinus@gmx.de>
7122
7123 * files.el (directory-files-no-dot-files-regexp): New defconst.
7124 (delete-directory): Use it.
7125 (copy-directory): Use it. Remove parameter PRESERVE-UID-GID.
7126
7127 * net/tramp.el (tramp-verbose): Fix docstring.
7128 (tramp-methods): Add recursive option to `tramp-copy-args'.
7129 Add `tramp-copy-recursive'. Valid for "rcp", "scp", "scp1", "scp2",
7130 "scp1_old", "scp2_old", "rsync", "rsyncc".
7131 (tramp-default-method): Check also for `auth-source-user-or-password'.
7132 (tramp-file-name-handler-alist, tramp-file-name-for-operation):
7133 Add handler for `copy-directory'.
7134 (tramp-handle-copy-directory): New defun.
7135 (tramp-do-copy-or-rename-file-out-of-band): Handle directory case.
7136 (tramp-handle-start-file-process): Raise an error when PROGRAM is nil.
7137 Optimize sent command.
7138
7139 2009-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
7140
7141 * calendar/diary-lib.el (diary-show-all-entries): Re-fit the calendar
7142 window if necessary.
7143
7144 * calendar/calendar.el (calendar-basic-setup): Don't call
7145 switch-to-buffer in a dedicated window.
7146
7147 2009-10-05 Karl Fogel <kfogel@red-bean.com>
7148
7149 * bookmark.el (bookmark-handle-bookmark): If bookmark has no file,
7150 don't do anything related to relocating, just return nil.
7151 (bookmark-error-no-filename): New error.
7152 (bookmark-default-handler): Signal `bookmark-error-no-filename' if
7153 bookmark has no file. Don't even attempt to handle things that
7154 are not files; the whole point of custom handlers is to keep that
7155 knowledge elsewhere anyway. Tighten some comments.
7156 (bookmark-file-or-variation-thereof): Remove now-unused function.
7157 (bookmark-location): Doc string fix.
7158 (Bug#4250)
7159
7160 2009-10-04 Karl Fogel <kfogel@red-bean.com>
7161
7162 * bookmark.el (bookmark-handle-bookmark): When relocating a bookmark,
7163 don't use a file dialog, because they usually don't know how to read
7164 a directory target from the user. (Bug#4230)
7165 Also, make sure the prompt can display directories as well as files.
7166
7167 2009-10-04 Karl Fogel <kfogel@red-bean.com>
7168
7169 * bookmark.el (bookmark-set, bookmark-buffer-name):
7170 Improve doc strings. (Bug#1193)
7171
7172 2009-10-04 Karl Fogel <kfogel@red-bean.com>
7173
7174 * bookmark.el (bookmark-get-bookmark, bookmark-get-bookmark-record)
7175 (bookmark-set-name, bookmark-prop-get, bookmark-prop-set)
7176 (bookmark-get-annotation, bookmark-set-annotation)
7177 (bookmark-get-filename, bookmark-set-filename, bookmark-get-position)
7178 (bookmark-set-position, bookmark-get-front-context-string)
7179 (bookmark-set-front-context-string, bookmark-get-rear-context-string)
7180 (bookmark-set-rear-context-string, bookmark-location, bookmark-jump)
7181 (bookmark-jump-other-window, bookmark-handle-bookmark)
7182 (bookmark-relocate, bookmark-insert-location, bookmark-rename)
7183 (bookmark-insert, bookmark-delete, bookmark-time-to-save-p)
7184 (bookmark-edit-annotation-mode, bookmark-edit-annotation):
7185 Improve doc strings to say whether bookmark can be a string or
7186 a record or both, and make other consistency and clarity fixes.
7187 (bookmark-get-handler, bookmark--jump-via, bookmark-write-file)
7188 (bookmark-default-annotation-text, bookmark-yank-word)
7189 (bookmark-maybe-load-default-file, bookmark-maybe-sort-alist)
7190 (bookmark-import-new-list, bookmark-maybe-rename)
7191 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
7192 (bookmark-bmenu-bookmark): Give these doc strings.
7193 (bookmark-bmenu-check-position): Give this a doc string, but also
7194 add a FIXME comment about how the function may be pointless.
7195 (bookmark-default-handler): Rework doc string and change a
7196 parameter name, to clarify that this takes a bookmark record
7197 not a bookmark name.
7198 (bookmark-set): Change a parameter name to indicate its meaning,
7199 and improve the doc string a bit.
7200 (Bug#4188)
7201
7202 2009-10-04 Karl Fogel <kfogel@red-bean.com>
7203
7204 * bookmark.el (bookmark-alist): Document the new `handler' element
7205 in the param alist.
7206 (bookmark-make-record-function): Adjust documentation for above.
7207 (Bug#4193)
7208
7209 2009-10-04 Karl Fogel <kfogel@red-bean.com>
7210
7211 * info.el (Info-bookmark-make-record): Document this function.
7212 (Info-bookmark-jump): Document with a doc string, not just a comment.
7213 (Bug#4203)
7214
7215 2009-10-04 Michael Albinus <michael.albinus@gmx.de>
7216
7217 * files.el (copy-directory): New defun.
7218
7219 * dired-aux.el (dired-copy-file-recursive): Use it.
7220
7221 2009-10-04 Juanma Barranquero <lekktu@gmail.com>
7222
7223 * files-x.el (modify-dir-local-variable)
7224 (copy-dir-locals-to-file-locals-prop-line): Fix typos in
7225 docstrings.
7226
7227 * recentf.el (recentf-unload-function): New function.
7228
7229 2009-10-04 Glenn Morris <rgm@gnu.org>
7230
7231 * window.el (window-full-height-p): Add doc string.
7232
7233 2009-10-04 Martin Rudalics <rudalics@gmx.at>
7234
7235 * window.el (window-full-height-p): New function. (Bug#4543)
7236
7237 2009-10-03 Dan Nicolaescu <dann@ics.uci.edu>
7238
7239 * vc.el: Remove commented out code.
7240 (vc-derived-from-dir-mode): Remove, unused.
7241 (vc-version-diff, vc-diff): Consistently pass t to vc-deduce-fileset.
7242
7243 2009-10-03 Michael Albinus <michael.albinus@gmx.de>
7244
7245 * net/tramp-ftp.el (tramp-ftp-file-name-handler):
7246 Disable `file-name-handler-alist' when loading 'ange-ftp. Otherwise,
7247 there could be recursive loading when `default-directory' is a
7248 remote file name. (Bug#4614)
7249
7250 2009-10-03 Glenn Morris <rgm@gnu.org>
7251
7252 * calendar/calendar.el (calendar-basic-setup): Handle the case where
7253 the frame is wide.
7254 (calendar-generate-window): Test for shrinkability rather than width.
7255
7256 * mail/rmail.el (rmail-generate-viewer-buffer): Be more careful about
7257 reusing existing buffers, in case we happen to visit two files with the
7258 same basename. (Bug#4593)
7259
7260 2009-10-02 Eli Zaretskii <eliz@gnu.org>
7261
7262 * makefile.w32-in (update-subdirs-CMD): Add cedet to $(WINS_SUBDIR).
7263 (WINS_CEDET_SUBDIRS): List of subdirectories of cedet.
7264 (bootstrap-clean-CMD, bootstrap-clean-SH): Remove *.elc files in
7265 subdirs of cedet as well.
7266 (AUTOGENEL): Add loaddefs.el files in cedet subdirectories.
7267
7268 2009-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
7269
7270 * emacs-lisp/eldoc.el (eldoc-get-fnsym-args-string):
7271 Obey advertised-signature-table.
7272
7273 * help-fns.el (help-function-arglist): Don't check
7274 advertised-signature-table.
7275 (describe-function-1): Do it here instead so it also applies to subrs.
7276
7277 2009-10-02 Michael Albinus <michael.albinus@gmx.de>
7278
7279 * simple.el (start-file-process): Say in the doc-string, that file
7280 handlers might not support pty association, if PROGRAM is nil.
7281
7282 * net/ange-ftp.el (ange-ftp-generate-passwd-key): Check, whether
7283 HOST and USER are strings. They are nil, when there are
7284 incomplete entries in ~/.netrc, for example.
7285 (ange-ftp-delete-directory): Implement RECURSIVE case. Change to
7286 root directory ("device busy" error otherwise).
7287
7288 * net/tramp-smb.el (tramp-smb-handle-make-directory-internal):
7289 Flush file properties of created directory.
7290
7291 2009-10-02 Eli Zaretskii <eliz@gnu.org>
7292
7293 * makefile.w32-in (WINS_BASIC): Remove cedet.
7294 (WINS_CEDET): Add cedet.
7295 (update-subdirs-SH): Use $(WINS_SUBDIR), not $(WINS).
7296
7297 2009-10-02 Kevin Ryde <user42@zip.com.au>
7298
7299 * net/browse-url.el (browse-url): Pass any symbol in
7300 browse-url-browser-function to `apply', since if you've mistakenly put
7301 an unbound symbol then the error is clearer. (Bug#4531)
7302
7303 2009-10-02 Juanma Barranquero <lekktu@gmail.com>
7304
7305 * allout.el (allout-init, allout-back-to-current-heading)
7306 (allout-beginning-of-current-entry, allout-ascend-to-depth)
7307 (allout-ascend, allout-up-current-level, allout-end-of-level)
7308 (allout-previous-visible-heading, allout-forward-current-level)
7309 (allout-backward-current-level, allout-show-children):
7310 * apropos.el (apropos-describe-plist):
7311 * bookmark.el (bookmark-maybe-historicize-string, bookmark-bmenu-list):
7312 * comint.el (comint-strip-ctrl-m, comint-goto-process-mark):
7313 * completion.el (add-completion, add-permanent-completion):
7314 * descr-text.el (describe-text-category, describe-char):
7315 * desktop.el (desktop-lazy-abort):
7316 * dired-x.el (dired-omit-expunge, dired-x-bind-find-file):
7317 * dired.el (dired-build-subdir-alist):
7318 * ediff.el (ediff-version):
7319 * elide-head.el (elide-head, elide-head-show):
7320 * emerge.el (emerge-version):
7321 * env.el (getenv):
7322 * face-remap.el (variable-pitch-mode):
7323 * faces.el (describe-face):
7324 * ffap.el (ffap-next-url, find-file-at-point, ffap-at-mouse)
7325 (dired-at-point):
7326 * files.el (find-file-existing, auto-save-mode):
7327 * font-lock.el (font-lock-fontify-buffer):
7328 * help-fns.el (describe-function, describe-variable)
7329 (describe-syntax, describe-categories):
7330 * help.el (view-lossage, describe-bindings, describe-key)
7331 (describe-mode):
7332 * hexl.el (hexl-current-address):
7333 * hi-lock.el (hi-lock-mode, hi-lock-find-patterns):
7334 * info.el (Info-goto-emacs-key-command-node):
7335 * log-edit.el (log-edit-insert-cvs-template)
7336 (log-edit-insert-cvs-rcstemplate):
7337 * menu-bar.el (menu-bar-mode):
7338 * mouse.el (mouse-appearance-menu):
7339 * newcomment.el (comment-indent-new-line):
7340 * pgg.el (pgg-save-coding-system, pgg-encrypt-region)
7341 (pgg-encrypt-symmetric-region, pgg-encrypt-symmetric)
7342 (pgg-encrypt, pgg-decrypt-region, pgg-decrypt)
7343 (pgg-sign-region, pgg-sign, pgg-verify-region, pgg-verify):
7344 * recentf.el (recentf-mode):
7345 * savehist.el (savehist-mode, savehist-save):
7346 * shadowfile.el (shadow-copy-files):
7347 * simple.el (kill-ring-save, next-line, previous-line)
7348 (normal-erase-is-backspace-mode):
7349 * strokes.el (strokes-update-window-configuration)
7350 (strokes-load-user-strokes, strokes-prompt-user-save-strokes)
7351 (strokes-xpm-for-stroke):
7352 * time.el (emacs-uptime, emacs-init-time):
7353 * tutorial.el (tutorial--describe-nonstandard-key)
7354 (tutorial--detailed-help):
7355 * type-break.el (type-break-mode)
7356 (type-break-mode-line-message-mode, type-break-query-mode)
7357 (type-break-guesstimate-keystroke-threshold):
7358 * vc.el (vc-version-diff, vc-diff, vc-root-diff):
7359 * version.el (emacs-version):
7360 * vt-control.el (vt-keypad-on, vt-keypad-off, vt-numlock):
7361 * winner.el (winner-mode):
7362 * calendar/timeclock.el (timeclock-in, timeclock-out)
7363 (timeclock-status-string, timeclock-change)
7364 (timeclock-workday-remaining-string)
7365 (timeclock-workday-elapsed-string)
7366 (timeclock-when-to-leave-string):
7367 * calendar/todo-mode.el (todo-add-category):
7368 * emacs-lisp/advice.el (ad-enable-regexp, ad-disable-regexp):
7369 * emacs-lisp/autoload.el (update-file-autoloads):
7370 * emacs-lisp/checkdoc.el (checkdoc-current-buffer)
7371 (checkdoc-start, checkdoc-continue, checkdoc-rogue-spaces)
7372 (checkdoc-message-text, checkdoc-defun):
7373 * emacs-lisp/debug.el (debugger-list-functions):
7374 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
7375 * emacs-lisp/eieio-opt.el (eieio-describe-class)
7376 (eieio-describe-generic):
7377 * emacs-lisp/lisp-mnt.el (lm-synopsis):
7378 * emacs-lisp/shadow.el (list-load-path-shadows):
7379 * emulation/cua-base.el (cua-mode):
7380 * emulation/edt.el (edt-set-scroll-margins):
7381 * emulation/tpu-edt.el (tpu-toggle-newline-and-indent)
7382 (tpu-toggle-regexp, tpu-toggle-search-direction)
7383 (tpu-toggle-rectangle, tpu-toggle-control-keys):
7384 * emulation/tpu-extras.el (tpu-set-scroll-margins):
7385 * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
7386 (viper-set-parsing-style-toggling-macro)
7387 (viper-set-emacs-state-searchstyle-macros):
7388 * emulation/viper.el (viper-set-hooks):
7389 * eshell/esh-mode.el (eshell-truncate-buffer):
7390 * international/mule-cmds.el (prefer-coding-system)
7391 (describe-input-method, describe-language-environment):
7392 * international/mule-diag.el (list-character-sets)
7393 (describe-character-set, describe-coding-system)
7394 (describe-fontset, list-fontsets, list-input-methods):
7395 * mail/sendmail.el (mail-signature):
7396 * net/ange-ftp.el (ange-ftp-copy-file):
7397 * net/browse-url.el (browse-url):
7398 * net/eudc.el (eudc-set-server, eudc-get-attribute-list):
7399 * net/quickurl.el (quickurl-add-url):
7400 * net/rcirc.el (names, topic):
7401 * net/xesam.el (xesam-mode):
7402 * play/5x5.el (5x5-new-game):
7403 * play/yow.el (apropos-zippy):
7404 * progmodes/ada-mode.el (ada-mode-version):
7405 * progmodes/f90.el (f90-beginning-of-subprogram, f90-end-of-subprogram)
7406 (f90-end-of-block)
7407 (f90-beginning-of-block):
7408 * progmodes/fortran.el (fortran-end-of-block)
7409 (fortran-beginning-of-block):
7410 * progmodes/js.el (js-syntactic-context, js-gc, js-eval):
7411 * progmodes/python.el (python-describe-symbol, python-shell):
7412 * term/ns-win.el (ns-print-buffer):
7413 * textmodes/bibtex.el (bibtex-end-of-entry, bibtex-url):
7414 * textmodes/flyspell.el (flyspell-mode-on):
7415 * textmodes/page-ext.el (set-page-delimiter, pages-directory)
7416 (pages-directory-for-addresses):
7417 * textmodes/table.el (table-recognize-cell)
7418 (table-query-dimension, table-generate-source)
7419 (table-insert-sequence, table--warn-incompatibility):
7420 * textmodes/tex-mode.el (tex-validate-buffer):
7421 * textmodes/texinfmt.el (texinfmt-version)
7422 (texinfo-format-buffer):
7423 Use `called-interactively-p' instead of `interactive-p'.
7424
7425 2009-10-02 Juanma Barranquero <lekktu@gmail.com>
7426
7427 * image-mode.el (image-toggle-display):
7428 * emacs-lisp/elp.el (elp-instrument-function):
7429 * emacs-lisp/advice.el (ad-make-advised-definition):
7430 * emacs-lisp/easy-mmode.el (define-minor-mode):
7431 * net/browse-url.el (browse-url-maybe-new-window):
7432 * progmodes/sh-script.el (sh-learn-buffer-indent):
7433 Pass new argument 'any to `called-interactively-p'.
7434
7435 2009-10-01 Juanma Barranquero <lekktu@gmail.com>
7436
7437 * international/uni-bidi.el:
7438 * international/uni-category.el:
7439 * international/uni-combining.el:
7440 * international/uni-comment.el:
7441 * international/uni-decimal.el:
7442 * international/uni-decomposition.el:
7443 * international/uni-digit.el:
7444 * international/uni-lowercase.el:
7445 * international/uni-mirrored.el:
7446 * international/uni-name.el:
7447 * international/uni-numeric.el:
7448 * international/uni-old-name.el:
7449 * international/uni-titlecase.el:
7450 * international/uni-uppercase.el:
7451 Regenerate from Unicode 5.2.0 data.
7452
7453 2009-10-01 Glenn Morris <rgm@gnu.org>
7454
7455 * Makefile.in (ELCFILES): Regenerate.
7456
7457 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
7458
7459 * subr.el (interactive-p): Mark obsolete.
7460 (called-interactively-p): Make the optional-ness of `kind' obsolete.
7461 * emacs-lisp/bytecomp.el (byte-compile-fdefinition): Make it obey
7462 advertised-signature-table for subroutines as well.
7463
7464 * emacs-lisp/byte-run.el (advertised-signature-table): New var.
7465 (set-advertised-calling-convention): New function.
7466 (make-obsolete, define-obsolete-function-alias)
7467 (make-obsolete-variable, define-obsolete-variable-alias):
7468 Make the optional-ness of `when' obsolete.
7469 (define-obsolete-face-alias): Make `when' non-optional.
7470 * help-fns.el (help-function-arglist):
7471 * emacs-lisp/bytecomp.el (byte-compile-fdefinition):
7472 Use advertised-signature-table.
7473
7474 2009-10-01 Michael Albinus <michael.albinus@gmx.de>
7475
7476 * files.el (delete-directory): New defun. The original function
7477 in fileio.c has been renamed to `delete-directory-internal'.
7478
7479 * dired.el (dired-delete-file): Call `delete-directory' with
7480 RECURSIVE parameter.
7481
7482 * net/ange-ftp.el (ange-ftp-delete-directory): Add optional
7483 parameter RECURSIVE. Implementation is missing.
7484
7485 * net/tramp.el (tramp-handle-make-directory): Flush upper
7486 directory's file properties.
7487 (tramp-handle-delete-directory): Handle optional parameter RECURSIVE.
7488 (tramp-handle-dired-recursive-delete-directory): Flush directory
7489 properties after the remove command only.
7490
7491 * net/tramp-fish.el (tramp-fish-handle-delete-directory):
7492 Handle optional parameter RECURSIVE.
7493
7494 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory):
7495 Handle optional parameter RECURSIVE.
7496
7497 * net/tramp-smb.el (tramp-smb-errors): Add error message for
7498 connection timeout.
7499 (tramp-smb-handle-delete-directory): Handle optional parameter
7500 RECURSIVE.
7501
7502 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
7503
7504 * emacs-lisp/bytecomp.el (byte-compile-defmacro-declaration): New fun.
7505 (byte-compile-file-form-defmumble, byte-compile-defmacro): Use it.
7506 (byte-compile-defmacro): Use backquotes.
7507
7508 * files.el (cd-absolute): Don't abbreviate-file-name (bug#4599).
7509
7510 * vc-dispatcher.el (vc-resynch-window): Don't revert a buffer which
7511 has no associated file.
7512 (vc-resynch-buffer): Use vc-dir-buffers.
7513
7514 2009-10-01 Glenn Morris <rgm@gnu.org>
7515
7516 * emacs-lisp/chart.el (chart-zap-chars, chart-bar-quickie)
7517 (chart-file-count):
7518 * emacs-lisp/eieio-comp.el (byte-compile-defmethod-param-convert):
7519 * emacs-lisp/eieio-datadebug.el (data-debug-insert-object-button):
7520 * emacs-lisp/eieio-opt.el (eieio-describe-class):
7521 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-create):
7522 * emacs-lisp/eieio.el (defclass, eieio-defclass-autoload)
7523 (eieio-copy-parents-into-subclass, make-instance, class-children)
7524 (eieio-generic-form):
7525
7526 * vc-cvs.el (vc-cvs-parse-entry): Be more careful with the
7527 match-data. (Bug#4555).
7528
7529 * emacs-lisp/check-declare.el (check-declare-scan): Read the declaration
7530 rather than parsing it as a regexp. This relaxes the layout
7531 requirements and makes errors easier to detect.
7532 (check-declare-verify): Check file is regular.
7533 (check-declare-directory): Doc fix.
7534 * subr.el (declare-function): Doc fix.
7535
7536 * ibuffer.el (ibuffer-format-qualifier):
7537 * isearch.el (hi-lock-regexp-okay):
7538 * calc/calc.el (math-zerop):
7539 * mail/uce.el (rmail-msgbeg, rmail-msgend):
7540 * term/w32-win.el (setup-default-fontset, set-fontset-font):
7541 Remove unused declarations.
7542
7543 2009-09-30 Glenn Morris <rgm@gnu.org>
7544
7545 * emacs-lisp/authors.el (authors-ignored-files): Add "js2-mode.el".
7546
7547 * emacs-lisp/elint.el (elint-init-form): Report declarations where the
7548 filename is not a string.
7549
7550 2009-09-29 Chong Yidong <cyd@stupidchicken.com>
7551
7552 * files.el (safe-local-eval-forms): Fix typo.
7553
7554 2009-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
7555
7556 * vc-hooks.el (vc-dir-buffers): New var.
7557 (vc-state-refresh): New function.
7558 (vc-state): Use it.
7559 (vc-after-save): Always ask the backend to recompute the new state.
7560 Always call vc-dir if necessary, using vc-dir-buffers.
7561 * vc-dir.el (vc-dir-prepare-status-buffer, vc-dir-resynch-file):
7562 Use vc-dir-buffers.
7563 (vc-dir-mode): Use vc-dir-buffers rather than after-save-hook.
7564 (vc-dir-prepare-status-buffer, vc-dir-update)
7565 (vc-dir-resync-directory-files, vc-dir-resynch-file, vc-dir-mode):
7566 Don't call expand-file-name on default-directory.
7567
7568 2009-09-29 Juanma Barranquero <lekktu@gmail.com>
7569
7570 * speedbar.el (speedbar-item-delete):
7571 * calc/calc-prog.el (calc-kbd-if):
7572 * language/hanja-util.el (hanja-init-load): Fix typos in messages.
7573
7574 * epa.el (epa-key-list-mode-map):
7575 * hi-lock.el (hi-lock-menu): Fix typos in menus.
7576
7577 * progmodes/hideshow.el (hs-allow-nesting): Reflow docstring.
7578 (hs-show-hook): Fix typo in docstring.
7579
7580 2009-09-29 Glenn Morris <rgm@gnu.org>
7581
7582 * emacs-lisp/check-declare.el (check-declare-locate): Remove pointless
7583 file-name-nondirectory call preventing location of cedet files.
7584 (check-declare-verify): Use literal search rather than re-search.
7585 Add basic defmethod and defclass, and define-overloadable-function.
7586
7587 * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
7588 Use tramp-compat-file-attributes rather than nonexistent
7589 tramp-compat-handle-file-attributes.
7590
7591 * Makefile.in (lisptagsfiles4): New.
7592 (AUTOGENEL): Add cedet loaddefs files.
7593 (TAGS, TAGS-LISP): Use $lisptagsfiles4.
7594 (update-elclist, compile-always, backup-compiled-files)
7595 (bootstrap-clean): Add yet another directory level.
7596 (update-elclist): Use LC_COLLATE rather than COLLATE.
7597 (ELCFILES): Update, via `make update-elclist'.
7598
7599 2009-09-29 Juanma Barranquero <lekktu@gmail.com>
7600
7601 * makefile.w32-in (WINS_CEDET, WINS_BASIC, WINS_SUBDIR): New macros.
7602 (WINS_ALMOST): Set from WINS_BASIC and WINS_CEDET.
7603 (update-subdirs-CMD): Use WINS_SUBDIR, not WINS_ALMOST.
7604
7605 2009-09-28 Andreas Schwab <schwab@linux-m68k.org>
7606
7607 * Makefile.in (lisptagsfiles3): Define.
7608 (TAGS, TAGS-LISP): Use it.
7609 (update-elclist): Add third directory level to look for elc files.
7610 (compile-always): Likewise.
7611 (backup-compiled-files): Likewise.
7612 (bootstrap-clean): Likewise.
7613 (ELCFILES): Update.
7614
7615 2009-09-28 Chong Yidong <cyd@stupidchicken.com>
7616
7617 * Makefile.in (ELCFILES): Add CEDET files.
7618
7619 2009-09-28 Michael Albinus <michael.albinus@gmx.de>
7620
7621 * Makefile.in (ELCFILES): Add net/tramp-imap.elc.
7622
7623 * net/tramp.el (top): Require tramp-imap.
7624
7625 * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
7626 Use `tramp-compat-handle-file-attributes'.
7627
7628 2009-09-28 Teodor Zlatanov <tzz@lifelogs.com>
7629
7630 * net/tramp-imap.el: New package.
7631
7632 2009-09-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
7633
7634 * whitespace.el (whitespace-trailing-regexp)
7635 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
7636 Fix doc string.
7637
7638 2009-09-27 Chong Yidong <cyd@stupidchicken.com>
7639
7640 * menu-bar.el: Remove menu-bar-ediff-misc-menu from the Tools
7641 menu.
7642
7643 * ediff-hook.el: Move menu-bar-ediff-misc-menu into
7644 menu-bar-ediff-menu.
7645
7646 * emacs-lisp/lisp-mode.el: Add doc-string-elt property to
7647 define-overloadable-function.
7648
7649 * progmodes/autoconf.el: Provide autoconf as well, so that this
7650 file can be `require'd.
7651
7652 * emacs-lisp/cl-macs.el (deftype): Add to cl-loaddefs.
7653
7654 * emacs-lisp/autoload.el (generated-autoload-feature)
7655 (generated-autoload-load-name): New vars.
7656 (autoload-rubric, autoload-generate-file-autoloads): Use them.
7657 (make-autoload): Recognize define-overloadable-function and
7658 defclass forms (for EIEIO).
7659
7660 * Makefile.in (update-subdirs): Exclude cedet directory.
7661
7662 2009-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
7663
7664 * term/ns-win.el: Don't set the region face background. (Bug#4381)
7665
7666 * faces.el: Default light-background background for region face to
7667 ns_selection_color under NS.
7668
7669 2009-09-27 Teodor Zlatanov <tzz@lifelogs.com>
7670
7671 * net/imap-hash.el: New library, see NEWS.
7672
7673 * Makefile.in (ELCFILES): Add imap-hash.el.
7674
7675 2009-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
7676
7677 * help.el (help-for-help-internal): Don't purecopy the text (bug#4560).
7678 * isearch.el (isearch-help-for-help-internal): Purecopy the second arg.
7679 * help-macro.el (make-help-screen): Avoid using an ambiguous function
7680 definition where the docstring could be taken for the return value.
7681
7682 2009-09-26 Glenn Morris <rgm@gnu.org>
7683
7684 * mail/rmailmm.el (rmail-mime-show-images, rmail-mime-bulk-handler):
7685 Add option to only show images below a certain size.
7686 (rmail-mime-multipart-handler): Remove unnecessary save-match-data and
7687 save-excursion calls.
7688
7689 2009-09-26 Eli Zaretskii <eliz@gnu.org>
7690
7691 * makefile.w32-in (WINS_ALMOST): Add cedet (with its
7692 subdirectories) and eieio.
7693
7694 2009-09-26 Alan Mackenzie <acm@muc.de>
7695
7696 * progmodes/cc-engine.el (c-beginning-of-statement-1): Correct
7697 buggy bracketing. (Bug#4289)
7698
7699 * progmodes/cc-langs.el (c-nonlabel-token-key): Allow quoted
7700 character constants (as case labels). (Bug#4289)
7701
7702 2009-09-25 Juri Linkov <juri@jurta.org>
7703
7704 * files.el (safe-local-eval-forms): Allow time-stamp in
7705 before-save-hook (Bug#4554).
7706
7707 2009-09-25 Drew Adams <drew.adams@oracle.com>
7708
7709 * menu-bar.el (list-buffers-directory): Doc fix.
7710
7711 2009-09-25 Stefan Monnier <monnier@iro.umontreal.ca>
7712
7713 * log-edit.el (log-edit-changelog-entries): Avoid inf-loops.
7714 Try and avoid copying twice the same paragraph.
7715 (log-edit-changelog-paragraph, log-edit-changelog-subparagraph):
7716 Remove save-excursion.
7717 (log-edit-changelog-entry): Do it here instead.
7718
7719 2009-09-25 Juanma Barranquero <lekktu@gmail.com>
7720
7721 * bs.el (bs--get-file-name): Use `list-buffers-directory'
7722 when available, instead of hardcoding mode names. Doc fix.
7723
7724 * menu-bar.el (list-buffers-directory): Add docstring.
7725 Make automatically buffer-local.
7726
7727 * dired.el (dired-mode):
7728 * files.el (cd-absolute):
7729 * pcvs.el (cvs-temp-buffer):
7730 * pcvs-util.el (cvs-get-buffer-create):
7731 * shell.el (shell-mode):
7732 * vc-dir.el (vc-dir-mode):
7733 Don't make `list-buffers-directory' buffer local.
7734
7735 2009-09-25 Devon Sean McCullough <emacs-hacker@Jovi.Net>
7736
7737 * comint.el (comint-exec, comint-run, make-comint):
7738 Doc fixes (Bug#4542).
7739
7740 2009-09-25 Glenn Morris <rgm@gnu.org>
7741
7742 * mail/rmailmm.el (rmail-mime): New custom group.
7743 Move all defcustoms in this file into this group.
7744 (rmail-mime-media-type-handlers-alist): Revert previous change.
7745 (rmail-mime-show-images): New option.
7746 (rmail-mime-total-number-of-bulk-attachments): Remove variable and all
7747 references to it, since it wasn't actually used for anything.
7748 (rmail-mime-insert-image): New function.
7749 (rmail-mime-image): Use rmail-mime-insert-image.
7750 (rmail-mime-bulk-handler): Remove optional `image' argument, instead
7751 obey the value of `rmail-mime-show-images' option. Print the size of
7752 attachments.
7753
7754 2009-09-25 David Engster <deng@randomsample.de>
7755
7756 * progmodes/hideshow.el (hs-show-block): Run `hs-show-hook'. (Bug#4548)
7757
7758 2009-09-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
7759
7760 * whitespace.el: Does not highlight trailing spaces While point is
7761 at end of line. Does not highligt spaces at beginning of buffer
7762 while point is at beginning of buffer. Does not highlight spaces
7763 at end of buffer while point is at end of buffer. (Bug#4177)
7764 New version 12.0.
7765 (whitespace-display-mappings): Adjust initialization.
7766 (whitespace-point, whitespace-font-lock-refontify): New vars.
7767 (whitespace-color-on, whitespace-color-off): Adjust code.
7768 (whitespace-trailing-regexp, whitespace-empty-at-bob-regexp)
7769 (whitespace-empty-at-eob-regexp, whitespace-space-regexp)
7770 (whitespace-tab-regexp, whitespace-post-command-hook): New funs.
7771
7772 2009-09-24 Chong Yidong <cyd@stupidchicken.com>
7773
7774 * nxml/nxml-mode.el: Alias xml-mode to nxml-mode.
7775
7776 * textmodes/sgml-mode.el: Remove xml-mode alias.
7777
7778 * files.el (auto-mode-alist, conf-mode-maybe)
7779 (magic-fallback-mode-alist): Revert 2009-09-18 and 2009-09-21 changes.
7780
7781 2009-09-24 Alan Mackenzie <acm@muc.de>
7782
7783 * progmodes/cc-cmds.el (c-scan-conditionals): A new function like
7784 c-forward-conditionals, but it doesn't move point and doesn't set
7785 the mark.
7786 (c-up-conditional, c-up-conditional-with-else, c-down-conditional)
7787 (c-down-conditional-with-else, c-backward-conditional)
7788 (c-forward-conditional): Refactor to use c-scan-conditionals.
7789
7790 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
7791
7792 * help-fns.el (help-downcase-arguments): New option, defaulting to nil.
7793 (help-default-arg-highlight): Remove.
7794 (help-highlight-arg): New function.
7795 (help-do-arg-highlight): Use it.
7796 Suggested by Drew Adams <drew.adams@oracle.com>. (Bug#4510, bug#4520)
7797
7798 2009-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
7799
7800 * term.el (term-set-scroll-region, term-handle-ansi-escape):
7801 Undo last change, which didn't fix the problem and introduced others.
7802
7803 2009-09-24 Nick Roberts <nickrob@snap.net.nz>
7804
7805 * progmodes/gdb-mi.el: Don't require speedbar.
7806 (gdb-jsonify-buffer): Handle case where "=" is part of value string.
7807
7808 2009-09-24 Glenn Morris <rgm@gnu.org>
7809
7810 * calendar/diary-lib.el (diary-fancy-display): Always run the hook.
7811
7812 * term/ns-win.el (ns-reg-to-script): Define for compiler.
7813
7814 * mail/rmailmm.el (rmail-mime-multipart-handler): Accept the case where
7815 there is no newline after the final mime boundary. (Bug#4539)
7816 Move markers on insertion so that any buttons inserted don't end up in
7817 the next part of a multipart message.
7818 (rmail-mime-media-type-handlers-alist): Doc fix. Add image handler.
7819 (rmail-mime-bulk-handler): Optionally handle images.
7820 (rmail-mime-image): New button action.
7821 (rmail-mime-image-handler): New function.
7822 (rmail-mime-mode): New mode.
7823 (rmail-mime): Doc fix. Use rmail-mime-mode (for font-lock).
7824
7825 2009-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
7826
7827 * minibuffer.el (minibuffer-force-complete): Cycle the list, rather
7828 than just dropping elements from it (bug#4504).
7829
7830 * term.el (term-set-scroll-region): Don't move cursor any more.
7831 (term-handle-ansi-escape): Call term-goto here instead.
7832 Suggested by Ivan Kanis <apple@kanis.eu>.
7833
7834 * term.el: Require CL.
7835 (term-ansi-reset): New function.
7836 (term-mode, term-emulate-terminal, term-handle-colors-array): Use it.
7837 (term-handle-colors-array): Simplify.
7838
7839 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
7840
7841 * allout.el (allout-overlay-interior-modification-handler)
7842 (allout-obtain-passphrase):
7843 * epa-file.el (epa-file-write-region):
7844 * ps-print.el (ps-begin-job):
7845 * vc-hooks.el (vc-toggle-read-only):
7846 * vc-rcs.el (vc-rcs-rollback):
7847 * vc-sccs.el (vc-sccs-rollback):
7848 * vc.el (vc-deduce-fileset, vc-next-action, vc-register-with)
7849 (vc-version-diff, vc-revert, vc-rollback):
7850 * wdired.el (wdired-check-kill-buffer):
7851 * emacs-lisp/authors.el (authors):
7852 * net/socks.el (socks-open-connection):
7853 * net/zeroconf.el (zeroconf-service-add-hook):
7854 * obsolete/vc-mcvs.el (vc-mcvs-register):
7855 * progmodes/gdb-mi.el (def-gdb-thread-buffer-gud-command)
7856 (gdb-select-frame):
7857 * progmodes/grep.el (lgrep, rgrep):
7858 * progmodes/idlw-help.el (idlwave-help-check-locations)
7859 (idlwave-help-html-link, idlwave-help-assistant-open-link):
7860 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
7861 * textmodes/reftex-toc.el (reftex-toc-promote-prepare)
7862 (reftex-toc-rename-label): Fix typos in error messages.
7863
7864 * dired-aux.el (dired-do-shell-command): Reflow docstring.
7865 (dired-copy-how-to-fn): Doc fix.
7866 (dired-files-attributes, dired-read-shell-command):
7867 Fix typos in docstrings.
7868
7869 * dired-x.el (dired-enable-local-variables, dired-filename-at-point)
7870 (dired-x-find-file-other-window): Reflow docstrings.
7871 (dired-omit-marker-char, dired-read-shell-command)
7872 (dired-x-submit-report): Fix typos in docstrings.
7873
7874 * shell.el (shell-mode-hook):
7875 * view.el (View-scroll-line-forward):
7876 * progmodes/inf-lisp.el (inferior-lisp-mode-hook):
7877 Fix typos in docstrings.
7878
7879 * net/dig.el (dig-invoke): Fix typo in docstring.
7880 (query-dig): Reflow docstring.
7881
7882 * progmodes/idlwave.el (idlwave-create-user-catalog-file)
7883 (idlwave-quoted, idlwave-rinfo-max-source-lines): Doc fixes.
7884 (idlwave-abbrev-move, idlwave-auto-routine-info-updates)
7885 (idlwave-begin-block-reg, idlwave-begin-unit-reg)
7886 (idlwave-beginning-of-subprogram, idlwave-block-jump-out)
7887 (idlwave-block-match-regexp, idlwave-calculate-paren-indent)
7888 (idlwave-check-abbrev, idlwave-class-file-or-buffer)
7889 (idlwave-class-found-in, idlwave-complete, idlwave-complete-in-buffer)
7890 (idlwave-completion-map, idlwave-current-indent)
7891 (idlwave-custom-ampersand-surround, idlwave-customize)
7892 (idlwave-default-font-lock-items, idlwave-default-insert-timestamp)
7893 (idlwave-define-abbrev, idlwave-determine-class-special)
7894 (idlwave-do-action, idlwave-doc-header, idlwave-doc-modification)
7895 (idlwave-end-block-reg, idlwave-end-of-statement)
7896 (idlwave-end-of-statement0, idlwave-end-of-subprogram)
7897 (idlwave-end-unit-reg, idlwave-entry-find-keyword)
7898 (idlwave-explicit-class-listed, idlwave-file-header)
7899 (idlwave-fill-paragraph, idlwave-find-class-definition)
7900 (idlwave-fix-keywords, idlwave-hang-indent-regexp, idlwave-hard-tab)
7901 (idlwave-idlwave_routine_info-compiled, idlwave-in-comment)
7902 (idlwave-in-quote, idlwave-indent-action-table)
7903 (idlwave-indent-expand-table, idlwave-indent-line)
7904 (idlwave-indent-subprogram, idlwave-indent-to-open-paren)
7905 (idlwave-is-comment-line, idlwave-is-comment-or-empty-line)
7906 (idlwave-is-continuation-line, idlwave-is-pointer-dereference)
7907 (idlwave-kill-autoloaded-buffers, idlwave-lib-p, idlwave-look-at)
7908 (idlwave-make-tags, idlwave-mode, idlwave-mode-abbrev-table)
7909 (idlwave-mouse-active-rinfo, idlwave-newline, idlwave-no-change-comment)
7910 (idlwave-outlawed-buffers, idlwave-popup-select)
7911 (idlwave-previous-statement, idlwave-rescan-catalog-directories)
7912 (idlwave-routine-entry-compare, idlwave-routine-info.pro)
7913 (idlwave-scan-all-buffers-for-routine-info, idlwave-scan-class-info)
7914 (idlwave-shell-automatic-start, idlwave-shell-explicit-file-name)
7915 (idlwave-show-begin, idlwave-split-line, idlwave-split-link-target)
7916 (idlwave-statement-type, idlwave-struct-skip)
7917 (idlwave-substitute-link-target, idlwave-toggle-comment-region)
7918 (idlwave-update-current-buffer-info, idlwave-use-library-catalogs)
7919 (idlwave-what-module-find-class): Fix typos in docstrings.
7920 (idlwave-all-method-classes, idlwave-calc-hanging-indent)
7921 (idlwave-calculate-cont-indent, idlwave-expand-equal)
7922 (idlwave-find-module, idlwave-find-structure-definition)
7923 (idlwave-init-rinfo-when-idle-after, idlwave-insert-source-location)
7924 (idlwave-list-load-path-shadows, idlwave-next-statement)
7925 (idlwave-routine-entry-compare-twins, idlwave-routine-info)
7926 (idlwave-routines, idlwave-sintern-rinfo-list, idlwave-statement-match)
7927 (idlwave-template): Reflow docstrings.
7928
7929 * progmodes/idlw-shell.el (idlwave-shell-syntax-error): Doc fix.
7930 (idlwave-shell-batch-command, idlwave-shell-bp-alist)
7931 (idlwave-shell-bp-get, idlwave-shell-bp-overlays)
7932 (idlwave-shell-bp-query, idlwave-shell-break-here, idlwave-shell-buffer)
7933 (idlwave-shell-display-line, idlwave-shell-display-wframe)
7934 (idlwave-shell-electric-debug-mode, idlwave-shell-examine-select)
7935 (idlwave-shell-file-name-chars, idlwave-shell-filter-bp)
7936 (idlwave-shell-goto-frame, idlwave-shell-halt-messages-re)
7937 (idlwave-shell-highlighting-and-faces, idlwave-shell-idl-wframe)
7938 (idlwave-shell-mode-hook, idlwave-shell-mode-line-info)
7939 (idlwave-shell-mode-map, idlwave-shell-module-source-filter)
7940 (idlwave-shell-mouse-help, idlwave-shell-mouse-print)
7941 (idlwave-shell-pc-frame, idlwave-shell-pending-commands)
7942 (idlwave-shell-print, idlwave-shell-quit, idlwave-shell-redisplay)
7943 (idlwave-shell-scan-for-state, idlwave-shell-send-command)
7944 (idlwave-shell-sentinel-hook, idlwave-shell-separate-examine-output)
7945 (idlwave-shell-shell-command, idlwave-shell-sources-alist)
7946 (idlwave-shell-sources-bp, idlwave-shell-sources-filter)
7947 (idlwave-shell-step, idlwave-shell-use-breakpoint-glyph)
7948 (idlwave-toolbar-add-everywhere, idlwave-toolbar-toggle):
7949 Fix typos in docstrings.
7950 (idlwave-shell-bp, idlwave-shell-clear-current-bp)
7951 (idlwave-shell-hide-output, idlwave-shell-mode)
7952 (idlwave-shell-run-region, idlwave-shell-set-bp-in-module):
7953 Reflow docstrings.
7954
7955 * textmodes/bibtex.el (bibtex-sort-entry-class): Fix group name.
7956
7957 2009-09-24 Ivan Kanis <apple@kanis.eu>
7958
7959 * term.el (term-bold-attribute): New var.
7960 (term-handle-colors-array): Use it.
7961
7962 2009-09-23 Nick Roberts <nickrob@snap.net.nz>
7963
7964 * progmodes/gdb-mi.el (gdb-version): New variable.
7965 (gdb-non-stop-handler): Set gdb-version.
7966 (gdb-gud-context-command, gdb-current-context-command, gdb-stopped):
7967 Condition "--thread" option on gdb-version.
7968 (gdb-invalidate-threads): Remove unused argument.
7969
7970 2009-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
7971
7972 * textmodes/flyspell.el (sgml-mode-flyspell-verify): Pass limit args
7973 to looking-back to avoid ridiculous slow down in large files (bug#4511).
7974
7975 2009-09-23 Glenn Morris <rgm@gnu.org>
7976
7977 * mail/rmail.el (rmail-reply): Don't try to add a References header when
7978 replying to mail without References or Message-Id. (Bug#4525)
7979
7980 2009-09-23 Adrian Robert <Adrian.B.Robert@gmail.com>
7981
7982 * term/ns-win.el (ns-reg-to-script): New variable.
7983
7984 2009-09-23 Daiki Ueno <ueno@unixuser.org>
7985
7986 * epg.el (epg-wait-for-status): Preserve existing 'error results.
7987
7988 2009-09-22 Sam Steingold <sds@gnu.org>
7989
7990 * vc-hg.el (vc-hg-print-log): Fix shortlog arg passing.
7991 (vc-hg-outgoing, vc-hg-incoming): Bump okstatus in `vc-hg-command'
7992 to 1 because hg returns status 1 when nothing is found.
7993 Bind `vc-short-log' for the sake of `vc-hg-log-view-mode'.
7994
7995 2009-09-22 Stefan Monnier <monnier@iro.umontreal.ca>
7996
7997 * textmodes/fill.el: Convert to utf-8 encoding.
7998 (fill-french-nobreak-p): Remove redundant » and « inherited from our
7999 pre-unicode days.
8000
8001 * add-log.el (change-log-fill-forward-paragraph): New function.
8002 (change-log-mode): Use it so fill-region DTRT.
8003 Set fill-indent-according-to-mode here rather than in
8004 change-log-fill-paragraph.
8005 (change-log-fill-paragraph): Remove.
8006
8007 2009-09-22 Juanma Barranquero <lekktu@gmail.com>
8008
8009 * info.el (Info-try-follow-nearest-node): Use the URL extracted by
8010 `Info-get-token', instead of `browse-url-url-at-point'. (Bug#4508)
8011
8012 2009-09-22 Glenn Morris <rgm@gnu.org>
8013
8014 * calendar/calendar.el (calendar-mode-map): Make mouse-1 and 3 clicks on
8015 the scroll-bar scroll the calendar window rather than the buffer.
8016
8017 * calendar/cal-menu.el (cal-menu-scroll-menu): Add a sub-section with
8018 commands that move point (as opposed to scrolling).
8019
8020 * emulation/tpu-edt.el (tpu-copy-keyfile): Fix condition-case handler.
8021
8022 * emacs-lisp/elint.el (elint): New custom group.
8023 (elint-log-buffer): Make it a defcustom.
8024 (elint-scan-preloaded, elint-ignored-warnings)
8025 (elint-directory-skip-re): New options.
8026 (elint-builtin-variables): Doc fix.
8027 (elint-preloaded-env): New variable.
8028 (elint-unknown-builtin-args): Add an entry for encode-time.
8029 (elint-extra-errors): Make it a variable rather than a constant.
8030 (elint-preloaded-skip-re): New constant.
8031 (elint-directory): Skip files matching elint-directory-skip-re.
8032 (elint-features): New variable, local to linted buffers.
8033 (elint-update-env): Initialize elint-features. Possibly add
8034 elint-preloaded-env to the buffer's environment.
8035 (elint-get-top-forms): Bind elint-current-pos, for log messages.
8036 Skip quoted forms.
8037 (elint-init-form): New function, extracted from elint-init-env.
8038 Make non-list forms a warning rather than an error.
8039 Add the mode-map for define-derived-mode. Handle define-minor-mode,
8040 easy-menu-define, put that adds an error-condition, and provide.
8041 When requiring cl, also require cl-macs. Really require cl, to handle
8042 some cl macros. Store required libraries in the list elint-features,
8043 so as not to re-load them. Treat cc-require like require.
8044 (elint-init-env): Call elint-init-form to do the work.
8045 Handle eval-and-compile and such like.
8046 (elint-add-required-env): Do not clear messages.
8047 (elint-special-forms): Add handlers for function, defalias, if, when,
8048 unless, and, or.
8049 (elint-form): Add optional argument to ignore elint-special-forms,
8050 useful to prevent recursive calls from handlers. Doc fix.
8051 Respect elint-ignored-warnings.
8052 (elint-form): Respect elint-ignored-warnings.
8053 (elint-bound-variable, elint-bound-function): New variables.
8054 (elint-unbound-variable): Respect elint-bound-variable.
8055 (elint-get-args): Respect elint-bound-function.
8056 (elint-check-cond-form): Add some simple handling for (f)boundp and
8057 featurep tests.
8058 (elint-check-defalias-form): New handler.
8059 (elint-check-let-form): Make an empty let a warning rather than an
8060 error.
8061 (elint-check-setq-form): Make an empty setq a warning rather than an
8062 error. Respect elint-ignored-warnings.
8063 (elint-check-defvar-form): Accept null doc-strings.
8064 (elint-check-conditional-form): New handler. Does some simple-minded
8065 checking of featurep and (f)boundp tests.
8066 (elint-put-function-args): New function.
8067 (elint-initialize): Use elint-scan-doc-file rather than
8068 elint-find-builtin-variables. Use elint-put-function-args.
8069 Possibly scan preloaded-file-list.
8070 (elint-scan-doc-file): Rename from elint-find-builtin-variables and
8071 extend to handle functions as well.
8072
8073 2009-09-22 Lennart Borgman <lennart.borgman@gmail.com>
8074
8075 * linum.el (linum-delete-overlays, linum-update-window):
8076 Do not modify the right margin. (Bug#3971)
8077
8078 2009-09-21 Chong Yidong <cyd@stupidchicken.com>
8079
8080 * files.el (conf-mode-maybe, magic-fallback-mode-alist): Use
8081 nxml-mode instead of xml-mode.
8082
8083 2009-09-21 Kevin Ryde <user42@zip.com.au>
8084
8085 * net/dig.el: Add "Keywords: comm", as per net-utils.el. (Bug#4501)
8086
8087 2009-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
8088
8089 * net/dig.el (dig-mode): Use define-derived-mode.
8090
8091 2009-09-20 Dan Nicolaescu <dann@ics.uci.edu>
8092
8093 * vc-dispatcher.el (vc-do-command): Return the process object in
8094 the asynchronous case. Use when instead of if. Do not run
8095 vc-exec-after to display a message if not enabled. (Bug#4463)
8096
8097 * vc-git.el (vc-git-dir-extra-headers): Add keymap and mouse-face
8098 properties to the stash strings.
8099 (vc-git-stash-list): Return a list of strings.
8100 (vc-git-stash-get-at-point, vc-git-stash-delete-at-point)
8101 (vc-git-stash-show-at-point): New functions.
8102 (vc-git-stash-map): New keymap.
8103
8104 * register.el (ctl-x-r-map): Define the keys here instead of
8105 using autoload.
8106
8107 2009-09-20 Thierry Volpiatto <thierry.volpiatto@gmail.com> (tiny change)
8108
8109 * bookmark.el (bookmark-write-file): Avoid calling `pp' with large
8110 list, to workaround performance problem (bug#4485).
8111
8112 2009-09-20 Nick Roberts <nickrob@snap.net.nz>
8113
8114 * progmodes/gud.el (gud-sentinel): Revert indavertant change.
8115
8116 2009-09-20 Daiki Ueno <ueno@unixuser.org>
8117
8118 * epa-file.el (epa-file-cache-passphrase-for-symmetric-encryption):
8119 Document that this option is not recommended to use.
8120
8121 2009-09-19 Glenn Morris <rgm@gnu.org>
8122
8123 * calc/calc-graph.el (calc-graph-lookup): Avoid assignment to free
8124 variable `var'.
8125
8126 * calc/calc-alg.el (var):
8127 * calc/calcalg2.el (var): Define for compiler.
8128
8129 2009-09-19 Chong Yidong <cyd@stupidchicken.com>
8130
8131 * emacs-lisp/advice.el (ad-get-argument, ad-set-argument):
8132 Doc fix (Bug#3932).
8133
8134 * subr.el (baud-rate): Remove long-obsolete function (Bug#4372).
8135
8136 * time-stamp.el (time-stamp-month-dd-yyyy)
8137 (time-stamp-dd/mm/yyyy, time-stamp-mon-dd-yyyy)
8138 (time-stamp-dd-mon-yy, time-stamp-yy/mm/dd)
8139 (time-stamp-yyyy/mm/dd, time-stamp-yyyy-mm-dd)
8140 (time-stamp-yymmdd, time-stamp-hh:mm:ss, time-stamp-hhmm):
8141 Remove functions that have been obsolete since 1995 (Bug#4436).
8142
8143 * progmodes/sh-script.el (sh-learn-buffer-indent): Pop to the
8144 indent buffer only if called interactively (Bug#4452).
8145
8146 2009-09-19 Juanma Barranquero <lekktu@gmail.com>
8147 Eli Zaretskii <eliz@gnu.org>
8148
8149 This fixes bug#4197 (merged to bug#865, though not identical).
8150 * server.el (server-auth-dir): Add docstring note about FAT32.
8151 (server-ensure-safe-dir): Accept FAT32 directories as "safe",
8152 but warn against using them.
8153
8154 2009-09-19 Nick Roberts <nickrob@snap.net.nz>
8155
8156 * progmodes/gdb-mi.el (gdb-var-update-handler-1): Include case of
8157 older GDB where there is no has_more field.
8158
8159 2009-09-19 Glenn Morris <rgm@gnu.org>
8160
8161 * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
8162
8163 2009-09-18 Chong Yidong <cyd@stupidchicken.com>
8164
8165 * files.el (auto-mode-alist): Change default for XML files to nXML
8166 mode (Bug#4169).
8167
8168 2009-09-18 Juanma Barranquero <lekktu@gmail.com>
8169
8170 * server.el (server-ensure-safe-dir): Pass 'integer
8171 to `file-attributes', as suggested.
8172
8173 2009-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
8174
8175 * dired-aux.el (dired-query-alist): Remove spurious backslash.
8176 (dired-query): Use read-key.
8177
8178 2009-09-18 Adrian Robert <Adrian.B.Robert@gmail.com>
8179
8180 * cus-start.el (ns-use-qd-smoothing): Remove.
8181
8182 2009-09-18 Glenn Morris <rgm@gnu.org>
8183
8184 * allout.el (top-level): Remove unnecessary progn.
8185
8186 * progmodes/js.el (js-end-of-defun): Remove malformed and unneeded let.
8187
8188 * emacs-lisp/derived.el (define-derived-mode): Fix paren typo in
8189 definition of abbrev table.
8190
8191 * speedbar.el (speedbar-track-mouse):
8192 * net/eudc-bob.el (eudc-bob-pipe-object-to-external-program):
8193 * net/eudc.el (eudc-expand-inline):
8194 * net/newst-backend.el (newsticker--cache-read-feed):
8195 * nxml/nxml-outln.el (nxml-end-of-heading): Fix typos in
8196 condition-case handlers.
8197
8198 2009-09-18 Nick Roberts <nickrob@snap.net.nz>
8199
8200 * progmodes/gdb-mi.el (gdb-frame-address): New variable.
8201 (gdb-var-list): Add an element for has_more field.
8202 (gdb-non-stop-handler): Enable pretty printing for STL containers.
8203 (gdb-var-create-handler, gdb-var-list-children-handler-1)
8204 (gdb-var-update-handler-1): Parse output of dynamic variable
8205 objects (STL containers).
8206 (gdb-var-delete-1): Pass var1 as an explicit second argument.
8207 (gdb-get-field): Delete alias. Use bindat-get-field directly.
8208
8209 * progmodes/gud.el (gud-speedbar-item-info): Adjust for change to
8210 gdb-var-list.
8211 (gud-speedbar-buttons): Make node expandable if expression "has more"
8212 children.
8213
8214 2009-09-17 Juanma Barranquero <lekktu@gmail.com>
8215
8216 * startup.el (emacs-quick-startup): Remove variable and all uses.
8217 (command-line): Set `inhibit-x-resources' instead.
8218 (command-line-1): Use `inhibit-x-resources' instead.
8219
8220 2009-09-17 Chong Yidong <cyd@stupidchicken.com>
8221
8222 * subr.el: Fix last change to avoid using the `unless' macro,
8223 which breaks bootstrapping.
8224
8225 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
8226
8227 * subr.el (push, pop, dolist, dotimes, declare): Don't overwrite CL's
8228 extended definitions, in case we reload subr.el after having
8229 loaded CL.
8230 (eval-next-after-load): Mark as obsolete.
8231
8232 2009-09-17 Juri Linkov <juri@jurta.org>
8233
8234 * menu-bar.el (menu-bar-search-menu, menu-bar-edit-menu)
8235 (menu-bar-options-menu, menu-bar-showhide-fringe-menu)
8236 (menu-bar-showhide-menu, menu-bar-tools-menu)
8237 (menu-bar-describe-menu, menu-bar-help-menu)
8238 (minibuffer-local-completion-map, minibuffer-local-map):
8239 Fix list quoting.
8240
8241 2009-09-17 Glenn Morris <rgm@gnu.org>
8242
8243 * emacs-lisp/bytecomp.el (byte-compile-form): Always check the function
8244 arguments, whether or not it has a handler.
8245
8246 * ansi-color.el (ansi-color-get-face-1): Fix typo in handler.
8247
8248 * simple.el (hard-newline): Give it a doc-string.
8249
8250 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
8251 (lisp-mode-syntax-table): Give them doc-strings.
8252
8253 2009-09-17 Dan Nicolaescu <dann@ics.uci.edu>
8254
8255 * menu-bar.el (menu-bar-file-menu, menu-bar-file-menu)
8256 (menu-bar-i-search-menu, menu-bar-edit-menu, menu-bar-custom-menu)
8257 (menu-bar-options-menu, menu-bar-showhide-menu)
8258 (menu-bar-showhide-fringe-ind-menu, menu-bar-showhide-fringe-menu)
8259 (menu-bar-showhide-scroll-bar-menu, menu-bar-showhide-menu)
8260 (menu-bar-options-menu, menu-bar-line-wrapping-menu)
8261 (menu-bar-options-menu, menu-bar-tools-menu)
8262 (menu-bar-describe-menu, menu-bar-search-documentation-menu)
8263 (menu-bar-help-menu):
8264 (menu-bar-make-mm-toggle, menu-bar-make-toggle): Purecopy the
8265 string arguments.
8266
8267 * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu)
8268 (menu-bar-epatch-menu, menu-bar-ediff-misc-menu): Add purecopy
8269 calls for the menu names and :help.
8270
8271 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
8272
8273 * mouse.el (minor-mode-menu-from-indicator): Pay attention
8274 to :minor-mode-function (bug#4455).
8275
8276 2009-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
8277
8278 * startup.el (command-line): Initialize the window-system after
8279 processing the command-line.
8280
8281 * textmodes/page.el (what-page): Make sure we don't inf-loop if
8282 page-delimiter matches the empty string.
8283
8284 2009-09-16 Glenn Morris <rgm@gnu.org>
8285
8286 * emacs-lisp/bytecomp.el (byte-compile-not-obsolete-vars): Rename from
8287 byte-compile-not-obsolete-var. It's a list now.
8288 (byte-compile-not-obsolete-funcs): New variable.
8289 (byte-compile-warn-obsolete): Don't warn about functions if they are in
8290 byte-compile-not-obsolete-funcs.
8291 (byte-compile-variable-ref, byte-compile-defvar): Update for
8292 byte-compile-not-obsolete-vars name-change and list nature.
8293 (byte-compile-maybe-guarded): Suppress warnings about obsolete functions
8294 and variables behind (f)boundp tests.
8295 * net/tramp-compat.el (byte-compile-not-obsolete-vars): Set if bound.
8296
8297 2009-09-15 Dan Nicolaescu <dann@ics.uci.edu>
8298
8299 * vc-git.el (vc-git-log-view-mode): Undo inadvertent change.
8300
8301 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
8302
8303 * Makefile.in (compile-onefile): Use byte-compile-refresh-preloaded.
8304 * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded):
8305 Don't autoload.
8306
8307 2009-09-15 Stephen Eglen <stephen@gnu.org>
8308
8309 * iswitchb.el (iswitchb-read-buffer): When selecting a match from
8310 the virtual-buffers, use the name of the buffer specified by
8311 find-file-noselect, as the match may be a symlink. (This was a
8312 problem if the target and the symlink had different names.)
8313
8314 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
8315
8316 * custom.el (custom-initialize-default, custom-initialize-set): CSE.
8317
8318 * desktop.el (desktop-path): Check user-emacs-directory.
8319
8320 * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded): New function.
8321
8322 * loadup.el: Use after-load-functions to GC after loading each file.
8323 Remove the explicit GC calls that used to be sprinkled around.
8324
8325 * subr.el (after-load-functions): New hook.
8326 (do-after-load-evaluation): Run it. Use string-match-p to detect
8327 `obsolete' packages, rather than painfully extracting the relevant
8328 directory name.
8329
8330 2009-09-15 Glenn Morris <rgm@gnu.org>
8331
8332 * apropos.el (apropos-documentation-check-doc-file): Avoid assignment to
8333 free variable `doc'.
8334
8335 * dired.el (dired-mode-map): Add menu entry for async shell command.
8336
8337 * help-fns.el (find-lisp-object-file-name): When looking for autoloaded
8338 variables, also consider the .elc files, since the .el files are
8339 normally gzipped (subsequent code locates the .el.gz from the .elc).
8340
8341 * calc/calc-prog.el (arglist): Define for compiler.
8342
8343 * calendar/diary-lib.el (diary-display-function): Change the default to
8344 fancy display.
8345 (body): Define for compiler.
8346
8347 * emacs-lisp/bytecomp.el (byte-compile-keep-pending)
8348 (byte-compile-file-form, byte-compile-lambda)
8349 (byte-compile-top-level-body, byte-compile-form)
8350 (byte-compile-variable-ref, byte-compile-setq)
8351 (byte-compile-setq-default, byte-compile-body)
8352 (byte-compile-body-do-effect, byte-compile-and, byte-compile-or)
8353 (batch-byte-compile): Give some more local variables with common names
8354 a "bytecomp-" prefix to avoid masking warnings about free variables.
8355
8356 * startup.el (command-line-1): Give local variables with common names a
8357 distinguishing prefix, so as not to hide free variable warnings during
8358 bootstrap.
8359
8360 * mail/rmailmm.el (rmail-mime-save): If file exists, don't try to be
8361 clever and add a suffix to make a unique name, just let the user decide
8362 whether or not to overwrite it. If the input is a directory, write the
8363 default filename to that directory. (Bug#4388)
8364 (rmail-mime-bulk-handler): Ensure the save button's 'directory property
8365 is a filename-as-a-directory.
8366
8367 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
8368
8369 * textmodes/page.el (what-page): Don't move to beginning of line.
8370 See <87tyz5ajte.fsf@x2.delysid.org> in emacs-devel.
8371
8372 2009-09-15 Dan Nicolaescu <dann@ics.uci.edu>
8373
8374 * vc-git.el (vc-git-dir-extra-headers): Show the remote location.
8375
8376 2009-09-14 Dan Nicolaescu <dann@ics.uci.edu>
8377
8378 * bindings.el (mode-line-mode-menu): Add purecopy calls for :help.
8379 * help.el (help-for-help-internal): Add purecopy calls for text.
8380
8381 * vc.el (top): print-log method now takes an optional SHORTLOG
8382 argument. Add a new method: root.
8383 (vc-root-diff, vc-print-root-log): New functions.
8384 (vc-log-short-style): New variable.
8385 (vc-print-log-internal): Add support for showing short logs.
8386
8387 * vc-hooks.el (vc-prefix-map, vc-menu-map): Add bindings for
8388 vc-print-root-log and vc-print-root-diff.
8389
8390 * vc-bzr.el (vc-bzr-log-view-mode, vc-bzr-print-log):
8391 * vc-git.el (vc-git-print-log, vc-git-log-view-mode):
8392 * vc-hg.el (vc-hg-print-log, vc-hg-log-view-mode): Add support for
8393 short logs.
8394
8395 * vc-cvs.el (vc-cvs-print-log):
8396 * vc-mtn.el (vc-mtn-print-log):
8397 * vc-rcs.el (vc-rcs-print-log):
8398 * vc-sccs.el (vc-sccs-print-log):
8399 * vc-svn.el (vc-svn-print-log): Add an optional argument shortlog
8400 that is ignored for now.
8401
8402 * vc-mtn.el (vc-mtn-annotate-command):
8403 * vc-svn.el (vc-svn-annotate-command): Run asynchronously.
8404
8405 2009-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
8406
8407 * simple.el: Add mapping for backspace/delete/clear/tab/escape/return
8408 to function-key-map, and give them ascii-character property.
8409 * term/x-win.el (x-alternatives-map):
8410 * term/ns-win.el (ns-alternatives-map):
8411 * term/internal.el (msdos-key-remapping-map):
8412 * w32-fns.el (x-alternatives-map): Remove redundant mappings.
8413
8414 2009-09-14 Glenn Morris <rgm@gnu.org>
8415
8416 * emacs-lisp/elint.el (elint-add-required-env): Revert to not using
8417 temp-buffers (2009-09-12).
8418
8419 2009-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
8420
8421 * textmodes/ispell.el (ispell-command-loop): Improve last fix, using
8422 the new read-key function.
8423
8424 2009-09-13 Chong Yidong <cyd@stupidchicken.com>
8425
8426 * term/x-win.el (x-menu-bar-open): Only call accelerate-menu if it
8427 is defined (Bug#4405).
8428
8429 2009-09-13 Vincent Belaïche <vincent.belaiche@gmail.com>
8430
8431 * recentf.el (recentf-cleanup): Use a hash table to find
8432 duplicates (Bug#4407).
8433
8434 2009-09-13 Per Starbäck <per@starback.se> (tiny change)
8435
8436 * textmodes/ispell.el (ispell-command-loop): Convert keys such as
8437 kp-0 to ascii equivalents (Bug#4325).
8438
8439 2009-09-13 Chong Yidong <cyd@stupidchicken.com>
8440
8441 * progmodes/cperl-mode.el (cperl-init-faces): Revert last change.
8442
8443 * eshell/em-hist.el:
8444 * eshell/em-dirs.el (eshell-complete-user-reference):
8445 Declare pcomplete functions and variables to avoid compiler warnings.
8446
8447 2009-09-13 Leo <sdl.web@gmail.com> (tiny change)
8448
8449 * eshell/em-script.el (eshell-login-script, eshell-rc-script):
8450 * eshell/em-dirs.el (eshell-last-dir-ring-file-name):
8451 * eshell/em-alias.el (eshell-aliases-file):
8452 * eshell/em-hist.el (eshell-history-file-name):
8453 Use expand-file-name instead of concat to make file names (Bug#4308).
8454
8455 2009-09-13 Glenn Morris <rgm@gnu.org>
8456
8457 * ediff-merg.el (ediff-do-merge):
8458 * filesets.el (filesets-run-cmd):
8459 * emulation/ws-mode.el (ws-show-markers, ws-move-block, ws-delete-block)
8460 (ws-find-marker-0, ws-find-marker-1, ws-find-marker-2, ws-find-marker-3)
8461 (ws-find-marker-4, ws-find-marker-5, ws-find-marker-6, ws-find-marker-7)
8462 (ws-find-marker-8, ws-find-marker-9, ws-goto-block-begin)
8463 (ws-goto-block-end, ws-goto-last-cursorposition, ws-copy-block):
8464 Replace empty `let's with `progn'.
8465
8466 2009-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
8467
8468 * mail/sendmail.el (send-mail-function):
8469 * tooltip.el (tooltip-mode):
8470 * simple.el (transient-mark-mode):
8471 * rfn-eshadow.el (file-name-shadow-mode):
8472 * frame.el (blink-cursor-mode):
8473 * font-core.el (global-font-lock-mode):
8474 * files.el (temporary-file-directory)
8475 (small-temporary-file-directory, auto-save-file-name-transforms):
8476 * epa-hook.el (auto-encryption-mode):
8477 * composite.el (global-auto-composition-mode):
8478 Use custom-initialize-delay.
8479 * startup.el (command-line): Don't explicitly call
8480 custom-reevaluate-setting for all the above vars.
8481 * custom.el (custom-initialize-safe-set)
8482 (custom-initialize-safe-default): Delete.
8483
8484 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
8485
8486 * term/x-win.el (x-initialize-window-system):
8487 * term/w32-win.el (w32-initialize-window-system):
8488 * term/ns-win.el (ns-initialize-window-system): Don't call
8489 mouse-wheel-mode since it's enabled globally by default already.
8490
8491 * mwheel.el (mouse-wheel-mode): Make sure the new defvar doesn't
8492 actually define the variable, but only silences the byte-compiler.
8493 (mouse-wheel-change-button): Check whether mouse-wheel-mode is bound
8494 before looking it up.
8495 (mouse-wheel-scroll-amount): Also reset the bindings if this value
8496 is changed.
8497
8498 2009-09-12 Glenn Morris <rgm@gnu.org>
8499
8500 * emacs-lisp/elint.el (elint-file): Make max-lisp-eval-depth at least
8501 1000.
8502 (elint-add-required-env): Don't beep on error.
8503 (elint-forms): In case of error, return ENV unchanged.
8504 (elint-init-env): Skip non-list forms.
8505 (elint-log): Handle unknown file positions.
8506
8507 2009-09-12 Daiki Ueno <ueno@unixuser.org>
8508
8509 * epg.el (epg-make-context): Add autoload cookie.
8510 (epg-list-keys, epg-cancel, epg-start-decrypt, epg-decrypt-file)
8511 (epg-decrypt-string, epg-start-verify, epg-verify-file)
8512 (epg-verify-string, epg-start-sign, epg-sign-file)
8513 (epg-sign-string, epg-start-encrypt, epg-encrypt-file)
8514 (epg-encrypt-string, epg-start-export-keys)
8515 (epg-export-keys-to-file, epg-export-keys-to-string)
8516 (epg-start-import-keys, epg-import-keys-from-file)
8517 (epg-import-keys-from-string, epg-start-receive-keys)
8518 (epg-receive-keys, epg-import-keys-from-server)
8519 (epg-start-delete-keys, epg-delete-keys, epg-start-sign-keys)
8520 (epg-sign-keys, epg-start-generate-key)
8521 (epg-generate-key-from-file, epg-generate-key-from-string):
8522 Remove autoload cookie.
8523
8524 2009-09-12 Eli Zaretskii <eliz@gnu.org>
8525
8526 * dos-fns.el (dos-reevaluate-defcustoms): Comment out the
8527 reevaluation of trash-directory.
8528
8529 * mwheel.el: Fix last change.
8530 (mouse-wheel-mode): New defvar.
8531 (mouse-wheel-mode): Remove autoload cookie.
8532
8533 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
8534
8535 * mwheel.el (mwheel-installed-bindings): New var.
8536 (mouse-wheel-mode): Use it, so as to make sure we really remove all
8537 the bindings we set last time. Use custom-initialize-delay.
8538 * loadup.el: Load mwheel after term/*-win.el.
8539 * startup.el (command-line): Don't reevaluate mouse-wheel-down-event
8540 and mouse-wheel-up-event now that their first evaluation is done
8541 sufficiently late to be correct.
8542
8543 * startup.el (tutorial-directory): Make it a defcustom.
8544 Use custom-initialize-delay rather than eval-at-startup to set it.
8545 * image.el (image-load-path): Make it a defcustom.
8546 Use custom-initialize-delay rather than eval-at-startup to set it.
8547 * subr.el (eval-at-startup): Remove.
8548 * font-lock.el (lisp-font-lock-keywords-2): Remove eval-at-startup.
8549
8550 * subr.el (do-after-load-evaluation): Warn the user after loading an
8551 obsolete package.
8552
8553 2009-09-12 Glenn Morris <rgm@gnu.org>
8554
8555 * proced.el (proced-mark-alt): Remove alias.
8556 (proced-mode-map): Remove proced-mark-alt.
8557
8558 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries to
8559 Elint file and directory. Remove initialization entry.
8560
8561 * emacs-lisp/elint.el (elint-file, elint-directory): New autoloaded
8562 commands.
8563 (elint-current-buffer): Set mode-line-process.
8564 (elint-init-env): Handle define-derived-mode.
8565 Fix declare-function with unspecified arglist. Guard against odd
8566 defalias statements (eg iso-insert's 8859-1-map).
8567 (elint-add-required-env): Use a temp buffer.
8568 (elint-form): Just print the function/macro name, not the whole form.
8569 Return env unchanged if we fail to parse a macro.
8570 (elint-forms): Guard against parse errors.
8571 (elint-output): New function, to handle batch mode.
8572 (elint-log-message): Add optional argument. Use elint-output.
8573 (elint-set-mode-line): New function.
8574
8575 2009-09-12 Andreas Politz <politza@fh-trier.de> (tiny change)
8576
8577 * emacs-lisp/elp.el (elp-not-profilable): Add more
8578 functions (Bug#4233).
8579
8580 2009-09-12 Chong Yidong <cyd@stupidchicken.com>
8581
8582 * emulation/pc-select.el (scroll-down-mark, scroll-down-nomark)
8583 (scroll-up-mark, scroll-up-nomark): Doc fix (Bug#4190).
8584
8585 2009-09-11 Nick Roberts <nickrob@snap.net.nz>
8586
8587 * progmodes/gdb-mi.el (gdb-var-list-children-regexp): Delete.
8588 (gdb-var-list-children): Use json parsing.
8589
8590 2009-09-11 Daniel Colascione <dan.colascione@gmail.com>
8591
8592 * progmodes/js.el (js--proper-indentation): Handle the case where
8593 char-before is null. Reported by Deniz Dogan.
8594
8595 2009-09-11 Juanma Barranquero <lekktu@gmail.com>
8596
8597 * emacs-lisp/cl-macs.el (help-add-fundoc-usage): Declare.
8598
8599 2009-09-11 Daiki Ueno <ueno@unixuser.org>
8600
8601 * epg.el (epg-cipher-algorithm-alist): Add CAMELLIA.
8602 (epg-digest-algorithm-alist): Add SHA224.
8603 (epg-context-set-passphrase-callback)
8604 (epg-context-set-progress-callback): Add description about
8605 callback function.
8606
8607 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
8608
8609 * custom.el (custom-delayed-init-variables): New var.
8610 (custom-initialize-delay): New function.
8611 * startup.el (command-line): "Re"evaluate all vars in
8612 custom-delayed-init-variables. Don't reevaluate abbrev-file-name
8613 explicitly any more.
8614 * abbrev.el (abbrev-file-name): Use custom-initialize-delay
8615 to avoid creating a ~/.emacs.d at build-time (bug#4347).
8616
8617 * proced.el (proced-mode-map): Prefer "m" for proced-mark (bug#4362).
8618
8619 2009-09-11 Nick Roberts <nickrob@snap.net.nz>
8620
8621 * progmodes/gdb-mi.el (gdb-var-update-regexp): Delete.
8622 (gdb-var-update-handler): Use json parsing.
8623
8624 2009-09-11 Juanma Barranquero <lekktu@gmail.com>
8625
8626 * vc-annotate.el (vc-annotate): Use the main file's coding-system to
8627 decode annotated text, regardless of language environment. (Bug#2741)
8628
8629 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
8630
8631 * Makefile.in (autoloads): Make rmail.el writable as well.
8632
8633 2009-09-11 Glenn Morris <rgm@gnu.org>
8634
8635 * dired-aux.el, dired-x.el: Put autoloads in dired.el rather than
8636 loaddefs.el.
8637 * dired.el: Regenerate with extracted autoloads.
8638 * Makefile.in (autoloads): Make dired.el writable.
8639
8640 * ibuf-ext.el: Put autoloads in ibuffer.el rather than loaddefs.el.
8641 * ibuffer.el: Regenerate with extracted autoloads.
8642 * Makefile.in (autoloads): Make ibuffer.el writable.
8643
8644 * paths.el (prune-directory-list, gnus-nntp-service, rmail-file-name):
8645 * version.el (emacs-copyright, emacs-major-version)
8646 (emacs-minor-version): Reformat doc-strings for make-docfile.
8647
8648 * apropos.el (apropos-documentation-check-doc-file): Exclude unbound
8649 functions and variables, since they must be stuff specific to some other
8650 platform.
8651 (apropos-print): Make mouse-click message less specific about button.
8652
8653 * emacs-lisp/cl-macs.el (define-compiler-macro): Add a property
8654 that records where a macro was defined.
8655 * help-fns.el (describe-function-1): Mention if a function has a
8656 compiler-macro.
8657 * help-mode.el (help-function-cmacro): New button.
8658
8659 * locate.el (top-level): Always require dired.
8660 (locate-mode-map): Initialize inside the defvar.
8661
8662 * net/ange-ftp.el (dired-compress-file): Declare.
8663 (ange-ftp-dired-compress-file): Add doc string.
8664
8665 * term/ns-win.el (x-display-name, x-setup-function-keys):
8666 Unify doc-strings with X versions.
8667
8668 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
8669
8670 * emulation/crisp.el (crisp-mode-map): Move initialization
8671 into declaration.
8672 (crisp-mode): Use define-minor-mode.
8673
8674 * progmodes/xscheme.el (xscheme-evaluation-commands):
8675 Put a :advertised-binding property rather than using
8676 advertised-xscheme-send-previous-expression.
8677 (advertised-xscheme-send-previous-expression): Declare obsolete.
8678 * emulation/crisp.el (crisp-mode-map): Use `undo' rather than
8679 `advertised-undo'.
8680 (crisp-mode): Add corresponding bindings to
8681 undo's :advertised-binding instead.
8682 * dired.el (dired-mode-map): Put a :advertised-binding property rather
8683 than using dired-advertised-find-file.
8684 (dired-advertised-find-file):
8685 * simple.el (advertised-undo):
8686 * wid-edit.el (advertised-widget-backward): Declare obsolete.
8687 (widget-keymap): Put a :advertised-binding property rather
8688 than using advertised-widget-backward.
8689 * bindings.el (ctl-x-map): Put a :advertised-binding property rather
8690 than using advertised-undo.
8691 * tutorial.el (tutorial--default-keys): Adjust accordingly.
8692
8693 2009-09-10 Simon South <ssouth@slowcomputing.org>
8694
8695 * progmodes/delphi.el (delphi-tab): Indent region when Transient
8696 Mark mode is enabled and region is active; otherwise indent or
8697 insert TAB as usual.
8698 (delphi-mode): Update description of TAB-key binding.
8699
8700 2009-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
8701
8702 * subr.el (define-key-rebound-commands): Mark obsolete.
8703 * startup.el (precompute-menubar-bindings): Remove.
8704 (normal-top-level): Remove obsolete code that tried to precompute
8705 menubar bindings.
8706 * loadup.el (define-key-rebound-commands): Don't bother fiddling with
8707 define-key-rebound-commands and precompute-menubar-bindings.
8708
8709 2009-09-10 Teodor Zlatanov <tzz@lifelogs.com>
8710
8711 * net/imap.el (imap-interactive-login): Better messages.
8712 (imap-open): Fix bug with renamed buffer on reconnect.
8713 (imap-authenticate): Add buffer-local imap-last-authenticator variable
8714 for easier debugging and cleaner code. On successful (guessed based on
8715 server capabilities) secondary authentication, set imap-state
8716 correctly.
8717 (imap-last-authenticator): Define imap-last-authenticator as a variable
8718 to avoid warnings.
8719
8720 2009-09-10 Glenn Morris <rgm@gnu.org>
8721
8722 * pcvs.el (cvs-mode-find-file): Use forward-line rather than goto-line.
8723
8724 * emacs-lisp/bytecomp.el (byte-compile-function-environment): Doc fix.
8725 (byte-compile-file-form-autoload): Don't warn about unknown functions
8726 where the autoload statement comes after the use.
8727 (with-no-warnings): Give it a byte-hunk-handler like than of progn, so
8728 that any handlers inside the body (eg require) are in turn respected.
8729
8730 * emacs-lisp/byte-opt.el (degrees-to-radians): Mark as free from side
8731 effects.
8732
8733 * emacs-lisp/derived.el (define-derived-mode): Give the mode's map,
8734 and syntax and abbrev tables basic docs, if they don't have any.
8735
8736 * emacs-lisp/easy-mmode.el (easy-mmode-defmap): Add doc-string.
8737
8738 * international/mule-cmds.el (top-level): Require cl when compiling.
8739 (view-hello-file): Use default-value rather than
8740 default-enable-multibyte-characters.
8741
8742 * progmodes/fortran.el: Move all safe and risky properties into the
8743 defcustoms.
8744
8745 * mail/rmailedit.el, mail/rmailkwd.el, mail/rmailmm.el:
8746 * mail/rmailmsc.el, mail/rmailsort.el, mail/rmailsum.el:
8747 * mail/undigest.el:
8748 Put autoloads in rmail.el rather than loaddefs.el.
8749 * mail/rmail.el: Regenerate with extracted autoloads.
8750
8751 * mail/rmailsum.el (rmail-user-mail-address-regexp): Move to rmail.el.
8752 * mail/rmail.el (rmail-user-mail-address-regexp): Move from rmailsum.el.
8753
8754 2009-09-10 Nick Roberts <nickrob@snap.net.nz>
8755
8756 Reported in thread for Bug#4375.
8757 * progmodes/gud.el (gud-tooltip-print-command): Use MI command
8758 "-data-evaluate-expression" instead of print.
8759 * progmodes/gdb-mi.el (gdb-tooltip-print-1): Ditto.
8760 (gdb-tooltip-print): Parse output from above MI command.
8761 (gdb): Revert 2009-08-11 change. User should detach inferior
8762 manually.
8763
8764 Remove the word "separate" from IO functions as inferior
8765 output is now never displayed in the GUD buffer.
8766
8767 2009-09-10 Juanma Barranquero <lekktu@gmail.com>
8768
8769 * startup.el (command-line-normalize-file-name): On Windows and
8770 MS-DOS, also convert C:\/ and C:\\ (two backslashes) into C:/.
8771
8772 2009-09-10 Juri Linkov <juri@jurta.org>
8773
8774 * isearch.el (isearch-text-char-description): Propertize escape
8775 character sequences with the `escape-glyph' face. (Bug#4344)
8776
8777 * simple.el (shell-command): Set asynchronous process filter to
8778 `comint-output-filter'. (Bug#4343)
8779
8780 * progmodes/grep.el (grep-template): Add "<X>" to docstring.
8781 (grep-files-aliases): Add "all". Move "el" and "ch" to the top of
8782 the list. Move "asm" to the bottom.
8783 (grep-find-ignored-directories): Add `choice' with nil value
8784 to empty the list easily.
8785 (grep-find-ignored-files): New option.
8786 (grep-files-history): Set to nil by default instead of '("ch" "el").
8787 (grep-compute-defaults): Add "<X>" to `grep-template'.
8788 (grep-read-files): Bind new local variables `default-alias' and
8789 `default-extension'. Use a list of default values for the file prompt.
8790 (lgrep): Add `--exclude=' command line options composed from
8791 `grep-find-ignored-files'.
8792 (rgrep): Add `-name' command line options composed from
8793 `grep-find-ignored-files'. (Bug#4301)
8794
8795 2009-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
8796
8797 * diff-mode.el (diff-hunk-kill): Fix the search of the next hunk
8798 (bug#4368).
8799
8800 2009-09-09 Katsumi Yamaoka <yamaoka@jpl.org>
8801
8802 * calendar/time-date.el (autoload):
8803 Expand define-obsolete-function-alias into defalias and make-obsolete
8804 for old Emacsen that Gnus supports.
8805 (with-no-warnings): Define it for old Emacsen.
8806 (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
8807 is available.
8808 (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
8809 float-time is available; suppress compile warning for time-to-seconds.
8810
8811 2009-09-09 Teodor Zlatanov <tzz@lifelogs.com>
8812
8813 * net/imap.el (imap-message-map): Docstring fix.
8814
8815 2009-09-09 Glenn Morris <rgm@gnu.org>
8816
8817 * ffap.el (ffap-file-at-point): Handle absolute (non-remote) files with
8818 line numbers too. (Bug#4374)
8819
8820 2009-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
8821
8822 * smerge-mode.el (smerge-remove-props, smerge-refine):
8823 Use with-silent-modifications (bug#4342).
8824
8825 * subr.el (with-silent-modifications): New macro.
8826
8827 2009-09-07 Juanma Barranquero <lekktu@gmail.com>
8828
8829 * files.el (top-level): Require `cl' when compiling.
8830
8831 2009-09-07 Glenn Morris <rgm@gnu.org>
8832
8833 * files.el (auto-mode-alist): Use delphi-mode for .dpr files.
8834
8835 * proced.el (proced-mode-map): Bind "d" to proced-mark-alt.
8836 (proced-mark-alt): New alias, to control the advertised key. (Bug#4362)
8837
8838 2009-09-06 Nick Roberts <nickrob@snap.net.nz>
8839
8840 * vc-git.el (vc-git-annotate-command): Use separator to parse
8841 arguments correctly.
8842
8843 2009-09-06 Eli Zaretskii <eliz@gnu.org>
8844
8845 * proced.el (proced-mode): Doc fix.
8846
8847 2009-09-06 Julian Scheid <julians37@gmail.com> (tiny change)
8848
8849 * net/tramp.el (tramp-perl-file-attributes): Print "nil" when
8850 lstat fails.
8851 (tramp-do-file-attributes-with-ls): Check for file existence at
8852 remote end.
8853 (tramp-do-file-attributes-with-stat): Likewise.
8854 (tramp-convert-file-attributes): Return nil when attr is nil.
8855
8856 2009-09-05 Glenn Morris <rgm@gnu.org>
8857
8858 * calendar/diary-lib.el (diary-entry): Add help-echo and follow-link
8859 properties to this button.
8860 (diary-fancy-display): Don't extend the button to the final newline.
8861 (diary-fancy-display-mode): Continue to define "q" as a local key.
8862
8863 * calendar/cal-china.el (holiday-chinese): Make it slightly more
8864 efficient.
8865
8866 * font-lock.el (lisp-font-lock-keywords-2): Add letf.
8867
8868 * emacs-lisp/bytecomp.el (emacs-lisp-file-regexp): Doc fix.
8869 (byte-compile-dest-file-function): New option.
8870 (byte-compile-dest-file): Doc fix.
8871 Obey byte-compile-dest-file-function.
8872 (byte-compile-cl-file-p): New function.
8873 (byte-compile-eval): Only suppress noruntime warnings about cl functions
8874 if the cl-functions warning is enabled. Use byte-compile-cl-file-p.
8875 (byte-compile-eval): Check for non-nil byte-compile-cl-functions rather
8876 than for file being previously loaded.
8877 (byte-compile-find-cl-functions): Use byte-compile-cl-file-p.
8878 (byte-compile-file-form-require): Handle the case where requiring a file
8879 indirectly causes CL to be loaded.
8880
8881 2009-09-05 Karl Fogel <kfogel@red-bean.com>
8882
8883 * files.el (find-alternate-file): Run `kill-buffer-hook' manually
8884 before killing the old buffer, since by the time `kill-buffer' is
8885 run so many buffer variables have been set to nil that it may not
8886 behave as expected. (Bug#4061)
8887
8888 2009-09-05 Karl Fogel <kfogel@red-bean.com>
8889
8890 * files.el (find-alternate-file): If the old buffer is modified
8891 and visiting a file, behave similarly to `kill-buffer' when
8892 killing it, thus reverting to the pre-1.878 behavior; see
8893 http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00101.html
8894 for discussion. Also, consult `buffer-file-name' as a variable
8895 not as a function, for consistency with the rest of the code.
8896
8897 2009-09-04 Michael Albinus <michael.albinus@gmx.de>
8898
8899 * net/tramp.el (tramp-handle-insert-directory): Handle "--dired"
8900 also when adding a new directory.
8901
8902 * net/tramp-compat.el (tramp-compat-line-beginning-position): New
8903 defun.
8904
8905 2009-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
8906
8907 * files.el (locate-file-completion-table): Make it provide boundary
8908 information, so partial-completion works better.
8909
8910 2009-09-04 Leo <sdl.web@gmail.com> (tiny change)
8911
8912 * mail/footnote.el (Footnote-text-under-cursor):
8913 Check footnote-text-marker-alist before using it (bug#4324).
8914
8915 2009-09-04 Glenn Morris <rgm@gnu.org>
8916
8917 * play/5x5.el, play/decipher.el, play/gametree.el, play/handwrite.el:
8918 * play/hanoi.el, play/landmark.el, play/mpuz.el, play/pong.el:
8919 * play/solitaire.el, play/tetris.el:
8920 Remove leading * from defcustom and defface docs.
8921
8922 * calendar/diary-lib.el (diary-fancy-display): Only switch modes if
8923 necessary.
8924 (diary-fancy-overriding-map): New variable.
8925 (diary-fancy-display-mode): Set minor-mode-overriding-map-alist.
8926 Use view-mode.
8927
8928 * vc-rcs.el (vc-rcs-annotate-command): Use forward-line rather than
8929 goto-line.
8930
8931 2009-09-03 Glenn Morris <rgm@gnu.org>
8932
8933 * arc-mode.el (archive-mode):
8934 * dos-fns.el (set-default-process-coding-system):
8935 * man.el (Man-getpage-in-background):
8936 * menu-bar.el (menu-bar-describe-menu):
8937 * server.el (server-process-filter):
8938 * startup.el (command-line):
8939 * tar-mode.el (tar-header-block-tokenize, tar-extract):
8940 * w32-fns.el (set-default-process-coding-system):
8941 * x-dnd.el (x-dnd-handle-file-name):
8942 * international/mule-cmds.el (mule-menu-keymap)
8943 (set-default-coding-systems, language-info-alist, set-language-info)
8944 (set-language-environment, standard-display-european-internal)
8945 (set-locale-environment):
8946 * international/mule-diag.el (mule-diag):
8947 * mail/emacsbug.el (report-emacs-bug):
8948 * mail/rmail.el (rmail-mode):
8949 * mail/sendmail.el (mail-setup):
8950 Use default-value rather than default-enable-multibyte-characters.
8951
8952 * progmodes/f90.el: Move all safe properties into the defcustoms.
8953 (f90-get-correct-indent, f90-indent-region, f90-abbrev-start): Use memq.
8954
8955 * calendar/appt.el (appt-check):
8956 * calendar/diary-lib.el (diary-set-header, diary-live-p)
8957 (diary-check-diary-file, diary-list-entries)
8958 (diary-include-other-diary-files, diary-simple-display)
8959 (diary-fancy-display, diary-print-entries)
8960 (diary-mark-included-diary-files, diary-make-entry):
8961 Don't call substitute-in-file-name on diary-file.
8962
8963 2009-09-03 Eduard Wiebe <usenet@pusto.de>
8964 Stefan Monnier <monnier@iro.umontreal.ca>
8965
8966 * mail/footnote.el (footnote-prefix): Make it a defcustom.
8967 (footnote-mode-map): Move initialization into the declaration.
8968 (footnote-minor-mode-map): Define it rather than changing global-map.
8969 (footnote-mode): Use define-minor-mode.
8970
8971 2009-09-02 Michael Albinus <michael.albinus@gmx.de>
8972
8973 * net/tramp.el (tramp-handle-file-attributes-with-ls)
8974 (tramp-do-file-attributes-with-perl)
8975 (tramp-do-file-attributes-with-stat): Rename from
8976 `tramp-handle-file-attributes-with-*'.
8977 (tramp-handle-file-attributes): Use them.
8978 (tramp-do-directory-files-and-attributes-with-perl)
8979 (tramp-do-directory-files-and-attributes-with-stat): Rename from
8980 `tramp-handle-directory-files-and-attributes-with-*'.
8981 (tramp-handle-directory-files-and-attributes): Use them.
8982 (tramp-method-out-of-band-p): Additional parameter SIZE.
8983 (tramp-do-copy-or-rename-file, tramp-handle-file-local-copy)
8984 (tramp-handle-write-region): Use it.
8985 (tramp-handle-insert-directory): Use "?\ " for compatibility reasons.
8986 (tramp-handle-vc-registered): Check, whether the first run did
8987 return files to be tested.
8988 (tramp-advice-make-auto-save-file-name): Do not call directly
8989 `tramp-handle-make-auto-save-file-name', because this would bypass
8990 the locking mechanism.
8991
8992 * net/tramp-compat.el (top): Autoload used functions from tramp.el.
8993 (file-remote-p, process-file, start-file-process, set-file-times)
8994 (tramp-compat-file-attributes): Compatibility functions shall not
8995 call directly `tramp-handle-*', because this would bypass the
8996 locking mechanism.
8997 (tramp-compat-number-sequence): New defun.
8998
8999 2009-09-02 Glenn Morris <rgm@gnu.org>
9000
9001 * calendar/time-date.el (time-to-seconds): In Emacs, make it an obsolete
9002 alias for float-time.
9003 (time-to-number-of-days): In Emacs, use float-time.
9004 * net/newst-backend.el (time-add): Suppress warnings from compat
9005 function.
9006 * time.el (emacs-uptime, emacs-init-time):
9007 * net/rcirc.el (rcirc-keepalive, rcirc-handler-ctcp-KEEPALIVE):
9008 Use float-time rather than time-to-seconds.
9009
9010 * minibuffer.el (completion-initials-expand): Fix typo.
9011
9012 * faces.el (modeline, modeline-inactive, modeline-highlight)
9013 (modeline-buffer-id):
9014 * info.el (info-menu-5): Mark these face aliases as obsolete.
9015
9016 2009-09-01 Nick Roberts <nickrob@snap.net.nz>
9017
9018 * progmodes/gdb-mi.el (gdb-current-context-command): Move the
9019 space ...
9020 (gdb-gud-context-call): ... to here for pre GDB 7.0 when there is
9021 no "--thread" option.
9022 (gdb-stopped): Don't print "Switched to thread" message when it is
9023 unchanged.
9024
9025 2009-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
9026
9027 * minibuffer.el (completion-try-completion)
9028 (completion-all-completions): Remove ill-defined (and
9029 mistakenly installed and luckily never used nor documented)
9030 `completion-styles' property.
9031 (completion-initials-expand, completion-initials-all-completions)
9032 (completion-initials-try-completion): New functions.
9033 (completion-styles-alist): Add doc to each entry.
9034 Add new `initials' entry.
9035
9036 2009-09-01 Nick Roberts <nickrob@snap.net.nz>
9037
9038 * progmodes/gdb-mi.el (gdb-var-create-handler): Remove redundant
9039 MI command -var-evaluate-expression.
9040 (gdb-var-list-children-regexp): Update from regexp-1 in gdb-ui.el
9041 and tweak for case of string child.
9042 (gdb-var-list-children-handler): Update from handler-1 in gdb-ui.el.
9043
9044 2009-09-01 Glenn Morris <rgm@gnu.org>
9045
9046 * add-log.el (change-log-date-face, change-log-name-face)
9047 (change-log-email-face, change-log-file-face, change-log-list-face)
9048 (change-log-conditionals-face, change-log-function-face)
9049 (change-log-acknowledgement-face):
9050 * cus-edit.el (custom-invalid-face, custom-rogue-face)
9051 (custom-modified-face, custom-set-face, custom-changed-face)
9052 (custom-saved-face, custom-button-face, custom-button-pressed-face)
9053 (custom-documentation-face, custom-state-face, custom-comment-face)
9054 (custom-comment-tag-face, custom-variable-tag-face)
9055 (custom-variable-button-face, custom-face-tag-face)
9056 (custom-group-tag-face-1, custom-group-tag-face):
9057 * diff-mode.el (diff-header-face, diff-file-header-face)
9058 (diff-index-face, diff-hunk-header-face, diff-removed-face)
9059 (diff-added-face, diff-changed-face, diff-function-face)
9060 (diff-context-face, diff-nonexistent-face):
9061 * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
9062 * hilit-chg.el (highlight-changes-face, highlight-changes-delete-face):
9063 * info.el (Info-title-1-face, Info-title-2-face, Info-title-3-face)
9064 (Info-title-4-face):
9065 * isearch.el (isearch-lazy-highlight-face):
9066 * log-view.el (log-view-file-face, log-view-message-face):
9067 * paren.el (show-paren-match-face, show-paren-mismatch-face):
9068 * pcvs-info.el (cvs-header-face, cvs-filename-face, cvs-unknown-face)
9069 (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
9070 (cvs-msg-face):
9071 * smerge-mode.el (smerge-mine-face, smerge-other-face)
9072 (smerge-base-face, smerge-markers-face):
9073 * wid-edit.el (widget-documentation-face, widget-button-face)
9074 (widget-field-face, widget-single-line-field-face)
9075 (widget-inactive-face, widget-button-pressed-face):
9076 * woman.el (woman-italic-face, woman-bold-face, woman-unknown-face)
9077 (woman-addition-face):
9078 * eshell/em-ls.el (eshell-ls-directory-face, eshell-ls-symlink-face)
9079 (eshell-ls-executable-face, eshell-ls-readonly-face)
9080 (eshell-ls-unreadable-face, eshell-ls-special-face)
9081 (eshell-ls-missing-face, eshell-ls-archive-face)
9082 (eshell-ls-backup-face, eshell-ls-product-face)
9083 (eshell-ls-clutter-face):
9084 * eshell/em-prompt.el (eshell-prompt-face):
9085 * eshell/esh-test.el (eshell-test-ok-face, eshell-test-failed-face):
9086 * obsolete/old-whitespace.el (whitespace-highlight-face):
9087 * progmodes/antlr-mode.el (antlr-font-lock-default-face)
9088 (antlr-font-lock-keyword-face, antlr-font-lock-syntax-face)
9089 (antlr-font-lock-ruledef-face, antlr-font-lock-tokendef-face)
9090 (antlr-font-lock-ruleref-face, antlr-font-lock-tokenref-face)
9091 (antlr-font-lock-literal-face):
9092 * progmodes/ebrowse.el (ebrowse-tree-mark-face)
9093 (ebrowse-root-class-face, ebrowse-file-name-face)
9094 (ebrowse-default-face, ebrowse-member-attribute-face)
9095 (ebrowse-member-class-face, ebrowse-progress-face):
9096 * progmodes/make-mode.el (makefile-space-face):
9097 * progmodes/sh-script.el (sh-heredoc-face):
9098 * textmodes/flyspell.el (flyspell-incorrect-face)
9099 (flyspell-duplicate-face):
9100 * textmodes/tex-mode.el (tex-math-face, tex-verbatim-face):
9101 * textmodes/texinfo.el (texinfo-heading-face):
9102 Mark face aliases with "-face" suffix as obsolete.
9103
9104 * mail/feedmail.el (file-name-buffer-file-type-alist): Define for
9105 compiler.
9106
9107 * net/eudc-bob.el (eudc-bob-generic-menu, eudc-bob-image-menu)
9108 (eudc-bob-sound-menu): Use defvar rather than defconst, since
9109 easy-menu-define wants to modify these.
9110
9111 * net/net-utils.el (nslookup): Use make-comint rather than comint-run.
9112
9113 * net/browse-url.el (browse-url-file-url):
9114 * term/internal.el (dos-codepage-setup):
9115 Use default-value rather than default-enable-multibyte-characters.
9116
9117 * progmodes/etags.el (etags-goto-tag-location):
9118 * progmodes/flymake.el (flymake-highlight-line)
9119 (flymake-goto-file-and-line, flymake-goto-line):
9120 * progmodes/gdb-mi.el (gdb-mouse-until, gdb-mouse-jump)
9121 (gdb-goto-breakpoint):
9122 * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
9123 * progmodes/python.el (python-find-function)
9124 (python-pdbtrack-track-stack-file):
9125 * progmodes/verilog-mode.el (verilog-surelint-off):
9126 * term/ns-win.el (ns-open-file-select-line):
9127 * textmodes/bibtex.el (bibtex-validate, bibtex-validate-globally):
9128 Use forward-line rather than goto-line.
9129
9130 * textmodes/reftex-cite.el (reftex-offer-bib-menu):
9131 * textmodes/reftex-index.el (reftex-display-index):
9132 * textmodes/reftex-ref.el (reftex-offer-label-menu):
9133 * textmodes/reftex-toc.el (reftex-toc):
9134 Remove unnecessary bindings of default-major-mode (all are followed by
9135 major-mode check and possible mode switch).
9136
9137 2009-08-31 Nick Roberts <nickrob@snap.net.nz>
9138
9139 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
9140 Handle watchpoints (bug#4282).
9141 (def-gdb-thread-buffer-command): Enable thread to be selected by
9142 clicking without selecting threads buffer first.
9143 (gdb-current-context-command): Use selected frame so that "up",
9144 "down" etc work in the GUD buffer.
9145 (gdb-update): Find selected frame before rendering stack buffer.
9146 (gdb-frame-handler): Set gdb-frame-number for stack buffer.
9147
9148 2009-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
9149
9150 * progmodes/sym-comp.el (displayed-completions): Remove.
9151 (symbol-complete): Use minibuffer-complete.
9152
9153 2009-08-31 Glenn Morris <rgm@gnu.org>
9154
9155 * emacs-lisp/byte-run.el (define-obsolete-face-alias): New macro.
9156
9157 * apropos.el (apropos-symbols-internal):
9158 Handle (obsolete) face aliases.
9159
9160 * faces.el (describe-face): Adjust the output format to be more like
9161 describe-variable, and to mention (obsolete) face aliases.
9162 Adjust the whitespace so that help-setup-xref works.
9163
9164 * calendar/calendar.el (calendar-today-face, diary-face, holiday-face):
9165 * calendar/diary-lib.el (diary-button-face):
9166 Mark these face aliases as obsolete.
9167
9168 * calendar/calendar.el (calendar-today): Doc fix.
9169
9170 2009-08-31 Nick Roberts <nickrob@snap.net.nz>
9171
9172 * progmodes/gdb-mi.el (gdb-control-all-threads)
9173 (gdb-control-current-thread): Force tool bar update.
9174 (gdb-non-stop-handler): New function.
9175 (gdb-init-1): Use it to test if non-stop mode is supported.
9176 Remove unused gdbmi buffer type.
9177
9178 2009-08-30 Kevin Rodgers <kevin.d.rodgers@gmail.com>
9179
9180 * progmodes/grep.el (grep-read-files): Strip trailing <N> from
9181 buffer names not visiting a file (e.g. cloned buffers). (Bug#4210)
9182
9183 2009-08-30 Nick Roberts <nickrob@snap.net.nz>
9184
9185 * comint.el (comint-exec-1): Check command is non-null first.
9186 Part of gdb-mi.el change (2009-08-28).
9187
9188 2009-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
9189
9190 * emacs-lisp/lisp.el (lisp-complete-symbol): Use minibuffer-complete.
9191
9192 2009-08-30 Juanma Barranquero <lekktu@gmail.com>
9193
9194 * subr.el (do-after-load-evaluation): Fix last change: use `mapc'
9195 instead of `dolist' to avoid a recursive require when bootstrapping.
9196
9197 2009-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
9198
9199 * emacs-lisp/lisp.el (field-complete): Use minibuffer-complete.
9200
9201 * net/ldap.el (ldap-search-internal): Use with-current-buffer and push.
9202
9203 * net/imap.el (imap-send-command): Simplify.
9204 (imap-wait-for-tag): point-max -> buffer-size.
9205
9206 * net/ange-ftp.el (internal-ange-ftp-mode): Use define-derived-mode.
9207
9208 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't use symbol-value
9209 with constant argument.
9210
9211 * emacs-lisp/debug.el (debugger-setup-buffer): Make it multibyte.
9212
9213 * emacs-lisp/cl.el (cl-macro-environment): Don't define it here.
9214
9215 * emacs-lisp/checkdoc.el (checkdoc-force-history-flag):
9216 Change default, since most of our files don't have a history.
9217 (checkdoc-display-status-buffer): Don't use a hidden buffer to show to
9218 the user.
9219
9220 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
9221 Add comint-run.
9222
9223 * calc/calc.el: Improve commenting convention.
9224 (calc-digit-map, toplevel): Simplify.
9225
9226 * comint.el (comint-insert-input): Be careful to only set point if we
9227 don't delegate to some other command.
9228
9229 * proced.el (proced-signal-list): Make it an alist.
9230 (proced-grammar-alist): Capitalize names.
9231 (proced-send-signal): Use a non-hidden buffer (since it's displayed).
9232 Disable undo manually and make it read-only.
9233 Use completion-annotate-function.
9234
9235 * minibuffer.el (minibuffer-message): If the current buffer is not
9236 a minibuffer, insert the message in the echo area rather than at the
9237 end of the buffer.
9238 (completion-annotate-function): New variable.
9239 (minibuffer-completion-help): Use it.
9240 (completion--embedded-envvar-table): Environment vars are
9241 always case-sensitive.
9242
9243 2009-08-30 Glenn Morris <rgm@gnu.org>
9244
9245 * progmodes/fortran.el (fortran-start-prog-re): New constant, extracted
9246 from fortran-current-defun.
9247 (fortran-beginning-of-subprogram): Be more precise about finding the
9248 start, to avoid an infinite loop in end-of-defun. (Bug#4259)
9249 (fortran-end-of-subprogram): Simplify.
9250 (fortran-current-defun): Use fortran-start-prog-re.
9251
9252 2009-08-29 Juanma Barranquero <lekktu@gmail.com>
9253
9254 * subr.el (do-after-load-evaluation): Simplify.
9255
9256 2009-08-29 Dan Nicolaescu <dann@ics.uci.edu>
9257
9258 * vc.el (vc-print-log-internal): Move RCS/CVS specific code ...
9259
9260 * vc-rcs.el (vc-rcs-print-log-cleanup): ... here. New function.
9261 (vc-rcs-print-log): Use it.
9262
9263 * vc-cvs.el (vc-cvs-print-log): Use vc-rcs-print-log-cleanup.
9264
9265 2009-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
9266
9267 * paths.el (abbrev-file-name): Move to abbrev.el.
9268 * abbrev.el (abbrev-file-name): Move from paths.el.
9269 Obey user-emacs-directory.
9270 * calc/calc.el (calc-settings-file): Don't autoload and instead obey
9271 user-emacs-directory.
9272 * dos-fns.el (dos-reevaluate-defcustoms): Don't reevaluate
9273 abbrev-file-name and calc-settings-file any more.
9274 * startup.el (command-line): Recompute abbrev-file-name and
9275 abbreviated-home-dir.
9276 (normal-no-mouse-startup-screen): Improve the generic code and get rid
9277 of the special code for when C-h bindings haven't been changed.
9278 (display-startup-echo-area-message): Use with-current-buffer.
9279 (command-line-1): Use a list of strings, rather than a list of lists
9280 of strings for longopts.
9281
9282 * files.el (get-free-disk-space): Use / for default-directory.
9283
9284 * textmodes/ispell.el (ispell-accept-output, ispell-command-loop):
9285 Use with-current-buffer.
9286
9287 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p):
9288 Recognize immutable variables like most-positive-fixnum.
9289 (byte-compile-setq-default): Check and warn if trying to assign
9290 to an immutable variable, or a non-variable.
9291
9292 * progmodes/cc-vars.el (c-comment-continuation-stars):
9293 * progmodes/cc-engine.el (c-looking-at-bos):
9294 * progmodes/cc-cmds.el (c-toggle-auto-state)
9295 (c-forward-into-nomenclature, c-backward-into-nomenclature)
9296 (c-comment-line-break-function): Add version of obsolescence.
9297
9298 2009-08-28 Juri Linkov <juri@jurta.org>
9299
9300 * files.el (magic-fallback-mode-alist): Add ZIP magic number
9301 associated with `archive-mode'.
9302
9303 * image.el (image-type-header-regexps): Use only JPEG magic number
9304 to determine JPEG images, and don't use `image-jpeg-p' because
9305 Emacs can display non-JFIF non-Exif JPEG images.
9306
9307 2009-08-28 Juanma Barranquero <lekktu@gmail.com>
9308
9309 * arc-mode.el (archive-mode):
9310 * emacs-lisp/re-builder.el (re-builder-unload-function):
9311 Protect against the default value of `major-mode' being nil.
9312
9313 2009-08-28 Juanma Barranquero <lekktu@gmail.com>
9314
9315 * international/ucs-normalize.el (ucs-normalize-sort, quick-check-list):
9316 Fix typos in docstrings.
9317
9318 * progmodes/js.el (js--macro-decl-re): Doc fix.
9319 (js--plain-method-re, js--split-name): Refloc docstring.
9320 (js--class-styles, js--make-merged-item, js--splice-into-items):
9321 Fix typos in docstrings; reflow docstrings.
9322 (js--maybe-join, js--function-prologue-beginning, js--flush-caches)
9323 (js--variable-decl-matcher, js--inside-pitem-p)
9324 (js--parse-state-at-point, js--get-all-known-symbols)
9325 (js--symbol-history, js-find-symbol, js--js-references)
9326 (js--moz-interactor, js--js-encode-value, js--read-tab):
9327 Fix typos in docstrings.
9328
9329 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
9330
9331 * textmodes/reftex.el (reftex-get-file-buffer-force):
9332 * progmodes/verilog-mode.el (verilog-batch-execute-func):
9333 * emulation/viper.el (viper-go-away, viper-set-hooks):
9334 * emacs-lisp/re-builder.el (re-builder-unload-function):
9335 * emacs-lisp/bytecomp.el (byte-compile-file):
9336 * ses.el (ses-unload-function):
9337 * hexl.el (hexl-find-file):
9338 * files.el (normal-mode):
9339 * ehelp.el (with-electric-help):
9340 * autoinsert.el (auto-insert-alist):
9341 * arc-mode.el (archive-mode):
9342 Use (default-value 'major-mode) instead of default-major-mode.
9343
9344 * textmodes/ispell.el (ispell-check-version, ispell-send-string):
9345 * international/mule.el (load-with-code-conversion):
9346 * emacs-lisp/debug.el (debug):
9347 * ediff-vers.el (ediff-rcs-get-output-buffer):
9348 * dired.el (dired-internal-noselect): Don't let-bind
9349 default-major-mode around code that doesn't use it.
9350 E.g. buffer creation via get-buffer-create doesn't use it.
9351
9352 2009-08-28 Michael Albinus <michael.albinus@gmx.de>
9353
9354 * net/tramp.el (all): Replace "'(lambda" by "(lambda".
9355 (tramp-handle-file-local-copy): Unset `file-name-handler-alist'
9356 when writing the temp file. Otherwise, epa-file gets confused.
9357 (tramp-register-file-name-handlers): Make it a defun. Move also
9358 `epa-file-handler' to the front of `file-name-handler-alist'.
9359
9360 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
9361
9362 * net/tramp.el (tramp-shell-prompt-pattern): Allow a prompt to
9363 start right after a ^M.
9364 (tramp-root-regexp, tramp-completion-file-name-regexp-unified)
9365 (tramp-completion-file-name-regexp-separate)
9366 (tramp-completion-file-name-regexp-url): Use \\` and \\'.
9367 (tramp-handle-file-attributes, tramp-set-file-uid-gid):
9368 Don't modify last-coding-system-used by accident.
9369 (tramp-completion-file-name-handler): Apply the checks here,
9370 instead during registration.
9371 (tramp-register-file-name-handlers): Renamed from
9372 `tramp-register-file-name-handler'. Register both
9373 `tramp-file-name-handler' and `tramp-completion-file-name-handler'.
9374 (tramp-register-completion-file-name-handler): Remove. (Bug#4260)
9375
9376 2009-08-28 Nick Roberts <nickrob@snap.net.nz>
9377
9378 * progmodes/gdb-mi.el (gdb-use-separate-io-buffer):
9379 Remove variable ...
9380 (gdb-init-1, gdb-display-separate-io-buffer)
9381 (gdb-frame-separate-io-buffer, gdb-setup-windows): ... and
9382 references to it.
9383 (gdb-inferior-io-mode): Use make-comint-in-buffer.
9384 (gdb-inferior-filter): Use comint-output-filter to stop
9385 echoing and remove ^M characters.
9386
9387 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
9388
9389 * emulation/viper-init.el (viper-restore-cursor-type):
9390 * emulation/cua-base.el (cua--update-indications):
9391 Replace default-cursor-type with (default-value 'cursor-type).
9392
9393 * mail/sendmail.el (mail-recover-1):
9394 * international/mule-diag.el (describe-current-coding-system-briefly)
9395 (describe-current-coding-system):
9396 * international/mule-cmds.el (select-safe-coding-system)
9397 (select-message-coding-system)
9398 (set-language-environment-coding-systems, set-locale-environment):
9399 * hexl.el (hexl-insert-multibyte-char):
9400 * dos-w32.el (find-buffer-file-type-coding-system):
9401 * simple.el (what-cursor-position):
9402 Replace uses of default-buffer-file-coding-system
9403 with (default-value 'buffer-file-coding-system).
9404
9405 * emacs-lisp/edebug.el (edebug-display, edebug-outside-excursion):
9406 Replace uses of default-cursor-in-non-selected-windows
9407 with (default-value 'cursor-in-non-selected-windows).
9408 Use with-current-buffer.
9409
9410 * mail/feedmail.el: Use CL macros.
9411 (feedmail-run-the-queue, feedmail-send-it-immediately):
9412 * dos-w32.el (find-buffer-file-type): Replace uses of
9413 default-buffer-file-type with (default-value 'buffer-file-type).
9414
9415 2009-08-28 Glenn Morris <rgm@gnu.org>
9416
9417 * calendar/diary-lib.el (diary-list-entries, diary-goto-entry)
9418 (diary-show-all-entries, diary-mark-entries, diary-make-entry):
9419 Use default-value of major-mode rather than default-major-mode.
9420
9421 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
9422
9423 * Makefile.in (update-elcfiles): Report left over elc files.
9424
9425 * mail/mailalias.el (build-mail-aliases): Use with-temp-buffer,
9426 expand-file-name and with-current-buffer.
9427 (mail-get-names, mail-directory): Use with-current-buffer.
9428
9429 * vc.el (vc-read-revision): New function.
9430 (vc-version-diff, vc-merge): Use it.
9431
9432 2009-08-27 Sam Steingold <sds@gnu.org>
9433
9434 * simple.el (kill-do-not-save-duplicates): New user option.
9435 (kill-new): When it is non-nil, and the new string is the same as
9436 the latest kill, set replace to t to avoid duplicates in kill-ring.
9437
9438 2009-08-27 Julian Scheid <julians37@gmail.com> (tiny change)
9439
9440 * net/tramp.el (tramp-handle-process-file): Do not flush all
9441 caches when `process-file-side-effects' is set.
9442 (tramp-handle-vc-registered): Use `tramp-get-file-exists-command'
9443 instead of `tramp-find-file-exists-command'.
9444 Unset `process-file-side-effects'.
9445
9446 2009-08-27 Michael Albinus <michael.albinus@gmx.de>
9447
9448 * net/tramp.el (tramp-methods): New method "rsyncc".
9449 (top): Add completion function for "rsyncc".
9450 (tramp-message-show-message): New defvar.
9451 (tramp-message, tramp-error): Use it.
9452 (tramp-do-copy-or-rename-file-directly): Extend check for direct
9453 remote copying.
9454 (tramp-do-copy-or-rename-file-out-of-band): Handle new
9455 `tramp-methods' entry `copy-env' of "rsyncc".
9456 (tramp-vc-registered-read-file-names): New defconst.
9457 (tramp-vc-registered-file-names): New defvar.
9458 (tramp-handle-vc-registered): Implement optimization strategy.
9459 (tramp-run-real-handler): Add `tramp-vc-file-name-handler'.
9460 (tramp-vc-file-name-handler): New defun.
9461 (tramp-get-ls-command, tramp-get-test-command)
9462 (tramp-get-file-exists-command, tramp-get-remote-ln)
9463 (tramp-get-remote-perl, tramp-get-remote-stat)
9464 (tramp-get-remote-id): Remove superfluous `with-current-buffer'.
9465
9466 * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
9467 (tramp-cache-inhibit-cache): Extend doc string. It allows also
9468 timestamps.
9469 (tramp-get-file-property): Check for timestamps in
9470 `tramp-cache-inhibit-cache'.
9471 (tramp-set-file-property): Write timestamp.
9472
9473 2009-08-27 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
9474
9475 * language/japan-util.el (japanese-symbol-table): Add entries for
9476 cp932-2-byte.
9477
9478 * international/characters.el: Add category `j' to cp932-2-byte.
9479
9480 2009-08-27 Kenichi Handa <handa@m17n.org>
9481
9482 * international/fontset.el (build-default-fontset-data): New macro.
9483 (setup-default-fontset): Use build-default-fontset-data for CJK,
9484 tibetan, ethiopic, and ipa.
9485
9486 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
9487
9488 * cus-start.el (default-major-mode): Customize `major-mode' instead.
9489 (enable-multibyte-characters): Not customizable any more.
9490
9491 * subr.el (default-mode-line-format, default-header-line-format)
9492 (default-line-spacing, default-abbrev-mode, default-ctl-arrow)
9493 (default-direction-reversed, default-truncate-lines)
9494 (default-left-margin, default-tab-width, default-case-fold-search)
9495 (default-left-margin-width, default-right-margin-width)
9496 (default-left-fringe-width, default-right-fringe-width)
9497 (default-fringes-outside-margins, default-scroll-bar-width)
9498 (default-vertical-scroll-bar, default-indicate-empty-lines)
9499 (default-indicate-buffer-boundaries, default-fringe-indicator-alist)
9500 (default-fringe-cursor-alist, default-scroll-up-aggressively)
9501 (default-scroll-down-aggressively, default-fill-column)
9502 (default-cursor-type, default-buffer-file-type)
9503 (default-cursor-in-non-selected-windows)
9504 (default-buffer-file-coding-system, default-major-mode)
9505 (default-enable-multibyte-characters): Mark as obsolete.
9506
9507 2009-08-27 Dan Nicolaescu <dann@ics.uci.edu>
9508
9509 * vc-dir.el (vc-dir-update): Remove debug helper.
9510
9511 * vc-cvs.el (vc-cvs-update-changelog): Fix typo.
9512
9513 2009-08-26 Sam Steingold <sds@gnu.org>
9514
9515 * simple.el (save-interprogram-paste-before-kill): New user option.
9516 (kill-new): When `save-interprogram-paste-before-kill' is non-nil,
9517 save the interprogram-paste into kill-ring before overriding it
9518 with the Emacs kill.
9519
9520 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
9521
9522 * vc.el (vc-trunk-p): Rename to vc-rcs-trunk-p and move to vc-rcs.el.
9523 (vc-minor-part): Rename to vc-rcs-minor-part and move to vc-rcs.el.
9524 (vc-default-previous-revision): Rename to vc-rcs-previous-revision
9525 and move to vc-rcs.el.
9526 (vc-default-next-revision): Rename to vc-rcs-next-revision and
9527 move to vc-rcs.el.
9528 (vc-cvs-update-changelog): Move to vc-cvs.el, use vc-call-backend.
9529 (vc-rcs-update-changelog): Remove.
9530 (vc-update-changelog-rcs2log): Rename to vc-rcs-update-changelog
9531 and move to vc-rcs.el.
9532
9533 * vc-rcs.el (vc-rcs-latest-on-branch-p, vc-rcs-checkin)
9534 (vc-rcs-checkout, vc-rcs-rollback): Adjust for the vc-rcs-trunk-p
9535 renaming.
9536 (vc-rcs-trunk-p, vc-rcs-minor-part, vc-rcs-previous-revision)
9537 (vc-rcs-next-revision, vc-rcs-update-changelog): Move here from
9538 vc.el, renamed to be RCS specific.
9539
9540 * vc-cvs.el (vc-cvs-previous-revision, vc-cvs-next-revision):
9541 New functions.
9542 (vc-cvs-update-changelog): Move here from vc.el.
9543
9544 * vc-sccs.el (vc-sccs-previous-revision, vc-sccs-next-revision):
9545 New functions.
9546
9547 2009-08-26 Stefan Monnier <monnier@iro.umontreal.ca>
9548
9549 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix up last change.
9550
9551 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
9552
9553 * vc-git.el (vc-git-register): Use "git add" for directories.
9554 (vc-git-stash, vc-git-stash-show): New functions.
9555 (vc-git-extra-menu-map): Bind them.
9556
9557 * vc-dir.el (vc-dir-node-directory, vc-dir-update): Get the parent
9558 directory correctly in case the item is a directory itself.
9559
9560 * vc.el: Document the desired behavior for reverted files in the
9561 `added' state.
9562 (vc-default-prettify-state-info): Remove function, unused.
9563
9564 * vc-bzr.el (vc-bzr-prettify-state-info): Remove function, unused.
9565
9566 2009-08-26 Glenn Morris <rgm@gnu.org>
9567
9568 * bindings.el (standard-mode-line-format): Reposition dashes in
9569 which-func entry. (Bug#4217)
9570
9571 * files.el (enable-local-variables, enable-local-eval)
9572 (safe-local-variable-values, safe-local-eval-forms): Mark as risky in
9573 the defcustoms.
9574 (auto-mode-alist, ignored-local-variables)
9575 (save-some-buffers-action-alist): Move risky declarations to the
9576 definitions.
9577 (dabbrev-case-fold-search, dabbrev-case-replace, display-time-string)
9578 (font-lock-defaults, format-alist, imenu--index-alist)
9579 (imenu-generic-expression, input-method-alist, minor-mode-alist)
9580 (mode-line-buffer-identification, mode-line-client, mode-line-modes)
9581 (mode-line-modified, mode-line-mule-info, mode-line-position)
9582 (mode-line-process, mode-line-remote, outline-level)
9583 (parse-time-rules, rmail-output-file-alist)
9584 (special-display-buffer-names, vc-mode):
9585 Move risky declarations to the relevant files.
9586 * bindings.el (mode-line-client, mode-line-mule-info, mode-line-remote)
9587 (mode-line-modified, mode-line-process, mode-line-position)
9588 (mode-line-modes, mode-line-buffer-identification, minor-mode-alist)
9589 * font-core.el (font-lock-defaults):
9590 * format.el (format-alist):
9591 * vc-hooks.el (vc-mode):
9592 * window.el (special-display-buffer-names):
9593 * international/mule-cmds.el (input-method-alist):
9594 Define riskiness here (dumped file) rather than in files.el.
9595 * dabbrev.el (dabbrev-case-fold-search, dabbrev-case-replace):
9596 * imenu.el (imenu-generic-expression, imenu--index-alist):
9597 * outline.el (outline-level):
9598 * time.el (display-time-string):
9599 * calendar/parse-time.el (parse-time-rules):
9600 * mail/rmailout.el (rmail-output-file-alist):
9601 Autoload riskiness here, rather than placing in files.el.
9602
9603 2009-08-26 Andreas Schwab <schwab@linux-m68k.org>
9604
9605 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Signal overflow.
9606
9607 2009-08-25 Michael Albinus <michael.albinus@gmx.de>
9608
9609 * simple.el (process-file-side-effects): New defvar.
9610
9611 * dired-aux.el (dired-show-file-type):
9612 * vc.el (vc-diff-internal):
9613 * vc-arch.el (vc-arch-diff):
9614 * vc-bzr.el (vc-bzr-sha1, vc-bzr-revision-completion-table):
9615 * vc-cvs.el (vc-cvs-state, vc-cvs-diff, vc-cvs-revision-table):
9616 * vc-git.el (vc-git-registered, vc-git-working-revision)
9617 (vc-git-find-revision, vc-git-diff, vc-git-revision-table)
9618 (vc-git--empty-db-p):
9619 * vc-hooks.el (vc-user-login-name):
9620 * vc-svn.el (vc-svn-registered, vc-svn-state)
9621 (vc-svn-dir-extra-headers, vc-svn-find-revision):
9622 * progmodes/grep.el (grep-probe): Let-bind
9623 `process-file-side-effects' with nil.
9624
9625 * net/dbus.el (dbus-ping): Add optional parameter TIMEOUT.
9626
9627 * net/tramp-gvfs.el (top): Use timeout of 100 msec pinging GVFS
9628 daemon. Replace ping by checking for running service for bluez
9629 and zeroconf. (Bug#4239)
9630
9631 2009-08-25 Kevin Ryde <user42@zip.com.au>
9632
9633 * net/dig.el (dig): Add autoload cookie.
9634
9635 2009-08-25 Glenn Morris <rgm@gnu.org>
9636
9637 * emacs-lisp/bytecomp.el (byte-compile-eval): Fix test for cl in
9638 load-history for absolute file-names.
9639 (byte-compile-file-form-require): Warn about use of the cl package.
9640
9641 * format.el (format-alist): Doc fix.
9642
9643 * play/bubbles.el (top-level): Don't require cl at run-time.
9644
9645 * progmodes/verilog-mode.el (top-level): Don't require lucid (and hence
9646 run-time cl).
9647
9648 2009-08-24 Dmitry Dzhus <dima@sphinx.net.ru>
9649
9650 * progmodes/gdb-mi.el (gdb-mapcar*): Replacement for `mapcar*'
9651 from cl package.
9652 (gdb-table-add-row, gdb-table-string): Use `gdb-mapcar*'.
9653
9654 2009-08-24 Jay Belanger <jay.p.belanger@gmail.com>
9655
9656 * calc/calc-alg.el (math-trig-rewrite)
9657 (math-hyperbolic-trig-rewrite): New functions.
9658 (calc-simplify): Simplify trig functions when asked.
9659
9660 2009-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
9661
9662 * diff-mode.el (diff-find-source-location): Avoid goto-line.
9663
9664 2009-08-24 Kenichi Handa <handa@m17n.org>
9665
9666 * language/ind-util.el (mapthread): Delete it.
9667 (combinatorial): New function.
9668 (indian--puthash-cv): Use combinatorial instead of mapthread.
9669
9670 2009-08-22 Kevin Ryde <user42@zip.com.au>
9671
9672 * emacs-lisp/checkdoc.el (checkdoc-force-history-flag)
9673 (checkdoc-arguments-in-order-flag): Add safe-local-variable booleanp.
9674 (checkdoc-symbol-words): Add safe-local-variable for list of strings.
9675 Clarify docstring that the value is strings not symbols.
9676 (checkdoc-list-of-strings-p): New function.
9677
9678 2009-08-22 Glenn Morris <rgm@gnu.org>
9679
9680 * files.el (auto-mode-alist):
9681 * hippie-exp.el (he-concat-directory-file-name):
9682 * lpr.el (lpr-windows-system, printer-name):
9683 * ls-lisp.el (ls-lisp-emulation, ls-lisp-use-insert-directory-program):
9684 * ps-print.el (ps-windows-system):
9685 * startup.el (command-line):
9686 * emulation/viper-ex.el (viper-glob-function):
9687 * international/mule-cmds.el (set-language-environment-coding-systems):
9688 * net/ange-ftp.el (ange-ftp-write-region):
9689 * obsolete/fast-lock.el (fast-lock-cache-name):
9690 Remove code for defunct system-types emx, macos, mswindows, next-mach,
9691 unisoft-unix, vax-vms, win32, w32.
9692
9693 * calendar/diary-lib.el (diary-mark-entries-1): Only mark all days of a
9694 given name if the pattern is not more specific.
9695
9696 * calendar/lunar.el (lunar-phase-names): New option.
9697 (lunar-phase): Doc fix.
9698 (lunar-cycles-per-year): New constant.
9699 (lunar-index): New function.
9700 (lunar-phase-list, diary-lunar-phases): Use lunar-index.
9701 (lunar-phase-name): Use lunar-phase-names.
9702 (calendar-lunar-phases): Use format.
9703 (lunar-new-moon-on-or-after): Use lunar-cycles-per-year.
9704
9705 * progmodes/cperl-mode.el (cperl-imenu-name-and-position):
9706 Copy imenu-example--name-and-position function here for own use.
9707 (cperl-xsub-scan): Use cperl-imenu-name-and-position.
9708
9709 * bs.el (bs--redisplay):
9710 * cus-edit.el (custom-redraw):
9711 * ibuffer.el (ibuffer-bury-buffer):
9712 * server.el (server-goto-line-column):
9713 * startup.el (command-line-1):
9714 * strokes.el (strokes-xpm-for-stroke):
9715 * term.el (term-display-buffer-line):
9716 * view.el (View-goto-line):
9717 * calc/calc.el (calc-do, calc-trail-buffer):
9718 * play/gamegrid.el (gamegrid-add-score-insecure):
9719 * progmodes/ada-mode.el (ada-compile-goto-error):
9720 * progmodes/ada-xref.el (ada-xref-find-in-modified-ali):
9721 (ebrowse-select-1st-to-9nth):
9722 * progmodes/cperl-mode.el (cperl-time-fontification):
9723 * progmodes/ebrowse.el (ebrowse-toggle-file-name-display)
9724 * progmodes/gud.el (gud-display-line):
9725 (idlwave-shell-display-line):
9726 * progmodes/idlw-shell.el (idlwave-shell-goto-frame)
9727 * progmodes/make-mode.el (makefile-browser-toggle):
9728 (vhdl-speedbar-port-copy, vhdl-compose-components-package):
9729 * progmodes/vhdl-mode.el (vhdl-speedbar-find-file)
9730 * textmodes/picture.el (picture-draw-rectangle):
9731 * textmodes/reftex-index.el (reftex-index-goto-letter):
9732 (reftex-select-jump-to-previous):
9733 * textmodes/reftex-sel.el (reftex-find-start-point)
9734 * textmodes/reftex-toc.el (reftex-toc, reftex-toc-restore-region):
9735 (rst-straighten-deco-spacing, rst-section-tree, rst-toc):
9736 * textmodes/rst.el (rst-promote-region, rst-straighten-decorations)
9737 * textmodes/tex-mode.el (tex-compilation-parse-errors):
9738 * textmodes/two-column.el (2C-associated-buffer):
9739 Use forward-line rather than goto-line.
9740
9741 * emulation/vi.el (vi-goto-line): Don't warn about non-interactive
9742 goto-line.
9743
9744 * international/ucs-normalize.el (nfd, decomposition-translation-alist)
9745 (decomposition-char-recursively, alist-list-to-vector, quick-check-list)
9746 (quick-check-list-to-regexp): Declare.
9747
9748 * progmodes/make-mode.el (makefile-browser-insert-selection):
9749 Use goto-char rather than goto-line.
9750
9751 * progmodes/prolog.el (compilation-error-regexp-alist)
9752 (compilation-forget-errors): Declare.
9753
9754 2009-08-22 Juri Linkov <juri@jurta.org>
9755
9756 * progmodes/grep.el (lgrep, rgrep): At the beginning
9757 set `dir' to `default-directory' unless `dir' is a non-nil
9758 readable directory. (Bug#4052)
9759 (lgrep, rgrep): Change a weird way to report an error
9760 from using `read-string' to using `error'.
9761 Instead of using interactive arguments in the function body,
9762 add new argument `confirm'.
9763
9764 2009-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
9765
9766 * textmodes/remember.el (remember-buffer):
9767 * progmodes/cperl-mode.el (cperl-vc-header-alist):
9768 * calendar/icalendar.el (icalendar-convert-diary-to-ical)
9769 (icalendar-extract-ical-from-buffer):
9770 * net/newst-treeview.el (newsticker-groups-filename):
9771 * net/newst-backend.el (newsticker-cache-filename):
9772 * speedbar.el (speedbar-update-speed, speedbar-navigating-speed)
9773 (speedbar-ignored-path-expressions, speedbar-ignored-path-regexp)
9774 (speedbar-add-ignored-path-regexp, speedbar-line-path)
9775 (speedbar-buffers-line-path, speedbar-path-line)
9776 (speedbar-buffers-line-path):
9777 * epg.el (epg-passphrase-callback-function, epg-start-sign-keys)
9778 (epg-sign-keys):
9779 * epa.el (epa-display-verify-result):
9780 * progmodes/pascal.el (pascal-outline): Add version of obsolescence.
9781
9782 2009-08-21 Glenn Morris <rgm@gnu.org>
9783
9784 * progmodes/js.el (inferior-moz-process): Fix declaration.
9785
9786 * imenu.el (imenu-example--name-and-position): Fix obsolescence message.
9787
9788 * obsolete/rnewspost.el (news-mail-reply):
9789 Use goto-char rather than goto-line.
9790
9791 * term/ns-win.el (ns-open-file-select-line):
9792 Use line-beginning-position rather than goto-line.
9793
9794 * apropos.el (apropos-command):
9795 * ehelp.el (electric-helpify):
9796 * printing.el (pr-show-setup):
9797 * strokes.el (strokes-help):
9798 * tutorial.el (tutorial--describe-nonstandard-key)
9799 (tutorial--detailed-help):
9800 * woman.el (woman-mini-help, woman-display-extended-fonts):
9801 * calc/calc-help.el (calc-describe-key):
9802 * emulation/edt.el (edt-electric-helpify):
9803 * international/mule-diag.el (mule-diag):
9804 * play/yow.el (apropos-zippy):
9805 * progmodes/python.el (python-describe-symbol):
9806 * progmodes/vhdl-mode.el (vhdl-doc-variable, vhdl-doc-mode):
9807 * textmodes/table.el (*table--cell-describe-mode)
9808 (*table--cell-describe-bindings):
9809 Use help-print-return-message rather than the now obsolete alias.
9810
9811 * calendar/cal-move.el (calendar-cursor-to-nearest-date)
9812 (calendar-cursor-to-visible-date):
9813 * play/5x5.el (5x5-position-cursor):
9814 * play/decipher.el (decipher):
9815 * play/gomoku.el (gomoku-goto-xy):
9816 * play/landmark.el (lm-goto-xy):
9817 * play/mpuz.el (mpuz-paint-errors, mpuz-paint-statistics)
9818 (mpuz-paint-digit):
9819 Use forward-line, not goto-line.
9820
9821 * mail/rmail.el (rmail-obsolete): Delete custom group.
9822 (rmail-pop-password, rmail-pop-password-required): Make into aliases.
9823 (rmail-remote-password, rmail-remote-password-required):
9824 Remove unneeded :set-after and :set properties.
9825
9826 2009-08-21 Michael Albinus <michael.albinus@gmx.de>
9827
9828 * net/dbus.el (top): Initialize only when `dbusbind' is loaded.
9829
9830 2009-08-21 Dan Nicolaescu <dann@ics.uci.edu>
9831
9832 * loadup.el: Remove leftover macos code.
9833
9834 * vc-git.el (vc-git-annotate-command): Run asynchronously.
9835 Explicitly pass the date format to git blame so that user local
9836 so that the output format can be parsed.
9837
9838 2009-08-20 Michael Albinus <michael.albinus@gmx.de>
9839
9840 * net/dbus.el (top): Don't check for (getenv
9841 "DBUS_SESSION_BUS_ADDRESS"). It's done in dbusbind.c now.
9842
9843 2009-08-19 Magnus Henoch <magnus.henoch@gmail.com>
9844
9845 * log-edit.el (log-edit-strip-single-file-name): New var.
9846 (log-edit-insert-changelog): Use it. Bug#3571
9847
9848 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
9849
9850 * subr.el (read-passwd): Use read-key so keypad keys work as well.
9851 Bug#3287
9852
9853 * help.el (help-print-return-message): Rename from
9854 print-help-return-message.
9855
9856 * log-view.el (log-view-mode-map): Remove `q' binding, and unreliable
9857 cvs-mode-map parent hack.
9858 (log-view-mode): Derive from special-mode.
9859
9860 * linum.el (linum-mode): window-size-change-functions is redundant.
9861 Adapt to new window-configuration-change-hook behavior.
9862 (linum-after-size, linum-after-config): Remove.
9863
9864 * imenu.el (imenu-example--name-and-position)
9865 (imenu-example--lisp-extract-index-name)
9866 (imenu-example--create-lisp-index, imenu-example--create-c-index):
9867 Mark as obsolete.
9868
9869 * progmodes/prolog.el (inferior-prolog-error-regexp-alist): New var.
9870 (inferior-prolog-mode): Use it.
9871 (inferior-prolog-load-file): Reset list of errors.
9872
9873 2009-08-19 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
9874
9875 * language/tibetan.el ("Tibetan"): Fix sample-text entry.
9876
9877 * language/tai-viet.el ("TaiViet"): Fix sample-text entry.
9878
9879 2009-08-19 Michael Albinus <michael.albinus@gmx.de>
9880
9881 * net/dbus.el (top): Apply `dbus-init-bus' only if the session bus
9882 is running already.
9883
9884 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
9885
9886 * subr.el (listify-key-sequence-1): Use normal syntax since those
9887 integers are nowadays always represented by the same (positive) number
9888 on all platforms.
9889 (read-key-empty-map): New const.
9890 (read-key-delay): New var.
9891 (read-key): New function.
9892 (force-mode-line-update): Use with-current-buffer.
9893 (locate-user-emacs-file): Don't forget to abbreviate the file name.
9894 (start-process-shell-command, start-file-process-shell-command):
9895 Discourage the use of command-args.
9896
9897 2009-08-19 Glenn Morris <rgm@gnu.org>
9898
9899 * emacs-lisp/authors.el (authors-fixed-entries): Remove cvtmail.
9900
9901 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
9902
9903 * simple.el (choose-completion-string): Don't rely on
9904 minibuffer-completing-file-name and ad-hoc checks to decide whether
9905 to continue completion or not.
9906
9907 * minibuffer.el (minibuffer-hide-completions): New function.
9908 (completion--do-completion): Use it.
9909 (completions-annotations): New face.
9910 (completion--insert-strings): Use it.
9911 (completion-pcm--delim-wild-regex): Add docstring.
9912 (completion-pcm--string->pattern): Add support for 0-width delimiters
9913 in completion-pcm--delim-wild-regex.
9914
9915 2009-08-18 Stefan Monnier <monnier@iro.umontreal.ca>
9916
9917 * international/ucs-normalize.el (ucs-normalize-hfs-nfd-post-read-conversion):
9918 Remove unused var `buffer-modified-p'.
9919
9920 * minibuffer.el (completion--do-completion): Move point for the #b001
9921 case as well (bug#4176).
9922 (minibuffer-complete, minibuffer-complete-word): Don't move point.
9923
9924 2009-08-18 Michael Albinus <michael.albinus@gmx.de>
9925
9926 * net/dbus.el (dbus-init-bus): Declare. Apply it for the :system
9927 and :session buses.
9928
9929 2009-08-18 Kenichi Handa <handa@m17n.org>
9930
9931 * international/ucs-normalize.el (ucs-normalize-version):
9932 Change to 1.1.
9933 (ucs-normalize-hfs-nfd-pre-write-conversion): New function.
9934 (utf-8-hfs): Make it perform normalization on encoding too.
9935
9936 * textmodes/paragraphs.el: Change to utf-8. Adjust coding cookie.
9937 (sentence-end-without-space): Delete duplicated chars.
9938 (sentence-end-base): Likewise.
9939
9940 * textmodes/sgml-mode.el: Change to utf-8. Adjust coding cookie.
9941 (html-mode): Delete duplicated chars from sentence-end-base.
9942
9943 * textmodes/texinfo.el: Change to utf-8. Adjust coding cookie.
9944 (texinfo-mode): Delete duplicated chars from sentence-end-base.
9945
9946 2009-08-17 Chong Yidong <cyd@stupidchicken.com>
9947
9948 * files.el (hack-one-local-variable): If the mode function is for
9949 a minor mode, pass it an argument (Bug#4148).
9950
9951 2009-08-17 Michael Albinus <michael.albinus@gmx.de>
9952
9953 * net/tramp.el (tramp-register-completion-file-name-handler):
9954 Check also for (member 'partial-completion completion-styles).
9955
9956 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
9957
9958 * progmodes/cperl-mode.el (cperl-electric-paren): Don't expand
9959 abbrev (Bug#3943).
9960
9961 2009-08-16 Ilya Zakharevich <ilyaz@cpan.org>
9962
9963 * progmodes/cperl-mode.el: Merge upstream 6.2.
9964 (cperl-mode-syntax-table): Modify syntax entry for ["'`].
9965 (cperl-forward-re): Check cperl-brace-recursing.
9966 (cperl-highlight-charclass): New function.
9967 (cperl-find-pods-heres): Use it.
9968 (cperl-fill-paragraph): Synch to save-excursion placement used upstream.
9969 (cperl-beautify-regexp-piece): Fix column calculation.
9970 (cperl-make-regexp-x): Handle case where point is between "q" and "rs".
9971 (cperl-beautify-level): Don't process entire regexp.
9972 (cperl-build-manpage, cperl-perldoc): Bind Man-switches before
9973 calling man.
9974 (cperl-tips-faces, cperl-mode, cperl-electric-backspace): Doc fix.
9975 (cperl-init-faces): Build a list in the normal way.
9976
9977 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
9978
9979 * calendar/parse-time.el (parse-time-string-chars): Save match
9980 data.
9981
9982 2009-08-16 Stefan Monnier <monnier@iro.umontreal.ca>
9983
9984 * progmodes/sql.el (sql-product-alist): Add :name tag to entries.
9985 (sql-product): Use it.
9986 (sql-mode-menu): Auto-generate the menu based on sql-product-alist.
9987 (sql-set-product): Add completion.
9988 (sql-highlight-oracle-keywords, sql-highlight-postgres-keywords)
9989 (sql-highlight-linter-keywords, sql-highlight-ms-keywords)
9990 (sql-highlight-ansi-keywords, sql-highlight-sybase-keywords)
9991 (sql-highlight-informix-keywords, sql-highlight-interbase-keywords)
9992 (sql-highlight-ingres-keywords, sql-highlight-solid-keywords)
9993 (sql-highlight-mysql-keywords, sql-highlight-sqlite-keywords)
9994 (sql-highlight-db2-keywords): Remove.
9995 (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
9996 (sql-highlight-product): Use derived-mode-p.
9997 (sql-set-sqli-buffer): Use with-current-buffer.
9998 (sql-connect-informix, sql-connect-ingres, sql-connect-oracle):
9999 Simplify.
10000
10001 * emacs-lisp/lisp-mode.el (lisp-indent-region): Remove unused function.
10002
10003 * term.el: Fix commenting convention, turn comments into docstrings.
10004
10005 2009-08-16 E. Jay Berkenbilt <ejb@ql.org> (tiny change)
10006
10007 * whitespace.el (whitespace-style): Doc fix (Bug#3661).
10008
10009 2009-08-16 Jan Seeger <jan.seeger@thenybble.de> (tiny change)
10010
10011 * calendar/parse-time.el (parse-time-string-chars): Compute using
10012 character classes, to handle non-ascii characters (Bug#3190).
10013
10014 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
10015
10016 * progmodes/sh-script.el (sh-maybe-here-document): Avoid inserting
10017 another heredoc if the user adds another < (Bug#3226).
10018
10019 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
10020 Don't initialize based on window-system (Bug#4124).
10021
10022 * facemenu.el (facemenu-read-color): Use a completion function
10023 that accepts any defined color, such as RGB triplets (Bug#3677).
10024
10025 * files.el (get-free-disk-space): Change fallback default
10026 directory to /. Expand DIR argument before switching to fallback.
10027 Suggested by Kevin Ryde (Bug#2631, Bug#3911).
10028
10029 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
10030
10031 * files.el (load-library): Doc fix.
10032
10033 2009-08-15 Michael Kifer <kifer@cs.stonybrook.edu>
10034
10035 * emulation/viper-cmd.el (viper-insert-isearch-string): New function.
10036 (viper-if-string): Redefine C-s in the minibuffer to insert the last
10037 incremental search string.
10038
10039 * ediff-init.el (ediff-coding-system): Use escape-quoted in case of
10040 XEmacs.
10041
10042 * ediff-merg.el (ediff-merge-region-is-non-clash-to-skip)
10043 (ediff-merge-region-is-non-clash)
10044 (ediff-skip-merge-region-if-changed-from-default-p): Use defun.
10045 Also check if the job is really a merge job.
10046
10047 * ediff.el (ediff-current-file): New function.
10048
10049 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
10050
10051 * progmodes/js.el: Edit docstrings throughout to follow Emacs
10052 conventions.
10053 (js-insert-and-indent): Delete function.
10054 (js-mode-map): Don't bind keys to js-insert-and-indent.
10055 (js-beginning-of-defun): Rename from js--beginning-of-defun.
10056 (js-end-of-defun): Rename from js--end-of-defun.
10057 (js-auto-indent-flag): Delete variable.
10058
10059 2009-08-14 Chong Yidong <cyd@stupidchicken.com>
10060
10061 * progmodes/js.el: Remove proclaim statement.
10062 Defvar which-func-imenu-joiner-function to silence compiler.
10063
10064 * files.el (auto-mode-alist): Use js-mode for .js files.
10065
10066 * progmodes/js2-mode.el: Remove file.
10067
10068 * Makefile.in (ELCFILES): Add js.el, and remove js2-mode.el.
10069
10070 * speedbar.el (speedbar-supported-extension-expressions): Add .js.
10071
10072 * progmodes/hideshow.el (hs-special-modes-alist): Add js-mode entry.
10073
10074 2009-08-14 Daniel Colascione <dan.colascione@gmail.com>
10075 Karl Landstrom <karl.landstrom@brgeight.se>
10076
10077 * progmodes/js.el: New file.
10078
10079 2009-08-14 Mark A. Hershberger <mah@everybody.org>
10080
10081 * timezone.el (timezone-parse-date): Add ability to understand ISO
10082 basic format (minimal separators) dates in addition to the
10083 already-supported extended format dates.
10084
10085 2009-08-14 Eli Zaretskii <eliz@gnu.org>
10086
10087 * international/ucs-normalize.el: Add a `coding' file variable.
10088
10089 * Makefile.in (ELCFILES): Add international/ucs-normalize.elc.
10090
10091 2009-08-14 Sam Steingold <sds@gnu.org>
10092
10093 * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
10094
10095 2009-08-13 Chong Yidong <cyd@stupidchicken.com>
10096
10097 * faces.el (help-argument-name): Define it here instead of
10098 help-fns.el, because in daemon mode help-fns.el may be loaded when
10099 faces are still uninitialized (Bug#1078).
10100
10101 * help-fns.el (help-argument-name): Move defface to faces.el.
10102
10103 2009-08-13 Nick Roberts <nickrob@snap.net.nz>
10104
10105 * progmodes/gdb-mi.el (gdb-inferior-io-mode): Use start-process to
10106 create buffer with a pty but no process so that GDB can make the
10107 inferior the controlling process.
10108
10109 2009-08-13 Taichi Kawabata <kawabata.taichi@gmail.com>
10110
10111 * international/ucs-normalize.el: New file.
10112
10113 2009-08-13 Richard Stallman <rms@gnu.org>
10114
10115 * mail/rmail.el (rmail-get-attr-names):
10116 Accept an attribute header that is too short.
10117
10118 * mail/rmail.el (rmail-forget-messages):
10119 Ignore nil elt in rmail-message-vector. Use dotimes.
10120
10121 * progmodes/compile.el (compilation-goto-locus):
10122 Use next-error-move-function.
10123
10124 * simple.el (next-error-move-function): New variable.
10125
10126 2009-08-12 Juri Linkov <juri@jurta.org>
10127
10128 * progmodes/grep.el (lgrep): Ensure that `default-directory' is
10129 always non-nil. (Bug#4052)
10130
10131 * replace.el (read-regexp): Return empty string when
10132 `default-value' is nil.
10133 (keep-lines-read-args): Don't use empty string as the
10134 default value for `read-regexp'. (Bug#2495)
10135
10136 2009-08-12 Juri Linkov <juri@jurta.org>
10137
10138 * international/mule-cmds.el (ucs-insert): Change arguments
10139 from `arg' to `character', `count', `inherit' to be the same
10140 as in `insert-char'. Doc fix. (Bug#4039)
10141
10142 * international/mule-conf.el (utf-16be-with-signature): Doc fix.
10143
10144 2009-08-12 Juri Linkov <juri@jurta.org>
10145
10146 * files-x.el: New file.
10147
10148 * files.el: Move code that deals with adding/deleting
10149 file/directory-local variables to files-x.el.
10150
10151 * Makefile.in (ELCFILES): Add files-x.elc.
10152
10153 2009-08-11 Dmitry Dzhus <dima@sphinx.net.ru>
10154
10155 * progmodes/gdb-mi.el (gdb-line-posns): New helper which helps not
10156 to use `goto-line'.
10157 (gdb-place-breakpoints, gdb-get-location): Rewritten without
10158 `goto-line'.
10159 (gdb-invalidate-disassembly): Do not refresh upon receiving
10160 'update signal. Instead, update all disassembly buffers only after
10161 threads list.
10162 (gdb): Send -target-detach when buffer is killed (Bug#3794).
10163 (gdb-starting): Moved -data-list-register-names...
10164 (gdb-stopped): ...here so it's sent when first thread stops.
10165 (gdb-registers-handler-custom): Do nothing if register names are
10166 unknown yet.
10167
10168 * progmodes/gud.el (gud-stop-subjob): Rewritten without macros
10169 from `gdb-mi.el' to avoid extra tangling.
10170
10171 * progmodes/gdb-mi.el (gdb-gud-context-call): Reverting previous
10172 change which breaks `gud-def' definitions used in `gdb'.
10173 (gdb-update-gud-running): No extra fuss for updating frame number.
10174
10175 2009-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
10176
10177 * international/mule-cmds.el (mule-keymap, mule-menu-keymap)
10178 (describe-language-environment-map, setup-language-environment-map)
10179 (set-coding-system-map): Move initialization into declaration.
10180 (set-language-info-alist): Last arg to define-key-after can be skipped.
10181
10182 * international/quail.el (quail-completion-1): Simplify.
10183 (quail-define-rules): Use slightly more compact code.
10184 (quail-insert-decode-map): Propertize keys, compact columns.
10185
10186 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
10187 Add goto-line.
10188
10189 2009-08-10 Miles Bader <miles@gnu.org>
10190
10191 * progmodes/js2-mode.el (js2-warning, js2-error, js2-jsdoc-tag)
10192 (js2-jsdoc-type, js2-jsdoc-value, js2-function-param)
10193 (js2-instance-member, js2-private-member, js2-private-function-call)
10194 (js2-jsdoc-html-tag-name, js2-jsdoc-html-tag-delimiter)
10195 (js2-magic-paren, js2-external-variable):
10196 Remove "-face" suffix from face names.
10197 (js2-jsdoc-highlight-helper, js2-highlight-jsdoc)
10198 (js2-highlight-undeclared-vars, js2-peek-token)
10199 (js2-parse-function-params, js2-mode-show-errors)
10200 (js2-mode-show-warnings, js2-make-magic-delimiter)
10201 (js2-mode-highlight-magic-parens): Update to use new face names.
10202
10203 2009-08-09 Michael Albinus <michael.albinus@gmx.de>
10204
10205 * net/tramp.el (tramp-get-ls-command-with-dired): New defun.
10206 (tramp-handle-insert-directory): Handle "--dired". (Bug#4075)
10207
10208 2009-08-09 Chong Yidong <cyd@stupidchicken.com>
10209
10210 * subr.el: Provide hashtable-print-readable.
10211
10212 * progmodes/hideshow.el (hs-special-modes-alist): Don't use
10213 hs-c-like-adjust-block-beginning.
10214 (hs-hide-block-at-point): Stop hiding at the beginning of
10215 hs-block-end-regexp (Bug#700).
10216
10217 2009-08-09 Dmitry Dzhus <dima@sphinx.net.ru>
10218
10219 * progmodes/gdb-mi.el (gdb-gud-context-call): Does not need to be
10220 a macro.
10221 (gdb-registers-handler-custom): Do not fail when register names
10222 are unavailable.
10223
10224 2009-08-08 Dmitry Dzhus <dima@sphinx.net.ru>
10225
10226 * progmodes/gdb-mi.el (gdb-control-all-threads)
10227 (gdb-control-current-thread): Interactive setters for
10228 `gdb-gud-control-all-threads' to use in menu.
10229 (gdb-show-run-p): Show «Go» when process is not active.
10230 (gud-tool-bar-map): Add non-stop/A,T indicator. Uses
10231 gud/thread.xpm and gud/all.xpm.
10232
10233 2009-08-08 Yoni Rabkin <yoni@rabkins.net>
10234
10235 * net/net-utils.el (net-utils-font-lock-keywords): New var.
10236 (nslookup-font-lock-keywords): Make it a variable.
10237 (net-utils-mode): New mode for viewing diagnostic network output.
10238 (net-utils-remove-ctrl-m-filter): Set inhibit-read-only.
10239 (net-utils-run-simple): New function.
10240 (ifconfig, iwconfig, netstat, arp, route): Use it.
10241
10242 2009-08-08 Dmitry Dzhus <dima@sphinx.net.ru>
10243
10244 * progmodes/gdb-mi.el (gdb-read-memory-custom)
10245 (gdb-memory-set-address, def-gdb-set-positive-number)
10246 (def-gdb-memory-format, def-gdb-memory-unit): Update memory buffer
10247 after changing settings.
10248 (gdb-invalidate-disassembly): Update when first shown.
10249 (gdb-edit-locals-value): Fixed.
10250 (gdb-registers-handler-custom): Print registers in right order and
10251 allow changing register values (only for current thread yet).
10252 (gdb-breakpoints-mode-map): Don't assume threads buffer is present.
10253 (gdb-threads-mode-map): Don't assume breakpoints buffer is present.
10254 (gdb-disassembly-handler-custom, gdb-stack-list-frames-custom)
10255 (gdb-locals-handler-custom, gdb-registers-handler-custom): Thread
10256 info in mode name.
10257 (gdb-registers-mode-map): TAB to switch to locals.
10258
10259 2009-08-08 Eli Zaretskii <eliz@gnu.org>
10260
10261 * mail/rmail.el (rmail-add-mbox-headers)
10262 (rmail-set-message-counters-counter): Search for
10263 rmail-unix-mail-delimiter instead of just "From ". (Bug#4076)
10264
10265 2009-08-08 Glenn Morris <rgm@gnu.org>
10266
10267 * Makefile.in (ELCFILES): Update.
10268
10269 2009-08-07 Eli Zaretskii <eliz@gnu.org>
10270
10271 * mail/sendmail.el (mail-yank-original): Set
10272 buffer-file-coding-system from the one used by the message whose
10273 text is yanked.
10274
10275 * calc/calc-graph.el (calc-graph-plot): Set calc-graph-last-device
10276 to "windows" when "pgnuplot" is used.
10277 (calc-graph-command, calc-gnuplot-command, calc-graph-init): Don't
10278 call accept-process-output if "pgnuplot" is used.
10279 (calc-graph-init): Don't send -display and -geometry to
10280 "pgnuplot". If "pgnuplot" is used, glean gnuplot version by
10281 running "pgnuplot -V" with shell-command-to-string.
10282
10283 * calc/calc.el (calc-gnuplot-name) [windows-nt]: Use "pgnuplot" as
10284 the default.
10285
10286 2009-08-07 Eli Zaretskii <eliz@gnu.org>
10287
10288 * Makefile.in (ELCFILES): org/org-export-latex.elc renamed to
10289 org/org-latex.elc.
10290
10291 2009-08-07 Dan Nicolaescu <dann@ics.uci.edu>
10292
10293 * vc-dispatcher.el (vc-resynch-window): Update comment.
10294
10295 * term.el (term-handle-ansi-escape): Add comments with the
10296 terminfo capabilities implemented.
10297
10298 2009-08-06 Dmitry Dzhus <dima@sphinx.net.ru>
10299
10300 * progmodes/gdb-mi.el (gdb-var-create-regexp): Removed.
10301 (gdb-var-create-handler): Rewritten using JSON parser.
10302 (gdb-propertize-header): Moved earlier.
10303 (gdb-set-header): Removed to avoid duplication.
10304 (gdb-thread-list-handler-custom, gdb-invalidate-disassembly):
10305 Refresh disassembly buffers only after threads list have been
10306 update.
10307 (gdb-threads-header, gdb-registers-header): Per-buffer header line
10308 variables.
10309
10310 2009-08-04 Juri Linkov <juri@jurta.org>
10311
10312 * files.el: Commands to add/delete file/directory-local variables.
10313 (read-file-local-variable, read-file-local-variable-value)
10314 (read-file-local-variable-mode, modify-file-local-variable)
10315 (modify-file-local-variable-prop-line)
10316 (modify-dir-local-variable): New functions.
10317 (add-file-local-variable, delete-file-local-variable)
10318 (add-file-local-variable-prop-line, delete-file-local-variable-prop-line)
10319 (add-dir-local-variable, delete-dir-local-variable)
10320 (copy-file-locals-to-dir-locals, copy-dir-locals-to-file-locals)
10321 (copy-dir-locals-to-file-locals-prop-line): New commands.
10322
10323 2009-08-04 Chong Yidong <cyd@stupidchicken.com>
10324
10325 * abbrev.el (insert-abbrev-table-description): Prettify output.
10326 Suggested by Karl Chen.
10327
10328 2009-08-04 Dmitry Dzhus <dima@sphinx.net.ru>
10329
10330 * progmodes/gdb-mi.el (gdb-frame-number): Initialize with nil.
10331 (gdb-overlay-arrow-position): Rename to `gdb-disassembly-position'.
10332 (gdb-overlay-arrow-position, gdb-thread-position)
10333 (gdb-disassembly-position): Declare variables.
10334 (gdb-wait-for-pending): Function now.
10335 (gdb-add-subscriber, gdb-delete-subscriber, gdb-get-subscribers)
10336 (gdb-emit-signal, gdb-buf-publisher): Declare before first use so
10337 compilation goes smoothly.
10338 (gdb, gdb-non-stop, gdb-buffers): New customization groups.
10339 (gdb-non-stop-setting): New customization setting which replaces
10340 `gdb-non-stop' so changing it doesn't break active GDB session.
10341 (gdb-stack-buffer-locations, gdb-stack-buffer-addresses)
10342 (gdb-thread-buffer-verbose-names, gdb-thread-buffer-arguments)
10343 (gdb-thread-buffer-locations, gdb-thread-buffer-addresses)
10344 (gdb-show-threads-by-default): New customization options.
10345 (gdb-buffer-type, gdb-buffer-shows-main-thread-p): New helper
10346 routines.
10347 (gdb-get-buffer-create): Send buffers update signal when they are
10348 created.
10349 (gdb-invalidate-locals, gdb-invalidate-registers)
10350 (gdb-invalidate-breakpoints)
10351 (gdb-invalidate-threads, gdb-invalidate-disassembly)
10352 (gdb-invalidate-memory): Accept update signal.
10353 (gdb-current-context-command): Use --frame option.
10354 (gdb-update-gud-running, gdb-running, gdb-setq-thread-number):
10355 Implement `gdb-frame-number' selection logic.
10356 (gdb-show-run-p, gdb-show-stop-p): Helper functions which decide
10357 whether to show GUD toolbar buttons.
10358 (gdb-thread-exited): Unselect current thread when it exits.
10359 (gdb-stopped): Typo fixed (now really runs `gdb-stopped-hooks').
10360 (gdb-mark-line): Routine which sets overlay arrow or inverses
10361 video on fringeless displays.
10362 (gdb-table, gdb-table-add-row, gdb-table-string): Structure used
10363 to build aligned columns of data in GDB buffers and set text
10364 properties line-by-line.
10365 (gdb-invalidate-breakpoints)
10366 (gdb-breakpoints-list-handler-custom)
10367 (gdb-thread-list-handler-custom, gdb-disassembly-handler-custom)
10368 (gdb-stack-list-frames-custom, gdb-locals-handler-custom)
10369 (gdb-registers-handler-custom): Align data columns.
10370 (gdb-locals-handler-custom): Now prints data like in variable
10371 declarations.
10372 (gdb-jump-to, gdb-file-button, gdb-insert-file-location-button):
10373 Removed confusing buttons.
10374 (gdb-invalidate-threads): Append --frame.
10375 (gdb-threads-mode-map, gdb-breakpoints-mode-map): TAB to switch
10376 between breakpoints/threads buffers.
10377 (gdb-set-window-buffer): Now can ignore dedicated windows.
10378 (gdb-propertize-header): Use `gdb-set-window-buffer'.
10379 (def-gdb-thread-buffer-simple-command): Numerous typos fixed.
10380 (def-gdb-thread-buffer-gud-command): Replaces
10381 `def-gdb-thread-buffer-gdb-command' and uses standard GUD commands
10382 for fine thread control.
10383 (gdb-preempt-existing-or-display-buffer): New function used to
10384 display bound buffers without breaking window layout.
10385 (gdb-frame-location): Replaces `gdb-insert-frame-location'.
10386 (gdb-select-frame): New version of `gdb-frames-select' which now
10387 sets `gdb-frame-number' so commands may use --frame option instead
10388 of inner debugger state.
10389 (gdb-frame-handler): Do not set `gdb-frame-number'.
10390 (gdb-threads-mode-map): Select threads with mouse.
10391
10392 * progmodes/gud.el (gdb-gud-context-call): Declare function to
10393 avoid compilation warning.
10394 (gud-menu-map, gud-minor-mode-map): Use `gdb-show-run-p` and
10395 `gdb-show-stop-p`.
10396
10397 * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create):
10398 Argument `key' renamed to `buffer-type'.
10399 (gdb-current-context-buffer-name): Do not add thread info to
10400 buffer name when no thread is selected.
10401 (gdbmi-record-list, gdb-shell): Try to handle GDB `shell'
10402 command (bug 3794).
10403 (gdb-thread-selected): Handle `=thread-selected' notification.
10404 (gdb-wait-for-pending): New macro to deal with congestion problems.
10405 (gdb-breakpoints-list-handler-custom): Don't fail on pending
10406 breakpoints.
10407 (gdb-invalidate-disassembly): Use 'fullname instead of 'file.
10408 This fixes problem similar to one described in bug 3947.
10409 (gud-menu-map): More menu items.
10410 (gdb-init-1): Reset `gdb-thread-number' to nil.
10411
10412 * progmodes/gud.el (gud-stop-subjob, gud-menu-map): Respect GDB
10413 non-stop settings.
10414
10415 * progmodes/gdb-mi.el (gdb-thread-number): Initialize with nil.
10416 (gdb-current-context-command): Do not append --thread if
10417 `gdb-thread-number' is nil.
10418 (gdb-running-threads-count, gdb-stopped-threads-count): New
10419 variables.
10420 (gdb-non-stop, gdb-gud-control-all-threads, gdb-switch-reasons)
10421 (gdb-stopped-hooks, gdb-switch-when-another-stopped): New
10422 customization options.
10423 (gdb-gud-context-command, gdb-gud-context-call): New wrappers for
10424 GUD commands.
10425 (gdb): `gud-def' definitions changed to use `gdb-gud-context-call'.
10426 (gdb-init-1): Activate non-stop mode if `gdb-non-stop' is enabled.
10427 (gdb-setq-thread-number, gdb-update-gud-running): New functions to
10428 set `gdb-thread-number' and update `gud-running' properly.
10429 (gdb-running): Update threads list when new threads appear.
10430 (gdb-stopped): Support non-stop operation and new thread switching
10431 logic.
10432 (gdb-jsonify-buffer, gdb-json-read-buffer, gdb-json-string)
10433 (gdb-json-partial-output): New set of JSON routines.
10434 (def-gdb-auto-update-trigger): New `signal-list' optional
10435 argument.
10436 (gdb-thread-list-handler-custom): Update `gud-running',
10437 `gdb-stopped-threads-count' and `gdb-running-threads-count'.
10438 (def-gdb-thread-buffer-gdb-command, gdb-interrupt-thread)
10439 (gdb-continue-thread, gdb-step-thread): New commands for fine
10440 thread execution control.
10441 (gud-menu-map): New menu items to switch non-stop options.
10442 (gdb-reset): Cleanup `gdb-thread-position' overlay arrow marker.
10443 (gdb-send): Mimic RET properly (bug 3794).
10444
10445 * progmodes/gdb-mi.el (gdb-rules-name-maker)
10446 (gdb-rules-buffer-mode, gdb-rules-update-trigger): Accessors for
10447 gdb-buffer-rules.
10448 (def-gdb-auto-update-handler): New nopreserve optional argument.
10449 (gdb-stack-list-frames-custom): Print stack from top to bottom.
10450
10451 * progmodes/gdb-mi.el (gdb-pc-address): Removed unused variable.
10452 (gdb-threads-list, gdb-breakpoints-list): New assoc lists.
10453 (gdb-parent-mode): New mode to derive other GDB modes from.
10454 (gdb-display-disassembly-for-thread)
10455 (gdb-frame-disassembly-for-thread): New commands for threads
10456 buffer.
10457
10458 * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create)
10459 (gdb-init-1, gdb-bind-function-to-buffer, gdb-add-subscriber)
10460 (gdb-get-subscribers, gdb-emit-signal, gdb-buf-publisher)
10461 (gdb-update): We now store all GDB buffers in a list so that they
10462 can be updated by traversing a list instead of calling invalidate
10463 triggers explicitly.
10464 (def-gdb-trigger-and-handler): New macro to define trigger-handler
10465 pair for GDB buffer.
10466 (gdb-stack-buffer-name): Add thread information.
10467 (gdb-add-pending, gdb-pending-p, gdb-delete-pending): Macros to
10468 handle pending triggers.
10469 (gdb-threads-mode-map, def-gdb-thread-buffer-command)
10470 (def-gdb-thread-buffer-simple-command)
10471 (gdb-display-stack-for-thread, gdb-display-locals-for-thread)
10472 (gdb-display-registers-for-thread, gdb-frame-stack-for-thread)
10473 (gdb-frame-locals-for-thread, gdb-frame-registers-for-thread):
10474 New commands which show buffers bound to thread.
10475 (gdb-stack-list-locals-regexp): Removed unused regexp.
10476
10477 * progmodes/gdb-mi.el (gdb-breakpoints-buffer-name)
10478 (gdb-locals-buffer-name, gdb-registers-buffer-name)
10479 (gdb-memory-buffer-name, gdb-stack-buffer-name): Do not switch
10480 to (gud-comint-buffer) in *-buffer-name functions
10481 because (gdb-get-target-string) already does that.
10482 (gdb-locals-handler-custom, gdb-registers-handler-custom)
10483 (gdb-changed-registers-handler): Rewritten without regexps.
10484
10485 * progmodes/gdb-mi.el: Basic thread selection support.
10486 (gdb-thread-number): New variable.
10487 (gdb-current-context-command): New macro which adds --thread
10488 option to command.
10489 (gdb-threads-mode-map): Select thread with SPC.
10490 (gdb-thread-list-handler-custom): Mark current thread with overlay
10491 arrow. Synchronize GDB thread and Emacs thread.
10492 (gdb-select-thread): New command which selects current thread.
10493 (gdb-invalidate-frames, gdb-invalidate-locals)
10494 (gdb-invalidate-registers): Use --thread option.
10495
10496 2009-08-04 Michael Albinus <michael.albinus@gmx.de>
10497
10498 * net/tramp.el (top): Make check for tramp-gvfs loading more
10499 robust. (Bug#3977)
10500 (tramp-handle-insert-file-contents): `unwind-protect' must be
10501 inside `with-parsed-tramp-file-name'.
10502
10503 * net/tramp-gvfs.el (top): Remove superfluous message when loading
10504 fails.
10505
10506 2009-08-03 Nick Roberts <nickrob@snap.net.nz>
10507
10508 * progmodes/gud.el (jdb): Set gud-jdb-classpath-string to current
10509 directory if CLASSPATH is not set.
10510
10511 2009-08-03 Michael Albinus <michael.albinus@gmx.de>
10512
10513 * net/tramp.el (tramp-rfn-eshadow-update-overlay-regexp):
10514 New defconst.
10515 (tramp-rfn-eshadow-update-overlay): Use it. (Bug#4004)
10516
10517 2009-08-02 Kevin Ryde <user42@zip.com.au>
10518
10519 * net/newst-backend.el (newsticker--raw-url-list-defaults):
10520 Update freshmeat link. Delete newsforge.com as it seems gone.
10521
10522 2009-08-02 Chong Yidong <cyd@stupidchicken.com>
10523
10524 * select.el (x-set-selection): Doc fix (Bug#4021).
10525
10526 * w32-fns.el (x-set-selection): Doc fix (Bug#4021).
10527
10528 * help-fns.el (describe-variable): Treat list return values from
10529 dir-locals-find-file properly (Bug#4005).
10530
10531 2009-08-02 Julian Scheid <julians37@googlemail.com> (tiny change)
10532
10533 * net/tramp.el (tramp-debug-message): Print also microseconds.
10534
10535 2009-08-02 Michael Albinus <michael.albinus@gmx.de>
10536
10537 * net/tramp.el (tramp-handle-insert-file-contents): Optimize, when BEG
10538 or END is non-nil.
10539 (tramp-handle-vc-registered): Use `tramp-cache-inhibit-cache'.
10540 (tramp-get-debug-buffer): Change `outline-regexp' according to new
10541 format.
10542
10543 * net/tramp-cache.el (tramp-cache-inhibit-cache): New defvar.
10544 (tramp-get-file-property): Use it.
10545
10546 * autorevert.el (auto-revert-handler): Allow
10547 `auto-revert-tail-mode' for remote files.
10548
10549 2009-08-02 Jason Rumney <jasonr@gnu.org>
10550
10551 * minibuffer.el (read-file-name): Treat confirm options to
10552 MUSTMATCH as nil when invoking x-file-dialog. (Bug#3969)
10553
10554 2009-08-02 Chong Yidong <cyd@stupidchicken.com>
10555
10556 * font-lock.el (font-lock-string-face, font-lock-builtin-face)
10557 (font-lock-variable-name-face, font-lock-constant-face): Darken
10558 the colors for light backgrounds.
10559
10560 2009-08-01 Eli Zaretskii <eliz@gnu.org>
10561
10562 * mail/rmailsum.el (rmail-header-summary): Ignore letter-case of
10563 month names. (Bug#3987)
10564
10565 2009-07-31 Chong Yidong <cyd@stupidchicken.com>
10566
10567 * simple.el (line-move-finish): Pass whole number to
10568 line-move-to-column.
10569 (line-move-visual): Perform hscroll to the recorded position.
10570
10571 2009-07-30 Jay Belanger <jay.p.belanger@gmail.com>
10572
10573 * calc/calc-mode.el (calc-matrix-brackets): Remove "P" from prompt.
10574
10575 2009-07-29 Alan Mackenzie <acm@muc.de>
10576
10577 * progmodes/cc-defs.el (c-version): Bump to 5.31.7.
10578
10579 2009-07-29 Dmitry Dzhus <dima@sphinx.net.ru>
10580
10581 * progmodes/gdb-mi.el (gdb-goto-breakpoint)
10582 (gdb-place-breakpoints): Use full path when setting breakpoints.
10583
10584 2009-07-29 Jay Belanger <jay.p.belanger@gmail.com>
10585
10586 * calc/calc.el (calc-mode-map): Add keybinding for
10587 `calc-transpose-lines'.
10588
10589 2009-07-29 Vincent Belaïche <vincent.belaiche@gmail.com>
10590
10591 * calc/calc-misc.el (calc-transpose-lines): New function.
10592
10593 2009-07-28 Michael Albinus <michael.albinus@gmx.de>
10594
10595 * net/tramp.el (tramp-do-copy-or-rename-file): Add messages.
10596 Simplify check for out-of-band methods.
10597 (tramp-do-copy-or-rename-file-out-of-band): Allow both files to be
10598 remote. Remove messages which are in `tramp-do-copy-or-rename-file'.
10599
10600 2009-07-28 Dan Nicolaescu <dann@ics.uci.edu>
10601
10602 * vc-git.el (vc-git-checkin): Fix typo.
10603
10604 2009-07-28 Steve Yegge <steve.yegge@gmail.com>
10605
10606 * progmodes/js2-mode.el: New file.
10607
10608 2009-07-28 Nick Roberts <nickrob@snap.net.nz>
10609
10610 * progmodes/gud.el (jdb): Add gud-pstar to dump object information.
10611 (gud-menu-map): Adjust tooltip accordingly.
10612
10613 2009-07-27 Dan Nicolaescu <dann@ics.uci.edu>
10614
10615 * vc-bzr.el (vc-bzr-print-log): Pass multiple arguments to bzr log.
10616 (vc-bzr-log-view-mode): Adjust log-view-file-re.
10617
10618 * add-log.el (change-log-mode-map): Add a menu.
10619
10620 2009-07-27 Michael Albinus <michael.albinus@gmx.de>
10621
10622 * net/dbus.el (dbus-call-method-non-blocking): Handle the case the
10623 function returns nil.
10624 (dbus-handle-event): Handle special return value :ignore.
10625 Reported by Jan Moringen <jan.moringen@uni-bielefeld.de>.
10626
10627 2009-07-26 Chong Yidong <cyd@stupidchicken.com>
10628
10629 * view.el (view-mode-enable): Don't define Helper-return-blurb if
10630 it's not needed.
10631
10632 2009-07-25 Eli Zaretskii <eliz@gnu.org>
10633
10634 Fix Bug#3888:
10635
10636 * w32-vars.el (x-select-enable-clipboard): Doc fix.
10637
10638 * term/pc-win.el (x-display-name, x-colors)
10639 (x-select-enable-clipboard, x-select-text): Doc fix.
10640
10641 * term/common-win.el (x-display-name, x-colors): Doc fix.
10642
10643 * term/ns-win.el (x-select-text, x-setup-function-keys, x-colors)
10644 (xw-defined-colors): Doc fix.
10645
10646 * w32-fns.el (x-select-text, x-setup-function-keys)
10647 (x-get-selection, x-set-selection): Doc fix.
10648
10649 * term/x-win.el (x-select-text, x-setup-function-keys)
10650 (x-select-enable-clipboard, xw-defined-colors): Doc fix.
10651
10652 * select.el (x-set-selection): Doc fix.
10653
10654 2009-07-25 Michael Albinus <michael.albinus@gmx.de>
10655
10656 * net/zeroconf.el (zeroconf-init): Check for "GetVersionString"
10657 instead of "IsNSSSupportAvailable". Avahi ought to work also when
10658 "IsNSSSupportAvailable" method is not available. Reported by
10659 Steve Youngs <steve@sxemacs.org>.
10660
10661 2009-07-24 Kenichi Handa <handa@m17n.org>
10662
10663 * international/characters.el: Fix setting of category ?C, ?|, ?K,
10664 and ?H. Fix setting of case for Latin Extended and Greek Extended.
10665 (build-unicode-category-table): Fix range checks.
10666
10667 2009-07-24 Dan Nicolaescu <dann@ics.uci.edu>
10668
10669 * vc-dispatcher.el (vc-resynch-buffers-in-directory): Make sure
10670 the buffer we try to sync is current when calling
10671 vc-resynch-buffer.
10672
10673 * vc-dir.el (vc-dir-resynch-file): Make sure vc-dir-update does
10674 not show up to date files.
10675
10676 2009-07-24 Glenn Morris <rgm@gnu.org>
10677
10678 * emacs-lisp/elint.el (elint-current-buffer, elint-defun):
10679 Add autoload cookies. If necessary, initialize.
10680 (elint-log): Handle non-file buffers.
10681 (elint-initialize): Add optional argument to reinitialize.
10682 (elint-find-builtin-variables): Save excursion.
10683
10684 2009-07-23 Dan Nicolaescu <dann@ics.uci.edu>
10685
10686 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
10687 for Lint.
10688
10689 2009-07-22 Dan Nicolaescu <dann@ics.uci.edu>
10690
10691 * vc.el (vc-print-log-internal): New function, split out from ...
10692 (vc-print-log): ... here.
10693 (vc-dir-move-to-goal-column): Declare.
10694
10695 * vc-git.el (vc-git-add-signoff): New variable.
10696 (vc-git-checkin): Use it.
10697 (vc-git-toggle-signoff): New function.
10698 (vc-git-extra-menu-map): Bind it to menu.
10699 (vc-git--run-command-string): Accept a nil FILE argument.
10700 (vc-git-stash-list): New function.
10701 (vc-git-dir-extra-headers): Use it.
10702
10703 2009-07-23 Glenn Morris <rgm@gnu.org>
10704
10705 * help-fns.el (describe-variable): Describe ignored and risky local
10706 variables in a similar way to that in which we describe safe ones.
10707
10708 * emacs-lisp/bytecomp.el (byte-compile-from-buffer)
10709 (byte-compile-output-file-form, byte-compile-output-docform)
10710 (byte-compile-file-form-defmumble, byte-compile-output-as-comment):
10711 Give some more local variables with common names a "bytecomp-" prefix,
10712 so as not to shadow things during compilation.
10713 * emacs-lisp/cl-macs.el (load-time-value)
10714 * emacs-lisp/cl.el (cl-compiling-file): Update for the name-change
10715 `outbuffer' to `bytecomp-outbuffer'.
10716
10717 * emacs-lisp/elint.el (elint-standard-variables): Remove most members,
10718 since the next two variables cover them automatically now.
10719 (elint-builtin-variables, elint-autoloaded-variables): New.
10720 (elint-unknown-builtin-args): Remove all members, since they can be
10721 parsed automatically now.
10722 (elint-extra-errors): New.
10723 (elint-env-add-env, elint-env-add-macro): Use cadr.
10724 (elint-current-buffer): Use or. Change final message.
10725 (elint-get-top-forms): Use line-end-position.
10726 (elint-init-env): Use cadr. Handle autoload, declare-function,
10727 and defalias.
10728 (elint-add-required-env): Doc fix. Use or. Standardize error.
10729 (regexp-assoc): Remove unused function.
10730 (elint-top-form): Set elint-current-pos, to record the start of the
10731 top-level form, for compilation-mode.
10732 (elint-form): Trap errors in macro expansion. Use dolist.
10733 (elint-unbound-variable): Use elint-builtin-variables and
10734 elint-autoloaded-variables.
10735 (elint-get-args): Use cadr, or.
10736 (elint-check-cond-form): Use dolist, cadr.
10737 (elint-check-condition-case-form): Doc fix. Use cadr.
10738 Use elint-extra-errors.
10739 (elint-log): New function.
10740 (elint-error, elint-warning): Use elint-log for a bytecomp-style format.
10741 Distinguish errors and warnings.
10742 (elint-log-message): Use with-current-buffer. Inhibit read-only.
10743 Use a bytecomp-style format.
10744 (elint-clear-log): Preserve default-directory. Inhibit read-only.
10745 (elint-get-log-buffer): Use compilation mode. Disable undo.
10746 Don't truncate lines.
10747 (elint-initialize): Set builtin and autoloaded variable lists.
10748 Only process elint-unknown-builtin-args if non-nil.
10749 (elint-find-builtin-variables, elint-find-autoloaded-variables):
10750 New functions.
10751 (elint-find-builtin-args): Doc fix. Handle "BODY...)".
10752
10753 2009-07-22 Kevin Ryde <user42@zip.com.au>
10754
10755 * net/newst-backend.el (newsticker--parse-atom-1.0)
10756 (newsticker--parse-rss-0.91, newsticker--parse-rss-0.92)
10757 (newsticker--parse-rss-1.0):
10758 * progmodes/idlwave.el (idlwave-mode):
10759 * progmodes/idlw-shell.el (idlwave-shell-mode):
10760 * progmodes/vera-mode.el (vera-mode):
10761 * progmodes/verilog-mode.el (verilog-auto-inst, verilog-auto):
10762 * progmodes/vhdl-mode.el (vhdl-mode):
10763 * textmodes/table.el (table-generate-source)
10764 (table--warn-incompatibility):
10765 Hyperlink urls in docstrings with URL `...'.
10766
10767 2009-07-22 Glenn Morris <rgm@gnu.org>
10768
10769 * emacs-lisp/advice.el, emacs-lisp/checkdoc.el:
10770 * emacs-lisp/debug.el, emacs-lisp/elp.el, emacs-lisp/gulp.el:
10771 * emacs-lisp/lisp.el, emacs-lisp/pp.el, emacs-lisp/trace.el:
10772 Remove leading * from defcustom docs.
10773
10774 * simple.el (blink-matching-paren-distance): Bump to 100k. (Bug#3889)
10775
10776 * emacs-lisp/shadow.el (shadows-compare-text-p): Remove leading * from
10777 defcustom doc.
10778 (list-load-path-shadows): Optionally, just return shadows as a string.
10779
10780 * mail/emacsbug.el (report-emacs-bug): Include any load-path shadows.
10781
10782 2009-07-21 Chong Yidong <cyd@stupidchicken.com>
10783
10784 * mail/rmailedit.el (rmail-edit-mode): Use
10785 auto-save-include-big-deletions.
10786
10787 * mail/rmail.el (rmail-variables): Use
10788 auto-save-include-big-deletions.
10789
10790 * files.el (auto-save-mode): Revert 2009-07-21 and 2009-07-16
10791 changes.
10792
10793 2009-07-21 Jay Belanger <jay.p.belanger@gmail.com>
10794
10795 * calc/calc.el (calc-undo-length): New variable.
10796 (calc-quit): Truncate rather than eliminate `calc-undo-list'.
10797
10798 2009-07-21 Richard Stallman <rms@gnu.org>
10799
10800 * files.el (auto-save-mode): Handle buffer-save-size = -2
10801 for toggling mode.
10802
10803 2009-07-21 Glenn Morris <rgm@gnu.org>
10804
10805 * textmodes/ispell.el (ispell-looking-back): Update declaration.
10806
10807 * calendar/todo-mode.el (calendar-current-date): Update declaration.
10808
10809 * ps-print.el (ps-jitify, ps-lazify): Remove aliases only used to
10810 silence compiler. Instead...
10811 (jit-lock-fontify-now, lazy-lock-fontify-region): ...Declare.
10812 (ps-print-ensure-fontified): Update for above function name changes.
10813
10814 * printing.el (pr-mh-get-msg-num, pr-mh-show)
10815 (pr-mh-start-of-uncleaned-message): Remove aliases only used to
10816 silence compiler. Instead...
10817 (mh-get-msg-num, mh-show, mh-start-of-uncleaned-message): ...Declare.
10818 (mh-show-buffer): Only define for compiler.
10819 (pr-mh-current-message): Update for above function name changes.
10820
10821 * files.el (abort-if-file-too-large): Explicitly pass `filename'
10822 as an argument.
10823 (find-file-noselect, insert-file-1): Update for above change.
10824
10825 * mail/rmail.el (rmail-retry-ignored-headers): Bump :version.
10826
10827 * mail/mailclient.el (mailclient-send-it): Fix message.
10828
10829 * emacs-lisp/edebug.el (cl-debug-env): Only define for compiler.
10830 (edebug-eval): Check cl-debug-env is bound.
10831 (print-level, print-circle): Don't redefine built-in variables.
10832
10833 * emacs-lisp/cust-print.el: Remove leading * from defcustom docs.
10834 (custom-print-vectors): Remove old comments from doc.
10835
10836 * emerge.el (menu-bar-emerge-menu): Remove unused variable.
10837 (emerge-version): Make the variable an obsolete alias for the
10838 emacs-version variable. Make the function obsolete.
10839 (emerge-fast-keymap, emerge-edit-keymap): Make a separate menu for
10840 Emerge options, rather than merging in into the main Options menu.
10841 (emerge-options-menu): Adjust menu text. Use buttons for skip prefers
10842 and auto advance modes. Disable edit/fast items when not relevant.
10843
10844 2009-07-20 Dan Nicolaescu <dann@ics.uci.edu>
10845
10846 * term/vt420.el (terminal-init-vt420): Fix typo.
10847
10848 2009-07-20 Sam Steingold <sds@gnu.org>
10849
10850 * progmodes/ada-mode.el (compile-auto-highlight): Remove the
10851 variable (removed from compile.el on 2004-03-11).
10852
10853 2009-07-20 Chong Yidong <cyd@stupidchicken.com>
10854
10855 * files.el (hack-local-variables-filter): Fix last change.
10856
10857 2009-07-19 Juri Linkov <juri@jurta.org>
10858
10859 * files.el (ignored-local-variables): Add `dir-local-variables-alist'.
10860 (dir-local-variables-alist): New buffer-local variable.
10861 (hack-local-variables-filter): If variable is not dir-local,
10862 i.e. `dir-name' is nil, then remove it from `dir-local-variables-alist',
10863 because file-local overrides dir-local.
10864 (c-postprocess-file-styles) <declare-function>:
10865 Remove obsolete declaration.
10866 (hack-dir-local-variables): Add dir-local variable/value pair to
10867 `dir-local-variables-alist' and remove duplicates. Doc fix.
10868
10869 * help-fns.el (describe-variable): Add information about
10870 file-local and dir-local variables.
10871
10872 2009-07-19 Chong Yidong <cyd@stupidchicken.com>
10873
10874 * files.el (hack-local-variables-filter): Rewrite.
10875
10876 2009-07-19 Glenn Morris <rgm@gnu.org>
10877
10878 * progmodes/verilog-mode.el (verilog-error-regexp-add-xemacs):
10879 Silence compiler by only defining on XEmacs.
10880
10881 * international/mule.el (auto-coding-regexp-alist): Only match
10882 BABYL... at the start of buffer, not of lines. (Bug#3790)
10883
10884 * calendar/cal-menu.el (cal-menu-set-date-title): Handle calls from
10885 non-calendar buffers (Bug#3862). Restore "not on a date" message.
10886 (cal-menu-context-mouse-menu): Doc fix.
10887
10888 * desktop.el (desktop-buffers-not-to-save): Set :version tag.
10889
10890 * simple.el (mail-user-agent): Doc fix. Set :version tag.
10891
10892 2009-07-18 Juri Linkov <juri@jurta.org>
10893
10894 * info.el: Virtual Info keyword finder.
10895 (add-to-list) <Info-virtual-files>: Add "\\`\\*Finder.*\\*\\'".
10896 (Info-finder-file): New variable.
10897 (Info-finder-find-file): New function.
10898 (finder-known-keywords, finder-package-info)
10899 (find-library-name, lm-commentary): Use defvar and
10900 declare-function to silence compiler warnings.
10901 (Info-finder-find-node): New function.
10902 (info-finder): New command.
10903
10904 * subr.el (process-kill-buffer-query-function): New function.
10905 (add-hook)<kill-buffer-query-functions>: Add hook
10906 `process-kill-buffer-query-function'.
10907
10908 2009-07-18 Alan Mackenzie <acm@muc.de>
10909
10910 * progmodes/cc-mode.el (c-before-hack-hook)
10911 (c-postprocess-file-styles): Give invocation of `c-set-style'
10912 DONT-OVERRIDE parameter of t. Already set style variables will
10913 thus not be overridden by style settings given by `c-file-syle'.
10914
10915 * files.el (hack-local-variables-filter): Remove entries with
10916 duplicate keys from `file-local-variables-alist'.
10917
10918 2009-07-18 Eli Zaretskii <eliz@gnu.org>
10919
10920 * simple.el (deactivate-mark, activate-mark, set-mark): Don't call
10921 x-set-selection if display-selections-p returns nil for the
10922 current frame.
10923
10924 2009-07-18 Chong Yidong <cyd@stupidchicken.com>
10925
10926 * simple.el (region-active-p, use-region-p): Doc fix (Bug#3873).
10927
10928 2009-07-18 Eli Zaretskii <eliz@gnu.org>
10929
10930 * desktop.el (desktop-buffers-not-to-save): Default value is nil.
10931 Accept nil in addition to a regexp.
10932 (desktop-files-not-to-save): Add "(ftp)$" to the default regexp.
10933 Accept nil in addition to a regexp.
10934 (desktop-save-buffer-p): Don't use desktop-buffers-not-to-save for
10935 buffers that have an associated file. Handle nil values of
10936 desktop-buffers-not-to-save and desktop-files-not-to-save.
10937 (Bug#3833)
10938
10939 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
10940 (x-disown-selection-internal): New functions.
10941
10942 2009-07-18 Nick Roberts <nickrob@snap.net.nz>
10943
10944 * progmodes/gdb-mi.el (speedbar-frame): Declare to avoid compiler
10945 warning.
10946 (gdb-breakpoints-header): Move forward to avoid compiler warning.
10947 (gdb-make-header-line-mouse-map): Remove duplicate definition.
10948
10949 2009-07-18 David De La Harpe Golden <david@harpegolden.net>
10950
10951 * simple.el (set-mark): Revert last change.
10952
10953 2009-07-17 Tassilo Horn <tassilo@member.fsf.org>
10954
10955 * doc-view.el (doc-view-initiate-display): Add yes-or-no-p if
10956 rendering of pngs is not possible instead of messaging a long
10957 description.
10958
10959 2009-07-17 David De La Harpe Golden <david@harpegolden.net>
10960
10961 * w32-fns.el (x-selection-owner-p): New function.
10962
10963 * mouse.el (mouse-drag-track): Call deactivate-mark earlier.
10964 (mouse-yank-at-click, mouse-yank-primary): If
10965 select-active-regions is non-nil, deactivate the mark before
10966 insertion.
10967
10968 * simple.el (deactivate-mark, set-mark): Only save selection if we
10969 own it.
10970
10971 2009-07-17 Kenichi Handa <handa@m17n.org>
10972
10973 * case-table.el (describe-buffer-case-table): Fix for the case
10974 that KEY is a cons.
10975
10976 2009-07-16 Dan Nicolaescu <dann@ics.uci.edu>
10977
10978 * vc-rcs.el (vc-rcs-find-file-hook):
10979 * vc-sccs.el (vc-sccs-find-file-hook): Fix cut and paste error.
10980
10981 2009-07-16 Michael Albinus <michael.albinus@gmx.de>
10982
10983 * net/tramp.el (tramp-wait-for-output): Handle the case when
10984 commands do not return a newline but a null byte before the shell
10985 prompt. (Bug#3858)
10986
10987 2009-07-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10988
10989 * term/ns-win.el (ns-set-alpha): Don't declare.
10990 (ns-set-background-alpha): Remove function.
10991
10992 2009-07-16 Kevin Ryde <user42@zip.com.au>
10993
10994 * emacs-lisp/copyright.el (copyright-update): Save match-data across
10995 y-or-n-p, for safety.
10996
10997 2009-07-16 Richard Stallman <rms@gnu.org>
10998
10999 * files.el (auto-save-mode): If buffer-saved-size is -2,
11000 don't clobber it.
11001
11002 * mail/rmail.el (rmail-variables): Set buffer-saved-size to -2.
11003 (rmail-retry-ignored-headers): Add more uninteresting fields.
11004
11005 2009-07-15 Jari Aalto <jari.aalto@cante.net>
11006
11007 * net/rcirc.el (rcirc): Use history variables.
11008 (rcirc-server-name-history, rcirc-nick-name-history)
11009 (rcirc-server-port-history): New variables.
11010
11011 2009-07-15 Kenichi Handa <handa@m17n.org>
11012
11013 * international/mule-cmds.el (set-language-environment-charset):
11014 If coding-system-charset-list returns `iso-2022' or `emacs-mule',
11015 ignore them.
11016
11017 * language/misc-lang.el ("IPA"): Change coding systems to utf-8.
11018 Delete unibyte-display.
11019
11020 2009-07-15 Chong Yidong <cyd@stupidchicken.com>
11021
11022 * simple.el (kill-visual-line): Obey kill-whole-line (Bug#3695).
11023
11024 2009-07-15 Chong Yidong <cyd@stupidchicken.com>
11025
11026 * simple.el (deactivate-mark): Optional argument FORCE.
11027 (set-mark): Use deactivate-mark.
11028
11029 * info.el (Info-search): No need to check transient-mark-mode
11030 before calling deactivate-mark.
11031
11032 * select.el (x-set-selection): Doc fix.
11033 (x-valid-simple-selection-p): Allow buffer values.
11034 (xselect--selection-bounds): Handle buffer values. Suggested by
11035 David De La Harpe Golden.
11036
11037 * mouse.el (mouse-set-region, mouse-drag-track): Call
11038 copy-region-as-kill before setting the mark, to let
11039 select-active-regions work.
11040
11041 2009-07-15 David De La Harpe Golden <david@harpegolden.net>
11042
11043 * simple.el (deactivate-mark): If select-active-regions is
11044 non-nil, copy the selection data into a string.
11045 (activate-mark): If select-active-regions is non-nil, set the
11046 selection to the current buffer.
11047 (set-mark): Update selection if select-active-regions is non-nil.
11048
11049 * select.el (x-valid-simple-selection-p): Allow buffer values.
11050
11051 2009-07-14 Stefan Monnier <monnier@iro.umontreal.ca>
11052
11053 * simple.el (mail-user-agent): Default to the upwardly-UI-compatible
11054 and more featureful message-mode.
11055
11056 2009-07-14 Chong Yidong <cyd@stupidchicken.com>
11057
11058 * select.el (x-set-selection): Doc fix.
11059 (x-valid-simple-selection-p): Disallow selection data consisting
11060 of a list or cons of integers, since that is not used.
11061 (xselect--selection-bounds, xselect--int-to-cons): New functions.
11062 (xselect-convert-to-string, xselect-convert-to-length)
11063 (xselect-convert-to-filename, xselect-convert-to-charpos)
11064 (xselect-convert-to-lineno, xselect-convert-to-colno): Use them.
11065
11066 2009-07-14 Dmitry Dzhus <dima@sphinx.net.ru>
11067
11068 * progmodes/gdb-mi.el (json-partial-output): Fix broken GDB/MI
11069 output in -break-info command (Emacs bug #3794).
11070
11071 2009-07-14 Glenn Morris <rgm@gnu.org>
11072
11073 * emacs-lisp/edebug.el (edebug-setup-hook, edebug-all-forms)
11074 (edebug-eval-macro-args, edebug-save-displayed-buffer-points)
11075 (edebug-print-length, edebug-print-level, edebug-print-circle)
11076 (edebug-sit-for-seconds, edebug-view-outside)
11077 (edebug-bounce-point, edebug-set-global-break-condition)
11078 (edebug-Go-nonstop-mode, edebug-trace-mode)
11079 (edebug-Trace-fast-mode, edebug-continue-mode)
11080 (edebug-Continue-fast-mode, edebug-forward-sexp, edebug-help)
11081 (edebug-visit-eval-list): Doc fixes.
11082
11083 * subr.el (def-edebug-spec): Doc fix.
11084
11085 2009-07-14 Kenichi Handa <handa@m17n.org>
11086
11087 * international/characters.el: Fix setting of category ?C.
11088
11089 2009-07-13 Jan Djärv <jan.h.d@swipnet.se>
11090
11091 * term/ns-win.el (x-select-font): defalias x-select-font to
11092 ns-popup-font-panel instead of generate-fontset-menu.
11093
11094 2009-07-12 Eli Zaretskii <eliz@gnu.org>
11095
11096 * desktop.el (desktop-buffers-not-to-save): Remove ".log". (Bug#3833)
11097
11098 2009-07-12 Peter Jolly <peter@jollys.org> (tiny change)
11099
11100 * arc-mode.el (archive-find-type): Allow for a PK00 string before
11101 the PK\003\004 header (Bug#3770).
11102
11103 2009-07-12 Guanpeng Xu <herberteuler@hotmail.com>
11104
11105 * pcomplete.el (pcomplete-comint-setup): Check for
11106 shell-dynamic-complete-filename too.
11107
11108 2009-07-11 Chong Yidong <cyd@stupidchicken.com>
11109
11110 * simple.el (temporary-goal-column): Change the value for
11111 line-move-visual to a cons cell.
11112 (line-move-visual): Record or set the window hscroll, if
11113 necessary (Bug#3494).
11114 (line-move-1): Handle cons value of temporary-goal-column.
11115
11116 2009-07-11 Kenichi Handa <handa@m17n.org>
11117
11118 * international/mule-diag.el (describe-character-set): Don't show
11119 width.
11120
11121 2009-07-10 Sam Steingold <sds@gnu.org>
11122
11123 * progmodes/compile.el (compilation-mode-font-lock-keywords):
11124 Omake sometimes indents the errors it prints, so allow all
11125 regexps to start with spaces.
11126
11127 2009-07-10 Eli Zaretskii <eliz@gnu.org>
11128
11129 * cus-edit.el (customize-changed-options-previous-release):
11130 Bump value to 22.1. (Bug#3804)
11131
11132 2009-07-08 Sam Steingold <sds@gnu.org>
11133
11134 * progmodes/grep.el (rgrep): Allow grep-find-ignored-directories
11135 to be a cons cell (test . ignored-directory) to selectively ignore
11136 some directories depending on the location of the search.
11137
11138 2009-07-08 Michael Albinus <michael.albinus@gmx.de>
11139
11140 * net/tramp.el (tramp-set-file-uid-gid): Handle the case the
11141 remote user is root, on the local host.
11142 (tramp-local-host-p): Either the local user or the remote user
11143 must be root. (Bug#3771)
11144
11145 2009-07-08 Nick Roberts <nickrob@snap.net.nz>
11146
11147 * progmodes/gdb-mi.el (gdb): Remove description of
11148 gdb-use-separate-io-buffer.
11149 (menu): Don't allow toggling of or enable
11150 gdb-use-separate-io-buffer from menubar.
11151
11152 2009-07-08 E. Jay Berkenbilt <ejb@ql.org> (tiny change)
11153
11154 * mail/unrmail.el (unrmail): Make sure the message ends with two
11155 newlines (Bug#3769).
11156
11157 2009-07-08 Glenn Morris <rgm@gnu.org>
11158
11159 * calendar/calendar.el (calendar-current-date): Rework previous change.
11160
11161 2009-07-08 Ed Reingold <reingold@emr.cs.iit.edu>
11162
11163 * calendar/calendar.el (calendar-current-date):
11164 Add an optional argument giving an offset from today.
11165
11166 2009-07-08 Glenn Morris <rgm@gnu.org>
11167
11168 * tutorial.el (tutorial--describe-nonstandard-key):
11169 Adjust the message for when a key has been unbound.
11170 (help-with-tutorial): Hide the arch-tag.
11171
11172 2009-07-08 Kenichi Handa <handa@m17n.org>
11173
11174 * international/fontset.el (setup-default-fontset): For each
11175 script, append (not set) font-specs.
11176
11177 * language/japanese.el (japanese-shift-jis-2004): Fix typo in the
11178 docstring.
11179
11180 2009-07-08 Nick Roberts <nickrob@snap.net.nz>
11181
11182 * progmodes/gdb-mi.el (gdb-init-1): Move sending
11183 -data-list-register-names to ...
11184 (gdb-starting): ... here because GDB 7.0 requires execution to
11185 have started when using this MI command.
11186 (gdb-set-header): New function to distinguish select and
11187 unselected tabs in gdb buffers.
11188 (gdb-propertize-header): New macro that uses gdb-set-header.
11189 (gdb-breakpoints-header, gdb-locals-header): Use it.
11190 (gdb-disassembly-mode-map): Add keybinding to kill buffer.
11191
11192 2009-07-07 Chong Yidong <cyd@stupidchicken.com>
11193
11194 * Makefile.in (ELCFILES): Remove fadr.elc.
11195
11196 2009-07-07 Dmitry Dzhus <dima@sphinx.net.ru>
11197
11198 * progmodes/gdb-mi.el (gdb-init-1): Disassembly buffer mode name
11199 may contain frame information, so `string-match' should be used.
11200 (gdb-update): Disassembly is invalidated through
11201 `gdb-get-selected-frame'.
11202 (gdb-pad-string): New function to pad string with spaces.
11203 (gdb-invalidate-disassembly): Invalidate only if the buffer
11204 exists.
11205 (gdb-disassembly-handler-custom): Column alignment.
11206 (gdb-disassembly-place-breakpoints): Clear old breakpoints before
11207 placing new ones.
11208 (gdb-toggle-breakpoint, gdb-delete-breakpoint): Now work from the
11209 end of line, too.
11210 (gdb-frame-handler): Match convention to for disassembly buffer
11211 mode name.
11212 (gdb-stack-list-frames-handler): Rewritten without regexps.
11213 (gdb-breakpoints-list-handler-custom): y/n instead of on/off; do
11214 not highlight breakpoints without line information.
11215 (gdb-input): Add trailing newline to command.
11216
11217 * progmodes/gdb-mi.el (gdb-init-1): Set mode name for disassembly
11218 buffer properly.
11219 (gdb-breakpoints-list-handler-custom): Replacement for
11220 `gdb-break-list-handler'. Using real parser instead of regexps
11221 now.
11222 (gdb-place-breakpoints): Replacement for `gdb-break-list-custom'.
11223 Use `gdb-breakpoints-list' instead of parsing breakpoints buffer
11224 to place breakpoints.
11225 (def-gdb-memory-unit): A new macro to define gdb-memory-unit-..
11226 functions.
11227 (gdb-disassembly-handler-custom): Show overlay arrow.
11228 (gdb-disassembly-place-breakpoints): Show breakpoints in
11229 disassembly buffer.
11230 (gdb-toggle-breakpoint, gdb-delete-breakpoint)
11231 (gdb-goto-breakpoint): Using `gdb-breakpoint' text properties
11232 instead of parsing breakpoints buffer. Fixed old menu references
11233 in `gud-menu-map'.
11234
11235 * fadr.el: Remove.
11236
11237 * progmodes/gdb-mi.el: Port memory buffer from gdb-ui.el.
11238 (gdb-memory-address): New variable which holds top address of
11239 memory page shown in memory buffer.
11240 (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit): New
11241 customization variables.
11242 New functions:
11243 (gdb-display-memory-buffer, gdb-frame-memory-buffer): Functions to
11244 display the memory buffer.
11245 (gdb-memory-set-address, gdb-memory-set-repeat-count): Set memory
11246 buffer display parameters.
11247 (def-gdb-memory-format, gdb-memory-format-binary)
11248 (gdb-memory-format-octal, gdb-memory-format-unsigned)
11249 (gdb-memory-format-signed, gdb-memory-format-hexadecimal):
11250 Functions for setting memory buffer format.
11251 (gdb-memory-unit-word, gdb-memory-unit-halfword)
11252 (gdb-memory-unit-giant, gdb-memory-unit-byte): Functions to set
11253 unit size used in memory buffer.
11254 (gdb-memory-show-next-page, gdb-memory-show-previous-page): Switch
11255 to next/previous page of memory buffer.
11256 Now using (bindat-get-field) instead of fadr functions.
11257
11258 2009-07-07 Sam Steingold <sds@gnu.org>
11259
11260 * vc-cvs.el (vc-cvs-merge-news): Fix message parsing for
11261 non-top-level files.
11262
11263 2009-07-07 Kenichi Handa <handa@m17n.org>
11264
11265 * international/mule-cmds.el (reset-language-environment): Put
11266 the highset priority to the charset iso-8859-1.
11267
11268 2009-07-06 Chong Yidong <cyd@stupidchicken.com>
11269
11270 * progmodes/hideshow.el (hs-hide-block-at-point): Don't move point
11271 to the end of the line when locating the block (Bug#700).
11272
11273 2009-07-06 Michael Albinus <michael.albinus@gmx.de>
11274
11275 * net/tramp.el (tramp-handle-write-region): Flush file properties
11276 in case of short track.
11277
11278 2009-07-06 Michael McNamara <mac@mail.brushroad.com>
11279
11280 * progmodes/verilog-mode.el (verilog-error-regexp-emacs-alist):
11281 Coded custom representation of verilog error regular expressions
11282 to work with Emacs-22's new format.
11283 (verilog-error-regexp-xemacs-alist): Coded custom representation
11284 of verilog error regular expressions to work with XEmacs format.
11285 (verilog-error-regexp-add-xemacs): Hook routine to install verilog
11286 error recognition into XEmacs.
11287 (verilog-error-regexp-add-emacs): Hook routine to install verilog
11288 error recognition into Emacs-22.
11289
11290 2009-07-06 Chong Yidong <cyd@stupidchicken.com>
11291
11292 * woman.el: Remove stand-alone closing parentheses.
11293 (woman-file-name, woman2-format-paragraphs)
11294 (woman-leave-blank-lines): Code cleanup.
11295 (woman-use-own-frame): Change default to nil.
11296 (woman-italic, woman-bold, woman-unknown, woman-addition): Change
11297 defaults to inherit from default faces.
11298 (woman2-process-escapes): Consume the newline after a stand-alone
11299 filler character (Bug#3651).
11300
11301 2009-07-06 Glenn Morris <rgm@gnu.org>
11302
11303 * ffap.el (ffap-version): Make it an obsolete alias for emacs-version.
11304 (top-level): Move provide to the end.
11305 (ffap): Remove defunct URL from custom group.
11306
11307 * subr.el (eval-after-load): Doc fix.
11308
11309 2009-07-06 Vincent Belaïche <vincent.belaiche@gmail.com>
11310
11311 * calc/calc-embed.el (calc-embedded-make-info): Don't force when
11312 `calc-embedded-word' is called twice.
11313
11314 2009-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
11315
11316 * files.el (find-alternate-file-other-window, find-alternate-file):
11317 Obey confirm-nonexistent-file-or-buffer.
11318
11319 2009-07-05 Michael Albinus <michael.albinus@gmx.de>
11320
11321 * dired-aux.el (dired-show-file-type): Handle remote files.
11322
11323 2009-07-05 Jari Aalto <jari.aalto@cante.net>
11324
11325 * desktop.el (desktop-globals-to-save):
11326 Add file-name-history (Bug#2750).
11327
11328 2009-07-05 Chong Yidong <cyd@stupidchicken.com>
11329
11330 * add-log.el (add-log-current-defun-header-regexp): Doc fix (Bug#2217).
11331
11332 2009-07-04 Johan Bockgård <bojohan@gnu.org>
11333
11334 * eshell/esh-arg.el (eshell-parse-argument-hook): Put `number'
11335 property on entire argument since this is what eshell-lisp-command
11336 expects.
11337
11338 2009-07-03 Michael Albinus <michael.albinus@gmx.de>
11339
11340 * net/tramp-gvfs.el (tramp-gvfs-methods)
11341 (tramp-gvfs-zeroconf-domain)
11342 (tramp-bluez-discover-devices-timeout): Add version flag.
11343 (tramp-gvfs-handler-mounted-unmounted)
11344 (tramp-gvfs-connection-mounted-p): Polish handling of
11345 incompatibilities between GVFS 0.2 and 1.0.
11346
11347 2009-07-03 Jan Djärv <jan.h.d@swipnet.se>
11348
11349 * cus-start.el (all): Add make-pointer-invisible.
11350
11351 2009-07-03 Jay Belanger <jay.p.belanger@gmail.com>
11352
11353 * calc/calc-math.el (math-use-emacs-fn): Make sure that the number is
11354 formatted correctly.
11355
11356 2009-07-02 Juri Linkov <juri@jurta.org>
11357
11358 * info.el: Virtual Info files and nodes.
11359 (Info-virtual-files, Info-virtual-nodes): New variables.
11360 (Info-current-node-virtual): New variable.
11361 (Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
11362 New functions.
11363 (Info-file-supports-index-cookies): Use Info-virtual-file-p
11364 to check for a virtual file instead of checking a fixed list
11365 of node names.
11366 (Info-find-file): Use Info-virtual-fun and Info-virtual-call
11367 instead of ad-hoc processing of "dir" and (apropos history toc).
11368 (Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
11369 instead of ad-hoc processing of "dir" and (apropos history toc).
11370 Reread a file when moving from a virtual node.
11371 (add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
11372 (Info-directory-toc-nodes, Info-directory-find-file)
11373 (Info-directory-find-node): New functions.
11374 (add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
11375 (Info-history): Move part of code to
11376 `Info-history-find-node'.
11377 (Info-history-toc-nodes, Info-history-find-file)
11378 (Info-history-find-node): New functions.
11379 (add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
11380 (Info-toc): Move part of code to `Info-toc-find-node'.
11381 (Info-toc-find-node): New function.
11382 (Info-toc-insert): Rename from `Info-insert-toc'. Don't insert
11383 the current Info file name to references because now the node
11384 "*TOC*" belongs to the same Info manual.
11385 (Info-toc-build): Rename from `Info-build-toc'.
11386 (Info-toc-nodes): Rename input argument `file' to `filename'.
11387 Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
11388 instead of ad-hoc processing of ("dir" apropos history toc).
11389 (Info-index-nodes): Use Info-virtual-file-p
11390 to check for a virtual file instead of checking a fixed list
11391 of node names.
11392 (Info-index-node): Add check for `Info-current-node-virtual'.
11393 Raise `save-match-data' higher up the tree to contain
11394 `search-forward' too (bug fix).
11395 (add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
11396 (Info-virtual-index-nodes): New variable.
11397 (Info-virtual-index-find-node, Info-virtual-index): New functions.
11398 (add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
11399 (Info-apropos-file, Info-apropos-nodes): New variables.
11400 (Info-apropos-toc-nodes, Info-apropos-find-file)
11401 (Info-apropos-find-node, Info-apropos-matches): New functions.
11402 (info-apropos): Move part of code to `Info-apropos-find-node' and
11403 `Info-apropos-matches'.
11404 (Info-mode-map): Bind "I" to `Info-virtual-index'.
11405 (Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
11406 for a virtual file instead of checking a fixed list of node names.
11407
11408 * simple.el (async-shell-command): New command.
11409
11410 * bindings.el (esc-map): Bind "&" to `async-shell-command'.
11411
11412 * net/tramp-gvfs.el (tramp-gvfs-connection-mounted-p): Use `elt'
11413 instead of `mount-info'.
11414
11415 2009-07-02 Michael Albinus <michael.albinus@gmx.de>
11416
11417 * net/tramp-gvfs.el (tramp-gvfs-handler-mounted-unmounted)
11418 (tramp-gvfs-connection-mounted-p): Handle changed mount-info interface.
11419
11420 2009-07-02 Kenichi Handa <handa@m17n.org>
11421
11422 * international/mule.el (set-keyboard-coding-system): Force *-unix
11423 coding-system to avoid eol conversion.
11424
11425 2009-07-01 Michael Albinus <michael.albinus@gmx.de>
11426
11427 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
11428 Add handler for `process-file', `shell-command' and
11429 `start-file-process'.
11430 (tramp-gvfs-handle-shell-command)
11431 (tramp-gvfs-handle-start-file-process)
11432 (tramp-gvfs-handle-process-file): New defuns.
11433 (tramp-synce-list-devices): Simplify check for existence of property.
11434
11435 2009-07-01 Jan Djärv <jan.h.d@swipnet.se>
11436
11437 * startup.el (command-line-x-option-alist): Add -mm and --maximized.
11438
11439 2009-07-01 Eduard Wiebe <usenet@pusto.de> (tiny change)
11440
11441 * language/korean.el (set-language-info-alist): Add korean-cp949,
11442 cp949 to spec.
11443
11444 2009-07-01 Kenichi Handa <handa@m17n.org>
11445
11446 * Makefile.in (ELCFILES): Delete encoded-kb.elc.
11447
11448 * international/encoded-kb.el: Deleted.
11449
11450 * international/mule.el (set-keyboard-coding-system): Perform the
11451 necessary setup here instead of calling encoded-kbd-setup-display.
11452
11453 2009-07-01 Glenn Morris <rgm@gnu.org>
11454
11455 * progmodes/f90.el (f90-break-delimiters, f90-no-break-re): Doc fixes.
11456
11457 2009-07-01 Evangelos Evangelou <vangelis@email.unc.edu> (tiny change)
11458
11459 * progmodes/f90.el (f90-no-break-re): Add "(/" and "/)". (Bug#3730)
11460
11461 2009-06-30 Michael Albinus <michael.albinus@gmx.de>
11462
11463 * net/tramp.el (tramp-do-copy-or-rename-file-directly):
11464 Handle also the 'rename case, when setting file modes. (Bug#3712)
11465 (tramp-default-file-modes): Remove execute permissions.
11466
11467 * net/tramp-gvfs.el (tramp-gvfs-methods): Add "synce" method.
11468 (top): Add a default for "synce" in `tramp-default-user-alist'.
11469 Add completion function for "synce" method.
11470 (tramp-hal-service, tramp-hal-path-manager)
11471 (tramp-hal-interface-manager, tramp-hal-interface-device):
11472 New defconst.
11473 (tramp-gvfs-connection-mounted-p): Handle empty user name for synce.
11474 (tramp-synce-list-devices, tramp-synce-parse-device-names):
11475 New defuns.
11476
11477 * net/trampver.el: Update release number.
11478
11479 2009-06-30 Kenichi Handa <handa@m17n.org>
11480
11481 * international/fontset.el (setup-default-fontset): Add CJK fonts
11482 for symbols and the other miscellaneous characters.
11483
11484 * language/korea-util.el (setup-korean-environment-internal):
11485 Make char-width-table suitable for Korean environments.
11486 (exit-korean-environment): Cancel above.
11487
11488 * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
11489 ("Chinese-CNS", "Chinese-EUC-TW", "Chinese-GBK"): Add a
11490 setup-function to make char-width-table suitable for respective
11491 environments, and an exit-function to cancel that.
11492
11493 * language/japan-util.el (setup-japanese-environment-internal):
11494 Call use-cjk-char-width-table with arg `ja_JP'.
11495
11496 * international/characters.el (cjk-char-width-table): Delete it.
11497 (cjk-char-width-table-list): New variable.
11498 (use-cjk-char-width-table): New arg local-name.
11499 (use-default-char-width-table): Fix for the case that Emacs is
11500 already using the default char-width-table.
11501
11502 2009-06-29 Michael Albinus <michael.albinus@gmx.de>
11503
11504 * net/tramp.el (tramp-do-copy-or-rename-file-directly): Set file
11505 modes mandatory. (Bug#3712)
11506
11507 2009-06-29 Alan Mackenzie <acm@muc.de>
11508
11509 * progmodes/cc-cmds.el (c-mask-paragraph): Remove a spurious
11510 correction between the visible width of TABs and their number of bytes.
11511
11512 2009-06-29 Chong Yidong <cyd@stupidchicken.com>
11513
11514 * server.el (server-buffer-done): Prevent kill-buffer from
11515 prompting by clearing the buffer modification flag (Bug#3696).
11516
11517 2009-06-28 Michael McNamara <mac@mail.brushroad.com>
11518
11519 * progmodes/verilog-mode.el (verilog-beg-of-statement)
11520 (verilog-endcomment-reason-re): Support unique case and priority case.
11521 (verilog-basic-complete-re): Support localparam lineup.
11522 (verilog-beg-of-statement-1): Fix for robustness, unique case.
11523 (verilog-set-auto-endcomments): Fix for unique case, always_comb
11524 commenting.
11525 (verilog-leap-to-case-head): Now support *nested* unique &
11526 priority case statements.
11527 (verilog-auto-lineup): Make just declarations the default (as it
11528 had been).
11529 (verilog-leap-to-case-head): Support priority/unique case statements.
11530 (verilog-auto-lineup): Rework to give users radio buttons to
11531 select the various styles of automatic lineup.
11532 (verilog-error-regexp-alist): Rework to support the XEmacs style
11533 of error regular expressions from compilers, lint tools &
11534 simulators. Note that GNU Emacs has made it impossible for a mode
11535 to load such things.
11536 (electric-verilog-terminate-line, verilog-indent-declaration)
11537 (verilog-auto-wiure): Rework for radio button selection of
11538 auto-lineup selection of specification of auto lineup.
11539 (verilog-beg-of-statement-1): Redesign to support proper operation
11540 in additional code, based on testing with auto-lineup.
11541 (verilog-calculate-indent, assignments & declarations)
11542 (verilog-backward-token): Enhance to support auto-lineup of
11543 assignments & declarations.
11544 (verilog-in-directive-p, verilog-at-struct-p): New function for
11545 easy test of whether we are.
11546 (verilog-pretty-declarations, verilog-pretty-expr): Massive rework
11547 to support safe execution at almost anyline.
11548 (verilog-calc-1): Properly support indenting deep inside generate
11549 blocks.
11550 (verilog-init-font): Remove definition & use of verilog-init-font,
11551 as it is redundant with font-lock-defaults.
11552 (verilog-mode): Alter the definition of verilog-font-lock-defaults
11553 to avoid circular calls if syntax-ppss is a function (as is the
11554 case now in 22.x GNU Emacs) as that function would sometimes call
11555 itself, leading to (nearly) infinite recursion.
11556 (verilog-ovm-begin-re, verilog-ovm-end-re)
11557 (verilog-ovm-statement-re, verilog-leap-to-head)
11558 (verilog-backward-token): Add support for OVM macros. Some are
11559 complete statements, and others open and close scopes like begin
11560 and end.
11561 (verilog-defun-level-not-generate-re, verilog-defun-level-re)
11562 (verilog-defun-level-generate-only-re): Really fix the defun-list
11563 compilation issue.
11564 (verilog-calc-1, verilog-beg-of-statement): Enhance support for
11565 coverpoint, constraint and cross statements.
11566 (verilog-defun-level-list, verilog-generate-defun-level-list)
11567 (verilog-all-defun-level-list): Redo these specifications - it is
11568 too hard to support eval-when compile aggregation of lists also
11569 built at when-compile time.
11570 (verilog-defun-level-list): Place defconsts of variables used in
11571 building regular expressions which are built in eval-when-compile
11572 bodies in the same eval-when-compile body to facilitate compile
11573 without load.
11574 (verilog-beg-block-re-ordered): Support indenting
11575 virtual/protected tasks and functions.
11576 (verilog-defun-level-list, verilog-in-generate-region-p)
11577 (verilog-backward-ws&directives, verilog-calc-1): Speed up
11578 indentation of some module items (generate items).
11579 (verilog-forward-sexp, verilog-leap-to-head): Support stepping
11580 across virtual/protected tasks and functions.
11581
11582 2009-06-28 Wilson Snyder <wsnyder@wsnyder.org>
11583
11584 * progmodes/verilog-mode.el (verilog-auto-arg, verilog-auto-arg-sort):
11585 Allow sorting AUTOARG lists. Suggested by Andrea Fedeli.
11586 (verilog-read-sub-decls-line): Fix AUTOWIRE signals getting lost
11587 in concatenations. Reported by Yishay Belkind.
11588 (verilog-auto-ascii-enum): Support one-hot state machines in
11589 AUTOASCIIENUM. Suggested by Lloyd Gomez.
11590 (verilog-auto-inst, verilog-auto-inst-port): Include interface
11591 modport in AUTOINST and add vl-modport for users. Reported by
11592 David Rogoff.
11593 (verilog-auto-inout-module, verilog-auto-inst)
11594 (verilog-decls-get-interfaces, verilog-insert-definition)
11595 (verilog-insert-one-definition, verilog-read-decls)
11596 (verilog-read-sub-decls, verilog-read-sub-decls-sig)
11597 (verilog-sig-modport, verilog-signals-combine-bus)
11598 (verilog-subdecls-get-interfaces): Fix expansion of SystemVerilog
11599 interfaces in AUTOINOUTMODULE, AUTOINOUTCOMP, and AUTOINST.
11600 Suggested by David Rogoff.
11601 (verilog-repair-open-comma): Fix non-insertion of comma when
11602 `DEFINE occurs in V2K argument list. Reported by Lane Brooks.
11603 (verilog-make-width-expression): Simplify [A-1:0] expression
11604 widths to just {A{1'b0}}.
11605 (verilog-mode): Cleanup checkdoc warnings.
11606 (verilog-auto-inout-module, verilog-signals-matching-dir-re):
11607 Add third optional regexp to AUTOINOUTMODULE to allow selecting only
11608 inputs/outputs or data type. Suggested by Vasu Kandadi.
11609 (next-error-last-buffer): Fix byte-compiler warning.
11610 (verilog-auto, verilog-auto-insert-lisp, verilog-auto-inst)
11611 (verilog-delete-auto): Add AUTOINSERTLISP to insert arbitrary lisp
11612 or shell command text during AUTO expansion. Suggested by Tad Truex.
11613 (verilog-read-sub-decls-expr, verilog-read-sub-decls-line)
11614 (verilog-read-sub-decls-sig, verilog-symbol-detick-text):
11615 Fix dotted nets {a.b,c.d} and excaped identifiers being mis-included
11616 in AUTOINOUT. Reported by Matthew Lovell.
11617 (verilog-read-always-signals-recurse): Fix AUTORESET "if (a<=b)"
11618 causing use of <= assignments. Reported by Alex Reed.
11619 (verilog-read-decls): Fix triand, trior, wand, wor to be
11620 recognized by AUTOWIRE. Reported by Spencer Isaacson.
11621 (verilog-extended-complete-re): Support import "DPI-C" functions.
11622 (verilog-read-always-signals-recurse): Fix AUTORESET of "x <=
11623 y[a+1:a+1]" to not include a in reset list. Reported by Dan Dever.
11624 (verilog-insert-date, verilog-insert-year)
11625 (verilog-sk-header-tmpl): Fix verilog-header inserting error on
11626 Windows systems. Reported by Michael Potts.
11627 (verilog-read-module-name): Fix AUTOINST when the child module
11628 declaration's name is a tick define. Reported by Elliot Mednick.
11629 (verilog-read-decls): Fix V2K parameter bit subscripts getting
11630 passed to next parameter's definition. Reported by Bruce T.
11631 (verilog-read-decls): Fix detecting "parameter int" when using
11632 AUTOINSTPARAM. Reported by Bruce T.
11633 (verilog-goto-defun): Fix goto not finding modules unless first
11634 perform a verilog-auto expansion. Suggested by Lawrence Butcher.
11635 (verilog-mode): Expand -f flag arguments on entry to mode so
11636 verilog-goto-defun will work. Reported by Lawrence Butcher.
11637 (verilog-getopt): Expand environment variables in -f file
11638 arguments. Suggested by Lawrence Butcher.
11639 (verilog-set-define): Fix "Symbol's value as variable is void"
11640 when reading enumerations.
11641 (verilog-auto-ascii-enum): Fix duplicate labels in AUTOASCIIENUM.
11642 Suggested by Stephen Peltan.
11643 (verilog-read-defines): Fix reading of enumerations in include
11644 files. Reported by Steve Peltan.
11645
11646 2009-06-28 David De La Harpe Golden <david@harpegolden.net>
11647
11648 * files.el (trash-directory): Fix defcustom type.
11649
11650 2009-06-28 Juri Linkov <juri@jurta.org>
11651
11652 * help-fns.el (describe-function-1): Correctly locate adviced
11653 functions in hyperlink (Bug#2438).
11654
11655 2009-06-28 Chong Yidong <cyd@stupidchicken.com>
11656
11657 * files.el (trash-directory): Change default to nil.
11658 (move-file-to-trash): If trash-directory is nil and
11659 system-move-file-to-trash is unbound, perform freedesktop-style
11660 trashing.
11661
11662 2009-06-28 David De La Harpe Golden <david@harpegolden.net>
11663
11664 * files.el (move-file-to-trash): Add freedesktop trash
11665 support (Bug#973).
11666
11667 2009-06-28 Glenn Morris <rgm@gnu.org>
11668
11669 * autorevert.el (global-auto-revert-non-file-buffers)
11670 (global-auto-revert-mode): Doc fixes.
11671
11672 2009-06-27 Johan Bockgård <bojohan@gnu.org>
11673
11674 * emacs-lisp/cl-specs.el (defstruct): Fix :conc-name spec.
11675
11676 2009-06-27 Chong Yidong <cyd@stupidchicken.com>
11677
11678 * faces.el (x-handle-named-frame-geometry): Ensure that we have
11679 opened an X connection before calling x-get-resource (Bug#3194).
11680
11681 * play/doctor.el: Remove reference to obsolete website.
11682 (make-doctor-variables): Correct grammar mistake (Bug#2633).
11683
11684 2009-06-26 Dan Nicolaescu <dann@ics.uci.edu>
11685
11686 Remove find-file-not-found-hook VC method. (Bug#2757)
11687 * vc-hooks.el (vc-file-not-found-hook)
11688 (vc-default-find-file-not-found-hook): Remove functions.
11689 (find-file-not-found-functions): Do not add vc-file-not-found-hook.
11690 * vc-rcs.el (vc-rcs-find-file-not-found-hook): Remove function.
11691 * vc.el:
11692 * vc-hg.el:
11693 * vc-git.el: Do not mention find-file-not-found-hook VC method.
11694
11695 2009-06-25 Agustín Martín <agustin.martin@hispalinux.es>
11696
11697 * textmodes/ispell.el: Add `ispell-looking-back' XEmacs
11698 compatibility function for `looking-back'.
11699
11700 * textmodes/flyspell.el (sgml-mode-flyspell-verify):
11701 Use `ispell-looking-back'.
11702
11703 2009-06-24 Michael Albinus <michael.albinus@gmx.de>
11704
11705 * net/tramp-gvfs.el (tramp-gvfs-handle-make-directory): Use `dir'
11706 rather than `filename'.
11707
11708 2009-06-23 Miles Bader <miles@gnu.org>
11709
11710 * face-remap.el (text-scale-set): New function.
11711
11712 2009-06-23 Glenn Morris <rgm@gnu.org>
11713
11714 * pcmpl-rpm.el (pcomplete/rpm): Doc fix.
11715
11716 * bindings.el (mode-line-modified): Fix case of "Buffer is modified".
11717
11718 * textmodes/ispell.el (ispell-local-dictionary): Doc fix.
11719
11720 * progmodes/gdb-mi.el (gud-remove, gud-break): Update declarations.
11721
11722 * calendar/cal-dst.el (calendar-time-zone-daylight-rules):
11723 Simplify Persian conditionals.
11724
11725 * calc/calc-graph.el (calc-graph-plot): Avoid assignment to free
11726 variable `filename'.
11727
11728 * comint.el (comint-insert-input): Doc fix.
11729
11730 * Makefile.in (ELCFILES): Fix typo in previous change.
11731
11732 2009-06-23 Miles Bader <miles@gnu.org>
11733
11734 * cus-start.el: Add entry for `recenter-redisplay'.
11735
11736 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
11737
11738 * vc-hooks.el (vc-stay-local-p, vc-state, vc-working-revision):
11739 Add an optional argument for the backend, use it instead of
11740 calling vc-backend.
11741 (vc-mode-line): Add an optional argument for the backend.
11742 Pass the backend to vc-state and vc-working-revision. Move code for
11743 special handling for vc-state being a buffer to ...
11744
11745 * vc-rcs.el (vc-rcs-find-file-hook):
11746 * vc-sccs.el (vc-sccs-find-file-hook): ... here. New functions.
11747
11748 * vc-svn.el (vc-svn-state, vc-svn-dir-status, vc-svn-checkout)
11749 (vc-svn-print-log, vc-svn-diff): Pass 'SVN to vc-state,
11750 vc-stay-local-p and vc-mode-line calls.
11751
11752 * vc-cvs.el (vc-cvs-state, vc-cvs-checkout, vc-cvs-print-log)
11753 (vc-cvs-diff, vc-cvs-annotate-command)
11754 (vc-cvs-make-version-backups-p, vc-cvs-stay-local-p)
11755 (vc-cvs-dir-status): Pass 'CVS to vc-state, vc-stay-local-p and
11756 vc-mode-line calls.
11757
11758 * vc.el (vc-deduce-fileset): Use vc-deduce-fileset instead of
11759 direct comparison.
11760 (vc-next-action, vc-transfer-file, vc-rename-file): Also pass the
11761 backend when calling vc-mode-line.
11762 (vc-register): Do not create a closure for calling the vc register
11763 function, call it directly.
11764
11765 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
11766
11767 * emacs-lisp/elp.el (elp-output-insert-symname): Add a link face
11768 to make it obvious item can be clicked.
11769
11770 * vc-mtn.el (vc-mtn-after-dir-status, vc-mtn-dir-status): New functions.
11771
11772 2009-06-23 Kenichi Handa <handa@m17n.org>
11773
11774 * language/korea-util.el (korean-key-bindings): Change the binding
11775 of F9 to hangul-to-hanja-conversion. Bind Hangul_Hanja to the
11776 same command.
11777
11778 2009-06-22 Michael Albinus <michael.albinus@gmx.de>
11779
11780 Sync with Tramp 2.1.16.
11781
11782 * Makefile.in (ELCFILES): Add net/tramp-gvfs.elc.
11783
11784 * net/tramp.el (top): Require tramp-gvfs. Catch `tramp-loading',
11785 when a loading of a package fails. Completion function for rsync
11786 is `tramp-completion-function-alist-ssh'.
11787 (all): Replace all calls of `split-string' and
11788 `tramp-split-string' by `tramp-compat-split-string'.
11789 (tramp-default-method): Use `tramp-compat-process-running-p'.
11790 (tramp-default-proxies-alist): Allow also Lisp forms.
11791 (tramp-remote-path): Add choice "Private Directories".
11792 (tramp-wrong-passwd-regexp): Remove "Tramp connection closed" option.
11793 (tramp-domain-regexp): Allow also "-", "_" and ".".
11794 (tramp-end-of-output): Remove newlines, and add "$" at the end.
11795 (tramp-file-name-handler-alist): Add handler for `dired-uncache'.
11796 (tramp-debug-message): Insert header line in debug buffer.
11797 (tramp-handle-directory-files-and-attributes-with-stat):
11798 Care about filenames with spaces, or starting with "-".
11799 (tramp-handle-dired-uncache): New defun.
11800 (tramp-handle-insert-directory): Don't flush the directory from
11801 cache, this is handled by `dired-uncache' now.
11802 (tramp-handle-insert-file-contents): Improve error handling.
11803 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
11804 Quote `tramp-end-of-output'.
11805 (tramp-action-password): Improve trace message.
11806 (tramp-check-for-regexp): Both echoes must be present, before removing.
11807 (tramp-open-connection-setup-interactive-shell): Trace coding system.
11808 (tramp-compute-multi-hops): Eval cons cells of
11809 `tramp-default-proxies-alist'.
11810 (tramp-maybe-open-connection): Use the same command pattern for
11811 first hop and further hops.
11812 (tramp-wait-for-output): Remove handling of newlines.
11813 (tramp-get-remote-path): Handle also `tramp-own-remote-path'.
11814 (tramp-split-string): Remove function. It is handled in
11815 tramp-compat now.
11816
11817 * net/tramp-cmds.el (tramp-bug):
11818 Recommend `tramp-cleanup-all-connections' in the bug mail.
11819
11820 * net/tramp-compat.el (tramp-compat-split-string)
11821 (tramp-compat-process-running-p): New defuns.
11822
11823 * net/tramp-fish.el (tramp-fish-file-name-handler-alist): Add handler
11824 for `dired-uncache'.
11825
11826 * net/tramp-gvfs.el: New package.
11827
11828 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
11829 Add handler for `dired-uncache'.
11830 (tramp-smb-handle-file-local-copy): Cleanup in case of error.
11831
11832 * net/trampver.el: Update release number. Make version check fit
11833 for SXEmacs 22.
11834
11835 2009-06-22 Jim Meyering <meyering@redhat.com>
11836
11837 Automatically handle .xz suffix (XZ-compressed files), too.
11838 * jka-cmpr-hook.el (jka-compr-compression-info-list): Add xz.
11839 XZ is the successor to LZMA: <http://tukaani.org/xz/>
11840
11841 2009-06-22 Dmitry Dzhus <dima@sphinx.net.ru>
11842 Nick Roberts <nickrob@snap.net.nz>
11843
11844 * progmodes/gdb-mi.el: Pull further modified changes from Dmitry's
11845 repository (http://sphinx.net.ru/hg/gdb-mi/).
11846
11847 2009-06-22 Glenn Morris <rgm@gnu.org>
11848
11849 * files.el (dir-locals-collect-mode-variables): Allow for any number of
11850 `mode' and `eval' entries. (Bug#3430)
11851
11852 * Makefile.in (ELCFILES): Add fadr.elc.
11853
11854 * calendar/appt.el (appt-make-list): Fix off-by-one error caused by
11855 differing behavior of \n and ^ in strings. (Bug#3385)
11856
11857 * emacs-lisp/cl-indent.el: Remove leading "*" from defcustom docs.
11858
11859 * emacs-lisp/lisp-mode.el (lisp-indent-offset): Fix safe-local-variable
11860 property.
11861 (lisp-indent-function): Make it a defcustom.
11862
11863 2009-06-21 Nick Roberts <nickrob@snap.net.nz>
11864
11865 * progmodes/gdb-ui.el: Replace with ...
11866 * progmodes/gdb-mi.el: ... this file.
11867 * progmodes/gud.el: Modify for gdb-mi.el.
11868
11869 2009-06-21 Dmitry Dzhus <dima@sphinx.net.ru>
11870
11871 * fadr.el: New file.
11872
11873 See ChangeLog.14 for earlier changes.
11874
11875 ;; Local Variables:
11876 ;; coding: utf-8
11877 ;; End:
11878
11879 Copyright (C) 2009, 2010 Free Software Foundation, Inc.
11880
11881 This file is part of GNU Emacs.
11882
11883 GNU Emacs is free software: you can redistribute it and/or modify
11884 it under the terms of the GNU General Public License as published by
11885 the Free Software Foundation, either version 3 of the License, or
11886 (at your option) any later version.
11887
11888 GNU Emacs is distributed in the hope that it will be useful,
11889 but WITHOUT ANY WARRANTY; without even the implied warranty of
11890 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11891 GNU General Public License for more details.
11892
11893 You should have received a copy of the GNU General Public License
11894 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
11895
11896 ;; arch-tag: d3e45e38-19e2-49b6-8dc2-7cb26adcc5a1