4588f02dbb976809ed189c51e5beea224296b8f1
[bpt/emacs.git] / lisp / ChangeLog
1 2010-12-01 Kenichi Handa <handa@m17n.org>
2
3 * mail/rmailmm.el (rmail-mime-parse): Call rmail-mime-process
4 within condition-case.
5 (rmail-show-mime): Don't use condition-case.
6 (rmail-search-mime-message): New function.
7 (rmail-search-mime-message-function): Set to
8 rmail-search-mime-message.
9
10 2010-12-01 Leo <sdl.web@gmail.com>
11
12 * ido.el (ido-common-initilization): New function. (bug#3274)
13 (ido-mode): Use it.
14 (ido-completing-read): Call it.
15
16 2010-11-27 Chong Yidong <cyd@stupidchicken.com>
17
18 * log-edit.el (log-edit-font-lock-keywords): Don't try matching
19 stand-alone lines, since that is handled by log-edit-match-to-eoh
20 (Bug#6465).
21
22 2010-11-27 Eduard Wiebe <usenet@pusto.de>
23
24 * dired.el (dired-get-filename): Replace backslashes with slashes
25 in file names on MS-Windows, needed by `locate'. (Bug#7308)
26 * locate.el (locate-default-make-command-line): Don't consider
27 drive letter and root directory part of
28 `directory-listing-before-filename-regexp'. (Bug#7308)
29 (locate-post-command-hook, locate-post-command-hook): New defcustoms.
30
31 2010-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
32
33 * emacs-lisp/smie.el (smie-prec2->grammar): Simplify handling
34 of :smie-open/close-alist.
35 (smie-next-sexp): Make it accept a "start token" as argument.
36 (smie-indent-keyword): Be careful not to misidentify tokens that span
37 more than one line, as empty lines. Add argument `token'.
38 >>>>>>> MERGE-SOURCE
39
40 2010-11-26 Kenichi Handa <handa@m17n.org>
41
42 * mail/rmailmm.el (rmail-mime-insert-multipart): For unsupported
43 multipart subtypes, insert all as usual.
44
45 * mail/rmail.el: Require rfc2047.
46
47 2010-11-26 Kenichi Handa <handa@m17n.org>
48
49 * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-type)
50 (rmail-mime-entity-disposition)
51 (rmail-mime-entity-transfer-encoding, rmail-mime-entity-header)
52 (rmail-mime-entity-body, rmail-mime-entity-children): New functions.
53 (rmail-mime-save): Handle the case that the button's `data' is a
54 MIME entity.
55 (rmail-mime-insert-text): New function.
56 (rmail-mime-insert-image): Handle the case that DATA is a MIME
57 entity.
58 (rmail-mime-bulk-handler): Just call rmail-mime-insert-bulk.
59 (rmail-mime-insert-bulk): New function mostly copied from the old
60 rmail-mime-bulk-handler.
61 (rmail-mime-multipart-handler): Just call
62 rmail-mime-process-multipart.
63 (rmail-mime-process-multipart): New funciton mostly copied from
64 the old rmail-mime-multipart-handler.
65 (rmail-mime-show): Just call rmail-mime-process.
66 (rmail-mime-process): New funciton mostly copied from the old
67 rmail-mime-show.
68 (rmail-mime-insert-multipart, rmail-mime-parse)
69 (rmail-mime-insert, rmail-show-mime)
70 (rmail-insert-mime-forwarded-message)
71 (rmail-insert-mime-resent-message): New functions.
72 (rmail-insert-mime-forwarded-message-function): Set to
73 rmail-insert-mime-forwarded-message.
74 (rmail-insert-mime-resent-message-function): Set to
75 rmail-insert-mime-resent-message.
76
77 * mail/rmailsum.el: Require rfc2047.
78 (rmail-header-summary): Handle multiline Subject: field.
79 (rmail-summary-line-decoder): Change the default to
80 rfc2047-decode-string.
81
82 * mail/rmail.el (rmail-enable-mime): Change the default to t.
83 (rmail-mime-feature): Change the default to `rmailmm'.
84 (rmail-quit): Delete the specifal code for rmail-enable-mime.
85 (rmail-display-labels): Likewise.
86 (rmail-show-message-1): Check rmail-enable-mime, and use
87 rmail-show-mime-function for a MIME message. Decode the headers
88 according to RFC2047.
89
90 2010-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
91
92 * progmodes/which-func.el (which-func-imenu-joiner-function):
93 Return a string, as expected.
94 (which-function-mode): Make sure we stop any previous timer before
95 starting a new one.
96
97 2010-11-23 Michael Albinus <michael.albinus@gmx.de>
98
99 * net/tramp.el (tramp-default-method-alist)
100 (tramp-default-user-alist, tramp-default-proxies-alist):
101 Adapt custom options type. (Bug#7445)
102
103 2010-11-21 Chong Yidong <cyd@stupidchicken.com>
104
105 * progmodes/python.el: Add Ipython support (Bug#5390).
106 (python-shell-prompt-alist)
107 (python-shell-continuation-prompt-alist): New options.
108 (python--set-prompt-regexp): New function.
109 (inferior-python-mode, run-python, python-shell):
110 Require ansi-color. Use python--set-prompt-regexp to set the comint
111 prompt based on the Python interpreter.
112 (python--prompt-regexp): New var.
113 (python-check-comint-prompt)
114 (python-comint-output-filter-function): Use it.
115 (run-python): Use a pipe (Bug#5694).
116
117 2010-11-21 Chong Yidong <cyd@stupidchicken.com>
118
119 * progmodes/python.el (run-python): Doc fix.
120 (python-keep-current-directory-in-path): New var (Bug#7454).
121
122 2010-11-20 Chong Yidong <cyd@stupidchicken.com>
123
124 * lpr.el (lpr-buffer, print-buffer, lpr-region, print-region):
125 Prompt user before actually printing.
126
127 2010-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
128
129 * simple.el (kill-new, kill-append, kill-region):
130 * comint.el (comint-kill-region): Make the yank-handler argument
131 obsolete.
132
133 2010-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
134
135 * emacs-lisp/smie.el (smie-bnf-classify): Signal errors for tokens
136 that are both openers (resp. closers) and something else.
137 (smie-grammar): Loosen definition of valid values.
138 (smie-next-sexp, smie-down-list, smie-blink-matching-open)
139 (smie-indent--parent, smie-rule-parent, smie-indent-keyword)
140 (smie-indent-after-keyword): Adjust users.
141 (smie-indent-keyword): Don't indent empty lines.
142
143 * vc-hg.el (vc-hg-program): New var.
144 Suggested by Norman Gray <norman@astro.gla.ac.uk>.
145 (vc-hg-state, vc-hg-working-revision, vc-hg-command): Use it.
146
147 2010-11-17 Glenn Morris <rgm@gnu.org>
148
149 * emacs-lisp/autoload.el (autoload-find-destination): The function
150 coding-system-eol-type may return non-numeric values. (Bug#7414)
151
152 2010-11-16 Ulrich Mueller <ulm@gentoo.org>
153
154 * server.el (server-force-stop): Ensure the server is stopped (Bug#7409).
155
156 2010-11-13 Eli Zaretskii <eliz@gnu.org>
157
158 * subr.el (posn-col-row): Pay attention to header line. (Bug#7390)
159
160 2010-11-13 Chong Yidong <cyd@stupidchicken.com>
161
162 * textmodes/picture.el (picture-mouse-set-point): Don't use
163 posn-col-row; explicitly compute the motion based on the posn at
164 the window-start (Bug#7390).
165
166 2010-11-13 Michael Albinus <michael.albinus@gmx.de>
167
168 * net/tramp.el (tramp-remote-coding-commands): Add an alternative
169 using "base64 -d -i". This is needed for older base64 versions
170 from GNU coreutils. Reported by Klaus Reichl
171 <Klaus.Reichl@thalesgroup.com>.
172
173 2010-11-13 Glenn Morris <rgm@gnu.org>
174
175 * novice.el (disabled-command-function):
176 Fix 2009-11-15 change. (Bug#7384)
177
178 2010-11-12 Glenn Morris <rgm@gnu.org>
179
180 * calendar/calendar.el (diary-iso-date-forms): Make elements
181 mutually exclusive. (Bug#7377)
182
183 2010-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
184
185 * emacs-lisp/smie.el (smie-prec2->grammar): Obey equality constraints
186 when filling the remaining "unconstrained" values.
187
188 2010-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
189
190 * emacs-lisp/bytecomp.el (byte-compile-warnings): Simplify the
191 safety predicate.
192
193 * files.el (safe-local-variable-p): Gracefully handle errors.
194
195 * emacs-lisp/smie.el (smie-rule-parent, smie-indent--rule):
196 Use smie-indent-virtual when indenting relative to an opener.
197 (smie-rule-separator): Use smie-rule-parent.
198 (smie-indent-keyword): Consult rules, even for openers at bol.
199 (smie-indent-comment-close): Try to align closer's content.
200
201 2010-11-11 Glenn Morris <rgm@gnu.org>
202
203 * ls-lisp.el (ls-lisp-dired-ignore-case): Make it an obsolete alias.
204
205 2010-11-10 Glenn Morris <rgm@gnu.org>
206
207 * printing.el (pr-menu-bind): Doc fix.
208
209 * speedbar.el (speedbar-toggle-images): Doc fix.
210
211 * progmodes/python.el (python-shell): Doc fix.
212
213 * wid-edit.el (widget-field-use-before-change)
214 (widget-use-overlay-change): Doc fixes.
215
216 2010-11-09 Glenn Morris <rgm@gnu.org>
217
218 * progmodes/tcl.el (tcl-hairy-scan-for-comment): Doc fix.
219
220 2010-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
221
222 * minibuffer.el (minibuffer-completion-help): Specify the end of the
223 completion field (bug#7211).
224
225 * progmodes/python.el (python-font-lock-syntactic-keywords): (bug#7322)
226 Fix handling of backslash escapes.
227 (python-quote-syntax): Adjust accordingly.
228
229 2010-11-08 Richard Levitte <richard@levitte.org> (tiny change)
230
231 * vc-mtn.el (vc-mtn-working-revision, vc-mtn-after-dir-status)
232 (vc-mtn-workfile-branch): Adjust to new output format.
233
234 2010-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
235
236 * international/mule-cmds.el (princ-list): Mark as obsolete.
237
238 2010-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
239
240 * emacs-lisp/smie.el: New package.
241
242 2010-11-06 Michael Albinus <michael.albinus@gmx.de>
243
244 * files.el (backup-by-copying-when-mismatch):
245 Set `permanent-local' property.
246
247 * net/tramp.el (tramp-handle-insert-file-contents): Do not set
248 `permanent-local' property for `backup-by-copying-when-mismatch'.
249
250 2010-11-06 Eli Zaretskii <eliz@gnu.org>
251
252 * ls-lisp.el (insert-directory): Doc fix. (bug#7285)
253 (ls-lisp-classify-file): New function.
254 (ls-lisp-insert-directory): Call it if switches include -F (bug#6294).
255 (ls-lisp-classify): Call ls-lisp-classify-file.
256 (insert-directory): Remove blanks from switches.
257
258 2010-11-07 Wilson Snyder <wsnyder@wsnyder.org>
259
260 * progmodes/verilog-mode.el (verilog-insert-one-definition)
261 (verilog-read-decls, verilog-read-sub-decls-sig): Fix AUTOWIRE and
262 AUTOINOUT for SV style multidimensional arrays, bug294.
263 Reported by Eric Mastromarchi.
264 (verilog-preprocess): Use with-current-buffer and
265 font-lock-fontify-buffer to cleanup style issues.
266
267 2010-11-05 Michael Albinus <michael.albinus@gmx.de>
268
269 * net/trampver.el: Update release number.
270
271 2010-08-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
272
273 * mouse.el (mouse-fixup-help-message): Match "mouse-2" only at the
274 beginning of the string. Use `string-match-p'. (Bug#6765)
275
276 2010-11-01 Glenn Morris <rgm@gnu.org>
277
278 * locate.el (locate, locate-mode): Doc fixes.
279
280 2010-11-01 Chong Yidong <cyd@stupidchicken.com>
281
282 * server.el (server-start): New arg INHIBIT-PROMPT prevents asking
283 user for confirmation.
284 (server-force-stop): Use it.
285 (server-start): Use server-force-stop for kill-emacs-hook, to
286 avoid user interaction while killing Emacs.
287
288 2010-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
289
290 * vc/log-edit.el (log-edit-rewrite-fixes): New var.
291 (log-edit-author): New dynamic var.
292 (log-edit-changelog-ours-p, log-edit-insert-changelog-entries):
293 Use it to return the author if different from committer.
294 (log-edit-insert-changelog): Use them to add Author: and Fixes headers.
295
296 2010-10-31 Eli Zaretskii <eliz@gnu.org>
297
298 * vc/vc-hooks.el (vc-default-mode-line-string): Doc fix.
299
300 2010-10-31 Chong Yidong <cyd@stupidchicken.com>
301
302 * vc/vc.el (vc-deduce-backend): New fun. Handle diff buffers.
303 (vc-root-diff, vc-print-root-log, vc-log-incoming)
304 (vc-log-outgoing): Use it.
305 (vc-diff-internal): Set diff-vc-backend.
306
307 * vc/diff-mode.el (diff-vc-backend): New var.
308
309 2010-10-31 Juri Linkov <juri@jurta.org>
310
311 * vc/vc.el (vc-diff-internal): Set `revert-buffer-function'
312 buffer-locally to lambda that re-runs the vc diff command.
313 (Bug#6447)
314
315 2010-10-31 Dan Nicolaescu <dann@ics.uci.edu>
316
317 * vc/log-view.el (log-view-mode-map): Bind revert-buffer.
318
319 Make 'g' (AKA revert-buffer) rerun VC log, log-incoming and
320 log-outgoing commands.
321 * vc/vc.el (vc-log-internal-common): Add a new argument and use it
322 to create a buffer local revert-buffer-function variable.
323 (vc-print-log-internal, vc-log-incoming, vc-log-outgoing): Pass a
324 revert-buffer-function lambda.
325
326 Improve VC create/retrieve tag/branch.
327 * vc.el (vc-create-tag): Do not read the directory name for VCs
328 with repository revision granularity. Adjust the tag/branch
329 prompt. Reset VC properties.
330 (vc-retrieve-tag): Do not read the directory name for VCs
331 with repository revision granularity. Reset VC properties.
332
333 Add optional support for resetting VC properties.
334 * vc-dispatcher.el (vc-resynch-window): Add new optional argument,
335 call vc-file-clearprops when true.
336 (vc-resynch-buffer): Add new optional argument, pass it down.
337 (vc-resynch-buffers-in-directory): Likewise.
338
339 Improve support for special markup in the VC commit message.
340 * vc-mtn.el (vc-mtn-checkin): Support Author: and Date: markup.
341 * vc-hg.el (vc-hg-checkin): Add support for Date:.
342 * vc-git.el (vc-git-checkin):
343 * vc-bzr.el (vc-bzr-checkin): Likewise.
344
345 Add support for vc-log-incoming, improve vc-log-outgoing for Git.
346 * vc-git.el (vc-git-log-view-mode): Fix font lock for
347 incoming/outgoing logs.
348 (vc-git-log-outgoing, vc-git-log-incoming): New functions.
349
350 * vc-git.el (vc-git-log-outgoing): Use the same format as the
351 short log.
352 (vc-git-log-incoming): Likewise. Run "git fetch" before the log
353 command
354
355 Add bindings for vc-log-incoming and vc-log-outgoing.
356 * vc-hooks.el (vc-prefix-map): Add bindings for vc-log-incoming
357 and vc-log-outgoing.
358 * vc-dir.el (vc-dir-menu-map): Add menu bindings for vc-log-incoming
359 and vc-log-outgoing.
360
361 Improve state updating for VC tag commands.
362 * vc.el (vc-create-tag, vc-retrieve-tag): Call vc-resynch-buffer
363 to update the state of all buffers in the directory.
364
365 2010-05-19 Glenn Morris <rgm@gnu.org>
366
367 * vc-dir.el (vc-dir): Don't pop-up-windows. (Bug#6204)
368
369 2010-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
370
371 * vc.el (vc-checkin, vc-modify-change-comment):
372 Adjust to new vc-start/finish-logentry.
373 (vc-find-conflicted-file): New command.
374 (vc-transfer-file): Adjust to new vc-checkin.
375 (vc-next-action): Improve scoping.
376
377 * vc-git.el (vc-git-checkin): Use log-edit-extract-headers.
378 (vc-git-commits-coding-system): Rename from git-commits-coding-system.
379
380 * vc-dispatcher.el (vc-log-edit): Shorten names for
381 log-edit-show-files.
382
383 * vc-bzr.el (vc-bzr-checkin): Use log-edit-extract-headers.
384 (vc-bzr-conflicted-files): New function.
385
386 * log-edit.el (log-edit-summary, log-edit-header)
387 (log-edit-unknown-header): New faces.
388 (log-edit-headers-alist): New var.
389 (log-edit-header-contents-regexp): New const.
390 (log-edit-match-to-eoh): New function.
391 (log-edit-font-lock-keywords): Use them.
392 (log-edit): Insert a "Summary:" header as default.
393 (log-edit-mode): Mark font-lock rules as case-insensitive.
394 (log-edit-done): Cleanup headers.
395 (log-edit-extract-headers): New function to replace it.
396
397 * vc-dispatcher.el (vc-finish-logentry): Don't mess so badly with
398 the windows/frames.
399
400 * vc-bzr.el (vc-bzr-shelve-apply): Don't use *vc-bzr-shelve*.
401
402 * vc-dir.el (vc-dir-kill-line): New command.
403 (vc-dir-mode-map): Bind it to C-k.
404 (vc-dir-headers): Abbreviate the working dir.
405
406 * vc-git.el (vc-git-revision-table): Include remote branches.
407
408 2010-10-31 Dan Nicolaescu <dann@ics.uci.edu>
409
410 New VC methods: vc-log-incoming and vc-log-outgoing.
411 * vc.el (vc-print-log-setup-buttons, vc-log-internal-common)
412 (vc-incoming-outgoing-internal, vc-log-incoming, vc-log-outgoing):
413 New functions.
414 (vc-print-log-internal): Just call vc-log-internal-common.
415 (vc-log-view-type): New permanent local variable.
416
417 * vc-hooks.el (vc-menu-map): Bind vc-log-incoming and vc-log-outgoing.
418
419 * vc-bzr.el (vc-bzr-log-view-mode): Use vc-log-view-type instead
420 of the dynamic bound vc-short-log.
421 (vc-bzr-log-incoming, vc-bzr-log-outgoing): New functions.
422
423 * vc-git.el (vc-git-log-outgoing): New function.
424 (vc-git-log-view-mode): Use vc-log-view-type instead
425 of the dynamic bound vc-short-log.
426
427 * vc-hg.el (vc-hg-log-view-mode): Use vc-log-view-type instead of
428 the dynamic bound vc-short-log. Highlight the tag.
429 (vc-hg-log-incoming, vc-hg-log-outgoing): New functions.
430 (vc-hg-outgoing, vc-hg-incoming, vc-hg-outgoing-mode):
431 (vc-hg-incoming-mode): Remove.
432 (vc-hg-extra-menu-map): Do not bind vc-hg-incoming and vc-hg-outgoing.
433
434 Fix default-directory for vc-root-diff.
435 * vc.el (vc-root-diff): Bind default-directory to the root
436 directory for the diff command.
437
438 2010-10-31 Sam Steingold <sds@gnu.org>
439
440 * vc-hg.el (vc-hg-push, vc-hg-pull): Use `apply' when calling
441 `vc-hg-command' with a list of flags.
442
443 2010-10-31 Glenn Morris <rgm@gnu.org>
444
445 * vc-bzr.el (vc-bzr-log-edit-mode): Add --fixes support to
446 log-edit-before-checkin-process.
447
448 * vc.el (vc-modify-change-comment): Pass MODE to vc-start-logentry.
449
450 * vc-bzr.el, vc-hg.el (log-edit-mode): Declare.
451
452 * vc-dispatcher.el (vc-start-logentry): Doc fix.
453 (log-view-process-buffer, log-edit-extra-flags): Declare.
454
455 2010-10-31 Dan Nicolaescu <dann@ics.uci.edu>
456
457 Add special markup processing for commit logs.
458 * log-edit.el (log-edit): Add new argument MODE. Use that mode
459 when non-nil instead of the log-view-mode.
460
461 * vc.el (vc-default-log-edit-mode): New function.
462
463 * vc-dispatcher.el (vc-log-edit): Add a mode argument, pass it to
464 log-edit.
465
466 Support for shelving snapshots and for showing shelves.
467 * vc-bzr.el (vc-bzr-shelve-show, vc-bzr-shelve-show-at-point)
468 (vc-bzr-shelve-apply-and-keep-at-point, vc-bzr-shelve-snapshot):
469 New functions.
470 (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
471 (vc-bzr-extra-menu-map): Map them.
472
473 2010-10-30 Michael Albinus <michael.albinus@gmx.de>
474
475 * net/tramp.el (tramp-handle-insert-file-contents): For root,
476 preserve owner and group when editing files. (Bug#7289)
477
478 2010-10-29 Glenn Morris <rgm@gnu.org>
479
480 * speedbar.el (speedbar-mode):
481 * play/fortune.el (fortune-in-buffer, fortune):
482 * play/gomoku.el (gomoku-mode):
483 * play/landmark.el (lm-mode):
484 * textmodes/bibtex.el (bibtex-validate, bibtex-validate-globally):
485 Replace inappropriate uses of toggle-read-only. (Bug#7292)
486
487 2010-10-28 Glenn Morris <rgm@gnu.org>
488
489 * select.el (x-selection): Mark it as an obsolete alias.
490
491 2010-10-27 Aaron S. Hawley <aaron.s.hawley@gmail.com>
492
493 * add-log.el (find-change-log): Use derived-mode-p rather than
494 major-mode (bug#7284).
495
496 2010-10-27 Glenn Morris <rgm@gnu.org>
497
498 * menu-bar.el (menu-bar-files-menu): Make it into an actual alias,
499 rather than just an unused variable that inherits from the real one.
500
501 2010-10-23 Michael McNamara <mac@mail.brushroad.com>
502
503 * verilog-mode.el (verilog-directive-re): Make this variable
504 auto-built for efficiency of execution and updating.
505 (verilog-extended-complete-re): Support 'pure' fucntion & task
506 declarations (these have no bodies).
507 (verilog-beg-of-statement): General cleanup to enable support of
508 'pure' fucntion & task declarations (these have no bodies).
509 These efforts together fix Verilog bug210 from veripool; which was also
510 noticed by Steve Pearlmutter.
511 (verilog-directive-re, verilog-directive-begin, verilog-indent-re)
512 (verilog-directive-nest-re, verilog-set-auto-endcomments):
513 Support `elsif. Reported by Shankar Giri.
514 (verilog-forward-ws&directives, verilog-in-attribute-p): Fixes for
515 attribute handling for lining up declarations and assignments.
516 (verilog-beg-of-statement-1): Fix issue where continued declaration
517 is indented differently if it is after a begin..end clock.
518 (verilog-in-attribute-p, verilog-skip-backward-comments)
519 (verilog-skip-forward-comment-p): Support proper treatment of
520 attributes by indent code. Reported by Jeff Steele.
521 (verilog-in-directive-p): Fix comment to correctly describe function.
522 (verilog-backward-up-list, verilog-in-struct-region-p)
523 (verilog-backward-token, verilog-in-struct-p)
524 (verilog-in-coverage-p, verilog-do-indent)
525 (verilog-pretty-declarations): Use verilog-backward-up-list as
526 wrapper around backward-up-list inorder to properly skip comments.
527 Reported by David Rogoff.
528 (verilog-property-re, verilog-endcomment-reason-re)
529 (verilog-beg-of-statement, verilog-set-auto-endcomments)
530 (verilog-calc-1 ): Fix for assert a; else b; indentation (new form
531 of if). Reported by Max Bjurling and
532 (verilog-calc-1): Fix for clocking block in modport
533 declaration. Reported by Brian Hunter.
534
535 2010-10-23 Wilson Snyder <wsnyder@wsnyder.org>
536
537 * verilog-mode.el (verilog-auto-inst, verilog-gate-ios)
538 (verilog-gate-keywords, verilog-read-sub-decls)
539 (verilog-read-sub-decls-gate, verilog-read-sub-decls-gate-ios)
540 (verilog-read-sub-decls-line, verilog-read-sub-decls-sig): Support
541 AUTOINST for gate primitives, bug284. Reported by Mark Johnson.
542 (verilog-read-decls): Fix spaces in V2K module parameters causing
543 mis-identification as interfaces, bug287.
544 (verilog-read-decls): Fix not treating "parameter string" as a
545 parameter in AUTOINSTPARAM.
546 (verilog-read-always-signals-recurse, verilog-read-decls): Fix not
547 treating `elsif similar to `endif inside AUTOSENSE.
548 (verilog-do-indent): Implement correct automatic or static task or
549 function end comment highlight. Reported by Steve Pearlmutter.
550 (verilog-font-lock-keywords-2): Fix highlighting of single
551 character pins, bug264. Reported by Michael Laajanen.
552 (verilog-auto-inst, verilog-read-decls, verilog-read-sub-decls)
553 (verilog-read-sub-decls-in-interfaced, verilog-read-sub-decls-sig)
554 (verilog-subdecls-get-interfaced, verilog-subdecls-new):
555 Support interfaces with AUTOINST, bug270. Reported by Luis Gutierrez.
556 (verilog-pretty-expr): Fix interactive arguments, bug272.
557 Reported by Mark Johnson.
558 (verilog-auto-tieoff, verilog-auto-tieoff-ignore-regexp):
559 Add 'verilog-auto-tieoff-ignore-regexp' for AUTOTIEOFF,
560 bug269. Suggested by Gary Delp.
561 (verilog-mode-map, verilog-preprocess, verilog-preprocess-history)
562 (verilog-preprocessor, verilog-set-compile-command):
563 Create verilog-preprocess and verilog-preprocessor to show
564 preprocessed output.
565 (verilog-get-beg-of-line, verilog-get-end-of-line)
566 (verilog-modi-file-or-buffer, verilog-modi-name)
567 (verilog-modi-point, verilog-within-string): Move defmacro's
568 before first use to avoid warning. Reported by Steve Pearlmutter.
569 (verilog-colorize-buffer, verilog-colorize-include-files-buffer)
570 (verilog-colorize-region, verilog-highlight-buffer)
571 (verilog-highlight-includes, verilog-highlight-modules)
572 (verilog-highlight-region, verilog-mode): Rename colorize to
573 highlight to match other packages. Disable module highlighting,
574 as received speed complaints, reenable for experimentation only
575 using new verilog-highlight-modules.
576 (verilog-read-decls): Fix regexp stack overflow in very large
577 AUTO_TEMPLATEs, bug250.
578 (verilog-auto, verilog-delete-auto, verilog-save-buffer-state)
579 (verilog-scan): Create verilog-save-buffer-state to standardize
580 making insignificant changes that shouldn't call hooks.
581 (verilog-save-no-change-functions, verilog-save-scan-cache)
582 (verilog-scan, verilog-scan-cache-ok-p, verilog-scan-region):
583 Create verilog-save-no-change-functions to wrap verilog-scan
584 preservation, and fix to work with nested preserved calls.
585 (verilog-auto-inst, verilog-auto-inst-dot-name): Support .name
586 port syntax for AUTOWIRE, and with new verilog-auto-inst-dot-name
587 generate .name with AUTOINST, bug245. Suggested by David Rogoff.
588 (verilog-submit-bug-report): Update variable list to be complete.
589 (verilog-auto, verilog-colorize-region): Fix AUTO expansion
590 breaking on-the-fly font-locking.
591 (verilog-colorize-buffer, verilog-colorize-include-files)
592 (verilog-colorize-include-files-buffer, verilog-colorize-region)
593 (verilog-load-file-at-mouse, verilog-load-file-at-point)
594 (verilog-mode, verilog-read-inst-module-matcher): With point on a
595 AUTOINST cell instance name, middle mouse button now finds-file on
596 it. Suggested by Brad Dobbie.
597 (verilog-alw-get-temps, verilog-auto-reset)
598 (verilog-auto-sense-sigs, verilog-read-always-signals)
599 (verilog-read-always-signals-recurse): Fix loop indexes being
600 AUTORESET. AUTORESET now assumes any variables in the
601 initialization section of a for() should be ignored.
602 Reported by Dan Dever.
603 (verilog-error-font-lock-keywords)
604 (verilog-error-regexp-emacs-alist)
605 (verilog-error-regexp-xemacs-alist): Fix error detection of
606 Cadence HAL, reported by David Asher. Repair drift between the
607 three similar error variables.
608 (verilog-modi-lookup, verilog-modi-lookup-cache)
609 (verilog-modi-lookup-last-current, verilog-modi-lookup-last-mod)
610 (verilog-modi-lookup-last-modi, verilog-modi-lookup-last-tick):
611 Fix slow verilog-auto expansion on very large files.
612 (verilog-read-sub-decls-expr, verilog-read-sub-decls-line):
613 Fix AUTOOUTPUT treating "1*2" as a signal name in submodule connection
614 "{1*2{...". Broke in last revision.
615 (verilog-read-sub-decls-expr): Fix AUTOOUTPUT not detecting
616 submodule connections with replications "{#{a},#{b}}".
617
618 2010-10-23 Glenn Morris <rgm@gnu.org>
619
620 * comint.el (comint-password-prompt-regexp):
621 Match "enter the password". (Bug#7224)
622
623 2010-10-22 Juanma Barranquero <lekktu@gmail.com>
624
625 * progmodes/dcl-mode.el (dcl-electric-reindent-regexps):
626 Fix typo in docstring.
627
628 2010-10-21 Michael Albinus <michael.albinus@gmx.de>
629
630 * net/tramp.el (tramp-get-inline-coding): Return `nil' in case of
631 errors.
632
633 * net/trampver.el: Update release number.
634
635 2010-10-20 Kenichi Handa <handa@m17n.org>
636
637 * face-remap.el (text-scale-adjust): Call read-event with a proper
638 prompt.
639
640 2010-10-19 Michael Albinus <michael.albinus@gmx.de>
641
642 * net/tramp.el (tramp-do-file-attributes-with-stat)
643 (tramp-do-directory-files-and-attributes-with-stat): Use "e0" in
644 order to make stat results a float. Patch by Andreas Schwab
645 <schwab@linux-m68k.org>.
646
647 2010-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
648
649 * repeat.el (repeat): Use read-key (bug#6256).
650
651 2010-10-18 Chong Yidong <cyd@stupidchicken.com>
652
653 * emacs-lisp/unsafep.el: Don't mark functions that display
654 messages as safe. Suggested by Johan Bockgård.
655
656 2010-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
657
658 * emacs-lisp/regexp-opt.el (regexp-opt-group, regexp-opt-charset):
659 Turn comments into docstrings.
660
661 * minibuffer.el (completion--replace): Move point where it belongs
662 when there's a common suffix (bug#7215).
663
664 2010-10-15 Michael Albinus <michael.albinus@gmx.de>
665
666 * net/tramp.el (tramp-open-connection-setup-interactive-shell):
667 Suppress expansion of tabs to spaces. Reported by Dale Sedivec
668 <dale@codefu.org>.
669
670 2010-10-15 Kenichi Handa <handa@m17n.org>
671
672 * international/characters.el: Add category '|' (word breakable)
673 to fullwidth characters.
674
675 2010-10-14 Kenichi Handa <handa@m17n.org>
676
677 * mail/rmail.el (rmail-show-message-1): Catch an error of
678 base64-decode-region and just show an error message (bug#7165).
679
680 * ps-mule.el (ps-mule-font-spec-list): Delete it. Not used anymore.
681 (ps-mule-begin-job): Fix for the case that only ENCODING is set in
682 a font-spec (bug#7197).
683
684 2010-10-13 Glenn Morris <rgm@gnu.org>
685
686 * mail/emacsbug.el (report-emacs-bug): Mention debbugs.gnu.org.
687
688 2010-10-12 Juanma Barranquero <lekktu@gmail.com>
689
690 * international/mule.el (define-coding-system):
691 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
692 * composite.el (compose-region): Fix typo in docstring.
693
694 2010-10-10 Jan Djärv <jan.h.d@swipnet.se>
695
696 * term/ns-win.el (ns-right-alternate-modifier): New defvar.
697 (ns-right-option-modifier): New alias for ns-right-alternate-modifier.
698 (mac-right-option-modifier): New alias for ns-right-option-modifier.
699
700 * cus-start.el (all): ns-right-alternate-modifier is new.
701
702 2010-10-10 Andreas Schwab <schwab@linux-m68k.org>
703
704 * Makefile.in (ELCFILES): Update.
705
706 2010-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
707
708 * emacs-lisp/lisp.el (lisp-completion-at-point):
709 Use emacs-lisp-mode-syntax-table for the whole function.
710
711 2010-10-09 Richard Sharman <richard_sharman@mitel.com> (tiny change)
712
713 * progmodes/gdb-ui.el (gdb-mouse-toggle-breakpoint-margin)
714 (gdb-mouse-toggle-breakpoint-fringe): Correct regexp to
715 work when breakpoint number exceeds nine.
716
717 2010-10-05 David Koppelman <koppel@ece.lsu.edu>
718
719 * hi-lock.el (hi-lock-font-lock-hook): Check font-lock-fontified
720 instead of font-lock-mode before adding keywords.
721 Remove hi-lock-mode off code. Remove inhibit hack.
722 (hi-lock-set-pattern): Only add keywords if font-lock-fontified
723 non-nil; removed hook inhibit hack.
724
725 2010-10-09 Glenn Morris <rgm@gnu.org>
726
727 * emacs-lisp/shadow.el (find-emacs-lisp-shadows): Rename it...
728 (load-path-shadows-find): ... to this.
729 (list-load-path-shadows): Update for above change.
730
731 * mail/mail-utils.el (mail-mbox-from): Also try return-path.
732
733 2010-10-08 Glenn Morris <rgm@gnu.org>
734
735 * emacs-lisp/cl-compat.el, emacs-lisp/lmenu.el: Move to obsolete/.
736
737 * emacs-lisp/shadow.el (lisp-shadow): Change prefix.
738 (shadows-compare-text-p): Make it an obsolete alias for...
739 (load-path-shadows-compare-text): ... new name.
740 (find-emacs-lisp-shadows): Update for above name change.
741 (load-path-shadows-same-file-or-nonexistent): New name for the old
742 shadow-same-file-or-nonexistent.
743
744 2010-10-03 Chong Yidong <cyd@stupidchicken.com>
745
746 * minibuffer.el (completion--some, completion--do-completion)
747 (minibuffer-complete-and-exit, minibuffer-completion-help)
748 (completion-basic-try-completion)
749 (completion-basic-all-completions)
750 (completion-pcm--find-all-completions): Use lexical-let to
751 avoid some false matches in variable completion (Bug#7056)
752
753 2010-10-03 Olof Ohlsson Sax <olof.ohlsson.sax@gmail.com> (tiny change)
754
755 * vc-svn.el (vc-svn-merge-news): Use --non-interactive. (Bug#7152)
756
757 2010-10-03 Leo <sdl.web@gmail.com>
758
759 * dnd.el (dnd-get-local-file-name): If MUST-EXIST is non-nil, only
760 return non-nil if the file exists (Bug#7090).
761
762 2010-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
763
764 * minibuffer.el (completion--replace):
765 Better preserve markers (bug#7138).
766
767 2010-09-29 Juanma Barranquero <lekktu@gmail.com>
768
769 * server.el (server-process-filter): Doc fix.
770
771 2010-09-27 Drew Adams <drew.adams@oracle.com>
772
773 * dired.el (dired-save-positions): Doc fix. (Bug#7119)
774
775 2010-09-27 Andreas Schwab <schwab@linux-m68k.org>
776
777 * Makefile.in (ELCFILES): Update.
778
779 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
780 Avoid infinite recursion on erroneous lambda form. (Bug#7114)
781
782 2010-09-27 Kenichi Handa <handa@m17n.org>
783
784 * tar-mode.el (tar-header-block-tokenize): Decode filenames in
785 "ustar" format.
786
787 2010-09-27 Kenichi Handa <handa@m17n.org>
788
789 * international/mule.el (define-coding-system): Docstring fixed.
790
791 * international/mule-diag.el (describe-character-set): Use princ
792 with proper print-length and print-level instead of insert.
793
794 2010-09-26 Juanma Barranquero <lekktu@gmail.com>
795
796 * window.el (walk-windows): Doc fix (bug#7105).
797
798 2010-09-23 Glenn Morris <rgm@gnu.org>
799
800 * isearch.el (isearch-lazy-highlight-cleanup)
801 (isearch-lazy-highlight-initial-delay)
802 (isearch-lazy-highlight-interval)
803 (isearch-lazy-highlight-max-at-a-time, isearch-lazy-highlight-face):
804 * net/net-utils.el (ipconfig-program-options):
805 Move aliases to options before the associated definitions.
806
807 2010-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
808
809 * newcomment.el (comment-normalize-vars): Better test validity of
810 comment-end-skip.
811
812 2010-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
813
814 * emacs-lisp/float-sup.el (float-pi): New name for `pi'.
815 (float-e): New name for `e'.
816 (degrees-to-radians, radians-to-degrees):
817 * calendar/solar.el (solar-longitude):
818 * calculator.el (calculator-registers, calculator-funcall):
819 * textmodes/artist.el (artist-spray-random-points):
820 * play/bubbles.el (bubbles--initialize-images): Use new names.
821
822 2010-09-19 Eric M. Ludlam <zappo@gnu.org>
823
824 Update to CEDET 1.0's version of EIEIO.
825
826 * emacs-lisp/eieio.el (eieio-specialized-key-to-generic-key):
827 New function.
828 (eieio-defmethod, eieio-generic-form, eieio-generic-call): Use it.
829 (eieio-default-eval-maybe): Eval val instead of unquoting only.
830 (class-precedence-list): If class is nil, return nil.
831 (eieio-generic-call): If class of first input arg is nil, don't
832 look up static methods, and do check for primary methods.
833 (initialize-instance): See if the default needs to be evaluated
834 during the constructor.
835 (eieio-perform-slot-validation-for-default): Don't do the check
836 for values that will eventually be evaluated.
837 (eieio-eval-default-p): New function.
838 (eieio-default-eval-maybe): Use it.
839
840 2010-07-03 Jan Moringen <jan.moringen@uni-bielefeld.de>
841
842 * emacs-lisp/eieio.el (eieio-defclass): Allow :c3
843 method-invocation-order.
844 (eieio-c3-candidate, eieio-c3-merge-lists): New functions.
845 (eieio-class-precedence-dfs): Compute class precedence list using
846 dfs algorithm.
847 (eieio-class-precedence-bfs): Compute class precedence list using
848 bfs algorithm.
849 (eieio-class-precedence-c3): Compute class precedence list using
850 c3 algorithm.
851 (class-precedence-list): New function.
852 (eieiomt-method-list, eieiomt-sym-optimize): Use it.
853 (inconsistent-class-hierarchy): New error symbol.
854 (call-next-method): Stow the replacement argument list for future
855 call-next-method invocations.
856
857 2010-09-15 Glenn Morris <rgm@gnu.org>
858
859 * calendar/appt.el (appt-check): If not displaying the diary,
860 use (diary 1) to only get the entries we need.
861 (appt-make-list): Sort diary-list-entries, if we cannot guarantee
862 that it is in day order. (Bug#7019)
863
864 * calendar/appt.el (appt-check): Rather than showing the diary,
865 just turn off invisible display, and only if needed.
866
867 * calendar/diary-lib.el (diary-list-entries): Doc fix. (Bug#7019)
868
869 2010-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
870
871 * emacs-lisp/byte-run.el (set-advertised-calling-convention):
872 Add `when' argument. Update callers.
873
874 * subr.el (unintern): Declare the obarray arg mandatory.
875
876 2010-09-14 Glenn Morris <rgm@gnu.org>
877
878 * calendar/diary-lib.el (diary-list-entries-hook, diary-sort-entries):
879 Doc fixes.
880
881 * calendar/diary-lib.el (diary-included-files): New variable.
882 (diary-list-entries): Maybe initialize diary-included-files.
883 (diary-include-other-diary-files): Append to diary-included-files.
884 * calendar/appt.el (appt-update-list): Also check the members of
885 diary-included-files. (Bug#6999)
886 (appt-check): Doc fix.
887
888 2010-09-12 David Reitter <david.reitter@gmail.com>
889
890 * simple.el (line-move-visual): Do not truncate goal column to
891 integer size. (Bug#7020)
892
893 2010-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
894
895 * repeat.el (repeat): Allow repeating when the last event is a click.
896 Suggested by Drew Adams (bug#6256).
897
898 2010-09-11 Sascha Wilde <wilde@sha-bang.de>
899
900 * vc/vc-hg.el (vc-hg-state,vc-hg-working-revision):
901 Replace setting HGRCPATH to "" by some less invasive --config options.
902
903 2010-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
904
905 * font-lock.el (font-lock-beginning-of-syntax-function):
906 Mark as obsolete.
907
908 2010-09-10 Glenn Morris <rgm@gnu.org>
909
910 * menu-bar.el (menu-bar-options-save): Fix handling of menu-bar
911 and tool-bar modes. (Bug#6211)
912 (menu-bar-mode): Move setting of standard-value after the
913 minor-mode definition, otherwise it seems to have no effect.
914
915 2010-09-08 Masatake YAMATO <yamato@redhat.com>
916
917 * progmodes/antlr-mode.el (antlr-font-lock-additional-keywords):
918 Fix typo. (Bug#6976)
919
920 2010-09-06 Vinicius Jose Latorre <viniciusjl@ig.com.br>
921
922 * whitespace.el: Allow cleaning up blanks without blank
923 visualization (Bug#6651). Adjust help window for
924 whitespace-toggle-options (Bug#6479). Allow to use fill-column
925 instead of whitespace-line-column (from EmacsWiki). New version 13.1.
926 (whitespace-style): Add new value 'face. Adjust docstring.
927 (whitespace-space, whitespace-hspace, whitespace-tab):
928 Adjust foreground property face.
929 (whitespace-line-column): Adjust docstring and type declaration.
930 (whitespace-style-value-list, whitespace-toggle-option-alist)
931 (whitespace-help-text): Adjust const initialization.
932 (whitespace-toggle-options, global-whitespace-toggle-options):
933 Adjust docstring.
934 (whitespace-display-window, whitespace-interactive-char)
935 (whitespace-style-face-p, whitespace-color-on): Adjust code.
936 (whitespace-help-scroll): New fun.
937
938 2010-09-05 Alexander Klimov <alserkli@inbox.ru> (tiny change)
939
940 * files.el (directory-abbrev-alist): Use \` as default regexp.
941
942 * emacs-lisp/rx.el (rx-any): Don't explode ranges that end in special
943 chars like - or ] (bug#6984).
944 (rx-any-condense-range): Explode 2-char ranges.
945
946 2010-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
947
948 * textmodes/bibtex.el:
949 * proced.el: Update to new email for Roland Winkler <winkler@gnu.org>.
950
951 2010-09-02 Glenn Morris <rgm@gnu.org>
952
953 * desktop.el (desktop-path): Bump :version after 2009-09-15 change.
954
955 2010-08-31 Kenichi Handa <handa@m17n.org>
956
957 * international/mule-cmds.el (standard-display-european-internal):
958 Setup standard-display-table for 8-bit characters by storing 8-bit
959 characters in the element vector.
960
961 * disp-table.el (standard-display-8bit):
962 Setup standard-display-table for 8-bit characters by storing 8-bit
963 characters in the element vector.
964 (standard-display-european): Likewise.
965
966 2010-08-26 Michael Albinus <michael.albinus@gmx.de>
967
968 Sync with Tramp 2.1.19.
969
970 * net/tramp-cmds.el (tramp-cleanup-all-connections)
971 (tramp-reporter-dump-variable, tramp-load-report-modules)
972 (tramp-append-tramp-buffers): Use `tramp-compat-funcall'.
973 (tramp-bug): Recommend setting of `tramp-verbose' to 9.
974
975 * net/tramp-compat.el (top): Do not autoload
976 `tramp-handle-file-remote-p'. Load tramp-util.el and tramp-vc.el
977 only when `start-file-process' is not bound.
978 (byte-compile-not-obsolete-vars): Define if not bound.
979 (tramp-compat-funcall): New defmacro.
980 (tramp-compat-line-beginning-position)
981 (tramp-compat-line-end-position)
982 (tramp-compat-temporary-file-directory)
983 (tramp-compat-make-temp-file, tramp-compat-file-attributes)
984 (tramp-compat-copy-file, tramp-compat-copy-directory)
985 (tramp-compat-delete-file, tramp-compat-delete-directory)
986 (tramp-compat-number-sequence, tramp-compat-process-running-p):
987 Use it.
988 (tramp-advice-file-expand-wildcards): Do not use
989 `tramp-handle-file-remote-p'.
990 (tramp-compat-make-temp-file): Simplify fallback implementation.
991 (tramp-compat-copy-file): Add PRESERVE-SELINUX-CONTEXT.
992 (tramp-compat-copy-tree): Remove function.
993 (tramp-compat-delete-file): New defun.
994 (tramp-compat-delete-directory): Provide implementation for older
995 Emacsen.
996 (tramp-compat-file-attributes): Handle only
997 `wrong-number-of-arguments' error.
998
999 * net/tramp-fish.el (tramp-fish-handle-copy-file):
1000 Add PRESERVE_SELINUX_CONTEXT.
1001 (tramp-fish-handle-delete-file): Add TRASH arg.
1002 (tramp-fish-handle-directory-files-and-attributes):
1003 Do not use `tramp-fish-handle-file-attributes.
1004 (tramp-fish-handle-file-local-copy)
1005 (tramp-fish-handle-insert-file-contents)
1006 (tramp-fish-maybe-open-connection): Use `with-progress-reporter'.
1007
1008 * net/tramp-gvfs.el (top): Require url-util.
1009 (tramp-gvfs-mount-point): Remove.
1010 (tramp-gvfs-file-name-handler-alist): Add `file-selinux-context'
1011 and `set-file-selinux-context'.
1012 (tramp-gvfs-stringify-dbus-message, tramp-gvfs-send-command)
1013 (tramp-gvfs-handle-file-selinux-context)
1014 (tramp-gvfs-handle-set-file-selinux-context): New defuns.
1015 (with-tramp-dbus-call-method): Format trace message.
1016 (tramp-gvfs-handle-copy-file): Handle PRESERVE-SELINUX-CONTEXT.
1017 (tramp-gvfs-handle-copy-file, tramp-gvfs-handle-rename-file):
1018 Implement backup call, when operation on local files fails.
1019 Use progress reporter. Flush properties of changed files.
1020 (tramp-gvfs-handle-delete-file): Add TRASH arg.
1021 Use `tramp-compat-delete-file'.
1022 (tramp-gvfs-handle-expand-file-name): Expand "~/".
1023 (tramp-gvfs-handle-make-directory): Make more traces.
1024 (tramp-gvfs-handle-write-region): Protect deleting tmpfile.
1025 (tramp-gvfs-url-file-name): Hexify file name in url.
1026 (tramp-gvfs-fuse-file-name): Take also prefix (like dav shares)
1027 into account for the resulting file name.
1028 (tramp-gvfs-handler-askquestion): Preserve current message, in
1029 order to let progress reporter continue afterwards. (Bug#6257)
1030 Return dummy mountpoint, when the answer is "no".
1031 See `tramp-gvfs-maybe-open-connection'.
1032 (tramp-gvfs-handler-mounted-unmounted)
1033 (tramp-gvfs-connection-mounted-p): Test also for new mountspec
1034 attribute "default_location". Set "prefix" property.
1035 Handle default-location.
1036 (tramp-gvfs-mount-spec): Return both prefix and mountspec.
1037 (tramp-gvfs-maybe-open-connection): Test, whether mountpoint
1038 exists. Raise an error, if not (due to a corresponding answer
1039 "no" in interactive questions, for example).
1040 Use `tramp-compat-funcall'.
1041
1042 * net/tramp-imap.el (top): Autoload `epg-make-context'.
1043 (tramp-imap-handle-copy-file): Add PRESERVE-SELINUX-CONTEXT.
1044 (tramp-imap-do-copy-or-rename-file)
1045 (tramp-imap-handle-insert-file-contents)
1046 (tramp-imap-handle-file-local-copy): Use `with-progress-reporter'.
1047 (tramp-imap-handle-delete-file): Add TRASH arg.
1048
1049 * net/tramp-smb.el (tramp-smb-handle-copy-file):
1050 Add PRESERVE-SELINUX-CONTEXT.
1051 (tramp-smb-handle-copy-file)
1052 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
1053 (tramp-smb-handle-write-region, tramp-smb-maybe-open-connection):
1054 Use `with-progress-reporter'.
1055 (tramp-smb-handle-delete-file): Add TRASH arg.
1056
1057 * net/tramp.el (tramp-methods): Move hostname to the end in all
1058 ssh `tramp-login-args'. Add `tramp-async-args' attribute where
1059 appropriate.
1060 (tramp-verbose): Describe verbose level 9.
1061 (tramp-completion-function-alist)
1062 (tramp-file-name-regexp, tramp-chunksize)
1063 (tramp-local-coding-commands, tramp-remote-coding-commands)
1064 (with-connection-property, tramp-completion-mode-p)
1065 (tramp-action-process-alive, tramp-action-out-of-band)
1066 (tramp-check-for-regexp, tramp-file-name-p, tramp-equal-remote)
1067 (tramp-exists-file-name-handler): Fix docstring.
1068 (tramp-remote-process-environment): Use `format' instead of
1069 `concat'. Protect version string by apostroph.
1070 (tramp-shell-prompt-pattern): Do not use a shy group in case of
1071 XEmacs.
1072 (tramp-file-name-regexp-unified)
1073 (tramp-completion-file-name-regexp-unified): On W32 systems, do
1074 not regard the volume letter as remote filename. (Bug#5447)
1075 (tramp-perl-file-attributes)
1076 (tramp-perl-directory-files-and-attributes): Don't pass "$3".
1077 (tramp-vc-registered-read-file-names): Read input as
1078 here-document, otherwise the command could exceed maximum length
1079 of command line.
1080 (tramp-file-name-handler-alist): Add `file-selinux-context' and
1081 `set-file-selinux-context'.
1082 (tramp-debug-message): Add `tramp-compat-funcall' to ignored
1083 backtrace functions.
1084 (tramp-error-with-buffer): Don't show the connection buffer when
1085 we are in completion mode.
1086 (tramp-progress-reporter-update, tramp-remote-selinux-p)
1087 (tramp-handle-file-selinux-context)
1088 (tramp-handle-set-file-selinux-context, tramp-process-sentinel)
1089 (tramp-connectable-p, tramp-open-shell, tramp-get-remote-trash):
1090 New defuns.
1091 (with-progress-reporter): New defmacro.
1092 (tramp-debug-outline-regexp): New defconst.
1093 (top, tramp-rfn-eshadow-setup-minibuffer)
1094 (tramp-rfn-eshadow-update-overlay, tramp-handle-set-file-times)
1095 (tramp-handle-dired-compress-file, tramp-handle-shell-command)
1096 (tramp-completion-mode-p, tramp-check-for-regexp)
1097 (tramp-open-connection-setup-interactive-shell)
1098 (tramp-compute-multi-hops, tramp-read-passwd, tramp-clear-passwd)
1099 (tramp-time-diff, tramp-coding-system-change-eol-conversion)
1100 (tramp-set-process-query-on-exit-flag, tramp-unload-tramp):
1101 Use `tramp-compat-funcall'.
1102 (tramp-handle-make-symbolic-link): Flush file properties.
1103 (tramp-handle-load, tramp-handle-file-local-copy)
1104 (tramp-handle-insert-file-contents, tramp-handle-write-region)
1105 (tramp-handle-vc-registered, tramp-maybe-send-script)
1106 (tramp-find-shell): Use `with-progress-reporter'.
1107 (tramp-do-file-attributes-with-stat): Add space in format string,
1108 in order to work around a bug in pdksh. Reported by Gilles Pion
1109 <gpion@lfdj.com>.
1110 (tramp-handle-verify-visited-file-modtime): Do not send a command
1111 when the connection is not established.
1112 (tramp-handle-set-file-times): Simplify the check for utc.
1113 (tramp-handle-directory-files-and-attributes)
1114 (tramp-get-remote-path): Use `copy-tree'.
1115 (tramp-completion-handle-file-name-all-completions): Ensure, that
1116 non remote files are still checked. Oops.
1117 (tramp-handle-copy-file, tramp-do-copy-or-rename-file):
1118 Handle PRESERVE-SELINUX-CONTEXT.
1119 (tramp-do-copy-or-rename-file): Add progress reporter.
1120 (tramp-do-copy-or-rename-file-directly): Do not use
1121 `tramp-handle-file-remote-p'.
1122 (tramp-do-copy-or-rename-file-out-of-band):
1123 Use `tramp-compat-delete-directory'.
1124 (tramp-do-copy-or-rename-file-out-of-band)
1125 (tramp-compute-multi-hops, tramp-maybe-open-connection):
1126 Use `format-spec-make'.
1127 (tramp-handle-delete-file): Add TRASH arg.
1128 (tramp-handle-dired-uncache): Flush directory cache, not only file
1129 cache.
1130 (tramp-handle-expand-file-name)
1131 (tramp-completion-handle-file-name-all-completions)
1132 (tramp-completion-handle-file-name-completion):
1133 Use `tramp-connectable-p'.
1134 (tramp-handle-start-file-process): Set connection property "vec".
1135 Use it, in order to invalidate file caches. Check only for
1136 `remote-tty' process property.
1137 Implement tty setting. (Bug#4604, Bug#6360)
1138 (tramp-file-name-for-operation): Add `call-process-region' and
1139 `set-file-selinux-context'.
1140 (tramp-find-foreign-file-name-handler)
1141 (tramp-advice-make-auto-save-file-name)
1142 (tramp-set-auto-save-file-modes): Remove superfluous check for
1143 `stringp'. This is done inside `tramp-tramp-file-p'.
1144 (tramp-file-name-handler): Trace 'quit. Catch the error for some
1145 operations when we are in completion mode. This gives the user
1146 the chance to correct the file name in the minibuffer.
1147 (tramp-completion-mode-p): Use `non-essential'.
1148 (tramp-handle-file-name-all-completions): Backward/ XEmacs
1149 compatibility: Use `completion-ignore-case' if
1150 `read-file-name-completion-ignore-case' does not exist.
1151 (tramp-get-debug-buffer): Use `tramp-debug-outline-regexp'.
1152 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
1153 `tramp-open-shell'.
1154 (tramp-action-password): Hide password prompt before next run.
1155 (tramp-process-actions): Widen connection buffer for the trace.
1156 (tramp-open-connection-setup-interactive-shell): Set `remote-tty'
1157 process property. Trace stty settings if `tramp-verbose' >= 9.
1158 Apply workaround for IRIX64 bug. Move argument of last
1159 `tramp-send-command' where it belongs to.
1160 (tramp-maybe-open-connection): Use `async-args' and `gw-args' in
1161 front of `login-args'.
1162 (tramp-get-ls-command, tramp-get-ls-command-with-dired): Run tests
1163 on "/dev/null" instead of "/".
1164 (tramp-get-ls-command-with-dired): Make test for "--dired"
1165 stronger.
1166 (tramp-set-auto-save-file-modes): Adapt version check.
1167 (tramp-set-process-query-on-exit-flag): Fix wrong parentheses.
1168 (tramp-handle-process-file): Call the program in a subshell, in
1169 order to preserve working directory.
1170 (tramp-handle-shell-command): Don't use hard-wired "/bin/sh" but
1171 `tramp-remote-sh' from `tramp-methods'.
1172 (tramp-get-ls-command): Make test for "--color=never" stronger.
1173 (tramp-check-for-regexp): Use (forward-line 1).
1174
1175 * net/trampver.el: Update release number.
1176
1177 2010-08-26 Magnus Henoch <magnus.henoch@gmail.com>
1178
1179 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Do not pass
1180 empty argument to gvfs-copy.
1181
1182 2010-08-26 Chong Yidong <cyd@stupidchicken.com>
1183
1184 * net/tramp-compat.el (tramp-compat-delete-file): Rewrite to
1185 handle new TRASH arg of `delete-file'.
1186
1187 2010-08-26 Christian Lynbech <christian.lynbech@tieto.com> (tiny change)
1188
1189 * net/tramp.el (tramp-handle-insert-directory): Don't use
1190 `forward-word', its default syntax could be changed.
1191
1192 2010-08-26 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
1193 Michael Albinus <michael.albinus@gmx.de>
1194
1195 Implement compression for inline methods.
1196
1197 * net/tramp.el (tramp-inline-compress-start-size): New defcustom.
1198 (tramp-copy-size-limit): Allow also nil.
1199 (tramp-inline-compress-commands): New defconst.
1200 (tramp-find-inline-compress, tramp-get-inline-compress)
1201 (tramp-get-inline-coding): New defuns.
1202 (tramp-get-remote-coding, tramp-get-local-coding): Remove,
1203 replaced by `tramp-get-inline-coding'.
1204 (tramp-handle-file-local-copy, tramp-handle-write-region)
1205 (tramp-method-out-of-band-p): Use `tramp-get-inline-coding'.
1206
1207 2010-08-26 Noah Lavine <noah549@gmail.com> (tiny change)
1208
1209 Detect ssh 'ControlMaster' argument automatically in some cases.
1210
1211 * net/tramp.el (tramp-detect-ssh-controlmaster): New defun.
1212 (tramp-default-method): Use it.
1213
1214 2010-08-26 Karel Klíč <kklic@redhat.com>
1215
1216 * net/tramp.el (tramp-file-name-for-operation):
1217 Add file-selinux-context.
1218
1219 2010-08-26 Łukasz Stelmach <lukasz.stelmach@iem.pw.edu.pl> (tiny change)
1220
1221 * play/cookie1.el (read-cookie): Fix off-by-one error (bug#6921).
1222
1223 2010-08-26 Chong Yidong <cyd@stupidchicken.com>
1224
1225 * simple.el (beginning-of-buffer, end-of-buffer): Doc fix
1226 (Bug#6907).
1227
1228 2010-08-23 Chris Foote <chris@foote.com.au> (tiny change)
1229
1230 * progmodes/python.el (python-block-pairs): Allow use of "finally"
1231 with "else" (Bug#3991).
1232
1233 2010-08-22 Leo <sdl.web@gmail.com>
1234
1235 * net/rcirc.el (rcirc-add-or-remove): Accept a list of elements.
1236 (ignore, bright, dim, keyword): Split list of nicknames before
1237 passing to rcirc-add-or-remove (Bug#6894).
1238
1239 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
1240
1241 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix (Bug#6880).
1242
1243 2010-08-21 Vinicius Jose Latorre <viniciusjl@ig.com.br>
1244
1245 * whitespace.el: Fix slow cursor movement (Bug#6172). Reported by
1246 Christoph Groth <cwg@falma.de> and Liu Xin <x_liu@neusoft.com>.
1247 New version 13.0.
1248 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
1249 Adjust initialization.
1250 (whitespace-bob-marker, whitespace-eob-marker)
1251 (whitespace-buffer-changed): New vars.
1252 (whitespace-cleanup, whitespace-color-on, whitespace-color-off)
1253 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp)
1254 (whitespace-post-command-hook, whitespace-display-char-on):
1255 Adjust code.
1256 (whitespace-looking-back, whitespace-buffer-changed): New funs.
1257 (whitespace-space-regexp, whitespace-tab-regexp): Eliminate funs.
1258
1259 2010-08-21 Leo <sdl.web@gmail.com>
1260
1261 Fix buffer-list rename&refresh after killing a buffer in ido.
1262 * lisp/ido.el: Revert Óscar's.
1263 (ido-kill-buffer-at-head): Exit the minibuffer with ido-exit=refresh.
1264 Remember the buffers at head, rather than their name.
1265 * lisp/iswitchb.el (iswitchb-kill-buffer): Re-make the list.
1266
1267 2010-08-21 Kirk Kelsey <kirk.kelsey@0x4b.net> (tiny change)
1268 Stefan Monnier <monnier@iro.umontreal.ca>
1269
1270 * progmodes/make-mode.el (makefile-fill-paragraph): Account for the
1271 extra backslash added to each line (bug#6890).
1272
1273 2010-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
1274
1275 * subr.el (read-key): Don't echo keystrokes (bug#6883).
1276
1277 2010-08-21 Glenn Morris <rgm@gnu.org>
1278
1279 * menu-bar.el (menu-bar-games-menu): Add landmark.
1280
1281 2010-08-20 Glenn Morris <rgm@gnu.org>
1282
1283 * align.el (align-regexp): Make group and spacing arguments
1284 use the interactive defaults when non-interactive. (Bug#6698)
1285
1286 * mail/rmail.el (rmail-forward): Replace mail-text-start with its
1287 expansion, so as not to need sendmail.
1288 (mail-text-start): Remove declaration.
1289 (rmail-retry-failure): Require sendmail.
1290
1291 2010-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
1292
1293 * subr.el (read-key): Don't hide the menu-bar entries (bug#6881).
1294
1295 2010-08-18 Michael Albinus <michael.albinus@gmx.de>
1296
1297 * progmodes/flymake.el (flymake-start-syntax-check-process):
1298 Use `start-file-process' in order to let it run also on remote hosts.
1299
1300 2010-08-18 Kenichi Handa <handa@m17n.org>
1301
1302 * files.el: Add `word-wrap' as safe local variable.
1303
1304 2010-08-18 Glenn Morris <rgm@gnu.org>
1305
1306 * woman.el (woman-translate): Case matters. (Bug#6849)
1307
1308 2010-08-14 Chong Yidong <cyd@stupidchicken.com>
1309
1310 * simple.el (kill-region): Doc fix (Bug#6787).
1311
1312 2010-08-14 Glenn Morris <rgm@gnu.org>
1313
1314 * calendar/diary-lib.el (diary-header-line-format):
1315 Fit it to the window, not the frame.
1316
1317 2010-08-11 Andreas Schwab <schwab@linux-m68k.org>
1318
1319 * subr.el (ignore-errors): Add debug declaration.
1320
1321 2010-08-09 Geoff Gole <geoffgole@gmail.com> (tiny change)
1322
1323 * whitespace.el (whitespace-color-off): Remove post-command-hook
1324 locally.
1325
1326 2010-08-08 Johan Bockgård <bojohan@gnu.org>
1327
1328 * replace.el (replace-highlight): Bind isearch-forward and
1329 isearch-error, ensuring that highlighting is updated if the user
1330 switches the search direction (Bug#6808).
1331
1332 * isearch.el (isearch-lazy-highlight-forward): New var.
1333 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
1334 (isearch-lazy-highlight-update): Use it.
1335
1336 2010-08-06 Kenichi Handa <handa@m17n.org>
1337
1338 * international/mule.el (define-charset): Store NAME as :base property.
1339 (ctext-non-standard-encodings-table): Pay attention to charset aliases.
1340 (ctext-pre-write-conversion): Sort ctext-standard-encodings by the
1341 current priority. Force using the designation of the specific
1342 charset by adding `charset' text property. Improve the whole
1343 algorithm.
1344
1345 2010-08-05 Juanma Barranquero <lekktu@gmail.com>
1346
1347 * emulation/pc-select.el (pc-selection-mode-hook)
1348 (copy-region-as-kill-nomark, beginning-of-buffer-mark)
1349 (pc-selection-mode): Fix typos in docstrings.
1350
1351 2010-08-04 Kenichi Handa <handa@m17n.org>
1352
1353 * language/cyrillic.el: Don't add "microsoft-cp1251" to
1354 ctext-non-standard-encodings-alist here.
1355
1356 * international/mule.el (ctext-non-standard-encodings-alist):
1357 Add "koi8-r" and "microsoft-cp1251".
1358 (ctext-standard-encodings): New variable.
1359 (ctext-non-standard-encodings-table): List only elements for
1360 non-standard encodings.
1361 (ctext-pre-write-conversion): Adjust for the above change.
1362 Check ctext-standard-encodings.
1363
1364 * international/mule-conf.el (compound-text): Doc fix.
1365 (ctext-no-compositions): Doc fix.
1366 (compound-text-with-extensions): Doc fix.
1367
1368 2010-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
1369
1370 * simple.el (exchange-dot-and-mark): Mark obsolete, finally.
1371
1372 2010-08-03 Juanma Barranquero <lekktu@gmail.com>
1373
1374 * progmodes/which-func.el (which-func-format): Split help-echo text
1375 into lines, like other mode-line tooltips.
1376
1377 * server.el (server-start): When using TCP sockets, force IPv4
1378 and use a literal 127.0.0.1 for localhost. (Related to bug#6781.)
1379
1380 2010-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
1381
1382 * bindings.el (complete-symbol): Run completion-at-point as a fallback.
1383
1384 2010-08-02 Juanma Barranquero <lekktu@gmail.com>
1385
1386 * term.el (term-delimiter-argument-list): Reflow docstring.
1387 (term-read-input-ring, term-write-input-ring, term-send-input)
1388 (term-bol, term-erase-in-display, serial-supported-or-barf):
1389 Fix typos in docstrings.
1390
1391 2010-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
1392
1393 * bindings.el (function-key-map): Add a S-tab => backtab fallback.
1394
1395 2010-08-01 Juanma Barranquero <lekktu@gmail.com>
1396
1397 * dabbrev.el (dabbrev-completion): Fix typo in docstring.
1398
1399 2010-08-01 MON KEY <monkey@sandpframing.com> (tiny change)
1400
1401 * emacs-lisp/syntax.el (syntax-ppss-toplevel-pos):
1402 Fix typo in docstring (bug#6747).
1403
1404 2010-07-30 Leo <sdl.web@gmail.com>
1405
1406 * eshell/esh-io.el (eshell-get-target): Better detection of
1407 read-only file (Bug#6762).
1408
1409 2010-07-30 Juanma Barranquero <lekktu@gmail.com>
1410
1411 * align.el (align-default-spacing): Doc fix.
1412 (align-region-heuristic, align-regexp): Fix typos in docstrings.
1413
1414 2010-07-23 Juanma Barranquero <lekktu@gmail.com>
1415
1416 * help-fns.el (find-lisp-object-file-name): Doc fix (bug#6494).
1417
1418 2010-07-19 Juanma Barranquero <lekktu@gmail.com>
1419
1420 * time.el (display-time-day-and-date): Remove spurious * in docstring.
1421 (display-time-world-buffer-name, display-time-world-mode-map):
1422 Fix typos in docstrings.
1423
1424 2010-07-17 Shyam Karanatt <shyam@swathanthran.in> (tiny change)
1425
1426 * image-mode.el (image-display-size): New function.
1427 (image-forward-hscroll, image-next-line, image-eol, image-eob)
1428 (image-mode-fit-frame): Use it (Bug#6639).
1429
1430 2010-07-17 Chong Yidong <cyd@stupidchicken.com>
1431
1432 * dired.el (dired-buffers-for-dir): Handle list values of
1433 dired-directory (Bug#6636).
1434
1435 2010-07-16 Reiner Steib <Reiner.Steib@gmx.de>
1436
1437 * vc.el (vc-coding-system-inherit-eol): New defvar.
1438 (vc-coding-system-for-diff): Use it to decide whether to inherit
1439 from the file the EOL format for reading the diffs of that file.
1440 (Bug#4451)
1441
1442 2010-07-16 Eli Zaretskii <eliz@gnu.org>
1443
1444 * mail/rmailmm.el (rmail-mime-save): Make the temp buffer
1445 unibyte, so compressed attachments are not compressed again.
1446
1447 2010-07-14 Jan Djärv <jan.h.d@swipnet.se>
1448
1449 * xt-mouse.el (xterm-mouse-event-read): Fix for characters > 127
1450 now that unicode is used (Bug#6594).
1451
1452 2010-07-14 Chong Yidong <cyd@stupidchicken.com>
1453
1454 * simple.el (push-mark-command): Set the selection if
1455 select-active-regions is non-nil.
1456
1457 2010-07-10 Glenn Morris <rgm@gnu.org>
1458
1459 * calendar/calendar.el (calendar-week-end-day): New function.
1460 * calendar/cal-tex.el (cal-tex-cursor-month): Remove unused vars.
1461 Respect calendar-week-start-day. (Bug#6606)
1462 (cal-tex-insert-day-names, cal-tex-insert-blank-days)
1463 (cal-tex-insert-blank-days-at-end): Respect calendar-week-start-day.
1464 (cal-tex-first-blank-p, cal-tex-last-blank-p): Simplify, and
1465 respect calendar-week-start-day.
1466
1467 2010-07-10 Chong Yidong <cyd@stupidchicken.com>
1468
1469 * simple.el (use-region-p): Doc fix (Bug#6607).
1470
1471 2010-07-07 Christoph Scholtes <cschol2112@gmail.com>
1472
1473 * progmodes/python.el (python-font-lock-keywords): Add Python 2.7
1474 builtins (BufferError, BytesWarning, WindowsError; callables
1475 bin, bytearray, bytes, format, memoryview, next, print; __package__).
1476
1477 2010-07-07 Glenn Morris <rgm@gnu.org>
1478
1479 * play/zone.el (zone-fall-through-ws): Fix next-line ->
1480 forward-line fallout.
1481
1482 2010-07-06 Chong Yidong <cyd@stupidchicken.com>
1483
1484 * mouse.el (mouse-appearance-menu): Add docstring.
1485
1486 * help.el (describe-key): Print up-event using key-description.
1487
1488 2010-07-03 Michael Albinus <michael.albinus@gmx.de>
1489
1490 * net/zeroconf.el (zeroconf-resolve-service)
1491 (zeroconf-service-resolver-handler): Use `dbus-byte-array-to-string'.
1492 (zeroconf-publish-service): Use `dbus-string-to-byte-array'.
1493
1494 2010-07-03 Jan Moringen <jan.moringen@uni-bielefeld.de>
1495
1496 * net/zeroconf.el (zeroconf-service-remove-hook): New defun.
1497
1498 2010-06-30 Dan Nicolaescu <dann@ics.uci.edu>
1499
1500 Avoid displaying files with a nil state in vc-dir.
1501 * vc-dir.el (vc-dir-update): Obey the noinsert argument in all
1502 cases that cause insertion.
1503 (vc-dir-resynch-file): Tell vc-dir-update to avoid inserting files
1504 with a nil state.
1505
1506 2010-06-30 Chong Yidong <cyd@stupidchicken.com>
1507
1508 * xml.el (xml-parse-region): Avoid infloop (Bug#5281).
1509
1510 2010-06-29 Leo <sdl.web@gmail.com>
1511
1512 * emacs-lisp/rx.el (rx): Doc fix. (Bug#6537)
1513
1514 2010-06-27 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
1515
1516 * generic-x.el (bat-generic-mode): Fix regexp for command line
1517 switches (Bug#5719).
1518
1519 2010-06-27 Masatake YAMATO <yamato@redhat.com>
1520
1521 * htmlfontify.el (hfy-face-attr-for-class): Use append instead
1522 of nconc to avoid pure storage error (Bug#6239).
1523
1524 2010-06-27 Christoph <cschol2112@googlemail.com> (tiny change)
1525
1526 * bookmark.el (bookmark-bmenu-2-window, bookmark-bmenu-other-window)
1527 (bookmark-bmenu-other-window-with-mouse): Remove unnecessary
1528 bindings of bookmark-automatically-show-annotations (Bug#6515).
1529
1530 2010-06-25 Eli Zaretskii <eliz@gnu.org>
1531
1532 * arc-mode.el (archive-zip-extract): Don't quote the file name on
1533 MS-Windows and MS-DOS. (Bug#6467, Bug#6144)
1534
1535 2010-06-24 Štěpán Němec <stepnem@gmail.com> (tiny change)
1536
1537 * comint.el (make-comint, make-comint-in-buffer): Mention return
1538 value in the docstrings. (Bug#6498)
1539
1540 2010-06-24 Yoni Rabkin <yoni@rabkins.net>
1541
1542 * bs.el (bs-mode-font-lock-keywords): Remove "by" from Dired pattern,
1543 since it is not present when using some non-default switches.
1544
1545 2010-06-23 Karl Fogel <kfogel@red-bean.com>
1546
1547 * simple.el (compose-mail): Fix doc string to refer to
1548 `compose-mail-user-agent-warnings', instead of to the
1549 nonexistent `compose-mail-check-user-agent'.
1550
1551 2010-06-22 Dan Nicolaescu <dann@ics.uci.edu>
1552
1553 Fix vc-annotate for renamed files when using Git.
1554 * vc-git.el (vc-git-find-revision): Deal with empty results from
1555 ls-files. Doe not pass the object as a file name to cat-file, it
1556 is not a file name.
1557 (vc-git-annotate-command): Pass the file name using -- to avoid
1558 ambiguity with the revision.
1559 (vc-git-previous-revision): Pass a relative file name.
1560
1561 2010-06-22 Glenn Morris <rgm@gnu.org>
1562
1563 * progmodes/js.el (js-mode-map): Use standard capitalization and
1564 ellipses for menu entries.
1565
1566 * wid-edit.el (widget-complete): Doc fix.
1567
1568 2010-06-22 Jürgen Hötzel <juergen@hoetzel.info> (tiny change)
1569
1570 * wid-edit.el (widget-complete): Fix typo in 2009-12-02 change.
1571
1572 2010-06-22 Dan Nicolaescu <dann@ics.uci.edu>
1573
1574 Fix annotating other revisions for renamed files in vc-annotate.
1575 * vc-annotate.el (vc-annotate): Add an optional argument for the
1576 VC backend. Use it when non-nil.
1577 (vc-annotate-warp-revision): Pass the VC backend to vc-annotate
1578 (Bug#6487).
1579
1580 Fix vc-annotate-show-changeset-diff-revision-at-line for git.
1581 * vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
1582 Do not pass the file name to the 'previous-revision call when we
1583 don't want a file diff. (Bug#6489)
1584
1585 2010-06-21 Dan Nicolaescu <dann@ics.uci.edu>
1586
1587 Fix finding revisions for renamed files in vc-annotate.
1588 * vc.el (vc-find-revision): Add an optional argument for
1589 the VC backend. Use it when non-nil.
1590 * vc-annotate.el (vc-annotate-find-revision-at-line): Pass the VC
1591 backend to vc-find-revision. (Bug#6487)
1592
1593 2010-06-21 Dan Nicolaescu <dann@ics.uci.edu>
1594
1595 Fix reading file names in Git annotate buffers.
1596 * vc-git.el (vc-git-annotate-extract-revision-at-line):
1597 Remove trailing whitespace. Suggested by Eric Hanchrow. (Bug#6481)
1598
1599 2010-06-20 Alan Mackenzie <acm@muc.de>
1600
1601 * progmodes/cc-mode.el (c-before-hack-hook): When the mode is set
1602 in file local variables, set it first.
1603
1604 2010-06-19 Glenn Morris <rgm@gnu.org>
1605
1606 * descr-text.el (describe-char-unicode-data): Insert separating
1607 space when needed. (Bug#6422)
1608
1609 * progmodes/idlwave.el (idlwave-action-and-binding):
1610 Fix typo in 2009-12-03 change. (Bug#6450)
1611
1612 2010-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
1613
1614 * subr.el (read-quoted-char): Fix up last change (bug#6290).
1615
1616 2010-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
1617
1618 * font-lock.el (font-lock-major-mode): Rename from
1619 font-lock-mode-major-mode to distinguish it from
1620 global-font-lock-mode's own font-lock-mode-major-mode (bug#6135).
1621 (font-lock-set-defaults):
1622 * font-core.el (font-lock-default-function): Adjust users.
1623 (font-lock-mode): Don't set it at all.
1624
1625 2010-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
1626
1627 * vc-annotate.el (vc-annotate): Use vc-read-revision.
1628
1629 2010-06-15 Glenn Morris <rgm@gnu.org>
1630
1631 * calendar/appt.el (appt-time-msg-list): Doc fix.
1632 (appt-check): Let-bind appt-warn-time.
1633 (appt-add): Make the 3rd argument optional.
1634 Simplify argument names. Doc fix. Check for integer WARNTIME.
1635 Only add WARNTIME to the output list if non-nil.
1636
1637 2010-06-15 Ivan Kanis <apple@kanis.eu>
1638
1639 * calendar/appt.el (appt-check): Let the 3rd element of
1640 appt-time-msg-list specify the warning time.
1641 (appt-add): Add new argument with the warning time. (Bug#5176)
1642
1643 2010-06-12 Bob Rogers <rogers-emacs@rgrjr.dyndns.org> (tiny change)
1644
1645 * vc-svn.el (vc-svn-after-dir-status): Fix regexp for Subversions
1646 older than version 1.6. (Bug#6361)
1647
1648 2010-06-12 Helmut Eller <eller.helmut@gmail.com>
1649
1650 * emacs-lisp/cl-macs.el (destructuring-bind): Bind `bind-enquote',
1651 used by cl-do-arglist. (Bug#6408)
1652
1653 2010-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
1654
1655 * emacs-lisp/advice.el (ad-compile-function):
1656 Define warning-suppress-types before we let-bind it (bug#6275).
1657
1658 * vc-dispatcher.el: Rename mode-line-hook to vc-mode-line-hook;
1659 declare it, make it buffer-local and permanent-local (bug#6324).
1660 (vc-resynch-window): Adjust name.
1661 * vc-hooks.el (vc-find-file-hook): Adjust name.
1662
1663 2010-06-07 Jonathan Rockway <jon@jrock.us>
1664
1665 * net/rcirc.el: Add support for password authentication.
1666 (rcirc-server-alist): Add :password keyword.
1667 (rcirc): Ask for a password, or get it from the server's alist.
1668 (rcirc-connect): Add password argument. Pass it to server.
1669
1670 2010-06-05 Juanma Barranquero <lekktu@gmail.com>
1671
1672 * net/dbus.el (dbus-register-method): Declare function.
1673 (dbus-handle-event, dbus-property-handler): Fix typos in docstrings.
1674 (dbus-introspect): Doc fix.
1675 (dbus-event-bus-name, dbus-introspect-get-interface)
1676 (dbus-introspect-get-argument): Reflow docstrings.
1677
1678 2010-06-04 Chong Yidong <cyd@stupidchicken.com>
1679
1680 * term/common-win.el (x-colors): Add "dark green" and "dark
1681 turquoise" (Bug#6332).
1682
1683 2010-06-03 Glenn Morris <rgm@gnu.org>
1684
1685 * desktop.el (desktop-clear-preserve-buffers):
1686 Add "*Warnings*" buffer. (Bug#6336)
1687
1688 2010-06-02 Dan Nicolaescu <dann@ics.uci.edu>
1689
1690 * vc-dir.el (vc-dir-update): Remove entries with a nil state (bug#5539).
1691
1692 2010-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
1693
1694 * vc-bzr.el (vc-bzr-revision-completion-table): Apply
1695 `file-directory-p' to the filename part rather than to the whole text.
1696
1697 2010-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
1698
1699 * man.el (Man-completion-table): Let the user type "-k " (bug#6319).
1700
1701 2010-05-31 Drew Adams <drew.adams@oracle.com>
1702
1703 * files.el (directory-files-no-dot-files-regexp): Doc fix (bug#6298).
1704
1705 2010-05-31 Juanma Barranquero <lekktu@gmail.com>
1706
1707 * subr.el (momentary-string-display): Just use read-event to read
1708 the exit event (Bug#6238).
1709
1710 2010-05-29 Chong Yidong <cyd@stupidchicken.com>
1711
1712 * ansi-color.el: Delete unused escape sequences (Bug#6085).
1713 (ansi-color-drop-regexp): New constant.
1714 (ansi-color-apply, ansi-color-filter-region)
1715 (ansi-color-apply-on-region): Delete unrecognized control sequences.
1716 (ansi-color-apply): Build string list before calling concat.
1717
1718 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
1719
1720 * progmodes/verilog-mode.el (verilog-type-font-keywords):
1721 Use font-lock-constant-face, not obsolete font-lock-reference-face.
1722
1723 2010-05-27 Masatake YAMATO <yamato@redhat.com>
1724
1725 * htmlfontify.el (hfy-face-resolve-face): New function.
1726 (hfy-face-to-style): Use it (Bug#6279).
1727
1728 2010-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
1729
1730 * epa.el (epa--select-keys): Don't explicitly delete the window since
1731 that can fail (e.g. sole window in frame). Use dedication instead.
1732
1733 2010-05-19 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
1734
1735 * textmodes/fill.el (fill-region): Don't fill past the end (bug#6201).
1736
1737 2010-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
1738
1739 * subr.el (read-quoted-char): Resolve modifiers after key
1740 remapping (bug#6212).
1741
1742 2010-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
1743
1744 * tmm.el (tmm-prompt): Don't try to precompute bindings.
1745 (tmm-get-keymap): Compute shortcuts (bug#6171).
1746
1747 2010-05-10 Glenn Morris <rgm@gnu.org>
1748
1749 * desktop.el (desktop-save-buffer-p): Don't mistakenly include
1750 all dired buffers, even tramp ones. (Bug#5755) [Backport from trunk]
1751
1752 2010-05-07 Chong Yidong <cyd@stupidchicken.com>
1753
1754 * Version 23.2 released.
1755
1756 2010-05-03 Chong Yidong <cyd@stupidchicken.com>
1757
1758 * international/mule.el (auto-coding-alist): Only purecopy
1759 car of each item, not the whole list (Bug#6083).
1760
1761 2010-05-02 Chong Yidong <cyd@stupidchicken.com>
1762
1763 * progmodes/js.el (js-mode): Make paragraph variables local before
1764 calling c-setup-paragraph-variables (Bug#6071).
1765
1766 2010-05-01 Eli Zaretskii <eliz@gnu.org>
1767
1768 * composite.el (compose-region, reference-point-alist): Fix typos
1769 in the doc strings.
1770
1771 2010-04-28 Alexander Klimov <alserkli@inbox.ru> (tiny change)
1772
1773 * calc/calc-graph.el (calc-graph-plot): Use the proper form for
1774 gnuplot's "set" command.
1775
1776 2010-04-26 Juanma Barranquero <lekktu@gmail.com>
1777
1778 * abbrev.el (last-abbrev-text): Doc fix.
1779 (abbrev-prefix-mark): Don't escape parenthesis.
1780
1781 2010-04-24 Andreas Schwab <schwab@linux-m68k.org>
1782
1783 * composite.el (find-composition): Doc fix.
1784
1785 2010-04-24 Juanma Barranquero <lekktu@gmail.com>
1786
1787 * progmodes/sql.el (sql-electric-stuff): Fix typo in tag.
1788 (sql-oracle-program, sql-sqlite-options)
1789 (sql-query-placeholders-and-send): Doc fixes.
1790 (sql-set-product, sql-interactive-mode): Reflow docstrings.
1791 (sql-imenu-generic-expression, sql-buffer)
1792 (sql-mode-ansi-font-lock-keywords, sql-mode-oracle-font-lock-keywords)
1793 (sql-mode-postgres-font-lock-keywords, sql-mode-ms-font-lock-keywords)
1794 (sql-mode-sybase-font-lock-keywords)
1795 (sql-mode-informix-font-lock-keywords)
1796 (sql-mode-interbase-font-lock-keywords)
1797 (sql-mode-ingres-font-lock-keywords, sql-mode-solid-font-lock-keywords)
1798 (sql-mode-mysql-font-lock-keywords, sql-mode-sqlite-font-lock-keywords)
1799 (sql-mode-db2-font-lock-keywords, sql-mode-font-lock-keywords)
1800 (sql-product-feature, sql-highlight-product)
1801 (comint-line-beginning-position, sql-rename-buffer)
1802 (sql-toggle-pop-to-buffer-after-send-region)
1803 (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql, sql-solid)
1804 (sql-ingres, sql-ms, sql-postgres, sql-interbase, sql-db2, sql-linter):
1805 Fix typos in docstrings.
1806
1807 2010-04-23 Juri Linkov <juri@jurta.org>
1808
1809 * info.el (Info-fontify-node): Put Info-breadcrumbs to the `display'
1810 property instead of `invisible' and `after-string' (bug#5998).
1811
1812 2010-04-23 Juri Linkov <juri@jurta.org>
1813
1814 * image-mode.el (image-mode-as-text): Fix typo in docstring.
1815
1816 2010-04-23 Juanma Barranquero <lekktu@gmail.com>
1817
1818 * filecache.el (file-cache-add-directory-list)
1819 (file-cache-add-directory-recursively): Fix typos in docstrings.
1820
1821 2010-04-22 Kenichi Handa <handa@m17n.org>
1822
1823 * language/indian.el (gurmukhi-composable-pattern): Fix typo.
1824 (gujarati-composable-pattern): Fix typo.
1825
1826 2010-04-20 Kenichi Handa <handa@m17n.org>
1827
1828 * language/indian.el (oriya-composable-pattern)
1829 (tamil-composable-pattern, malayalam-composable-pattern):
1830 Add two-part vowels to "v" (vowel sign).
1831
1832 2010-04-20 Chong Yidong <cyd@stupidchicken.com>
1833
1834 * files.el (copy-directory): Handle symlinks (Bug#5982).
1835
1836 * progmodes/compile.el (compilation-next-error-function):
1837 Revert 2009-10-12 change (Bug#5983).
1838
1839 2010-04-20 Dan Nicolaescu <dann@ics.uci.edu>
1840
1841 * vc-hg.el (vc-hg-state): Use HGRCPATH, not HGRC.
1842 (vc-hg-working-revision): Likewise. Use hg parents, not hg parent
1843 (Bug#5846).
1844
1845 2010-04-20 Glenn Morris <rgm@gnu.org>
1846
1847 * emacs-lisp/lisp.el (lisp-completion-at-point): Give it a doc string.
1848
1849 * minibuffer.el (completion-at-point): Doc fix.
1850
1851 2010-04-17 Dan Nicolaescu <dann@ics.uci.edu>
1852
1853 Fix the version number for added files.
1854 * vc-hg.el (vc-hg-working-revision): Check if the file is
1855 registered after hg parent fails (Bug#5961).
1856
1857 2010-04-17 Glenn Morris <rgm@gnu.org>
1858
1859 * htmlfontify.el (htmlfontify-buffer)
1860 (htmlfontify-copy-and-link-dir): Autoload entry points.
1861
1862 2010-04-17 Magnus Henoch <magnus.henoch@gmail.com>
1863
1864 * vc-hg.el (vc-hg-annotate-extract-revision-at-line): Expand file
1865 name relative to the project root (Bug#5960).
1866
1867 2010-04-16 Glenn Morris <rgm@gnu.org>
1868
1869 * vc-git.el (vc-git-print-log): Doc fix.
1870
1871 2010-04-14 Óscar Fuentes <ofv@wanadoo.es>
1872
1873 * ido.el (ido-file-internal): Fix 2009-12-02 change.
1874
1875 2010-04-14 Christoph <cschol2112@googlemail.com> (tiny change)
1876
1877 * progmodes/grep.el (grep-compute-defaults): Fix handling of host
1878 default settings (Bug#5928).
1879
1880 2010-04-10 Glenn Morris <rgm@gnu.org>
1881
1882 * progmodes/fortran.el (fortran-match-and-skip-declaration):
1883 New function.
1884 (fortran-font-lock-keywords-3): Use it. (Bug#1385)
1885
1886 2010-04-07 Kenichi Handa <handa@m17n.org>
1887
1888 * language/indian.el (malayalam-composable-pattern): Fix previous
1889 change (add U+0D4D "SIGN VIRAMA").
1890 (oriya-composable-pattern): Add U+0B30 and fix typo in the regexp.
1891 (tamil-composable-pattern): Fix typo in the regexp.
1892 (telugu-composable-pattern): Fix U+0C4D and typo in the regexp.
1893 (kannada-composable-pattern): Fix U+0CB0 and typo in the regexp.
1894 (malayalam-composable-pattern): Fix U+0D4D and typo in the regexp.
1895
1896 2010-04-06 Chong Yidong <cyd@stupidchicken.com>
1897
1898 * textmodes/tex-mode.el (latex-mode): Revert 2008-03-03 change to
1899 paragraph-separate (Bug#5821).
1900
1901 2010-04-05 Juri Linkov <juri@jurta.org>
1902
1903 Put breadcrumbs on overlay instead of inserting to buffer (bug#5809).
1904
1905 * info.el (Info-find-node-2): Comment out code that skips
1906 breadcrumbs line.
1907 (Info-mouse-follow-link): New command.
1908 (Info-link-keymap): New keymap.
1909 (Info-breadcrumbs): Rename from `Info-insert-breadcrumbs'.
1910 Return a string with links instead of inserting breadcrumbs
1911 to the Info buffer.
1912 (Info-fontify-node): Comment out code that inserts breadcrumbs.
1913 Instead of putting the `invisible' text property over the Info
1914 header, make an overlay over the Info header with the `invisible'
1915 property and `after-string' set to the string returned by
1916 `Info-breadcrumbs'.
1917
1918 2010-04-03 Chong Yidong <cyd@stupidchicken.com>
1919
1920 * help.el (help-window-setup-finish): Doc fix (Bug#5830).
1921 Reported by monkey@sandpframing.com.
1922
1923 2010-03-30 Tomas Abrahamsson <tab@lysator.liu.se>
1924
1925 * textmodes/artist.el (artist-mode): Fix typo in docstring.
1926 Reported by Alex Schröder <kensanata@gmail.com>. (Bug#5807)
1927
1928 2010-03-30 Kenichi Handa <handa@m17n.org>
1929
1930 * language/sinhala.el (composition-function-table): Fix regexp for
1931 the new Unicode specification.
1932
1933 * language/indian.el (devanagari-composable-pattern)
1934 (tamil-composable-pattern, kannada-composable-pattern)
1935 (malayalam-composable-pattern): Adjust for the new Unicode
1936 specification.
1937 (bengali-composable-pattern, gurmukhi-composable-pattern)
1938 (gujarati-composable-pattern, oriya-composable-pattern)
1939 (telugu-composable-pattern): New variables to cope with the new
1940 Unicode specification. Use them in composition-function-table.
1941
1942 2010-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
1943
1944 Make tmm-menubar work for the Buffers menu again (bug#5726).
1945 * tmm.el (tmm-prompt): Also handle keymap entries in the form of
1946 vectors rather than cons cells, as used in menu-bar-update-buffers.
1947
1948 2010-03-28 Chong Yidong <cyd@stupidchicken.com>
1949
1950 * progmodes/js.el (js-auto-indent-flag, js-mode-map)
1951 (js-insert-and-indent): Revert 2009-08-15 change, restoring
1952 electric punctuation for "{}();,:" (Bug#5586).
1953
1954 * mail/sendmail.el (mail-default-directory): Doc fix.
1955
1956 2010-03-27 Chong Yidong <cyd@stupidchicken.com>
1957
1958 * mail/sendmail.el (mail-default-directory): Doc fix.
1959
1960 2010-03-27 Eli Zaretskii <eliz@gnu.org>
1961
1962 * subr.el (version-regexp-alist, version-to-list)
1963 (version-list-<, version-list-=, version-list-<=)
1964 (version-list-not-zero, version<, version<=, version=): Doc fix.
1965 (Bug#5744).
1966
1967 2010-03-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1968 Nick Roberts <nickrob@snap.net.nz>
1969
1970 * progmodes/gdb-ui.el (gdb-apple-test): New function.
1971 (gdb-init-1): Use it.
1972
1973 2010-02-10 Dan Nicolaescu <dann@ics.uci.edu>
1974
1975 * vc.el (vc-root-diff): Doc fix.
1976
1977 2010-03-25 Chong Yidong <cyd@stupidchicken.com>
1978
1979 * vc.el (vc-print-log, vc-print-root-log): Doc fix.
1980
1981 * simple.el (append-to-buffer): Fix last change.
1982
1983 2010-03-24 Chong Yidong <cyd@stupidchicken.com>
1984
1985 * simple.el (append-to-buffer): Ensure that point is preserved if
1986 BUFFER is the current buffer. Suggested by YAMAMOTO Mitsuharu.
1987 (Bug#5749)
1988
1989 2010-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
1990
1991 * progmodes/make-mode.el (makefile-rule-action-regex): Backtrack less.
1992 (makefile-make-font-lock-keywords): Adjust rule since submatch 1 may
1993 not be present any more.
1994
1995 2010-03-24 Juanma Barranquero <lekktu@gmail.com>
1996
1997 * faces.el (set-face-attribute): Fix typo in docstring.
1998 (face-valid-attribute-values): Reflow docstring.
1999
2000 2010-03-23 Glenn Morris <rgm@gnu.org>
2001
2002 * textmodes/flyspell.el (sgml-lexical-context): Autoload it (Bug#5752).
2003
2004 2010-03-21 Chong Yidong <cyd@stupidchicken.com>
2005
2006 * indent.el (indent-for-tab-command): Doc fix.
2007
2008 2010-03-22 Juanma Barranquero <lekktu@gmail.com>
2009
2010 * image-dired.el (image-dired-display-thumbs): Fix typo in docstring.
2011 (image-dired-read-comment): Doc fix.
2012
2013 * json.el (json-object-type, json-array-type, json-key-type)
2014 (json-false, json-null, json-read-number):
2015 * minibuffer.el (completion-in-region-functions):
2016 * calendar/cal-tex.el (cal-tex-daily-end, cal-tex-number-weeks)
2017 (cal-tex-cursor-week):
2018 * emacs-lisp/trace.el (trace-function):
2019 * eshell/em-basic.el (eshell/printnl):
2020 * eshell/em-dirs.el (eshell-last-dir-ring, eshell-parse-drive-letter)
2021 (eshell-read-last-dir-ring, eshell-write-last-dir-ring):
2022 * obsolete/levents.el (allocate-event, event-key, event-object)
2023 (event-point, event-process, event-timestamp, event-to-character)
2024 (event-window, event-x, event-x-pixel, event-y, event-y-pixel):
2025 * textmodes/reftex-vars.el (reftex-index-macros-builtin)
2026 (reftex-section-levels, reftex-auto-recenter-toc, reftex-toc-mode-hook)
2027 (reftex-cite-punctuation, reftex-search-unrecursed-path-first)
2028 (reftex-highlight-selection): Fix typos in docstrings.
2029
2030 2010-03-19 Juanma Barranquero <lekktu@gmail.com>
2031
2032 * minibuffer.el (completion-in-region-functions): Fix docstring typos.
2033
2034 2010-03-18 Glenn Morris <rgm@gnu.org>
2035
2036 * mail/rmail.el (rmail-highlight-face): Restore option deleted
2037 2008-02-13 without comment; mark it obsolete.
2038 (rmail-highlight-headers): Use rmail-highlight-face once more.
2039
2040 2010-03-16 Chong Yidong <cyd@stupidchicken.com>
2041
2042 * woman.el (woman2-process-escapes): Only consume the newline if
2043 the filler character is on a line by itself (Bug#5729).
2044
2045 2010-03-16 Kenichi Handa <handa@m17n.org>
2046
2047 * language/indian.el (devanagari-composable-pattern): Add more
2048 consonants.
2049
2050 2010-03-14 Michael Albinus <michael.albinus@gmx.de>
2051
2052 * net/trampver.el: Update release number.
2053
2054 2010-03-13 Glenn Morris <rgm@gnu.org>
2055
2056 * Makefile.in (ELCFILES): Add cedet/semantic/imenu.el.
2057
2058 2010-03-13 Michael Albinus <michael.albinus@gmx.de>
2059
2060 * net/tramp.el (tramp-find-executable):
2061 Use `tramp-get-connection-buffer'. Make the regexp for checking
2062 output of "wc -l" more robust.
2063 (tramp-find-shell): Use another shell but /bin/sh on OpenSolaris.
2064 (tramp-open-connection-setup-interactive-shell): Remove workaround
2065 for OpenSolaris bug, it is not needed anymore.
2066
2067 2010-03-12 Glenn Morris <rgm@gnu.org>
2068
2069 * emacs-lisp/cl-macs.el (defsubst*): Add autoload cookie. (Bug#4427)
2070
2071 2010-03-11 Wilson Snyder <wsnyder@wsnyder.org>
2072
2073 * files.el (auto-mode-alist): Accept more verilog file patterns.
2074
2075 2010-03-09 Miles Bader <miles@gnu.org>
2076
2077 * vc-git.el (vc-git-print-log): Use "tformat:" for shortlog,
2078 instead of "format:"; this ensures that the output is
2079 newline-terminated.
2080
2081 2010-03-08 Chong Yidong <cyd@stupidchicken.com>
2082
2083 * mail/rfc822.el (rfc822-addresses): Use nested catches to ensure
2084 that all errors are caught, and that the return value is always a
2085 list (Bug#5692).
2086
2087 2010-03-08 Kenichi Handa <handa@m17n.org>
2088
2089 * language/misc-lang.el (windows-1256): New coding system.
2090 (cp1256): New alias of windows-1256 (bug#5690).
2091
2092 2010-03-07 Andreas Schwab <schwab@linux-m68k.org>
2093
2094 * mail/rfc822.el (rfc822-addresses): Move catch clause down around
2095 call to rfc822-bad-address. (Bug#5692)
2096
2097 2010-03-07 Štěpán Němec <stepnem@gmail.com> (tiny change)
2098
2099 * vc-git.el (vc-git-annotate-extract-revision-at-line):
2100 Use vc-git-root as default directory for revision path (Bug#5657).
2101
2102 2010-03-06 Chong Yidong <cyd@stupidchicken.com>
2103
2104 * calculator.el (calculator): Don't bind split-window-keep-point
2105 (Bug#5674).
2106
2107 2010-03-06 Stefan Monnier <monnier@iro.umontreal.ca>
2108
2109 * vc-git.el: Re-flow to fit into 80 columns.
2110 (vc-git-after-dir-status-stage, vc-git-dir-status-goto-stage):
2111 Remove spurious `quote' element in each case alternative.
2112 (vc-git-show-log-entry): Use prog1.
2113 (vc-git-after-dir-status-stage): Remove unused var `remaining'.
2114
2115 2010-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
2116
2117 * man.el (Man-files-regexp): Tighten up the regexp (bug#5686).
2118
2119 2010-03-03 Chong Yidong <cyd@stupidchicken.com>
2120
2121 * macros.el (insert-kbd-macro): Look up keyboard macro using the
2122 definition, not the name (Bug#5481).
2123
2124 2010-03-03 Štěpán Němec <stepnem@gmail.com> (tiny change)
2125
2126 * subr.el (momentary-string-display): Don't overwrite the MESSAGE
2127 argument with a local variable. (Bug#5670)
2128
2129 2010-03-02 Juri Linkov <juri@jurta.org>
2130
2131 * info.el (Info-index-next): Decrement line number by 2. (Bug#5652)
2132
2133 2010-03-02 Michael Albinus <michael.albinus@gmx.de>
2134
2135 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Fix an
2136 error when FILENAME and NEWNAME are existing remote directories.
2137
2138 * net/tramp-compat.el (tramp-compat-make-temp-file): Add optional
2139 parameter DIR-FLAG.
2140
2141 2010-03-02 Glenn Morris <rgm@gnu.org>
2142
2143 * calendar/cal-hebrew.el (holiday-hebrew-passover): Fix date
2144 of Yom HaAtzma'ut when it falls on a Monday (rule changed in 2004).
2145
2146 2010-03-01 Kenichi Handa <handa@m17n.org>
2147
2148 * language/burmese.el (burmese-composable-pattern): Rename from
2149 myanmar-composable-pattern.
2150
2151 * international/characters.el (script-list):
2152 * international/fontset.el (script-representative-chars):
2153 Change myanmar to burmese.
2154 (otf-script-alist): Likewise.
2155 (setup-default-fontset): Likewise. Re-fix :otf spec.
2156
2157 2010-02-28 Katsumi Yamaoka <yamaoka@jpl.org>
2158
2159 * menu-bar.el (menu-bar-manuals-menu): Fix typo.
2160
2161 2010-02-28 Jan Djärv <jan.h.d@swipnet.se>
2162
2163 * scroll-bar.el (scroll-bar-drag-1): Add save-excursion, bug #5654.
2164
2165 2010-02-28 Michael Albinus <michael.albinus@gmx.de>
2166
2167 * net/tramp.el (tramp-handle-write-region): START can be a string.
2168 Take care in the checks. Reported by Dan Davison
2169 <davison@stats.ox.ac.uk>.
2170
2171 2010-02-28 Michael Albinus <michael.albinus@gmx.de>
2172
2173 * net/dbus.el (dbus-introspect, dbus-get-property)
2174 (dbus-set-property, dbus-get-all-properties):
2175 Use `dbus-call-method' when noninteractive. (Bug#5645)
2176
2177 2010-02-28 Chong Yidong <cyd@stupidchicken.com>
2178
2179 * textmodes/reftex-toc.el (reftex-toc-promote-prepare):
2180 * emacs-lisp/elint.el (elint-add-required-env):
2181 * calendar/icalendar.el (icalendar--add-diary-entry):
2182 * calc/calcalg2.el (math-tracing-integral):
2183 * files.el (recover-session-finish): Use with-current-buffer
2184 instead of save-excursion.
2185
2186 2010-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
2187
2188 Fix in-buffer completion when after-change-functions modify the buffer.
2189 * minibuffer.el (completion--replace): New function.
2190 (completion--do-completion): Use it and use relative movement.
2191
2192 2010-02-27 Chong Yidong <cyd@stupidchicken.com>
2193
2194 * international/fontset.el (setup-default-fontset): Fix :otf spec.
2195
2196 2010-02-27 Jeremy Whitlock <jcscoobyrs@gmail.com> (tiny change)
2197
2198 * progmodes/python.el (python-pdbtrack-stack-entry-regexp):
2199 Allow the characters _<> in the stack entry (Bug#5653).
2200
2201 2010-02-26 Kenichi Handa <handa@m17n.org>
2202
2203 * language/burmese.el: Fix entries in composition-function-table.
2204 (myanmar-composable-pattern): New variable.
2205
2206 * international/fontset.el (setup-default-fontset): Add an entry
2207 for myanmar.
2208
2209 * international/characters.el (script-list): Add Myanmar
2210 Extended-A.
2211
2212 2010-02-26 Glenn Morris <rgm@gnu.org>
2213
2214 * custom.el (custom-initialize-delay): Doc fix.
2215
2216 * mail/sendmail.el (send-mail-function): Autoload the call
2217 to custom-initialize-delay, not otherwise preserved in loaddefs.el.
2218
2219 2010-02-24 Chong Yidong <cyd@stupidchicken.com>
2220
2221 * files.el (hack-local-variables-filter): For eval forms, also
2222 check safe-local-variable-p (Bug#5636).
2223
2224 2010-02-24 Eduard Wiebe <usenet@pusto.de>
2225
2226 * javascript.el (wisent-javascript-jv-expand-tag): Avoid c(ad)ddr
2227 and use c(ad)r of cddr (Bug#5640).
2228
2229 2010-02-22 Michael Albinus <michael.albinus@gmx.de>
2230
2231 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Protect
2232 setting the modes by `ignore-errors'. It might fail, for example
2233 if the file is not owned by the user but the group.
2234 (tramp-handle-write-region): Ensure, that `tmpfile' is always readable.
2235
2236 2010-02-21 Chong Yidong <cyd@stupidchicken.com>
2237
2238 * files.el (directory-listing-before-filename-regexp):
2239 Use stricter matching for iso-style dates, to avoid false matches with
2240 date-like filenames (Bug#5597).
2241
2242 * htmlfontify.el (htmlfontify): Doc fix.
2243
2244 * eshell/eshell.el (eshell): Doc fix.
2245
2246 * startup.el (fancy-about-screen): In mode-line, apply
2247 mode-line-buffer-id face only to the buffer name (Bug#5613).
2248
2249 2010-02-20 Kevin Ryde <user42@zip.com.au>
2250
2251 * progmodes/compile.el (compilation-error-regexp-alist-alist):
2252 In `watcom' anchor regexp to start of line, to avoid slowness
2253 (Bug#5599).
2254
2255 2010-02-20 Eli Zaretskii <eliz@gnu.org>
2256
2257 * subr.el (remove-yank-excluded-properties): Explain in a comment
2258 why `category' property is removed.
2259
2260 2010-02-19 Chong Yidong <cyd@stupidchicken.com>
2261
2262 * isearch.el (isearch-update-post-hook, isearch-update):
2263 Revert 2010-02-17 change.
2264
2265 2010-02-19 Ulf Jasper <ulf.jasper@web.de>
2266
2267 * calendar/icalendar.el (icalendar--convert-ordinary-to-ical)
2268 (icalendar--convert-weekly-to-ical)
2269 (icalendar--convert-yearly-to-ical)
2270 (icalendar--convert-block-to-ical)
2271 (icalendar--convert-cyclic-to-ical)
2272 (icalendar--convert-anniversary-to-ical): Take care of time
2273 specifications where hour has 1-digit only (Bug#5549).
2274
2275 2010-02-19 Nick Roberts <nickrob@snap.net.nz>
2276
2277 * progmodes/gdb-ui.el (gdb-assembler-handler): Accommodate change
2278 of disassemble output in GDB 7.1.
2279
2280 2010-02-19 Glenn Morris <rgm@gnu.org>
2281
2282 * progmodes/f90.el (f90-electric-insert): Give it a delete-selection
2283 property. (Bug#5593)
2284
2285 2010-02-18 Sam Steingold <sds@gnu.org>
2286
2287 * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
2288
2289 2010-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
2290
2291 Use abbreviated file names in bookmarks (bug#5591).
2292 * bookmark.el (bookmark-maybe-load-default-file): Remove redundant
2293 calls to expand-file-name.
2294 (bookmark-relocate): Use abbreviated file names in bookmarks.
2295 (bookmark-load): Use abbreviated file names in messages.
2296
2297 2010-02-18 Michael Albinus <michael.albinus@gmx.de>
2298
2299 * net/tramp.el (tramp-handle-directory-files): When FULL, do not
2300 expand "." and "..". Reported by Thierry Volpiatto
2301 <thierry.volpiatto@gmail.com>.
2302
2303 2010-02-18 Michael Albinus <michael.albinus@gmx.de>
2304
2305 * net/tramp.el (tramp-handle-insert-file-contents): Set always the
2306 permissions of the temporary file to "0600". In case the remote
2307 file has no read permissions for the owner, there might be
2308 problems otherwise. Reported by Ole Laursen <olau@iola.dk>.
2309
2310 22010-02-18 Glenn Morris <rgm@gnu.org>
2311
2312 * emacs-lisp/authors.el (authors-renamed-files-alist):
2313 Add entries for INSTALL.CVS.
2314
2315 2010-02-17 Mark A. Hershberger <mah@everybody.org>
2316
2317 * vc-bzr.el: Fix typo in Known Bugs section.
2318
2319 * isearch.el (isearch-update-post-hook): New hook.
2320 (isearch-update): Use the new hook.
2321
2322 2010-02-16 Michael Albinus <michael.albinus@gmx.de>
2323
2324 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
2325 Fix errors in copying directories.
2326 (tramp-handle-add-name-to-file, tramp-handle-copy-directory)
2327 (tramp-do-copy-or-rename-file, tramp-handle-delete-directory)
2328 (tramp-handle-delete-file)
2329 (tramp-handle-dired-recursive-delete-directory)
2330 (tramp-handle-write-region): Flush also the cache for the upper
2331 directory.
2332
2333 2010-02-16 Chong Yidong <cyd@stupidchicken.com>
2334
2335 * simple.el (save-interprogram-paste-before-kill): Doc fix.
2336
2337 * cus-edit.el (hardware): Doc fix.
2338
2339 * man.el (man): Add to external custom group.
2340
2341 * delim-col.el (columns): Move to wp custom group.
2342
2343 * doc-view.el (doc-view): Add to data custom group.
2344
2345 * nxml/nxml-mode.el (nxml-faces): Remove from font-lock-faces group.
2346
2347 * textmodes/flyspell.el (flyspell-word): Obey the offset specified
2348 by ispell-parse-output (Bug#5575).
2349
2350 2010-02-16 Kenichi Handa <handa@m17n.org>
2351
2352 * international/ja-dic-cnv.el (iso-2022-7bit-short): Delete it.
2353 (skkdic-convert-okuri-ari): Ignore lines starting with '>'.
2354 (skkdic-convert): Use `euc-japan' coding system for writing.
2355
2356 2010-02-16 Glenn Morris <rgm@gnu.org>
2357
2358 * textmodes/tex-mode.el (tex-bibtex-file): Expand the result of
2359 tex-main-file before using it. (Bug#5562)
2360
2361 2010-02-15 Stefan Monnier <monnier@iro.umontreal.ca>
2362
2363 * emacs-lisp/advice.el (ad-compile-function): Suppress byte-compiler
2364 warnings, since it is annoying for the user to see them each time he
2365 runs the code.
2366
2367 2010-02-15 Michael Albinus <michael.albinus@gmx.de>
2368
2369 * net/tramp.el (tramp-process-actions, tramp-read-passwd):
2370 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection): Use VEC
2371 instead of PROC for caching "first-password-request". Otherwise,
2372 new processes would not profit from passwords already entered.
2373
2374 * net/tramp-cache.el (tramp-dump-connection-properties):
2375 Don't save "first-password-request" property.
2376
2377 2010-02-14 Juanma Barranquero <lekktu@gmail.com>
2378
2379 * outline.el (outline-head-from-level):
2380 * simple.el (with-wrapper-hook):
2381 * emacs-lisp/elint.el (elint-extra-errors, elint-current-buffer)
2382 (elint-defun, elint-buffer-env, elint-top-form-logged)
2383 (elint-unbound-variable):
2384 * textmodes/reftex-toc.el (reftex-toc-newhead-from-alist):
2385 Fix typos in docstrings.
2386
2387 2010-02-14 Michael Albinus <michael.albinus@gmx.de>
2388
2389 * files.el (insert-directory): When WILDCARD-REGEXP and
2390 FULL-DIRECTORY-P are nil, insert the file entry instead of the
2391 whole directory. (Bug#5551)
2392
2393 * net/ange-ftp.el (ange-ftp-insert-directory): Insert " " for
2394 dired's alignment sanity. (Bug#5516)
2395
2396 2010-02-14 Juri Linkov <juri@jurta.org>
2397
2398 * man.el (Man-fontify-manpage, Man-cleanup-manpage):
2399 Remove remaining ^H with their preceding chars. (Bug#5566)
2400
2401 2010-02-13 Glenn Morris <rgm@gnu.org>
2402
2403 * simple.el (transpose-subr): Give it a doc-string.
2404
2405 * textmodes/paragraphs.el (transpose-paragraphs, transpose-sentences):
2406 Doc fixes.
2407
2408 2010-02-12 Juri Linkov <juri@jurta.org>
2409
2410 * arc-mode.el (archive-unique-fname): Make directories for nested
2411 archives. (Bug#5540)
2412
2413 2010-02-12 Juri Linkov <juri@jurta.org>
2414
2415 * ffap.el (dired-at-point): Fix docstring. (Bug#5565)
2416
2417 2010-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
2418
2419 * subr.el (copy-overlay): Handle deleted overlays.
2420
2421 * man.el (Man-completion-table): Don't signal an error if we can't run
2422 manual-program (bug#4056).
2423
2424 2010-02-10 Juanma Barranquero <lekktu@gmail.com>
2425
2426 * textmodes/artist.el (artist-mt): Fix typos in docstring.
2427
2428 2010-02-10 Thierry Volpiatto <thierry.volpiatto@gmail.com>
2429
2430 * info.el (Info-bookmark-jump): Simplify.
2431
2432 * bookmark.el (bookmark-handle-bookmark): Catch the right error.
2433 (bookmark-default-handler): Accept new bookmark field `buffer'.
2434
2435 2010-02-10 Chong Yidong <cyd@stupidchicken.com>
2436
2437 * iswitchb.el (iswitchb-completions): Revert last change.
2438
2439 2010-02-10 Michael Albinus <michael.albinus@gmx.de>
2440
2441 * ls-lisp.el (ls-lisp-insert-directory): When WILDCARD-REGEXP and
2442 FULL-DIRECTORY-P are nil, and FILE is absolute, expand it.
2443 This prevents file names like "~/" being listed literally.
2444
2445 2010-02-10 Dan Nicolaescu <dann@ics.uci.edu>
2446
2447 * term/xterm.el (xterm-maybe-set-dark-background-mode):
2448 Remove dead code. (Bug#5546)
2449
2450 2010-02-09 Chong Yidong <cyd@stupidchicken.com>
2451
2452 * eshell/em-ls.el (eshell-ls-applicable): Frob file attributes
2453 correctly (Bug#5548).
2454
2455 2010-02-08 Jose E. Marchesi <jemarch@gnu.org>
2456
2457 * progmodes/ada-mode.el (ada-in-numeric-literal-p): New function.
2458 (ada-adjust-case): Don't adjust case in hexadecimal number literals.
2459
2460 2010-02-08 Kenichi Handa <handa@m17n.org>
2461
2462 * international/mule-util.el (with-coding-priority): Add autoload
2463 cookie for putting `lisp-indent-function'.
2464
2465 2010-02-07 Glenn Morris <rgm@gnu.org>
2466
2467 * progmodes/f90.el (f90-font-lock-keywords-1, f90-font-lock-keywords-2):
2468 Move F2003 named interfaces from keywords-2 to keywords-1, and
2469 use function-name-face rather than constant-face.
2470 Simplify "abstract interface" regexp.
2471
2472 2010-02-07 Chong Yidong <cyd@stupidchicken.com>
2473
2474 * eshell/esh-util.el (eshell-file-attributes): New optional arg
2475 ID-FORMAT. Pass it to `file-attributes'.
2476
2477 * eshell/em-ls.el (eshell-do-ls): Use it (Bug#5528).
2478
2479 2010-02-07 sj <prime.wizard+emacs@gmail.com> (tiny change)
2480
2481 * faces.el (set-face-attribute): Allow calling
2482 internal-set-lisp-face-attribute with 'unspecified family and
2483 foundry argument (Bug#5536).
2484
2485 2010-02-07 Glenn Morris <rgm@gnu.org>
2486
2487 * progmodes/f90.el (f90-font-lock-keywords-2)
2488 (f90-looking-at-type-like, f90-looking-at-program-block-end):
2489 Handle F2003 named interfaces.
2490
2491 2010-02-06 Chong Yidong <cyd@stupidchicken.com>
2492
2493 * progmodes/cc-mode.el (c-common-init): Bind temporary variables
2494 beg and end before calling c-get-state-before-change-functions.
2495
2496 2010-02-06 Dan Nicolaescu <dann@ics.uci.edu>
2497
2498 * vc-bzr.el (vc-bzr-dir-extra-headers):
2499 Disable the pending merges header.
2500
2501 2010-02-05 Juri Linkov <juri@jurta.org>
2502
2503 * doc-view.el (doc-view-mode):
2504 * image-mode.el (image-mode): Put property mode-class=special.
2505 (Bug#4896)
2506
2507 2010-02-05 Mark A. Hershberger <mah@everybody.org>
2508
2509 * vc-svn.el (vc-svn-revision-table): New function.
2510
2511 2010-02-05 Michael Albinus <michael.albinus@gmx.de>
2512
2513 * net/ange-ftp.el (ange-ftp-insert-directory):
2514 * net/tramp-imap.el (tramp-imap-handle-insert-directory):
2515 * net/tramp-smb.el (tramp-smb-handle-insert-directory):
2516 Handle also directories. (Bug#5478)
2517
2518 2010-02-05 Glenn Morris <rgm@gnu.org>
2519
2520 * progmodes/f90.el (f90-font-lock-keywords-2): Fix `enum'.
2521
2522 2010-02-05 Chong Yidong <cyd@stupidchicken.com>
2523
2524 * startup.el (command-line-1): Convert options beginning with a
2525 single dash as well (Bug#5519).
2526
2527 2010-02-05 Stefan Monnier <monnier@iro.umontreal.ca>
2528
2529 Make `initials' completion work for /hh -> /home/horn again (bug#5524).
2530 * minibuffer.el (completion-initials-expand): Only check the presence
2531 of delims *within* the boundaries, since otherwise the / delim is
2532 always found for files.
2533
2534 Fix up various corner case problems.
2535 * doc-view.el (doc-view-last-page-number): New function.
2536 (doc-view-mode, doc-view-last-page, doc-view-goto-page): Use it.
2537 (doc-view-goto-page): Avoid inf-loops when the conversion fails.
2538 (doc-view-kill-proc): Avoid inf-loop in freak cases.
2539 (doc-view-reconvert-doc): Use the new recursive delete-directory.
2540 (doc-view-convert-current-doc): Don't create the resolution.el file
2541 here any more.
2542 (doc-view-pdf/ps->png): Do it here instead.
2543 (doc-view-already-converted-p): Check that resolution.el is present.
2544 (doc-view-pdf->png): Don't rely on doc-view-pdf/ps->png for the few
2545 windows that are not yet showing images.
2546
2547 2010-02-04 Michael Albinus <michael.albinus@gmx.de>
2548
2549 * dired.el (dired-revert): If DIRED-DIRECTORY is a cons cell, call
2550 `dired-uncache' for every elemnt which is an absolute file name.
2551
2552 * net/tramp.el (tramp-handle-dired-uncache): When DIR is not a
2553 directory, handle its directory component.
2554 (tramp-handle-file-remote-p): Let-bind `tramp-verbose' to 3; this
2555 function is called permanently and creates noise, otherwise.
2556
2557 * net/tramp-imap.el (tramp-imap-handle-insert-directory):
2558 * net/tramp-smb.el (tramp-smb-handle-insert-directory):
2559 Handle the case, FILENAME is not in `default-directory'. (Bug#5478)
2560
2561 2010-02-04 David Burger <dburger@google.com> (tiny change)
2562
2563 * macros.el (apply-macro-to-region-lines):
2564 Minor simplification. (Bug#5485)
2565
2566 2010-02-04 Glenn Morris <rgm@gnu.org>
2567
2568 * mail/rmail.el (rmail-show-message-1): Handle malformed
2569 quoted-printable text. (Bug#5441)
2570
2571 * mail/mail-utils.el (mail-unquote-printable-region): Doc fix.
2572
2573 * simple.el (visual-line-mode): Capitalize lighter.
2574
2575 2010-02-03 John Wiegley <jwiegley@gmail.com>
2576
2577 * iswitchb.el (iswitchb-completions): Add bookmark files to the
2578 list of files considered for "virtual buffer" completions.
2579
2580 2010-02-03 Michael Albinus <michael.albinus@gmx.de>
2581
2582 * net/ange-ftp.el (ange-ftp-insert-directory): Parse directory
2583 also in case of (and (not full) (not wildcard)). This is needed,
2584 when dired is called with a list of files, which are not in
2585 `default-directory'. (Bug#5478)
2586
2587 2010-02-03 Stefan Monnier <monnier@iro.umontreal.ca>
2588
2589 * vc-hooks.el (vc-path): Make it an obsolete var, rather than function.
2590
2591 2010-02-02 Juri Linkov <juri@jurta.org>
2592
2593 * textmodes/ispell.el (ispell-message-text-end): Remove final newline
2594 from unidiff to allow function-line after @@.
2595
2596 2010-02-02 Juri Linkov <juri@jurta.org>
2597
2598 * ediff-util.el (ediff-file-checked-in-p): Replace '(nil CVS) by
2599 '(RCS SCCS) with inverted condition.
2600
2601 2010-02-02 Michael Albinus <michael.albinus@gmx.de>
2602
2603 * net/ange-ftp.el (ange-ftp-skip-msgs): Ignore all ""^500 .*AUTH"
2604 messages.
2605
2606 2010-02-01 Juri Linkov <juri@jurta.org>
2607
2608 * arc-mode.el (archive-zip-extract): Use `member-ignore-case' to
2609 compare with "pkunzip" and "pkzip" instead of only "pkzip".
2610 In the `archive-extract-by-stdout' branch use `shell-quote-argument'
2611 only when (car archive-zip-extract) is "unzip". (Bug#5475)
2612
2613 2010-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
2614
2615 * doc-view.el (doc-view-new-window-function): Be a bit more defensive.
2616 (doc-view-revert-buffer): New command.
2617 (doc-view-mode-map): Use it.
2618
2619 2010-02-01 Dan Nicolaescu <dann@ics.uci.edu>
2620
2621 * vc-bzr.el (vc-bzr-dir-extra-headers): Add a header when a
2622 pending merge is detected.
2623
2624 2010-01-31 Juri Linkov <juri@jurta.org>
2625
2626 * progmodes/grep.el (zrgrep): Call `grep-compute-defaults' at the
2627 beginning of interactive spec like all other grep commands do.
2628 Put "all" in front of "gz". (Bug#5260)
2629
2630 2010-01-29 Dan Nicolaescu <dann@ics.uci.edu>
2631
2632 * vc-bzr.el (vc-bzr-after-dir-status): Match another renaming indicator.
2633
2634 2010-01-29 Chong Yidong <cyd@stupidchicken.com>
2635
2636 * dirtrack.el (dirtrack): Warn instead of signalling error if the
2637 regexp is incorrect (Bug#5476).
2638
2639 2010-01-29 Michael Albinus <michael.albinus@gmx.de>
2640
2641 * net/tramp.el (tramp-handle-insert-directory): Handle also
2642 symlinks, when FILENAME is not in `default-directory'.
2643
2644 2010-01-28 Michael Albinus <michael.albinus@gmx.de>
2645
2646 * net/ange-ftp.el (ange-ftp-insert-directory): Handle the case,
2647 FILE is not in `default-directory'. (Bug#5478)
2648
2649 * net/tramp.el (tramp-handle-insert-directory): Simplify handling
2650 of SWITCHES. Handle the case, FILENAME is not in
2651 `default-directory'. (Bug#5478)
2652 (tramp-register-file-name-handlers): Add safe-magic property.
2653
2654 2010-01-28 Chong Yidong <cyd@stupidchicken.com>
2655
2656 * arc-mode.el (archive-zip-extract): Quote the argument passed to
2657 unzip (Bug#5475).
2658
2659 2010-01-28 Nil Geisweiller <ngeiswei@googlemail.com> (tiny change)
2660
2661 * progmodes/flymake.el (flymake-allowed-file-name-masks)
2662 (flymake-master-make-header-init): Add other C++ filename masks.
2663 (flymake-find-possible-master-files)
2664 (flymake-check-patch-master-file-buffer): Doc fixes (Bug#5488).
2665
2666 2010-01-28 Michael Albinus <michael.albinus@gmx.de>
2667
2668 Fix some busybox annoyances.
2669
2670 * net/tramp.el (tramp-wrong-passwd-regexp): Add "Timeout, server
2671 not responding." string.
2672 (tramp-open-connection-setup-interactive-shell): Dump stty
2673 settings. Enable "neveropen" arg for all `tramp-send-command'
2674 calls. Handle "=" in variable values properly.
2675 (tramp-find-inline-encoding): Raise an error, when no encoding is
2676 found.
2677 (tramp-wait-for-output): Check, whether PROC buffer is available.
2678 Remove spurious " ^H" sequences, sent by busybox.
2679 (tramp-get-ls-command): Suppress coloring, if possible.
2680
2681 2010-01-28 Glenn Morris <rgm@gnu.org>
2682
2683 * vc-svn.el (vc-svn-update): Use "svn --non-interactive". (Bug#4280)
2684
2685 * log-edit.el (log-edit-strip-single-file-name): Add missing
2686 :safe, :group, and :version tags.
2687
2688 2010-01-27 Stephen Berman <stephen.berman@gmx.net>
2689
2690 * calendar/diary-lib.el (diary-unhide-everything): Handle narrowed
2691 buffers. (Bug#5477)
2692
2693 2010-01-27 David De La Harpe Golden <david@harpegolden.net>
2694
2695 * files.el (delete-directory): Handle moving to trash without
2696 first doing recursion (Bug#5436).
2697
2698 2010-01-26 Dan Nicolaescu <dann@ics.uci.edu>
2699
2700 * vc-hooks.el (vc-path): Mark as obsolete.
2701
2702 2010-01-25 Dan Nicolaescu <dann@ics.uci.edu>
2703
2704 * vc-annotate.el (vc-annotate-revision-at-line): Compare file
2705 names too.
2706
2707 * vc-bzr.el (vc-bzr-print-log): Use the more compact --line option
2708 for the short log.
2709 (vc-bzr-log-view-mode): Adjust regexp for the above change.
2710
2711 2010-01-25 Mark A. Hershberger <mah@everybody.org>
2712
2713 * progmodes/python.el: Replace reference to obsolete c-subword-mode.
2714
2715 * vc-bzr.el (vc-bzr-revision-table): New function.
2716
2717 2010-01-25 Eric Hanchrow <eric.hanchrow@gmail.com> (tiny change)
2718
2719 * vc-git.el (vc-git-dir-status-goto-stage): Pass --relative to the
2720 diff-index command. This requires at least git-1.5.5. (Bug#1589).
2721
2722 2010-01-24 Dan Nicolaescu <dann@ics.uci.edu>
2723
2724 Remove support for adding --signoff on commit.
2725 Future support will use an incompatible generic mechanism.
2726 * vc-git.el (vc-git-add-signoff): Remove variable.
2727 (vc-git-toggle-signoff): Remove function.
2728 (vc-git-extra-menu-map): Do not bind vc-git-toggle-signoff.
2729
2730 * term/xterm.el (xterm-maybe-set-dark-background-mode):
2731 Rename from xterm-set-background-mode. Return t if the background mode
2732 was set.
2733 (terminal-init-xterm): Move tty-set-up-initial-frame-faces
2734 earlier, call it again in case the background mode has changed.
2735
2736 2010-01-23 Dmitri Paduchikh <dpaduch@k66.ru> (tiny change)
2737
2738 * emacs-lisp/advice.el (ad-set-orig-definition): Fix typo
2739 (Bug#3541).
2740
2741 2010-01-23 Chong Yidong <cyd@stupidchicken.com>
2742
2743 * emacs-lisp/assoc.el (aelement): Doc fix.
2744 (aput, adelete, amake): Use lexical-let (Bug#5450).
2745
2746 2010-01-23 Stephen Leake <stephen_leake@member.fsf.org>
2747
2748 * progmodes/ada-mode.el (ada-in-paramlist-p): Pragma syntax
2749 is the same as subprogram call, not declaration. (Bug#5435).
2750
2751 2010-01-23 Michael Albinus <michael.albinus@gmx.de>
2752
2753 * net/tramp-smb.el (tramp-smb-conf): New defcustom.
2754 (tramp-smb-maybe-open-connection): Use it.
2755
2756 2010-01-22 Michael Albinus <michael.albinus@gmx.de>
2757
2758 * net/tramp-imap.el (top): Autoload needed packages. (Bug#5448)
2759
2760 2010-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
2761
2762 * mail/rmailmm.el (rmail-mime-handle): Don't set the buffer to unibyte
2763 just because we see "encoding: 8bit".
2764 * mail/rmail.el (rmail-show-message-1): Decode the body's QP into bytes.
2765
2766 2010-01-22 Chong Yidong <cyd@stupidchicken.com>
2767
2768 * isearch.el (isearch-allow-scroll): Doc fix (Bug#5446).
2769
2770 2010-01-22 Eli Zaretskii <eliz@gnu.org>
2771
2772 * jka-compr.el (jka-compr-load): If load-file is not in
2773 load-history, try its file-truename version. (bug#5447)
2774
2775 2010-01-21 Alan Mackenzie <acm@muc.de>
2776
2777 Fix a situation where deletion of a cpp construct throws an error.
2778 * progmodes/cc-engine.el (c-invalidate-state-cache):
2779 Before invoking c-with-all-but-one-cpps-commented-out, check that the
2780 special cpp construct is still in the buffer.
2781 (c-parse-state): Record the special cpp with markers, not numbers.
2782
2783 2010-01-21 Kenichi Handa <handa@m17n.org>
2784
2785 * textmodes/sgml-mode.el (sgml-maybe-name-self): No need to
2786 process last-command-event, as it is now decoded first (Bug#5380).
2787
2788 2010-01-20 Chong Yidong <cyd@stupidchicken.com>
2789
2790 * term.el (term-send-raw-meta): Revert 2009-12-04 change (Bug#5330).
2791
2792 2010-01-20 Glenn Morris <rgm@gnu.org>
2793
2794 * indent.el (tab-always-indent): Fix custom-type.
2795
2796 2010-01-19 Alan Mackenzie <acm@muc.de>
2797
2798 * progmodes/cc-defs.el: Fix bug#5395: typing '#' in an empty
2799 buffer throws "args out of range".
2800 (c-set-cpp-delimiters, c-clear-cpp-delimiters): Check for EOB
2801 playing the role of delimiter.
2802
2803 2010-01-18 Stephen Leake <stephen_leake@member.fsf.org>
2804
2805 * progmodes/ada-mode.el: Fix bug#5400.
2806 (ada-matching-decl-start-re): Move into ada-goto-decl-start.
2807 (ada-goto-decl-start): Rename from ada-goto-matching-decl-start; callers
2808 changed. Delete RECURSIVE parameter; never used. Improve doc string.
2809 Improve comments in "is" portion. Handle null procedure declaration.
2810 (ada-move-to-end): Improve doc string.
2811
2812 2010-01-18 Óscar Fuentes <ofv@wanadoo.es>
2813
2814 * ido.el (ido-cur-list): Initialize to nil.
2815 Remove obsolete information from commentary.
2816 (ido-choice-list): Initialize to nil.
2817 (ido-get-bufname): Reject minibuffers.
2818 (ido-make-buffer-list): If "default" is a nonexistent
2819 buffer, ignore it, as per the function's comment.
2820 (ido-kill-buffer-internal): New function.
2821 (ido-kill-buffer-at-head): Use it.
2822 (ido-visit-buffer): Likewise.
2823
2824 2010-01-18 Chong Yidong <cyd@stupidchicken.com>
2825
2826 * calendar/time-date.el (date-to-time): Doc fix (Bug#5408).
2827
2828 2010-01-18 Juanma Barranquero <lekktu@gmail.com>
2829
2830 * emacs-lisp/chart.el (chart-file-count, chart-rmail-from):
2831 Fix typos in chart titles.
2832
2833 * whitespace.el (whitespace-style, global-whitespace-newline-mode):
2834 * emacs-lisp/eieio.el (eieio-error-unsupported-class-tags)
2835 (eieio-generic-form, eieio-help-mode-augmentation-maybee, eieio-browse)
2836 (describe-class, eieio-describe-generic, describe-generic):
2837 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click)
2838 (eieio-speedbar-expand):
2839 * emulation/viper-cmd.el (viper-exec-form-in-vi)
2840 (viper-exec-form-in-emacs, viper-harness-minor-mode, viper-ESC)
2841 (viper-repeat, viper-replace-state-exit-cmd, viper-toggle-search-style)
2842 (viper-del-backward-char-in-replace, viper-backward-indent)
2843 (viper-brac-function, viper-register-to-point, viper-submit-report):
2844 * net/tramp.el (tramp-remote-coding-commands):
2845 * term/x-win.el (emacs-session-save, x-menu-bar-open, icon-map-list):
2846 Fix typos in docstrings.
2847
2848 2010-01-17 Chong Yidong <cyd@stupidchicken.com>
2849
2850 * mail/sendmail.el (mail-yank-original): Set the mark if the
2851 specified function for yanking does not do it.
2852
2853 2010-01-17 Dan Nicolaescu <dann@ics.uci.edu>
2854
2855 * vc.el (with-vc-properties): Deal with directory arguments. (Bug#5298)
2856
2857 * vc-dir.el (vc-dir-resynch-file): Update the vc-dir header when
2858 resyncing a directory.
2859
2860 2010-01-17 Stephen Leake <stephen_leake@member.fsf.org>
2861
2862 * progmodes/ada-mode.el: Fix bug#1920.
2863 (ada-ident-re): Delete ., allow multibyte characters.
2864 (ada-goto-label-re): New; matches goto labels.
2865 (ada-block-label-re): New; matches block labels.
2866 (ada-label-re): New; matches both.
2867 (ada-named-block-re): Deleted; callers changed to use
2868 `ada-block-label-re' instead.
2869 (ada-get-current-indent, ada-get-indent-noindent, ada-get-indent-loop):
2870 Use `ada-block-label-re'.
2871 (ada-indent-on-previous-lines): Improve handling of goto labels.
2872 (ada-get-indent-block-start): Special-case block label.
2873 (ada-get-indent-label): Split into `ada-indent-block-label' and
2874 `ada-indent-goto-label'.
2875 (ada-goto-stmt-start, ada-goto-next-non-ws):
2876 Optionally ignore goto labels.
2877 (ada-goto-next-word): Simplify.
2878 (ada-indent-newline-indent-conditional): Insert newline before
2879 trying to fix indentation; doc fix.
2880
2881 2010-01-17 Jay Belanger <jay.p.belanger@gmail.com>
2882
2883 * calc/calc.el (calc-command-flags): Give it an initial value.
2884
2885 2010-01-17 Juanma Barranquero <lekktu@gmail.com>
2886
2887 * files.el (minibuffer-with-setup-hook):
2888 * textmodes/artist.el (artist-mt, artist-key-undraw-continously)
2889 (artist-key-draw-continously, artist-key-do-continously-continously)
2890 (artist-key-set-point-continously, artist-mouse-draw-continously):
2891 Fix typos in docstrings.
2892
2893 2010-01-16 Lennart Borgman <lennart.borgman@gmail.com>
2894
2895 * nxml/nxml-mode.el (nxml-extend-after-change-region):
2896 Never return t (Bug#3898).
2897
2898 2010-01-16 Frédéric Perrin <frederic.perrin@resel.fr> (tiny change)
2899
2900 * vc-dispatcher.el (vc-do-command): Set LC_MESSAGES, so that we
2901 can parse the output of the external commands (Bug#5279).
2902
2903 2010-01-16 Jari Aalto <jari.aalto@cante.net>
2904
2905 * pcmpl-unix.el (pcmpl-unix-read-passwd-file): Doc fix.
2906
2907 2010-01-16 Chong Yidong <cyd@stupidchicken.com>
2908
2909 * emacs-lisp/advice.el (ad-add-advice): Doc fix (Bug#5274)
2910
2911 * emacs-lisp/cl-macs.el (defstruct): Doc fix (Bug#5267).
2912
2913 * startup.el (command-line): Remove unused --icon-type arg.
2914 Handle --display arg, passing it to command-line-1 (Bug#5392).
2915
2916 2010-01-16 Mario Lang <mlang@delysid.org>
2917
2918 * emacs-lisp/chart.el (chart-translate-namezone):
2919 * textmodes/artist.el (artist-compute-popup-menu-table):
2920 Remove duplicated words in doc-strings.
2921
2922 2010-01-15 David Abrahams <dave@boostpro.com> (tiny change)
2923
2924 * net/mairix.el (mairix-widget-send-query): Send -1 instead of nil
2925 to mairix-search to suppress threading (Bug#5342).
2926
2927 2010-01-15 Kenichi Handa <handa@m17n.org>
2928
2929 * international/mule-cmds.el (canonicalize-coding-system-name):
2930 Convert "msXXX", "ibmXXX", "windows-XXX" to "cpXXX" (Bug#5387).
2931
2932 2010-01-15 Glenn Morris <rgm@gnu.org>
2933
2934 * log-view.el (top-level): Require 'wid-edit. (Bug#5311)
2935
2936 * wid-edit.el (widget-keymap): Doc fix.
2937
2938 * vc-svn.el (vc-svn-print-log): Use --limit rather than -l since the
2939 former seems to be more widely accepted by various svn versions.
2940
2941 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
2942
2943 * find-cmd.el (find-constituents):
2944 * vc-arch.el (vc-arch-root):
2945 * window.el (window-body-height, pop-up-frames):
2946 * emacs-lisp/eieio-base.el (eieio-singleton, slot-missing):
2947 * progmodes/ada-stmt.el (ada-if):
2948 * progmodes/gdb-ui.el (gdb-jsonify-buffer):
2949 * textmodes/ispell.el (ispell-grep-options, ispell-dictionary-alist)
2950 (ispell-encoding8-command, ispell-aspell-supports-utf8)
2951 (ispell-last-program-name, ispell-help): Fix typos in docstrings.
2952
2953 * progmodes/flymake.el (flymake-post-syntax-check):
2954 Fix typo in error message.
2955
2956 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
2957
2958 * hexl.el (hexl-printable-character): Fix check of `hexl-iso',
2959 which is always a string. (Bug#5313)
2960
2961 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
2962
2963 * progmodes/ada-xref.el (ada-default-prj-properties):
2964 Simplify previous change.
2965
2966 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
2967
2968 * progmodes/ada-xref.el (ada-default-prj-properties):
2969 Default ada_project_path to $ADA_PROJECT_PATH.
2970
2971 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
2972
2973 * progmodes/ada-mode.el (ada-create-keymap):
2974 Override `narrow-to-defun' with `ada-narrow-to-defun'.
2975
2976 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
2977
2978 * progmodes/ada-mode.el: Deal with Ada 2005 "overriding" keyword.
2979 (ada-subprog-start-re, ada-imenu-subprogram-menu-re): Add keyword.
2980 (ada-get-current-indent, ada-imenu-generic-expression)
2981 (ada-which-function): Check for it.
2982
2983 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
2984
2985 * progmodes/ada-mode.el (ada-clean-buffer-before-saving): Make obsolete.
2986 (ada-mode): Don't obey `ada-clean-buffer-before-saving' anymore.
2987
2988 2010-01-14 Glenn Morris <rgm@gnu.org>
2989
2990 * frame.el (show-trailing-whitespace): Safe if boolean. (Bug#5312)
2991
2992 2010-01-14 Kenichi Handa <handa@m17n.org>
2993
2994 * composite.el (auto-composition-mode): Make it a buffer local
2995 variable (permanent-local).
2996 (auto-composition-function): Set the default value to
2997 auto-compose-chars.
2998 (auto-composition-mode): Make it a simple function, not a minor mode.
2999 (global-auto-composition-mode): Likewise.
3000 (turn-on-auto-composition-if-enabled): Delete it.
3001
3002 2010-01-13 Karl Fogel <kfogel@red-bean.com>
3003
3004 * bookmark.el (bookmark-bmenu-execute-deletions): Doc fix (Bug#5276).
3005
3006 2010-01-12 Michael Albinus <michael.albinus@gmx.de>
3007
3008 * files.el (copy-directory): Compute target for recursive
3009 directories with identical names. (Bug#5343)
3010
3011 2010-01-12 Glenn Morris <rgm@gnu.org>
3012
3013 * mail/emacsbug.el (report-emacs-bug-pretest-address):
3014 Set it to bug-gnu-emacs rather than emacs-pretest-bug.
3015
3016 2010-01-11 Sam Steingold <sds@gnu.org>
3017
3018 * imenu.el (imenu-default-create-index-function): Detect infinite
3019 loops caused by imenu-prev-index-position-function.
3020
3021 2010-01-11 Juanma Barranquero <lekktu@gmail.com>
3022
3023 * htmlfontify.el (htmlfontify-load-rgb-file)
3024 (htmlfontify-unload-rgb-file, hfy-fallback-colour-values)
3025 (htmlfontify-manual, htmlfontify, hfy-page-header, hfy-page-footer)
3026 (hfy-src-doc-link-style, hfy-src-doc-link-unstyle, hfy-link-extn)
3027 (hfy-link-style-fun, hfy-index-file, hfy-instance-file)
3028 (hfy-html-quote-regex, hfy-init-kludge-hook, hfy-post-html-hooks)
3029 (hfy-default-face-def, hfy-etag-regex, hfy-html-quote-map)
3030 (hfy-etags-cmd-alist-default, hfy-etags-bin, hfy-ignored-properties)
3031 (hfy-which-etags, hfy-etags-cmd, hfy-istext-command, hfy-display-class)
3032 (hfy-optimisations, hfy-tags-cache, hfy-tags-sortl, hfy-tags-rmap)
3033 (hfy-style-assoc, hfy-sheet-assoc, hfy-facemap-assoc, hfy-interq)
3034 (hfy-colour-vals, hfy-default-header, hfy-link-style-string)
3035 (hfy-triplet, hfy-slant, hfy-weight, hfy-combined-face-spec)
3036 (hfy-face-attr-for-class, hfy-face-to-style-i, hfy-size-to-int)
3037 (hfy-flatten-style, hfy-face-to-style, hfy-face-or-def-to-name)
3038 (hfy-face-to-css, hfy-p-to-face, hfy-p-to-face-lennart, hfy-face-at)
3039 (hfy-fontified-p, hfy-merge-adjacent-spans, hfy-buffer)
3040 (hfy-html-enkludge-buffer, hfy-html-quote, hfy-html-dekludge-buffer)
3041 (hfy-force-fontification, htmlfontify-buffer, hfy-dirname)
3042 (hfy-make-directory, hfy-text-p, hfy-mark-tag-names, hfy-relstub)
3043 (hfy-href-stub, hfy-href, hfy-mark-tag-hrefs, hfy-prepare-index-i)
3044 (hfy-prepare-index, hfy-prepare-tag-map, hfy-subtract-maps)
3045 (htmlfontify-run-etags): Fix typos in docstrings and remove superfluous
3046 backslash-quoting from parentheses, etc.
3047
3048 2010-01-11 Chong Yidong <cyd@stupidchicken.com>
3049
3050 * progmodes/js.el: Autoload javascript-mode alias.
3051
3052 2010-01-11 Juanma Barranquero <lekktu@gmail.com>
3053
3054 * ffap.el (ffap-shell-prompt-regexp, ffap-all-subdirs, ffap-url-p)
3055 (ffap-alist, ffap-tex-path, ffap-url-at-point, ffap-gopher-regexp)
3056 (ffap-gopher-at-point, ffap-file-at-point, ffap-read-file-or-url)
3057 (ffap-read-url-internal, ffap-menu, ffap-at-mouse):
3058 Fix typos in docstrings.
3059 (ffap-url-regexp): Doc fix.
3060 (ffap-at-mouse): Fix typo in message.
3061
3062 2010-01-11 Glenn Morris <rgm@gnu.org>
3063
3064 * version.el (emacs-copyright): Set copyright year to 2010.
3065
3066 2010-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
3067
3068 * format.el (format-annotate-function): Only set
3069 write-region-post-annotation-function after running to-fn so as not to
3070 affect nested write-region calls (bug#5273).
3071
3072 2010-01-10 Chong Yidong <cyd@stupidchicken.com>
3073
3074 * Makefile.in (ELCFILES): Add wisent/python-wy.el and
3075 wisent/python.el.
3076
3077 2010-01-09 Chong Yidong <cyd@stupidchicken.com>
3078
3079 * man.el (Man-goto-section): Signal error if the section is not
3080 found (Bug#5317).
3081
3082 2010-01-09 Juanma Barranquero <lekktu@gmail.com>
3083
3084 * vc-bzr.el (vc-bzr-working-revision): On Windows and MS-DOS, accept
3085 URLs with a leading triple slash in the file: scheme. (Bug#5345)
3086
3087 2010-01-09 Chong Yidong <cyd@stupidchicken.com>
3088
3089 * progmodes/compile.el: Don't treat compile-command as safe if
3090 compilation-read-command might be nil (Bug#4218).
3091
3092 2010-01-09 Jan Djärv <jan.h.d@swipnet.se>
3093
3094 * startup.el (command-line-1): Use orig-argi to check for ignored X and
3095 NS options.
3096
3097 2010-01-08 Kenichi Handa <handa@m17n.org>
3098
3099 * international/fontset.el (build-default-fontset-data):
3100 Exclude characters in scripts kana, hangul, han, or cjk-misc.
3101
3102 2010-01-07 Juanma Barranquero <lekktu@gmail.com>
3103
3104 * vc-dir.el (vc-dir-prepare-status-buffer): Pass a (fake) filename
3105 to `create-file-buffer' as it expects, not just a buffer name.
3106 (vc-dir-mode): Include the buffer name in `list-buffers-directory',
3107 to help uniquify. (Bug#3224)
3108
3109 2010-01-06 Jan Djärv <jan.h.d@swipnet.se>
3110
3111 * font-setting.el (font-setting-change-default-font): Use user-spec
3112 instead of name.
3113
3114 2010-01-06 Dan Nicolaescu <dann@ics.uci.edu>
3115
3116 * vc-bzr.el (vc-bzr-after-dir-status): Ignore pending merges.
3117
3118 2010-01-05 Tom Tromey <tromey@redhat.com>
3119
3120 * progmodes/python.el (python-font-lock-keywords):
3121 Handle qualified decorators (Bug#881).
3122
3123 2010-01-05 Dan Nicolaescu <dann@ics.uci.edu>
3124
3125 * vc-bzr.el (vc-bzr-working-revision): Fix looking for a revision
3126 in a lightweight checkout.
3127
3128 2010-01-05 Kenichi Handa <handa@m17n.org>
3129
3130 * language/indian.el (malayalam-composable-pattern): Fix ZWNJ and ZWJ.
3131
3132 2010-01-05 Dan Nicolaescu <dann@ics.uci.edu>
3133
3134 * vc-bzr.el (vc-bzr-diff): Obey vc-disable-async-diff.
3135
3136 2010-01-04 Dan Nicolaescu <dann@ics.uci.edu>
3137
3138 * vc-bzr.el (vc-bzr-state-heuristic): Make it work for lightweight
3139 checkouts. (Bug#618)
3140 (vc-bzr-log-view-mode): Also highlight the author.
3141 (vc-bzr-shelve-map): Change binding for vc-bzr-shelve-apply-at-point.
3142 (vc-bzr-shelve-menu-map):
3143 (vc-bzr-dir-extra-headers): Improve menu and tooltip text.
3144 (vc-bzr-shelve-apply): Make prompt more explicit.
3145
3146 2010-01-02 Chong Yidong <cyd@stupidchicken.com>
3147
3148 * net/browse-url.el (browse-url-encode-url): Don't escape commas.
3149 They are valid characters in URL paths (rfc3986), and at least
3150 Firefox does not understand the encoded version (Bug#3166).
3151
3152 2010-01-02 Daniel Elliott <danelliottster@gmail.com> (tiny change)
3153
3154 * progmodes/octave-mod.el (octave-end-keywords)
3155 (octave-block-begin-or-end-regexp, octave-block-match-alist):
3156 Add "end" keyword (Bug#3061).
3157 (octave-end-as-array-index-p): New function.
3158 (calculate-octave-indent): Use it.
3159
3160 2010-01-02 Karl Fogel <kfogel@red-bean.com>
3161
3162 * bookmark.el: Consistently put the text property on the bookmark name.
3163 (bookmark-bmenu-marks-width): Bump back to 2, to include
3164 annotation marks.
3165 (bookmark-bmenu-hide-filenames): Adjust for above, and put the text
3166 property on the bookmark name, instead of not putting it at all.
3167 (bookmark-bmenu-list): Fix where we put the text property.
3168
3169 2010-01-02 Karl Fogel <kfogel@red-bean.com>
3170
3171 * bookmark.el (bookmark-bmenu-save): Just depend on the new logic
3172 for showing buffer modified state (as added in the previous change).
3173
3174 2010-01-02 Karl Fogel <kfogel@red-bean.com>
3175
3176 * bookmark.el: Show modified state of bookmark buffer more accurately.
3177 (bookmark-bmenu-list): Initialize buffer-modified-p properly.
3178 (bookmark-send-edited-annotation): Mark bookmark-alist as modified.
3179 (with-buffer-modified-unmodified): New macro.
3180 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
3181 (bookmark-bmenu-mark, bookmark-bmenu-unmark, bookmark-bmenu-delete):
3182 Use new macro to preserve the buffer modified state.
3183
3184 2010-01-02 Karl Fogel <kfogel@red-bean.com>
3185
3186 * bookmark.el (bookmark-bmenu-select, bookmark-bmenu-1-window)
3187 (bookmark-bmenu-2-window, bookmark-bmenu-this-window)
3188 (bookmark-bmenu-other-window, bookmark-bmenu-switch-other-window)
3189 (bookmark-bmenu-show-annotation, bookmark-bmenu-edit-annotation)
3190 (bookmark-bmenu-rename, bookmark-bmenu-locate)
3191 (bookmark-bmenu-relocate, bookmark-bmenu-goto-bookmark):
3192 Remove unnecessary calls to `bookmark-bmenu-ensure-position'.
3193
3194 2010-01-02 Eli Zaretskii <eliz@gnu.org>
3195
3196 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
3197 Make the lines in the generated doc string shorter. (Bug#4668)
3198
3199 2010-01-02 Ryan Yeske <rcyeske@gmail.com>
3200
3201 * net/rcirc.el: Add follow-link binding (Bug#4738).
3202
3203 2010-01-02 Eli Zaretskii <eliz@gnu.org>
3204
3205 * Makefile.in (bzr-update): Rename from cvs-update.
3206 (cvs-update): New target for backward compatibility.
3207
3208 * makefile.w32-in (bzr-update): Rename from cvs-update.
3209 (cvs-update): New target for backward compatibility.
3210
3211 2010-01-02 Karl Fogel <kfogel@red-bean.com>
3212
3213 * bookmark.el: Remove gratuitous gratitude.
3214
3215 2010-01-02 Karl Fogel <kfogel@red-bean.com>
3216
3217 * bookmark.el (bookmark-bmenu-any-marks): New function
3218 (bookmark-bmenu-save): Clear buffer modification if no marks.
3219
3220 2010-01-02 Karl Fogel <kfogel@red-bean.com>
3221
3222 * bookmark.el (bookmark-bmenu-marks-width): Define to 1, not 2.
3223 (bookmark-bmenu-list, bookmark-bmenu-bookmark): Calculate property
3224 positions by using `bookmark-bmenu-marks-width', instead of hardcoding.
3225 This fixes the `bookmark-bmenu-execute-deletions' bug reported here:
3226
3227 http://lists.gnu.org/archive/html/emacs-devel/2009-12/msg00819.html
3228 From: Sun Yijiang <sunyijiang {_AT_} gmail.com>
3229 To: emacs-devel {_AT_} gnu.org
3230 Subject: bookmark.el bug report
3231 Date: Mon, 28 Dec 2009 14:19:16 +0800
3232 Message-ID: 5065e2900912272219y3734fc9fsdaee41167ef99ad7@mail.gmail.com
3233
3234 2010-01-02 Karl Fogel <kfogel@red-bean.com>
3235
3236 * bookmark.el: Improvements suggested by Drew Adams:
3237 (bookmark-bmenu-ensure-position): New name for
3238 `bookmark-bmenu-check-position'. Just ensure the position,
3239 don't return any meaningful value.
3240 (bookmark-bmenu-header-height, bookmark-bmenu-marks-width):
3241 New constants.
3242
3243 2010-01-02 Juanma Barranquero <lekktu@gmail.com>
3244
3245 * bookmark.el (bookmarks-already-loaded): Doc fix (don't use `iff').
3246 (bookmark-yank-point, bookmark-bmenu-check-position):
3247 Fix typos in docstrings.
3248 (bookmark-save-flag, bookmark-bmenu-toggle-filenames)
3249 (bookmark-name-from-full-record, bookmark-get-position)
3250 (bookmark-set-position, bookmark-set, bookmark-handle-bookmark)
3251 (bookmark-delete, bookmark-save, bookmark-save, bookmark-bmenu-mode):
3252 Remove useless quoting of parenthesis, etc. in docstrings.
3253
3254 * ediff-mult.el (ediff-prepare-meta-buffer): Fix typo in help message.
3255 (ediff-append-custom-diff): Fix typo in error message.
3256 (ediff-meta-mark-equal-files): Fix typos in messages.
3257
3258 * mpc.el (mpc-playlist-delete): Fix typo in error messages.
3259
3260 * net/imap-hash.el (imap-hash-make): Doc fix.
3261 (imap-hash-test): Fix typo in error message; reflow docstring.
3262 (imap-hash-p, imap-hash-get, imap-hash-put, imap-hash-make-message)
3263 (imap-hash-count, imap-hash-server, imap-hash-port, imap-hash-ssl)
3264 (imap-hash-mailbox, imap-hash-user, imap-hash-password):
3265 Fix typos in docstrings.
3266 (imap-hash-open-connection): Fix typo in error message.
3267
3268 * play/gomoku.el (gomoku): Fix typos in docstring.
3269
3270 * progmodes/gdb-ui.el (gdb-location-alist): Reflow docstring.
3271 (gdb-jsonify-buffer): Fix typos in docstring.
3272 (gdb-goto-breakpoint): Fix typo in error message.
3273 ("Display Other Windows"): Fix typo in help message.
3274 (gdb-speedbar-expand-node): Fix typo in question.
3275
3276 * progmodes/idlw-help.el (idlwave-help-browse-url-available)
3277 (idlwave-html-system-help-location, idlwave-html-help-location)
3278 (idlwave-help-browser-function, idlwave-help-browser-generic-program)
3279 (idlwave-help-browser-generic-args, idlwave-help-directory)
3280 (idlwave-html-help-is-available, idlwave-help-mode-line-indicator)
3281 (idlwave-help-mode-map, idlwave-help-mode, idlwave-do-context-help)
3282 (idlwave-online-help, idlwave-help-html-link)
3283 (idlwave-help-show-help-frame, idlwave-help-assistant-command):
3284 Fix typos in docstrings.
3285 (idlwave-help-with-source, idlwave-help-find-routine-definition):
3286 Reflow docstrings.
3287 (idlwave-help-assistant-start): Fix typo in error message.
3288
3289 * progmodes/octave-mod.el (octave-mode, octave-electric-semi)
3290 (octave-electric-space): Fix typos in docstrings.
3291
3292 2010-01-01 Chong Yidong <cyd@stupidchicken.com>
3293
3294 * files.el (minibuffer-with-setup-hook): Doc fix (Bug#5149).
3295
3296 2010-01-01 Juri Linkov <juri@jurta.org>
3297
3298 * comint.el (comint-input-ring-size): Make it a defcustom and
3299 increase the default to 500 (Bug#5148).
3300
3301 2009-12-31 Nick Roberts <nickrob@snap.net.nz>
3302
3303 Further changes from EMACS_23_1_RC branch (2009-12-29 contd).
3304 * term/x-win.el (x-gtk-stock-map): Map some GUD buttons.
3305 * progmodes/gud.el (gud-menu-map): Add reverse-execution commands.
3306
3307 2009-12-30 Nick Roberts <nickrob@snap.net.nz>
3308
3309 Show working revision correctly for mercurial.
3310 * vc-hg.el (vc-hg-working-revision): Use hg parent instead of
3311 hg log as suggested by Alex Harsanyi <alexharsanyi@gmail.com>.
3312
3313 2009-12-29 Juanma Barranquero <lekktu@gmail.com>
3314
3315 Declare some functions for the byte-compiler.
3316 * progmodes/gdb-ui.el (speedbar-change-initial-expansion-list)
3317 (speedbar-timer-fn, speedbar-change-expand-button-char)
3318 (speedbar-delete-subblock, speedbar-center-buffer-smartly): Declare.
3319
3320 2009-12-29 Nick Roberts <nickrob@snap.net.nz>
3321
3322 This changeset reverts GDB Graphical Interface to use annotations.
3323 * progmodes/gdb-ui.el, progmodes/gud.el: Import from EMACS_23_1_RC.
3324
3325 2009-12-29 Dan Nicolaescu <dann@ics.uci.edu>
3326
3327 Make vc-dir work on subdirectories of the bzr root.
3328 * vc-bzr.el (vc-bzr-after-dir-status): Add new argument.
3329 Return file names relative to it.
3330 (vc-bzr-dir-status, vc-bzr-dir-status-files): Pass the bzr root
3331 relative directory to vc-bzr-after-dir-status.
3332
3333 2009-12-28 Tassilo Horn <tassilo@member.fsf.org>
3334
3335 * font-lock.el (font-lock-refresh-defaults): New function, which
3336 can be used to let font-lock react to external changes in
3337 variables like font-lock-defaults and keywords.
3338 See http://thread.gmane.org/gmane.emacs.devel/118777/focus=118802
3339
3340 2009-12-28 Dan Nicolaescu <dann@ics.uci.edu>
3341
3342 * vc-rcs.el (vc-rcs-register): Fix registering a specific version.
3343
3344 * vc-bzr.el (vc-bzr-log-view-mode): Fix short log regexp.
3345
3346 2009-12-28 Juanma Barranquero <lekktu@gmail.com>
3347
3348 Supersede color.diff settings in git log (bug#5211).
3349
3350 * vc-git.el (vc-git-print-log): Pass "--no-color" to log to avoid
3351 escape chars in its output when the user has color.diff set to `always'.
3352 This fix works on git 1.4.2 and newer (released on 2006-08-13).
3353
3354 2009-12-26 Kevin Ryde <user42@zip.com.au>
3355
3356 * info-look.el (sh-mode): Look for coreutils new "Concept Index"
3357 node. Keep previous "Index" name to work with past coreutils too.
3358
3359 * man.el (man): Revise docstring a bit to show -a and -l as
3360 examples. Add -k description since support for it has otherwise
3361 been a secret. (Further to bug#3717.)
3362 (Man-bgproc-sentinel): When "-k foo" produces no output show error
3363 "no matches" rather than "Can't find manpage", as the latter reads
3364 like -k was interpreted as a page name, which is not so. (Bug#5431)
3365
3366 2009-12-26 Michael Albinus <michael.albinus@gmx.de>
3367
3368 * net/tramp.el (tramp-handle-insert-directory): Quote "'" in the
3369 switches. Check also for //SUBDIRED// line.
3370
3371 2009-12-25 Kenichi Handa <handa@m17n.org>
3372
3373 * language/indian.el (devanagari-composable-pattern): Fixed to
3374 handle ZWNJ and ZWJ. Use it in composition-function-table for
3375 Devanagari.
3376 (malayalam-composable-pattern): Fix previous change.
3377
3378 2009-12-23 Vinicius Jose Latorre <viniciusjl@ig.com.br>
3379
3380 * ps-print.el (ps-face-attributes): It was not returning the
3381 attribute face for faces specified as string. Reported by harven
3382 <harven@free.fr>. (Bug#5254)
3383 (ps-print-version): New version 7.3.5.
3384
3385 2009-12-18 Ulf Jasper <ulf.jasper@web.de>
3386
3387 * calendar/icalendar.el (icalendar--convert-tz-offset):
3388 Fixed timezone names.
3389 (icalendar--convert-tz-offset): Fixed the "last-day-problem".
3390 (icalendar--add-diary-entry): Remove the trailing blank that
3391 diary-make-entry inserts.
3392
3393 2009-12-17 Michael Albinus <michael.albinus@gmx.de>
3394
3395 Make `file-expand-wildcards' work for remote files.
3396
3397 * files.el (file-expand-wildcards): In case of remote files, check
3398 only local file name part for wildcards. Provide feature 'files
3399 and subfeature 'remote-wildcards. (Bug#5198)
3400
3401 * net/tramp.el (tramp-handle-file-remote-p): Expand file name only
3402 if there is already an established connection.
3403 (tramp-advice-file-expand-wildcards): Remove it.
3404
3405 * net/tramp-compat.el (top): Autoload `tramp-handle-file-remote-p'.
3406 (tramp-advice-file-expand-wildcards): Moved from tramp.el.
3407 Activate advice for older GNU Emacs versions. (Bug#5237)
3408
3409 2009-12-17 Juanma Barranquero <lekktu@gmail.com>
3410
3411 Some doc fixes (more needed).
3412
3413 * find-cmd.el (find-constituents): Reflow docstring.
3414 (find-cmd, find-prune, find-command): Fix typos in docstrings.
3415 (find-generic): Doc fix.
3416
3417 2009-12-17 Juri Linkov <juri@jurta.org>
3418
3419 Fix regression from 23.1 to allow multiple modes in Local Variables.
3420
3421 * files.el (hack-local-variables-filter): While ignoring duplicates,
3422 don't take `mode' into account.
3423 (hack-local-variables-filter, hack-dir-local-variables):
3424 Don't remove duplicate `mode' from local-variables-alist (like `eval').
3425
3426 2009-12-17 Juri Linkov <juri@jurta.org>
3427
3428 Make `dired-diff' more safe. (Bug#5225)
3429
3430 * dired-aux.el (dired-diff): Signal an error when `file' equals to
3431 `current' or when `file' is a directory of the `current' file.
3432
3433 2009-12-17 Andreas Schwab <schwab@linux-m68k.org>
3434
3435 * emacs-lisp/autoload.el (batch-update-autoloads): Only exclude
3436 unconditionally preloaded files.
3437
3438 2009-12-16 Juri Linkov <juri@jurta.org>
3439
3440 Revert to old 23.1 logic of using the file at the mark as default.
3441 * dired-aux.el (dired-diff): Use the file at the mark as default
3442 if it's not the same as the current file, and the target dir is
3443 the current dir or the mark is active. Add the current file
3444 as the arg of `dired-dwim-target-defaults'. Use the default file
3445 in the prompt. (Bug#5225)
3446
3447 2009-12-15 Michael Albinus <michael.albinus@gmx.de>
3448
3449 * net/tramp.el (tramp-echo-mark-marker-length): New defconst.
3450 (tramp-echo-mark, tramp-echoed-echo-mark-regexp): Use it.
3451 (tramp-check-for-regexp): Check also, when an echoing shell stops
3452 to echo sent commands.
3453
3454 2009-12-14 Chong Yidong <cyd@stupidchicken.com>
3455
3456 * Makefile.in: Revert last change (Bug#5191).
3457
3458 2009-12-14 Dan Nicolaescu <dann@ics.uci.edu>
3459
3460 * vc-hg.el (vc-hg-print-log): Fix argument order.
3461 (vc-hg-working-revision): Make sure the command is executed in a
3462 known environment so that we can parse the output. (Bug#4417)
3463
3464 2009-12-14 Chong Yidong <cyd@stupidchicken.com>
3465
3466 * progmodes/python.el (python-symbol-completions): Remove text
3467 properties from symbol string before calling python-send-receive.
3468
3469 2009-12-14 Nick Roberts <nickrob@snap.net.nz>
3470
3471 * progmodes/gdb-mi.el (gdb-frame-handler): Only set gud-lat-frame
3472 when there are values for both file and line. (Bug#5060)
3473
3474 2009-12-14 Juri Linkov <juri@jurta.org>
3475
3476 * ediff-ptch.el (ediff-context-diff-label-regexp): Don't match
3477 whitespace after the file name of the first line of unified format,
3478 because git-diff doesn't output whitespace and file modification time
3479 after the file name.
3480
3481 2009-12-14 David Kastrup <dak@gnu.org>
3482
3483 * info.el (Info-hide-cookies-node): Before hiding a cookie,
3484 check if it already has the `display' property added by
3485 `Info-display-images-node', and not put the `invisible' property
3486 in this case.
3487
3488 2009-12-13 Glenn Morris <rgm@gnu.org>
3489
3490 * mail/emacsbug.el (message-sort-headers): Define for compiler.
3491 (report-emacs-bug): In message-mode, sort manually before storing
3492 original report text. (Bug#5178)
3493 Remove superfluous save-excursion.
3494
3495 2009-12-12 Michael Albinus <michael.albinus@gmx.de>
3496
3497 * net/dbus.el (dbus-property-handler): Filter lambda forms out
3498 when responding to "GetAll" properties.
3499
3500 2009-12-12 Chong Yidong <cyd@stupidchicken.com>
3501
3502 * simple.el (compose-mail): Remove mail-setup-with-from from
3503 customization checks.
3504
3505 2009-12-12 Eli Zaretskii <eliz@gnu.org>
3506
3507 * arc-mode.el (archive-rar-summarize): Support Attribute fields in
3508 RAR archives created on Unix systems.
3509
3510 2009-12-12 Stefan Monnier <monnier@iro.umontreal.ca>
3511
3512 * minibuffer.el (minibuffer-local-must-match-filename-map): Re-instate
3513 the varalias that was accidentally removed by the 2009-11-19 change
3514 (bug#5186).
3515
3516 2009-12-12 Kenichi Handa <handa@m17n.org>
3517
3518 * language/indian.el (indian-compose-regexp): New function.
3519 (malayalam-composable-pattern): Fix the pattern.
3520 (composition-function-table): Set malayalam-composable-pattern for
3521 Malayalam characters.
3522
3523 2009-12-11 Chong Yidong <cyd@stupidchicken.com>
3524
3525 * progmodes/bug-reference.el (bug-reference-map): Bind mouse-2
3526 rather than down-mouse-1, based on follow-link conventions.
3527
3528 * makefile.w32-in: Ensure that Lisp files in CEDET subdirectories
3529 are compiled.
3530
3531 2009-12-11 Michael McNamara <mac@mail.brushroad.com>
3532
3533 * progmodes/verilog-mode.el (verilog-vmm-begin-re, verilog-vmm-end-re)
3534 (verilog-vmm-statement-re, verilog-ovm-statement-re)
3535 (verilog-defun-level-not-generate-re, verilog-calculate-indent)
3536 (verilog-leap-to-head, verilog-backward-token):
3537 Fix indenting VMM macros. Reported by Jonathan Ashbrook.
3538
3539 2009-12-11 Wilson Snyder <wsnyder@wsnyder.org>
3540
3541 * progmodes/verilog-mode.el (verilog-auto-lineup)
3542 (verilog-nameable-item-re): Cleanup user-visible spelling and
3543 documentation errors. One reported by Gary Delp.
3544 (verilog-submit-bug-report): Mention bug tracking and CC co-author.
3545 (verilog-read-decls): Fix AUTOWIRE with types declared in a
3546 package, bug195. Reported by Pierre-David Pfister.
3547
3548 2009-12-11 Glenn Morris <rgm@gnu.org>
3549
3550 * progmodes/cc-engine.el (safe-pos-list): Define for compiler.
3551
3552 * mail/emacsbug.el: No longer require sendmail.
3553 Replace sendmail's `mail-text' by `rfc822-goto-eoh'. (Bug#5174)
3554 (report-emacs-bug-orig-text): Doc fix.
3555 (report-emacs-bug-send-command, report-emacs-bug-send-hook):
3556 New local variables, to adapt to different mail-user-agents.
3557 (report-emacs-bug): Fix test for a gnu.org address.
3558 Use overlays for emphasis, since font-lock defeats 'face property.
3559 Pretest bugs also end up at the newsgroup these days.
3560 Stop message-mode stripping text properties.
3561 Set and use the new buffer-local variables.
3562 (report-emacs-bug-hook): Add doc-string.
3563 Remove some unnecessary save-excursions and simplify.
3564 Use the appropriate hook and send-command.
3565
3566 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Standardize the
3567 capitalization of some menu entries.
3568
3569 2009-12-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
3570
3571 * whitespace.el (whitespace-display-char-on):
3572 Ensure `buffer-display-table' is unique when two or more windows are
3573 visible. Reported by Martin Pohlack <mp26@os.inf.tu-dresden.de>.
3574 New version 12.1.
3575
3576 2009-12-10 Eli Zaretskii <eliz@gnu.org>
3577
3578 * arc-mode.el (archive-rar-summarize): Allow between 6 and 7
3579 characters in the Attribute field.
3580
3581 2009-12-10 Dan Nicolaescu <dann@ics.uci.edu>
3582
3583 * vc-svn.el (vc-svn-after-dir-status): Fix regexp. (Bug#4741)
3584
3585 2009-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
3586
3587 Let loaddefs.el adjust to changes in autoload-excludes (bug#5162).
3588 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
3589 Disregard autoload-excludes.
3590 (update-directory-autoloads): Obey autoload-excludes here instead.
3591 But don't store its contents in no-autoloads and remove entries that
3592 refer to excludes files.
3593
3594 2009-12-10 Glenn Morris <rgm@gnu.org>
3595
3596 * mail/feedmail.el (top-level): Move require 'mail-utils to start.
3597 (expand-mail-aliases): Define for compiler.
3598
3599 * vc-annotate.el (log-view-vc-backend, log-view-vc-fileset):
3600 Define for compiler.
3601
3602 * mail/emacsbug.el (report-emacs-bug): Use whichever send command is
3603 appropriate for the mail-user-agent in use.
3604
3605 2009-12-09 Michael Albinus <michael.albinus@gmx.de>
3606
3607 * net/tramp.el (tramp-handle-insert-directory): Suppress error messages.
3608
3609 2009-12-09 Dan Nicolaescu <dann@ics.uci.edu>
3610
3611 Fix short log parsing and fontification.
3612 * vc-bzr.el (vc-bzr-log-view-mode): Match dot in revision number.
3613 Fix fontification for the [merge] label.
3614
3615 2009-12-09 Vivek Dasmohapatra <vivek@etla.org>
3616
3617 Drop some properties to avoid surprises.
3618 * htmlfontify.el (hfy-ignored-properties): New defcustom.
3619 (hfy-fontify-buffer): Use it.
3620
3621 2009-12-09 Stefan Monnier <monnier@iro.umontreal.ca>
3622
3623 Minor cleanup.
3624 * ffap.el (ffap-symbol-value): Replace ffap-soft-value.
3625 Adjust all callers.
3626 (ffap-locate-file): Remove unused arg `dir-ok' and make other
3627 args compulsory. Adjust callers.
3628 (ffap-gopher-at-point): Remove unused var `name'.
3629
3630 Get rid of the ELCFILES abomination.
3631 * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
3632 (compile-elcfiles): New phony target.
3633 (compile-main): Compute ELCFILES dynamically.
3634 (compile-clean): New target to remove left-over elc files.
3635 (compile, all): Use it.
3636
3637 2009-12-09 Kenichi Handa <handa@etlken>
3638
3639 * international/mule-diag.el: Require help-mode instead of help-fns.
3640
3641 2009-12-09 Kenichi Handa <handa@m17n.org>
3642
3643 * international/mule-cmds.el (ucs-names): Supply sufficiently
3644 fine ranges instead of pre-calculating accurate ranges.
3645 Iterate with bigger gc-cons-threshold.
3646
3647 2009-12-08 Dan Nicolaescu <dann@ics.uci.edu>
3648
3649 Add support for stashing a snapshot of the current tree.
3650 * vc-git.el (vc-git-stash-snapshot): New function.
3651 (vc-git-stash-map, vc-git-extra-menu-map): Add a mapping for it.
3652
3653 2009-12-08 Jose E. Marchesi <jemarch@gnu.org>
3654
3655 * play/gomoku.el (gomoku-mode-map): Remap `move-(beginning|end)-of-line'
3656 instead of `(beginning|end)-of-line'.
3657
3658 2009-12-08 Glenn Morris <rgm@gnu.org>
3659
3660 * vc-mtn.el (vc-mtn-print-log): Fix typo in previous.
3661
3662 * Makefile.in (ELCFILES): Regenerate.
3663
3664 2009-12-07 Juri Linkov <juri@jurta.org>
3665
3666 Don't lazy-highlight the comint output in history Isearch mode.
3667
3668 * comint.el (comint-history-isearch-search): Instead of
3669 `comint-line-beginning-position', use `comint-after-pmark-p'
3670 to check if point if before the process mark, and go to
3671 `process-mark' in this case.
3672
3673 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
3674
3675 * textmodes/tex-mode.el (latex-complete)
3676 (latex-indent-or-complete): Remove.
3677 (latex-mode): Set completion-at-point-functions instead.
3678
3679 Provide a standard completion command and hook it into TAB.
3680 * minibuffer.el (completion-at-point-functions): New var.
3681 (completion-at-point): New command.
3682 * indent.el (indent-for-tab-command): Handle the `complete' behavior.
3683 * progmodes/python.el (python-mode-map): Use completion-at-point.
3684 (python-completion-at-point): Rename from python-partial-symbol and
3685 adjust for use in completion-at-point-functions.
3686 (python-mode): Setup completion-at-point for Python completion.
3687 * emacs-lisp/lisp.el (lisp-completion-at-point): New function
3688 extracted from lisp-complete-symbol.
3689 (lisp-complete-symbol): Use it.
3690 * emacs-lisp/lisp-mode.el (emacs-lisp-mode): Use define-derived-mode,
3691 setup completion-at-point for Elisp completion.
3692 (emacs-lisp-mode-map, lisp-interaction-mode-map):
3693 Use completion-at-point.
3694 * ielm.el (ielm-map): Use completion-at-point.
3695 (inferior-emacs-lisp-mode): Setup completion-at-point-functions.
3696 * progmodes/sym-comp.el: Move to...
3697 * obsolete/sym-comp.el: Move from progmodes.
3698
3699 2009-12-07 Eli Zaretskii <eliz@gnu.org>
3700
3701 Prevent save-buffer in Rmail buffers from using the coding-system
3702 of the current message, and from clobbering the encoding mnemonics
3703 in the mode line (Bug#4623).
3704
3705 * mail/rmail.el (rmail-swap-buffers): Swap encoding and modified
3706 flag, too.
3707 (rmail-message-encoding): New variable.
3708 (rmail-write-region-annotate): Record the encoding of the current
3709 message in rmail-message-encoding.
3710 (rmail-after-save-hook): New function, restores the encoding of
3711 the current message after the message collection is saved.
3712
3713 2009-12-07 Juri Linkov <juri@jurta.org>
3714
3715 * progmodes/grep.el (grep-read-files): Use `completing-read'
3716 instead of `read-string'. Set its `collection' arg to
3717 `read-file-name-internal'. (Bug#4301)
3718
3719 2009-12-07 Juri Linkov <juri@jurta.org>
3720
3721 Correctly restore original Isearch point. (Bug#4994)
3722
3723 * isearch.el (isearch-mode): Move `isearch-push-state' after
3724 `(run-hooks 'isearch-mode-hook)'.
3725 (isearch-cancel): When `isearch-push-state-function' is defined,
3726 let-bind `isearch-cmds' to the first state (the last element of
3727 `isearch-cmds') and call `isearch-top-state' (it calls pop-state
3728 function and restores the original point). Otherwise, move point
3729 to `isearch-opoint'.
3730
3731 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
3732
3733 * international/mule-cmds.el (ucs-names): Weed out at compile-time the
3734 chars that don't have names, so the table can be built much faster at
3735 run-time.
3736
3737 2009-12-07 Chong Yidong <cyd@stupidchicken.com>
3738
3739 * vc-bzr.el (vc-bzr-annotate-command): More elegant form for last
3740 change. Suggested by David Kastrup.
3741
3742 * simple.el (compose-mail): Check for incompatibilities and warn.
3743 (compose-mail-user-agent-warnings): New option.
3744
3745 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
3746
3747 Support showing a single log entry from vc-annotate.
3748 * vc.el (print-log): Add a new argument: START-REVISION.
3749 (vc-print-log-internal): Add a new optional argument and
3750 pass it to the backend.
3751 (vc-print-log, vc-print-root-log): Adjust callers.
3752 * vc-annotate.el (vc-annotate-show-log-revision-at-line): If a
3753 buffer already displays the requested log entry, use it.
3754 Otherwise display only the log entry in question.
3755 * vc-svn.el (vc-svn-print-log):
3756 * vc-mtn.el (vc-mtn-print-log):
3757 * vc-hg.el (vc-hg-state):
3758 * vc-git.el (vc-git-print-log): Add support for new argument START-REVISION.
3759 (vc-git-show-log-entry): Return t on success.
3760 * vc-bzr.el (vc-bzr-print-log): Add support new argument START-REVISION.
3761 (vc-bzr-show-log-entry): Return t on success.
3762 * vc-rcs.el (vc-rcs-print-log):
3763 * vc-sccs.el (vc-sccs-print-log):
3764 * vc-cvs.el (vc-cvs-print-log): Add new argument, ignore it.
3765
3766 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
3767
3768 * ediff-mult.el (ediff-setup-meta-map, ediff-prepare-meta-buffer):
3769 Add menus to the meta mode. (Bug#5043)
3770
3771 2009-12-07 Michael Kifer <kifer@cs.stonybrook.edu>
3772
3773 * ediff-init.el (ediff-event-key): Use event-to-character instead of
3774 event-key.
3775
3776 * ediff.el (ediff-buffers-internal): Add unwind-protect.
3777
3778 2009-12-07 Michael Albinus <michael.albinus@gmx.de>
3779
3780 Handle prompt rules of ksh in OpenBSD 4.5. Reported by Raphaël
3781 Berbain <raphael.berbain@gmail.com>.
3782
3783 * net/tramp.el (tramp-end-of-output): Move up. Use `#' and `$'
3784 characters.
3785 (tramp-initial-end-of-output): New defconst.
3786 (tramp-methods, tramp-find-shell)
3787 (tramp-open-connection-setup-interactive-shell)
3788 (tramp-maybe-open-connection): Use it.
3789 (tramp-shell-prompt-pattern, tramp-wait-for-output):
3790 Handle existence of `#' and `$'.
3791
3792 * net/tramp-fish.el (tramp-fish-maybe-open-connection):
3793 Use `tramp-initial-end-of-output'.
3794
3795 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
3796
3797 Get the background mode from the terminal for xterm, and set
3798 faces accordingly.
3799 * term/xterm.el (xterm-set-background-mode): New function.
3800 (terminal-init-xterm): Use it in case xterm supports background
3801 color queries. Recompute faces after getting the background
3802 color.
3803
3804 2009-12-07 Ulrich Mueller <ulm@gentoo.org>
3805
3806 * emacs-lisp/bytecomp.el (byte-compile-insert-header): Put the version
3807 number comment back on its own line, for easier parsing.
3808
3809 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
3810
3811 Make it work for non-file buffers (bug#5102).
3812 * doc-view.el (doc-view-current-cache-dir):
3813 Use doc-view-buffer-file-name rather than buffer-file-name.
3814 (doc-view-mode): Use buffer-name when buffer-file-name is nil.
3815
3816 2009-12-06 Óscar Fuentes <ofv@wanadoo.es>
3817
3818 * vc-bzr.el (vc-bzr-annotate-command): Handle the case where the
3819 author field is too short.
3820
3821 2009-12-06 Dan Nicolaescu <dann@ics.uci.edu>
3822
3823 * vc-git.el (vc-git-print-log): Handle a limit argument.
3824 Display the short log in graph form and with labels.
3825 (vc-git-log-view-mode): Handle labels.
3826
3827 Make vc-revert change VC state from 'added to 'unregistered.
3828 * vc-git.el (vc-git-revert): Call git reset first.
3829
3830 2009-12-06 Ulf Jasper <ulf.jasper@web.de>
3831
3832 * net/newst-backend.el, net/newst-plainview.el:
3833 * net/newst-reader.el, net/newst-ticker.el:
3834 * net/newst-treeview.el, net/newsticker.el:
3835 Require/provide newst-... (instead of newsticker-...). (Bug#5096)
3836
3837 2009-12-06 Chong Yidong <cyd@stupidchicken.com>
3838
3839 * log-view.el (log-view-mode-map): Bind "=" to log-view-diff too.
3840
3841 * vc-bzr.el (vc-bzr-annotate-command): Show author in annotation.
3842 Handle empty author field (Bug#4144). Suggested by Óscar Fuentes.
3843 (vc-bzr-annotate-time, vc-bzr-annotate-extract-revision-at-line):
3844 Update annotation regexp.
3845
3846 * simple.el (beginning-of-visual-line): Constrain to field
3847 boundaries (Bug#5106).
3848
3849 2009-12-06 Ulf Jasper <ulf.jasper@web.de>
3850
3851 * xml.el (xml-substitute-numeric-entities):
3852 Move newsticker--decode-numeric-entities in newst-backend.el to
3853 xml-substitute-numeric-entities in xml.el. (Bug#5008)
3854 * net/newst-backend.el (newsticker--parse-generic-feed)
3855 (newsticker--parse-generic-items)
3856 (newsticker--decode-numeric-entities):
3857 Move newsticker--decode-numeric-entities in newst-backend.el to
3858 xml-substitute-numeric-entities in xml.el. (Bug#5008)
3859
3860 2009-12-06 Daniel Colascione <dan.colascione@gmail.com>
3861
3862 * progmodes/js.el (js--js-not): Add null to the list of values.
3863
3864 2009-12-06 Chong Yidong <cyd@stupidchicken.com>
3865
3866 * ansi-color.el (ansi-color-for-comint-mode): Add :version keyword.
3867
3868 2009-12-06 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
3869
3870 * textmodes/bibtex.el (bibtex-enclosing-field): Exclude entry
3871 delimiter if it is at the end of the current line.
3872 (bibtex-generate-url-list): Fix docstring.
3873
3874 2009-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
3875
3876 * minibuffer.el (minibuffer-complete-and-exit): Don't replace the
3877 minibuffer's content with itself.
3878 Fold the confirm-after-completion case into the `confirm' case.
3879 (completion-pcm-word-delimiters): Add : and / to the delimiters.
3880
3881 2009-12-06 Kevin Ryde <user42@zip.com.au>
3882
3883 * ffap.el (ffap-rfc-path): Make this a defcustom since
3884 `ffap-rfc-directories' is also a defcustom. (Bug#4514.)
3885
3886 * info-look.el: Add setup for apropos-mode to use emacs-lisp-mode
3887 manuals, similar to existing setup for help-mode. (Bug#3913.)
3888
3889 2009-12-05 Juri Linkov <juri@jurta.org>
3890
3891 Save and restore dired buffer's point positions too. (Bug#4880)
3892
3893 * dired.el (dired-save-positions): Return in the first element
3894 buffer's position in format (BUFFER DIRED-FILENAME BUFFER-POINT).
3895 Doc fix.
3896 (dired-restore-positions): First restore buffer's position.
3897 While restoring window's positions, check if window still displays
3898 the original buffer.
3899
3900 2009-12-05 Chong Yidong <cyd@stupidchicken.com>
3901
3902 * bindings.el (complete-symbol): Call semantic-ia-complete-symbol
3903 if possible.
3904
3905 * shell.el (shell): Require ansi-color (Bug#5113).
3906
3907 * ansi-color.el (ansi-color-for-comint-mode): Default to t.
3908
3909 * hl-line.el (global-hl-line-highlight): Minor doc fix (Bug#4925).
3910
3911 2009-12-05 Alan Mackenzie <acm@muc.de>
3912
3913 * progmodes/cc-mode.el (c-before-hack-hook)
3914 (c-postprocess-file-styles): Revert change 2009-07-18T21:03:43Z!acm@muc.de to permit
3915 `c-file-style' to work again. This reversion restores the current
3916 software to its state in Emacs 23.1. (Bug#4146)
3917
3918 2009-12-05 Kevin Ryde <user42@zip.com.au>
3919
3920 * textmodes/sgml-mode.el (sgml-lexical-context):
3921 Recognise comment-start-skip to comment-end-skip as comment (Bug#4781).
3922
3923 2009-12-05 Juri Linkov <juri@jurta.org>
3924
3925 * info.el (Info-find-node-2): Set `Info-current-subfile' to nil
3926 for virtual nodes. (Bug#4147)
3927 (Info-find-node-2): Set `Info-current-node-virtual' to nil
3928 when moving from a virtual node.
3929 (Info-mode-menu): Add `Info-virtual-index' to the menu.
3930 (Info-mode): Add `Info-virtual-index' to the docstring.
3931
3932 2009-12-05 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
3933
3934 * textmodes/bibtex.el (bibtex-map-entries): Use marker to keep
3935 track of the buffer position of the end of a BibTeX entry as this
3936 position may change during reformatting.
3937 (bibtex-format-entry): Remove whitespace before processing
3938 numerical fields so that we recognize the latter properly.
3939 (bibtex-reformat): Do not use push which changes the global value
3940 of bibtex-entry-format.
3941 (bibtex-field-braces-alist, bibtex-field-strings-alist)
3942 (bibtex-field-re-init): Replace only space characters by regexp
3943 for whitespace.
3944 (bibtex-generate-url-list, bibtex-cite-matcher-alist): Fix docstring.
3945 (bibtex-initialize): Also update bibtex-strings.
3946 (bibtex-kill-field): Preserve white space at end of entry.
3947 (bibtex-kill-entry, bibtex-yank-pop, bibtex-insert-kill):
3948 Update bibtex-reference-keys.
3949
3950 2009-12-05 Stefan Monnier <monnier@iro.umontreal.ca>
3951
3952 * minibuffer.el (completion-pcm--merge-try): Also consider placing
3953 point after a star, if that's the only place where modifications can
3954 make progress.
3955
3956 2009-12-05 Dan Nicolaescu <dann@ics.uci.edu>
3957
3958 * vc-dir.el (vc-dir): Use the correct markup for showing keymaps
3959 in docstrings.
3960
3961 2009-12-04 Juri Linkov <juri@jurta.org>
3962
3963 * proced.el (proced): Call `(proced-update t)' to update process
3964 information instead of only running proced-post-display-hook.
3965 (proced-send-signal): Add a leading space to the buffer name
3966 " *Marked Processes*" to make this buffer ephemeral.
3967
3968 2009-12-04 Juri Linkov <juri@jurta.org>
3969
3970 * dired.el (dired-auto-revert-buffer): New defcustom.
3971 (dired-internal-noselect): Use it.
3972
3973 2009-12-04 Juri Linkov <juri@jurta.org>
3974
3975 Change roles of modes and functions in image-mode.el (Bug#5062).
3976
3977 * image-mode.el: Replace `image-mode-maybe' with `image-mode'
3978 in `auto-mode-alist'.
3979 (image-mode-previous-major-mode): New variable.
3980 (image-minor-mode-map): Rename from `image-mode-text-map'.
3981 (image-mode): Move graceful error-handling code from
3982 `image-minor-mode' to here. On errors call `image-mode-as-text'.
3983 (image-minor-mode): Remove all image-handling code.
3984 Replace `image-mode-text-map' with `image-minor-mode-map'.
3985 Check for `image-type' in mode-line format string.
3986 (image-mode-maybe): Make obsolete with an alias to `image-mode'.
3987 (image-mode-as-text): New function with most code from
3988 `image-mode-maybe'.
3989 (image-toggle-display-text): Move code that removes image
3990 properties from `image-toggle-display' to here.
3991 (image-toggle-display-image): New function with code that adds
3992 image properties copied from `image-toggle-display'.
3993 (image-toggle-display): Remove most code with leaving only code
3994 that toggles between `image-mode-as-text' and `image-mode'.
3995
3996 2009-12-04 Ulf Jasper <ulf.jasper@web.de>
3997
3998 * net/newst-treeview.el
3999 (newsticker--treeview-list-highlight-start): Restored call to
4000 save-excursion: Selected item was stuck.
4001 (newsticker--treeview-list-select): New.
4002 (newsticker--treeview-item-show-text)
4003 (newsticker--treeview-item-show)
4004 (newsticker--treeview-item-update): Use new
4005 newsticker-treeview-item-mode.
4006 (newsticker-treeview-update): Keep current item.
4007 (newsticker-treeview-next-new-or-immortal-item): Doc change.
4008 (newsticker--treeview-first-feed): Doc change.
4009 (newsticker-treeview-list-menu)
4010 (newsticker-treeview-item-menu): Added menu entries.
4011 (newsticker-treeview-item-mode): New.
4012
4013 * net/newst-backend.el (newsticker-customize): Delete other
4014 windows.
4015
4016 2009-12-04 Sam Steingold <sds@gnu.org>
4017
4018 * log-view.el (log-view-mode-map): "q" calls quit-window,
4019 like in all the other non-self-insert buffers.
4020
4021 2009-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
4022
4023 Minor cleanup.
4024 * term.el (term-send-raw, term-send-raw-meta): Use read-key-sequence's
4025 key decoding rather than do it manually via last-input-event +
4026 ascii-character.
4027 (term-exec): Use delete-and-extract-region.
4028 (term-handle-ansi-terminal-messages): Remove unused var `end'.
4029 (term-process-pager): Remove unused var `i'.
4030 (term-dynamic-simple-complete): Make obsolete.
4031 (serial-update-config-menu): Remove unused vars `y' and `str'.
4032 (term-update-mode-line): Remove unused var `temp'.
4033
4034 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
4035
4036 Limit the number of log entries displayed by default.
4037 * vc.el (vc-print-log-internal): Fix check for limit-unsupported.
4038 (vc-print-log, vc-print-root-log): Use vc-log-show-limit when not
4039 using a prefix argument.
4040
4041 2009-12-03 Glenn Morris <rgm@gnu.org>
4042
4043 * progmodes/idlwave.el (class): Restore still useful declaration.
4044
4045 2009-12-03 Alan Mackenzie <acm@muc.de>
4046
4047 Enhance `c-parse-state' to run efficiently in "brace deserts".
4048
4049 * progmodes/cc-mode.el (c-basic-common-init):
4050 Call c-state-cache-init.
4051 (c-neutralize-syntax-in-and-mark-CPP): Rename from
4052 c-extend-and-neutralize-syntax-in-CPP. Mark each CPP construct by
4053 placing `category' properties value 'c-cpp-delimiter at its boundaries.
4054
4055 * progmodes/cc-langs.el (c-before-font-lock-function):
4056 c-extend-and-neutralize-syntax-in-CPP has been renamed
4057 c-neutralize-syntax-in-and-mark-CPP.
4058
4059 * progmodes/cc-fonts.el (c-cpp-matchers): Mark template brackets
4060 with `category' properties now, not `syntax-table' ones.
4061
4062 * progmodes/cc-engine.el (c-syntactic-end-of-macro): A new
4063 enhanced (but slower) version of c-end-of-macro that won't land
4064 inside a literal or on another awkward character.
4065 (c-state-cache-too-far, c-state-cache-start)
4066 (c-state-nonlit-pos-interval, c-state-nonlit-pos-cache)
4067 (c-state-nonlit-pos-cache-limit, c-state-point-min)
4068 (c-state-point-min-lit-type, c-state-point-min-lit-start)
4069 (c-state-min-scan-pos, c-state-brace-pair-desert)
4070 (c-state-old-cpp-beg, c-state-old-cpp-end): New constants and
4071 buffer local variables.
4072 (c-state-literal-at, c-state-lit-beg)
4073 (c-state-cache-non-literal-place, c-state-get-min-scan-pos)
4074 (c-state-mark-point-min-literal, c-state-cache-top-lparen)
4075 (c-state-cache-top-paren, c-state-cache-after-top-paren)
4076 (c-get-cache-scan-pos, c-get-fallback-scan-pos)
4077 (c-state-balance-parens-backwards, c-parse-state-get-strategy)
4078 (c-renarrow-state-cache)
4079 (c-append-lower-brace-pair-to-state-cache)
4080 (c-state-push-any-brace-pair, c-append-to-state-cache)
4081 (c-remove-stale-state-cache)
4082 (c-remove-stale-state-cache-backwards, c-state-cache-init)
4083 (c-invalidate-state-cache-1, c-parse-state-1)
4084 (c-invalidate-state-cache): New defuns/defmacros/defsubsts.
4085 (c-parse-state): Enhance and refactor.
4086 (c-debug-parse-state): Amend to deal with all the new variables.
4087
4088 * progmodes/cc-defs.el (c-<-as-paren-syntax, c-mark-<-as-paren)
4089 (c->-as-paren-syntax, c-mark->-as-paren, c-unmark-<->-as-paren):
4090 modify to use category text properties rather than syntax-table ones.
4091 (c-suppress-<->-as-parens, c-restore-<->-as-parens): New defsubsts
4092 to switch off/on the syntactic paren property of C++ template
4093 delimiters using the category property.
4094 (c-with-<->-as-parens-suppressed): Macro to invoke code with
4095 template delims suppressed.
4096 (c-cpp-delimiter, c-set-cpp-delimiters, c-clear-cpp-delimiters):
4097 New constant/macros which apply category properties to the start
4098 and end of preprocessor constructs.
4099 (c-comment-out-cpps, c-uncomment-out-cpps): Defsubsts which
4100 "comment out" the syntactic value of characters in preprocessor
4101 constructs.
4102 (c-with-cpps-commented-out)
4103 (c-with-all-but-one-cpps-commented-out): Macros to invoke code
4104 with characters in all or all but one preprocessor constructs
4105 "commented out".
4106
4107 2009-12-03 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
4108
4109 * proced.el (proced-filter-alist): Use regexp-quote.
4110
4111 2009-12-03 Michael Albinus <michael.albinus@gmx.de>
4112
4113 Cleanup.
4114 * eshell/em-unix.el (top): Require 'esh-opt and 'pcomplete.
4115 (eshell/su, eshell/sudo): Require 'tramp. Fix problems reading
4116 arguments. Expand `default-directory'.
4117
4118 * net/tramp.el (tramp-handle-file-remote-p): Expand FILENAME for
4119 the benefit of returning an expanded localname.
4120 (tramp-tramp-file-p): Handle the case NAME is not a string.
4121
4122 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
4123
4124 Add support for bzr shelve/unshelve.
4125 * vc-bzr.el (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
4126 (vc-bzr-extra-menu-map): New variables.
4127 (vc-bzr-extra-menu, vc-bzr-extra-status-menu, vc-bzr-shelve)
4128 (vc-bzr-shelve-apply, vc-bzr-shelve-list)
4129 (vc-bzr-shelve-get-at-point, vc-bzr-shelve-delete-at-point)
4130 (vc-bzr-shelve-apply-at-point, vc-bzr-shelve-menu): New functions.
4131 (vc-bzr-dir-extra-headers): Display shelves.
4132
4133 * vc-bzr.el (vc-bzr-print-log): Deal with nil arguments better.
4134
4135 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
4136
4137 * textmodes/bibtex.el (bibtex-complete-internal):
4138 Use completion-in-region.
4139 (bibtex-text-in-field-bounds): Remove unused var `opoint'.
4140
4141 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
4142
4143 Support applying stashes. Improve UI.
4144 * vc-git.el (vc-git-dir-extra-headers): Add tooltips.
4145 (vc-git-stash-apply, vc-git-stash-pop)
4146 (vc-git-stash-apply-at-point, vc-git-stash-pop-at-point)
4147 (vc-git-stash-menu): New functions.
4148 (vc-git-stash-menu-map): New variable.
4149 (vc-git-stash-map): Add bindings to popup a menu and to apply stashes.
4150
4151 2009-12-03 Glenn Morris <rgm@gnu.org>
4152
4153 * vc.el (log-view-vc-backend, log-view-vc-fileset): Declare.
4154 (vc-print-log-internal): Fix previous change.
4155 (vc-revert): Correct pluralization.
4156
4157 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
4158
4159 * progmodes/make-mode.el (makefile-special-targets-list): No need for
4160 it to be an alist any more.
4161 (makefile-complete): Use completion-in-region.
4162
4163 * progmodes/octave-mod.el (octave-complete-symbol):
4164 Use completion-in-region.
4165
4166 Misc cleanup.
4167 * progmodes/idlwave.el (idlwave-comment-hook): Simplify with `or'.
4168 (idlwave-code-abbrev, idlwave-display-user-catalog-widget)
4169 (idlwave-complete-class): Don't quote lambda.
4170 (idlwave-find-symbol-syntax-table, idlwave-mode-syntax-table)
4171 (idlwave-mode-map): Move initialization into declaration.
4172 (idlwave-action-and-binding): Use backquotes.
4173 (idlwave-in-quote, idlwave-reset-sintern, idlwave-complete-in-buffer):
4174 Simplify.
4175 (idlwave-is-pointer-dereference): Remove unused var `pos'.
4176 (idlwave-xml-create-rinfo-list): Remove unused var `entry'.
4177 (idlwave-convert-xml-clean-sysvar-aliases): Remove unused vars `new',
4178 `parts', and `all-parts'.
4179 (idlwave-xml-create-sysvar-alist): Remove unused var `fields'.
4180 (idlwave-convert-xml-system-routine-info): Remove unused string
4181 `version-string'.
4182 (idlwave-display-user-catalog-widget): Use dolist.
4183 (idlwave-scanning-lib): Declare dynamically-scoped var.
4184 (idlwave-scan-library-catalogs): Remove unused var `flags'.
4185 (completion-highlight-first-word-only): Declare to silence bytecomp.
4186 (idlwave-popup-select): Tighten scope of `resp'.
4187 (idlwave-find-struct-tag): Remove unused var `beg'.
4188 (idlwave-after-load-rinfo-hook): Declare.
4189 (idlwave-sintern-class-info): Remove unused var `taglist'.
4190 (idlwave-find-class-definition): Remove unused var `list'.
4191 (idlwave-complete-sysvar-tag-help): Remove unused var `main-base'.
4192 (idlwave-what-module-find-class): Remove unused var `classes'.
4193
4194 2009-12-03 Juanma Barranquero <lekktu@gmail.com>
4195
4196 * progmodes/pascal.el: Require CL when compiling (for lexical-let).
4197
4198 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
4199
4200 * hippie-exp.el (try-expand-dabbrev-visible): Preserve point in the
4201 buffers visited. Remove redundant current-buffer-saving.
4202
4203 2009-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
4204
4205 Use completion-in-buffer and remove uses of dynamic scoping.
4206 * progmodes/pascal.el (pascal-str, pascal-all, pascal-pred)
4207 (pascal-buffer-to-use, pascal-flag): Don't declare.
4208 (pascal-func-completion, pascal-type-completion, pascal-var-completion)
4209 (pascal-get-completion-decl, pascal-keyword-completion):
4210 Add `pascal-str' argument, save-excursion,
4211 return the found completions, and don't filter with pascal-pred.
4212 (pascal-completion-cache): New var.
4213 (pascal-completion): Don't switch buffer any more (it was never
4214 necessary). Don't save-excursion any more (it's done by the called
4215 subroutines). Use a cache to avoid redundant computations.
4216 Use complete-with-action rather than pascal-completion-response and
4217 let it apply the predicate as well.
4218 (pascal-complete-word): Use completion-in-buffer when
4219 pascal-toggle-completions is nil.
4220 (pascal-show-completions): Don't bind pascal-buffer-to-use since it's
4221 not used any more.
4222 (pascal-comp-defun): Don't change buffer any more.
4223 Use complete-with-action rather than pascal-completion-response and
4224 let it apply the predicate as well.
4225 (pascal-goto-defun): Change buffer before calling pascal-comp-defun
4226 when neded.
4227
4228 2009-12-02 Kenichi Handa <handa@m17n.org>
4229
4230 * language/indian.el: Include ZWJ and ZWNJ in the patterns to
4231 shape for all Indic scripts.
4232
4233 2009-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
4234
4235 Use completion-in-buffer.
4236 * wid-edit.el (widget-field-text-end): New function.
4237 (widget-field-value-get): Use it.
4238 (widget-string-complete, widget-file-complete)
4239 (widget-color-complete): Use it and completion-in-region.
4240 (widget-complete): Don't narrow the buffer.
4241
4242 2009-12-02 Glenn Morris <rgm@gnu.org>
4243
4244 * mail/rmail.el (rmail-pop-to-buffer): New function. (Bug#2282)
4245 (rmail-select-summary): Use rmail-pop-to-buffer.
4246 * mail/rmailsum.el: Replace all pop-to-buffer calls with
4247 rmail-pop-to-buffer, to prevent horizontal splits.
4248
4249 * calendar/diary-lib.el (diary-list-entries): Replace superfluous
4250 save-excursion with save-current-buffer.
4251 Widen before searching. (Bug#5093)
4252 (diary-list-sexp-entries): Remove superfluous save-excursion.
4253
4254 2009-12-02 Michael Welsh Duggan <mwd@cert.org>
4255
4256 * woman.el (woman-make-bufname): Handle man-pages with "." in the
4257 name. (Bug#5038)
4258
4259 2009-12-02 Andreas Politz <politza@fh-trier.de> (tiny change)
4260
4261 * ido.el (ido-file-internal): Handle filenames at point that do
4262 not have a directory part. (Bug#5049)
4263
4264 2009-12-02 Juanma Barranquero <lekktu@gmail.com>
4265
4266 * mpc.el (mpc-intersection, mpc-host, mpc-songs-playlist)
4267 (mpc-songs-jump-to, mpc-resume): Doc fixes.
4268
4269 2009-12-01 Rob Riepel <riepel@networking.Stanford.EDU>
4270
4271 * emulation/tpu-extras.el (tpu-cursor-free-mode): Emit message.
4272 (tpu-set-cursor-free, tpu-set-cursor-bound): Don't emit a message
4273 any more.
4274
4275 2009-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
4276
4277 * comint.el (comint-insert-input): Ignore clicks to the right of
4278 the field. Reported by Bob Nnamtrop <bobnnamtrop@gmail.com>.
4279
4280 * vc.el (vc-print-log-internal): Don't wait for the process to
4281 terminate before setting up the major mode.
4282
4283 * pcmpl-unix.el (pcomplete/cd): Complete more than one argument, just
4284 in case.
4285
4286 * pcomplete.el (pcomplete-std-complete): Don't try to complete past
4287 the last element.
4288
4289 * simple.el (normal-erase-is-backspace-mode): Fix thinko in message.
4290
4291 2009-12-01 Glenn Morris <rgm@gnu.org>
4292
4293 * window.el (window--display-buffer-2): Fix previous changes.
4294
4295 2009-12-01 Chong Yidong <cyd@stupidchicken.com>
4296
4297 * mail/sendmail.el (mail-setup-hook, mail-send-hook): Doc fixes.
4298
4299 2009-12-01 Glenn Morris <rgm@gnu.org>
4300
4301 * Makefile.in (ELCFILES): Add mpc.elc.
4302
4303 2009-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
4304
4305 * mpc.el: New file.
4306
4307 2009-12-01 Glenn Morris <rgm@gnu.org>
4308
4309 * window.el (window-to-use): Define for compiler.
4310
4311 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Make message
4312 consistent with others (no final period).
4313
4314 * mail/rmailmm.el (rmail-mime-handle): Doc fix.
4315 (rmail-mime-show): Downcase the encoding. (Bug#5070)
4316
4317 2009-12-01 Dan Nicolaescu <dann@ics.uci.edu>
4318
4319 Make vc-print-log buttons work.
4320 * log-view.el (log-view-mode-map): Inherit from widget-keymap.
4321
4322 2009-11-30 Ryan C. Thompson <rct@thompsonclan.org> (tiny change)
4323
4324 * savehist.el (savehist-autosave-interval): Allow setting to nil
4325 through customize. (Bug#5056)
4326
4327 2009-11-30 Juanma Barranquero <lekktu@gmail.com>
4328
4329 Fix references to jit-lock properties.
4330 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
4331 Refer to jit-lock-defer-multiline, not jit-lock-multiline.
4332 (perl-font-lock-special-syntactic-constructs):
4333 Quote jit-lock-defer-multiline property.
4334
4335 2009-11-30 Dan Nicolaescu <dann@ics.uci.edu>
4336
4337 * vc-git.el (vc-git-registered): Call vc-git-root only once.
4338
4339 2009-11-30 Juri Linkov <juri@jurta.org>
4340
4341 * misearch.el (multi-isearch-search-fun): Always provide a non-nil
4342 value `buffer' of `multi-isearch-next-buffer-current-function'.
4343 Use `(current-buffer)' when `buffer' is nil.
4344 (multi-isearch-next-buffer-from-list): Don't fallback to
4345 `(current-buffer)' when `buffer' is nil. (Bug#4947)
4346
4347 2009-11-30 Juri Linkov <juri@jurta.org>
4348
4349 * misearch.el (multi-isearch-read-buffers): Move canonicalization
4350 of buffers with `get-buffer' to `multi-isearch-buffers'.
4351 (multi-isearch-buffers, multi-isearch-buffers-regexp):
4352 Canonicalize BUFFERS with `get-buffer'. Doc fix.
4353 (multi-isearch-files, multi-isearch-files-regexp): Canonicalize
4354 FILES with `expand-file-name' converting relative file names
4355 to absolute. Doc fix. (Bug#4727)
4356
4357 2009-11-30 Juri Linkov <juri@jurta.org>
4358
4359 * misearch.el (multi-isearch-read-buffers)
4360 (multi-isearch-read-matching-buffers): New functions.
4361 (multi-isearch-buffers, multi-isearch-buffers-regexp):
4362 Use them in the `interactive' spec. Doc fix.
4363 (multi-isearch-read-files, multi-isearch-read-matching-files):
4364 New functions.
4365 (multi-isearch-files, multi-isearch-files-regexp):
4366 Use them in the `interactive' spec. Doc fix. (Bug#4725)
4367
4368 2009-11-30 Juri Linkov <juri@jurta.org>
4369
4370 * doc-view.el (doc-view-continuous):
4371 Rename from `doc-view-continuous-mode'.
4372 (doc-view-menu): Move "Toggle display" to the top.
4373 Add submenu "Continuous" with radio buttons "Off"/"On"
4374 and "Save as Default".
4375 (doc-view-scroll-up-or-next-page)
4376 (doc-view-scroll-down-or-previous-page)
4377 (doc-view-next-line-or-next-page)
4378 (doc-view-previous-line-or-previous-page):
4379 Rename `doc-view-continuous-mode' to `doc-view-continuous'. (Bug#4896)
4380
4381 2009-11-30 Juri Linkov <juri@jurta.org>
4382
4383 * comint.el (comint-mode-map): Rebind `M-r' from
4384 `comint-previous-matching-input' to
4385 `comint-history-isearch-backward-regexp'.
4386 Unbind `M-s' to allow global key binding `M-s'.
4387 Add menu items for `comint-history-isearch-backward' and
4388 `comint-history-isearch-backward-regexp'. (Bug#3746)
4389
4390 2009-11-30 Juri Linkov <juri@jurta.org>
4391
4392 * replace.el (perform-replace): Let-bind recenter-last-op to nil.
4393 For def=recenter, replace `recenter' with `recenter-top-bottom'
4394 that is called with `this-command' and `last-command' let-bound
4395 to `recenter-top-bottom'. When the last `def' was not `recenter',
4396 set `recenter-last-op' to nil. (Bug#4981)
4397
4398 2009-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
4399
4400 Minor cleanup and simplification.
4401 * filecache.el (file-cache-add-directory)
4402 (file-cache-add-directory-recursively)
4403 (file-cache-add-from-file-cache-buffer)
4404 (file-cache-delete-file-regexp, file-cache-delete-directory)
4405 (file-cache-files-matching-internal, file-cache-display): Use dolist.
4406 (file-cache-temp-minibuffer-message): Delete function.
4407 (file-cache-minibuffer-complete): Use minibuffer-message instead.
4408
4409 * progmodes/perl-mode.el (perl-font-lock-special-syntactic-constructs):
4410 Don't signal an error when bumping into EOB in tr, s, or y.
4411
4412 2009-11-29 Juri Linkov <juri@jurta.org>
4413
4414 * startup.el (fancy-about-text): Fix wording of Guided Tour.
4415 (Bug#4960)
4416
4417 * descr-text.el (describe-char-unidata-list): Use lowercase name
4418 for "Unicode name" like in other tags.
4419
4420 2009-11-29 Juri Linkov <juri@jurta.org>
4421
4422 * ediff-util.el (ediff-minibuffer-with-setup-hook):
4423 New compatibility macro.
4424 (ediff-read-file-name): Use it instead of `minibuffer-with-setup-hook'.
4425
4426 2009-11-29 Juri Linkov <juri@jurta.org>
4427
4428 Add defcustom to define the cycling order of `recenter-top-bottom'.
4429 (Bug#4981)
4430
4431 * window.el (recenter-last-op): Doc fix.
4432 (recenter-positions): New defcustom.
4433 (recenter-top-bottom): Rewrite to use `recenter-positions'.
4434 (move-to-window-line-top-bottom): Rewrite to use `recenter-positions'.
4435
4436 2009-11-29 Michael Albinus <michael.albinus@gmx.de>
4437
4438 Improve integration of Tramp and ange-ftp in eshell.
4439
4440 * eshell/em-unix.el (eshell/whoami): Make it a defun but a defalias.
4441 (eshell/su): Flatten args. Apply better args parsing. Use "cd".
4442 (eshell/sudo): Flatten args. Let-bind `default-directory'.
4443
4444 * eshell/esh-util.el (top): Require also Tramp when compiling.
4445 (eshell-directory-files-and-attributes): Check for FTP remote
4446 connection.
4447 (eshell-parse-ange-ls): Let-bind `ange-ftp-name-format',
4448 `ange-ftp-ftp-name-arg', `ange-ftp-ftp-name-res'.
4449 (eshell-file-attributes): Handle ".". Return `entry'.
4450
4451 * net/ange-ftp.el (ange-ftp-parse-filename): Use `save-match-data'.
4452 (ange-ftp-directory-files-and-attributes)
4453 (ange-ftp-real-directory-files-and-attributes): New defuns.
4454
4455 * net/tramp.el (tramp-maybe-open-connection): Open the remote
4456 shell with "exec" when possible. This prevents trailing prompts
4457 in `start-file-process'.
4458
4459 2009-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
4460
4461 Try and remove assumptions about point-min==1.
4462 * nxml/rng-valid.el (rng-validate-mode): Don't hardcode point-min==1.
4463 (rng-compute-mode-line-string): Show the validation percentage in
4464 terms of the narrowed text, not the widened text.
4465 (rng-do-some-validation): Don't catch internal errors when debugging.
4466 (rng-first-error): Simplify.
4467 (rng-after-change-function): Remove work around. AFAIK the bug has
4468 been fixed a while ago.
4469
4470 * image-mode.el (image-minor-mode): Exit more gracefully when the image
4471 cannot be displayed (e.g. when doing C-x C-f some-new-file.svg RET).
4472
4473 * man.el (Man-completion-table): Make it easier to enter "<sec> <name>".
4474
4475 * eshell/em-prompt.el (eshell-prompt-function): Abbreviate pwd, since
4476 `cd' doesn't always do it for us (bug#5067).
4477
4478 * pcomplete.el (pcomplete-entries): Revert change installed mistakenly
4479 on 2009-10-25 as part of some other change (bug#5067).
4480
4481 2009-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
4482
4483 * emacs-lisp/bytecomp.el (byte-compile-warning-types): New type
4484 `suspicious'.
4485 (byte-compile-warnings): Use byte-compile-warning-types.
4486 (byte-compile-save-excursion): Warn about use of set-buffer right
4487 after save-excursion.
4488
4489 * progmodes/gud.el (gud-basic-call): Don't only save the buffer but
4490 the excursion as well.
4491
4492 2009-11-27 Michael Albinus <michael.albinus@gmx.de>
4493
4494 * eshell/em-unix.el (eshell/su, eshell/sudo): New defuns,
4495 providing a Tramp related implementation of "su" and "sudo".
4496 (eshell-unix-initialize): Add "su" and "sudo".
4497
4498 2009-11-27 Daiki Ueno <ueno@unixuser.org>
4499
4500 * net/socks.el (socks-send-command): Convert binary request to
4501 unibyte before sending. This fixes mishandling of some port
4502 numbers such as 129.
4503
4504 2009-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
4505
4506 * help.el (describe-bindings-internal): Remove `interactive'.
4507
4508 * man.el (Man-completion-table): Trim a terminating "(".
4509 Remove the space between name page a section.
4510 Add the command's description on the `help-echo' property.
4511 Remove `process-connection-type' binding since it's unused by
4512 call-process.
4513 Provide completion for the "<section> <name>" format as well.
4514 (Man-default-man-entry): Remove spurious var shadowing the argument.
4515
4516 2009-11-26 Kevin Ryde <user42@zip.com.au>
4517
4518 * log-view.el: Add "Keywords: tools", since its other keywords
4519 aren't in finder-known-keywords, and following vc.el.
4520
4521 * sha1.el (sha1-string-external): default-directory "/" in case
4522 otherwise non-existent. process-connection-type pipe for touch of
4523 efficiency recommended by elisp manual. (An aside in Bug#3911.)
4524
4525 2009-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
4526
4527 Misc coding convention cleanups.
4528 * htmlfontify.el (hfy-init-kludge-hook): Rename from
4529 hfy-init-kludge-hooks.
4530 (hfy-etags-cmd, hfy-flatten-style, hfy-invisible-name, hfy-face-at)
4531 (hfy-fontify-buffer, hfy-prepare-index-i, hfy-subtract-maps)
4532 (hfy-save-kill-buffers, htmlfontify-copy-and-link-dir): Use dolist
4533 and push.
4534 (hfy-slant, hfy-weight): Use tables rather than code.
4535 (hfy-box-to-border-assoc, hfy-box-to-style, hfy-decor)
4536 (hfy-face-to-style-i, hfy-fontify-buffer): Use `case'.
4537 (hfy-face-attr-for-class): Initialize `face-spec' directly.
4538 (hfy-face-to-css): Remove `nconc' with single arg.
4539 (hfy-p-to-face-lennart): Use `or'.
4540 (hfy-face-at): Hoist common code. Remove spurious quotes in `case'.
4541 (hfy-overlay-props-at, hfy-mark-tag-hrefs): Eta-reduce.
4542 (hfy-compile-stylesheet, hfy-merge-adjacent-spans)
4543 (hfy-compile-face-map, hfy-parse-tags-buffer): Use push.
4544 (hfy-force-fontification): Use run-hooks.
4545
4546 2009-11-26 Vivek Dasmohapatra <vivek@etla.org>
4547
4548 Various minor fixes.
4549 * htmlfontify.el (hfy-default-header): Add toggle_invis since
4550 Javascript belongs in the header, not the body.
4551 (hfy-javascript): Remove.
4552 (hfy-fontify-buffer): Don't insert it any more.
4553 (hfy-face-at): Handle (face0 face1 face2) style face properties.
4554 Fix bug in invis handling when there were no invis props in a chunk.
4555
4556 2009-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
4557
4558 * vc-bzr.el (vc-bzr-annotate-command): Make operation asynchronous.
4559
4560 2009-11-26 Dan Nicolaescu <dann@ics.uci.edu>
4561
4562 * finder.el (finder-mode-map): Add a menu.
4563
4564 2009-11-26 Michael McNamara <mac@mail.brushroad.com>
4565
4566 * progmodes/verilog-mode.el (verilog-at-struct-p): Support "signed" and
4567 "unsigned" structs.
4568
4569 (verilog-leap-to-head, verilog-backward-token): Handle "disable
4570 fork" statement better.
4571
4572 2009-11-26 Wilson Snyder <wsnyder@wsnyder.org>
4573
4574 * progmodes/verilog-mode.el (verilog-auto-insert-lisp)
4575 (verilog-delete-auto, verilog-delete-empty-auto-pair)
4576 (verilog-library-filenames): Fix AUTOINSERTLISP to support insert-file.
4577 Reported by Clay Douglass.
4578
4579 (verilog-auto-inst, verilog-auto-star-safe)
4580 (verilog-delete-auto-star-implicit, verilog-read-sub-decls):
4581 Fix removing "// Interfaces" when saving .* expansions.
4582 Reported by Pierre-David Pfister.
4583
4584 2009-11-26 Glenn Morris <rgm@gnu.org>
4585
4586 * eshell/em-dirs.el (eshell/cd): Don't throw to a tag outside
4587 the scope.
4588
4589 2009-11-25 Johan Bockgård <bojohan@gnu.org>
4590
4591 * vc-annotate.el (vc-annotate-revision-previous-to-line):
4592 Really use previous revision.
4593
4594 2009-11-25 Kevin Ryde <user42@zip.com.au>
4595
4596 * man.el (Man-completion-table): default-directory "/" in case
4597 doesn't otherwise exist. process-environment COLUMNS=999 so as
4598 not to truncate long names. process-connection-type pipe to avoid
4599 any chance of hitting the pseudo-tty TIOCGWINSZ.
4600 (man): completion-ignore-case t for friendliness and since man
4601 itself is case-insensitive on the command line.
4602 Further to Bug#3717.
4603
4604 * arc-mode.el: Add "Keywords: files", so the details in its
4605 commentary can be reached from finder-by-keyword.
4606 * textmodes/dns-mode.el: Add "Keywords: comm". It's only an
4607 editing mode, but it's comms related and sgml-mode.el has "comm"
4608 on that basis too.
4609 * textmodes/bibtex-style.el: Add "Keywords: tex".
4610 * international/isearch-x.el, international/ja-dic-cnv.el:
4611 * international/ja-dic-utl.el, international/kkc.el:
4612 Add "Keywords: i18n", so they can be reached from finder-by-keyword.
4613
4614 2009-11-25 Juri Linkov <juri@jurta.org>
4615
4616 * man.el (Man-completion-table): Modify regexp to include
4617 section names to completion strings. (Bug#3717)
4618
4619 2009-11-25 Juri Linkov <juri@jurta.org>
4620
4621 Search recursively in gzipped files. (Bug#4982)
4622
4623 * progmodes/grep.el (grep-highlight-matches): Add new options
4624 `always' and `auto'. Doc fix.
4625 (grep-process-setup): Check `grep-highlight-matches' for
4626 `auto-detect' to determine the need to compute grep defaults.
4627 Move Windows/DOS specific --colors settings handling
4628 to `grep-compute-defaults'. Check `grep-highlight-matches'
4629 to get the value of "--color=".
4630 (grep-compute-defaults): Compute `grep-highlight-matches' when it
4631 has the value `auto-detect'. Move Windows/DOS specific settings
4632 from `grep-process-setup'.
4633 (zrgrep): New command with alias `rzgrep'.
4634
4635 2009-11-25 Juri Linkov <juri@jurta.org>
4636
4637 * doc-view.el (doc-view-mode): Set buffer-local `view-read-only'
4638 to nil instead of switching off view-mode. (Bug#4896)
4639
4640 2009-11-25 Juri Linkov <juri@jurta.org>
4641
4642 Mouse-wheel scrolling for DocView Continuous mode. (Bug#4896)
4643
4644 * mwheel.el (mwheel-scroll-up-function)
4645 (mwheel-scroll-down-function): New defvars.
4646 (mwheel-scroll): Funcall `mwheel-scroll-up-function' instead of
4647 `scroll-up', and `mwheel-scroll-down-function' instead of
4648 `scroll-down'.
4649
4650 * doc-view.el (doc-view-scroll-up-or-next-page)
4651 (doc-view-scroll-down-or-previous-page): Add optional ARG.
4652 Use this ARG in the call to image-scroll-up/image-scroll-down.
4653 Change `interactive' spec to "P". Goto next/previous page only
4654 when `doc-view-continuous-mode' is non-nil or ARG is nil (for the
4655 SPC/DEL case). Doc fix.
4656 (doc-view-next-line-or-next-page)
4657 (doc-view-previous-line-or-previous-page): Rename arg to ARG
4658 for consistency.
4659 (doc-view-mode): Set buffer-local `mwheel-scroll-up-function' to
4660 `doc-view-scroll-up-or-next-page', and buffer-local
4661 `mwheel-scroll-down-function' to
4662 `doc-view-scroll-down-or-previous-page'.
4663
4664 2009-11-25 Juri Linkov <juri@jurta.org>
4665
4666 Provide additional default values (directories at other Dired
4667 windows) via M-n in the minibuffer of some Dired commands.
4668
4669 * dired-aux.el (dired-diff, dired-compare-directories)
4670 (dired-do-create-files): Use `dired-dwim-target-defaults' to set
4671 `minibuffer-default' in `minibuffer-with-setup-hook'.
4672 (dired-dwim-target-directory): Find a window that displays Dired
4673 buffer instead of failing when the next window is not Dired.
4674 Use `get-window-with-predicate' to find for the next Dired window.
4675 (dired-dwim-target-defaults): New function.
4676
4677 * ediff-util.el (ediff-read-file-name):
4678 Use `dired-dwim-target-defaults' to set `minibuffer-default'
4679 in `minibuffer-with-setup-hook'.
4680
4681 2009-11-25 Juri Linkov <juri@jurta.org>
4682
4683 Provide additional default values (file name at point or at the
4684 current Dired line) via M-n for file reading minibuffers. (Bug#5010)
4685
4686 * minibuffer.el (read-file-name-defaults): New function.
4687 (read-file-name): Reset `minibuffer-default' to nil when
4688 it duplicates initial input `insdef'.
4689 Bind `minibuffer-default-add-function' to lambda that
4690 calls `read-file-name-defaults' in `minibuffer-selected-window'.
4691 (minibuffer-insert-file-name-at-point): New command.
4692
4693 * files.el (file-name-at-point-functions): New defcustom.
4694 (find-file-default): Remove defvar.
4695 (find-file-read-args): Don't use `find-file-default'.
4696 Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
4697 to `read-file-name'.
4698 (find-file-literally): Use `read-file-name' with
4699 `confirm-nonexistent-file-or-buffer'.
4700
4701 * ffap.el (ffap-guess-file-name-at-point): New autoloaded function.
4702
4703 * dired.el (dired-read-dir-and-switches):
4704 Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
4705 to `read-file-name'.
4706 (dired-file-name-at-point): New function.
4707 (dired-mode): Add hook `dired-file-name-at-point' to
4708 `file-name-at-point-functions'.
4709
4710 2009-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
4711
4712 Really make the *Completions* window soft-dedicated (bug#5030).
4713 * window.el (window--display-buffer-2): Add `dedicated' argument.
4714 (display-buffer): Pass it when needed so the dedicated flag is set
4715 after calling set-window-buffer, which would otherwise reset it.
4716
4717 2009-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
4718
4719 * progmodes/meta-mode.el (meta-complete-symbol):
4720 * progmodes/etags.el (complete-tag):
4721 * mail/mailabbrev.el (mail-abbrev-complete-alias):
4722 Use completion-in-region.
4723
4724 * dabbrev.el (dabbrev--minibuffer-origin): Use minibuffer-selected-window.
4725 (dabbrev-completion): Use completion-in-region.
4726 (dabbrev--abbrev-at-point): Simplify regexp.
4727
4728 * abbrev.el (abbrev--before-point): Use word-motion functions
4729 if :regexp is not specified (bug#5031).
4730
4731 * subr.el (string-prefix-p): New function.
4732
4733 * man.el (Man-completion-cache): New var.
4734 (Man-completion-table): Use it.
4735
4736 * vc.el (vc-print-log-internal): Make `limit' optional for better
4737 compatibility (e.g. with vc-annotate.el).
4738
4739 2009-11-24 Kevin Ryde <user42@zip.com.au>
4740
4741 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp):
4742 Build value with regexp-opt instead of explicit joining loop. (Bug#4927)
4743
4744 * emacs-lisp/elint.el (elint-add-required-env): Better error message
4745 when .el source file not found or other error.
4746
4747 2009-11-24 Markus Triska <markus.triska@gmx.at>
4748
4749 * linum.el (linum-update-window): Ignore intangible (bug#4996).
4750
4751 2009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
4752
4753 Handle the [back] button properly (bug#4979).
4754 * descr-text.el (describe-text-properties): Add a `buffer' argument.
4755 Use help-setup-xref, help-buffer, and with-help-window.
4756 (describe-char): Add `buffer' argument.
4757 Pass proper command to help-setup-xref. Don't meddle with
4758 help-xref-stack-item directly.
4759 (describe-text-category): Use with-help-window and help-buffer.
4760
4761 * emacs-lisp/shadow.el (list-load-path-shadows): Setup a major mode
4762 for the displayed buffer (bug#4887).
4763
4764 * man.el (Man-completion-table): New function.
4765 (man): Use it.
4766
4767 2009-11-24 David Reitter <david.reitter@gmail.com>
4768
4769 * vc-git.el (vc-git-registered): Use checkout directory (where
4770 .git is) rather than the file's directory and a relative path spec
4771 to work around a bug in git.
4772
4773 2009-11-24 Michael Albinus <michael.albinus@gmx.de>
4774
4775 Improve handling of processes on remote hosts.
4776
4777 * eshell/esh-util.el (eshell-path-env): New defvar.
4778 (eshell-parse-colon-path): New defun.
4779 (eshell-file-attributes): Use `eshell-parse-colon-path'.
4780
4781 * eshell/esh-ext.el (eshell-search-path):
4782 Use `eshell-parse-colon-path'.
4783 (eshell-remote-command): Remove argument HANDLER.
4784 (eshell-external-command): Check for FTP remote connection.
4785
4786 * eshell/esh-proc.el (eshell-gather-process-output):
4787 Use `file-truename', in order to start also symlinked files.
4788 Apply `start-file-process' instead of `start-process'.
4789 Shorten `command' to the local file name part.
4790
4791 * eshell/em-cmpl.el (eshell-complete-commands-list):
4792 Use `eshell-parse-colon-path'.
4793
4794 * eshell/em-unix.el (eshell/du): Check for FTP remote connection.
4795
4796 * net/tramp.el (tramp-eshell-directory-change): New defun. Add it
4797 to `eshell-directory-change-hook'.
4798
4799 2009-11-24 Tassilo Horn <tassilo@member.fsf.org>
4800
4801 * doc-view.el (doc-view-mode): Switch off view-mode explicitly,
4802 because it could be enabled automatically if view-read-only is non-nil.
4803
4804 2009-11-24 Michael Kifer <kifer@cs.stonybrook.edu>
4805
4806 * ediff-vers.el (ediff-rcs-get-output-buffer): Revert the change
4807 made on 2009-11-22.
4808
4809 2009-11-24 Glenn Morris <rgm@gnu.org>
4810
4811 * bookmark.el (bookmark-bmenu-hide-filenames): Remove assignment to
4812 deleted variable bookmark-bmenu-bookmark-column.
4813
4814 2009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
4815
4816 * bookmark.el (bookmark-bmenu-search): Clear echo area when exiting.
4817
4818 2009-11-23 Ken Brown <kbrown@cornell.edu> (tiny change)
4819
4820 * net/browse-url.el (browse-url-filename-alist): On Windows, add
4821 two slashes to the "file:" prefix.
4822 (browse-url-file-url): De-munge Cygwin filenames before passing
4823 them to Windows browser.
4824 (browse-url-default-windows-browser): Use call-process.
4825
4826 2009-11-23 Juri Linkov <juri@jurta.org>
4827
4828 Implement DocView Continuous mode. (Bug#4896)
4829 * doc-view.el (doc-view-continuous-mode): New defcustom.
4830 (doc-view-mode-map): Bind C-n/<down> to
4831 `doc-view-next-line-or-next-page', C-p/<up> to
4832 `doc-view-previous-line-or-previous-page'.
4833 (doc-view-next-line-or-next-page)
4834 (doc-view-previous-line-or-previous-page): New commands.
4835
4836 2009-11-23 Juri Linkov <juri@jurta.org>
4837
4838 Implement Isearch in comint input history. (Bug#3746)
4839 * comint.el (comint-mode): Add `comint-history-isearch-setup' to
4840 `isearch-mode-hook'.
4841 (comint-history-isearch): New defcustom.
4842 (comint-history-isearch-backward)
4843 (comint-history-isearch-backward-regexp): New commands.
4844 (comint-history-isearch-message-overlay): New buffer-local variable.
4845 (comint-history-isearch-setup, comint-history-isearch-end)
4846 (comint-goto-input, comint-history-isearch-search)
4847 (comint-history-isearch-message, comint-history-isearch-wrap)
4848 (comint-history-isearch-push-state)
4849 (comint-history-isearch-pop-state): New functions.
4850
4851 2009-11-23 Michael Albinus <michael.albinus@gmx.de>
4852
4853 * net/tramp.el (tramp-shell-prompt-pattern): Use \r for carriage
4854 return.
4855 (tramp-handle-make-symbolic-link)
4856 (tramp-handle-dired-compress-file, tramp-handle-expand-file-name):
4857 Quote file names.
4858 (tramp-send-command-and-check): New argument DONT-SUPPRESS-ERR.
4859 (tramp-handle-process-file): Use it.
4860
4861 2009-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
4862
4863 * window.el (move-to-window-line-last-op): Remove.
4864 (move-to-window-line-top-bottom): Reuse recenter-last-op instead.
4865
4866 2009-11-23 Deniz Dogan <deniz.a.m.dogan@gmail.com> (tiny change)
4867
4868 Make M-r mirror the new cycling behavior of C-l.
4869 * window.el (move-to-window-line-last-op): New var.
4870 (move-to-window-line-top-bottom): New command.
4871 (global-map): Bind M-r move-to-window-line-top-bottom.
4872
4873 2009-11-23 Sven Joachim <svenjoac@gmx.de>
4874
4875 * dired-x.el (dired-guess-shell-alist-default):
4876 Support xz format. (Bug#4953)
4877
4878 2009-11-22 Michael Kifer <kifer@cs.stonybrook.edu>
4879
4880 * emulation/viper-cmd.el: Use viper-last-command-char instead of
4881 last-command-char/last-command-event.
4882 (viper-prefix-arg-value): Do correct conversion of event-char for
4883 XEmacs.
4884
4885 * emulation/viper-util.el, emulation/viper.el:
4886 Use viper-last-command-char instead of
4887 last-command-char/last-command-event.
4888
4889 * ediff-init.el, ediff-mult.el, ediff-util.el:
4890 Replace last-command-char and last-command-event
4891 with (ediff-last-command-char) everywhere.
4892
4893 * ediff-vers.el (ediff-rcs-get-output-buffer): Make sure the buffer is
4894 created in fundamental mode.
4895
4896 * ediff.el (ediff-version): Revert the change of interactive-p to
4897 called-interactively-p.
4898
4899 2009-11-22 Tassilo Horn <tassilo@member.fsf.org>
4900
4901 * progmodes/subword.el (subword-mode-map): Fix subword-mode-map
4902 generation from word-movement command names.
4903
4904 2009-11-21 Jan Djärv <jan.h.d@swipnet.se>
4905
4906 * cus-start.el (all): Add native condition for font-use-system-font.
4907
4908 2009-11-21 Nathaniel Flath <flat0103@gmail.com>
4909
4910 * progmodes/cc-menus.el (cc-imenu-java-generic-expression):
4911 Correct the patch from 2009-11-18. (Bug#3910)
4912
4913 2009-11-21 Tassilo Horn <tassilo@member.fsf.org>
4914
4915 * progmodes/subword.el: Rename from lisp/subword.el.
4916
4917 * subword.el: Rename to progmodes/subword.el.
4918
4919 * Makefile.in (ELCFILES): Adapt to subword.el move.
4920
4921 2009-11-21 Thierry Volpiatto <thierry.volpiatto@gmail.com>
4922 Stefan Monnier <monnier@iro.umontreal.ca>
4923
4924 * bookmark.el (bookmark-bmenu-bookmark-column): Remove var.
4925 (bookmark-bmenu-list): Save name on `bookmark-name-prop' text-prop.
4926 (bookmark-bmenu-show-filenames): Use push.
4927 (bookmark-bmenu-hide-filenames): Use local var instead of
4928 bookmark-bmenu-bookmark-column. Use pop. Don't save window-excursion.
4929 (bookmark-bmenu-bookmark): Use the new `bookmark-name-prop' text-prop.
4930 (bookmark-bmenu-execute-deletions): Don't bother adding/removing the
4931 filenames now that the bookmark names are always available.
4932
4933 2009-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
4934
4935 * bookmark.el (bookmark-search-prompt, bookmark-search-timer): Remove.
4936 (bookmark-search-pattern): Move and leave unbound.
4937 (bookmark-bmenu-mode-map): Change binding.
4938 (bookmark-read-search-input): Simplify.
4939 Don't use text-char-description. Don't error on non-char events.
4940 (bookmark-filtered-alist-by-regexp-only): Remove by folding into the
4941 only caller (i.e. bookmark-bmenu-filter-alist-by-regexp).
4942 (bookmark-bmenu-search): Don't check we're in a bookmark-list buffer.
4943 Use a local var for the timer.
4944 (bookmark-bmenu-cancel-search): Remove by folding into the only caller
4945 (i.e. bookmark-bmenu-search).
4946
4947 2009-11-21 Glenn Morris <rgm@gnu.org>
4948
4949 * mail/rmailmm.el (rmail-mime): Decode in fundamental-mode. (Bug#4993)
4950
4951 2009-11-20 Ken Brown <kbrown@cornell.edu> (tiny change)
4952
4953 * net/browse-url.el (browse-url-default-windows-browser):
4954 Use cygstart for cygwin.
4955
4956 2009-11-20 Karl Fogel <karl.fogel@red-bean.com>
4957
4958 * bookmark.el: Formatting and doc fixes only:
4959 (bookmark-search-delay): Shorten doc string to fit in 80 columns.
4960 (bookmark-bmenu-search): Wrap to fit within 80 columns.
4961 Minor grammar and punctuation fixes in doc string.
4962 (bookmark-read-search-input): Adjust to fit within 80 columns.
4963
4964 2009-11-20 Tassilo Horn <tassilo@member.fsf.org>
4965
4966 * progmodes/cc-cmds.el (c-forward-into-nomenclature)
4967 (c-backward-into-nomenclature): Adapt to subword renaming.
4968
4969 * subword.el (subword-forward, subword-backward, subword-mark)
4970 (subword-kill, subword-backward-kill, subword-transpose)
4971 (subword-downcase, subword-upcase, subword-capitalize)
4972 (subword-forward-internal, subword-backward-internal):
4973 Rename from forward-subword, backward-subword, mark-subword,
4974 kill-subword, backward-kill-subword, transpose-subwords,
4975 downcase-subword, upcase-subword, capitalize-subword,
4976 forward-subword-internal, backward-subword-internal.
4977
4978 2009-11-20 Thierry Volpiatto <thierry.volpiatto@gmail.com>
4979
4980 * bookmark.el (bookmark-search-delay, bookmark-search-prompt):
4981 New options.
4982 (bookmark-search-pattern, bookmark-search-timer, bookmark-quit-flag):
4983 New vars.
4984 (bookmark-read-search-input, bookmark-filtered-alist-by-regexp-only)
4985 (bookmark-bmenu-filter-alist-by-regexp)
4986 (bookmark-bmenu-goto-bookmark, bookmark-bmenu-cancel-search): New funs.
4987 (bookmark-bmenu-search): New command.
4988 (bookmark-bmenu-mode-map): Bind it.
4989
4990 2009-11-20 Tassilo Horn <tassilo@member.fsf.org>
4991
4992 * progmodes/cc-cmds.el: declare-functioned forward-subword and
4993 backward-subword to quit the byte-compiler.
4994
4995 * makefile.w32-in: Don't refer cc-subword.elc but subword.elc.
4996
4997 * Makefile.in: Don't refer cc-subword.elc but subword.elc.
4998
4999 * progmodes/cc-cmds.el (c-update-modeline)
5000 (c-forward-into-nomenclature, c-backward-into-nomenclature):
5001 Refer to subword.el functions instead of cc-subword.el.
5002
5003 * progmodes/cc-mode.el (subword-mode, c-mode-base-map): Refer to
5004 subword.el functions instead of cc-subword.el.
5005
5006 * progmodes/cc-subword.el: Rename to subword.el.
5007 * subword.el: Rename from progmodes/cc-subword.el.
5008 (subword-mode-map): Rename from c-subword-mode-map.
5009 (subword-mode): Rename from c-subword-mode.
5010 (global-subword-mode): New global minor mode.
5011 (forward-subword): Rename from c-forward-subword.
5012 (backward-subword): Rename from c-backward-subword.
5013 (mark-subword): Rename from c-mark-subword.
5014 (kill-subword): Rename from c-kill-subword.
5015 (backward-kill-subword): Rename from c-backward-kill-subword.
5016 (transpose-subwords): Rename from c-tranpose-subword.
5017 (downcase-subword): Rename from c-downcase-subword.
5018 (capitalize-subword): Rename from c-capitalize-subword.
5019 (forward-subword-internal): Rename from c-forward-subword-internal.
5020 (backward-subword-internal): Rename from c-backward-subword-internal.
5021
5022 2009-11-20 Dan Nicolaescu <dann@ics.uci.edu>
5023
5024 * vc.el (vc-deduce-fileset): Allow non-state changing operations
5025 from a dired buffer.
5026 (vc-dired-deduce-fileset): New function.
5027 (vc-root-diff, vc-print-root-log): Use it.
5028
5029 * vc-annotate.el (vc-annotate-show-log-revision-at-line): Pass a
5030 nil LIMIT argument to vc-print-log-internal.
5031
5032 2009-11-20 Glenn Morris <rgm@gnu.org>
5033
5034 * Makefile.in (ELCFILES): Regenerate.
5035
5036 2009-11-20 Jay Belanger <jay.p.belanger@gmail.com>
5037
5038 * calc/calc.el (calc-set-mode-line):
5039 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
5040 (math-format-number): Rename `math-format-complement-signed' to
5041 `math-format-twos-complement'.
5042
5043 * calc/calc-bin.el (math-format-twos-complement): Rename from
5044 math-format-complement-signed.
5045 (calc-radix): Rename `calc-complement-signed-mode' to
5046 `calc-twos-complement-mode'.
5047 (calc-octal-radix, calc-hex-radix): Add an argument for
5048 two's complement.
5049
5050 * calc/calc-embed.el (calc-embedded-mode-vars):
5051 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
5052
5053 * calc/calc-ext.el (calc-init-extensions):
5054 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
5055 (math-format-number-fancy): Let `calc-twos-complement-mode' be nil.
5056
5057 * calc/calc-units.el (math-build-units-table-buffer):
5058 Let `calc-twos-complement-mode' be nil.
5059
5060 * calc/calc-menu.el (calc-modes-menu): Clean up two's complement
5061 entries.
5062
5063 * calc/calc-vec.el (calcFunc-vunpack):
5064 * calc/calc-aent.el (calc-do-calc-eval):
5065 * calc/calc-forms.el (math-format-date):
5066 * calc/calc-graph.el (calc-graph-plot):
5067 * calc/calc-math.el (math-use-emacs-fn):
5068 * calc/calccomp.el (math-compose-expr):
5069 Let `calc-twos-complement-mode' be nil.
5070
5071 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
5072
5073 * abbrev.el (abbrev-with-wrapper-hook): (re)move...
5074 * simple.el (with-wrapper-hook): ...to here. Add argument `args'.
5075 * minibuffer.el (completion-in-region-functions): New hook.
5076 (completion-in-region): New function.
5077 * emacs-lisp/lisp.el (lisp-complete-symbol):
5078 * pcomplete.el (pcomplete-std-complete): Use it.
5079
5080 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
5081
5082 * textmodes/tex-mode.el (latex-complete-bibtex-cache)
5083 (latex-complete-alist): New vars.
5084 (latex-string-prefix-p, latex-complete-bibtex-keys)
5085 (latex-complete-envnames, latex-complete-refkeys)
5086 (latex-complete-data): New functions.
5087 (latex-complete, latex-indent-or-complete): New commands.
5088
5089 * window.el (display-buffer-mark-dedicated): New var.
5090 (display-buffer): Obey it.
5091 * minibuffer.el (minibuffer-completion-help): Use it.
5092
5093 * progmodes/sym-comp.el (symbol-complete): Use completion-in-region.
5094
5095 * filecache.el (file-cache-add-file): Use push and cons.
5096 (file-cache-delete-file-regexp): Use push.
5097 (file-cache-complete): Use completion-in-region.
5098
5099 * simple.el (with-wrapper-hook): Fix thinko.
5100
5101 * hfy-cmap.el (hfy-rgb-file): Use locate-file.
5102 (htmlfontify-load-rgb-file): Remove unnused var `ff'.
5103 Use with-current-buffer and string-to-number.
5104 (hfy-fallback-colour-values): Use assoc-string.
5105 * htmlfontify.el (hfy-face-to-css): Remove unused var `style'.
5106 (hfy-face-at): Remove unused var `found-face'.
5107 (hfy-compile-stylesheet): Remove unused var `css'.
5108 (hfy-fontify-buffer): Remove unused vars `in-style', `invis-button',
5109 and `orig-buffer'.
5110 (hfy-buffer, hfy-copy-and-fontify-file, hfy-parse-tags-buffer):
5111 Use with-current-buffer.
5112 (hfy-text-p): Use expand-file-name and fewer setq.
5113
5114 2009-11-19 Vivek Dasmohapatra <vivek@etla.org>
5115
5116 * htmlfontify.el, hfy-cmap.el: New files.
5117
5118 2009-11-19 Juri Linkov <juri@jurta.org>
5119
5120 * minibuffer.el (completions-format): New defcustom.
5121 (completion--insert-strings): Implement vertical format.
5122
5123 * simple.el (switch-to-completions): Move point to the first
5124 completion when point was at the beginning of the buffer.
5125
5126 2009-11-19 Juri Linkov <juri@jurta.org>
5127
5128 * find-dired.el (find-name-arg): Remove autoload. (Bug#4387)
5129
5130 * progmodes/grep.el (rgrep): Require `find-dired' for `find-name-arg'.
5131
5132 2009-11-19 Chong Yidong <cyd@stupidchicken.com>
5133
5134 * mail/sendmail.el (mail-yank-prefix): Change default to "> ".
5135 (mail-signature): Change default to t.
5136 (mail-from-style): Deprecate `system-default' value.
5137 (mail-insert-from-field): For default value of mail-from-style,
5138 default to `angles' unless `angles' needs quoting and `parens'
5139 does not.
5140 (mail-citation-prefix-regexp): Use citation regexp from
5141 message-mode.
5142
5143 2009-11-19 Michael Albinus <michael.albinus@gmx.de>
5144
5145 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
5146 Set variables for computing the prompt for reading password.
5147
5148 2009-11-19 Glenn Morris <rgm@gnu.org>
5149
5150 * dired-aux.el (dired-compress-file-suffixes): Add ".xz". (Bug#4953)
5151
5152 * textmodes/flyspell.el (sgml-lexical-context): Declare.
5153
5154 * net/newst-treeview.el (newsticker-treeview-treewindow-width)
5155 (newsticker-treeview-listwindow-height): Fix custom type.
5156
5157 2009-11-19 Kenichi Handa <handa@m17n.org>
5158
5159 * descr-text.el (describe-char-padded-string): Compose with TAB
5160 only if there's a font for CH.
5161 (describe-char): Fix the condition for detecting a trivial composition.
5162
5163 2009-11-18 Nathaniel Flath <flat0103@gmail.com>
5164
5165 * progmodes/cc-menus.el (cc-imenu-java-generic-expression): A new,
5166 more accurate version of the regexp. (Bug#3910)
5167
5168 2009-11-18 Bernhard Herzog <bernhard.herzog@intevation.de> (tiny change)
5169
5170 * vc-hg.el (vc-hg-diff): Fix last patch: do not change directory.
5171
5172 2009-11-18 Juanma Barranquero <lekktu@gmail.com>
5173
5174 * font-setting.el (font-use-system-font): Declare for byte-compiler.
5175 (font-setting-change-default-font): Fix typo in docstring.
5176
5177 2009-11-18 Alan Mackenzie <acm@muc.de>
5178
5179 * progmodes/cc-defs.el (c-version): Bump to 5.31.8.
5180
5181 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
5182
5183 * font-setting.el (font-use-system-font): Move ...
5184
5185 * cus-start.el (all): ... to here.
5186
5187 2009-11-17 Michael Albinus <michael.albinus@gmx.de>
5188
5189 * net/tramp.el (tramp-advice-file-expand-wildcards): Simplify.
5190 Don't set `ad-return-value' if `ad-do-it' doesn't.
5191
5192 * net/tramp-gvfs.el (tramp-gvfs-handle-write-region): Set file
5193 modification time.
5194
5195 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
5196
5197 * menu-bar.el: Put "Use system font" in Option-menu.
5198 (menu-bar-options-save): Add font-use-system-font.
5199
5200 * loadup.el: If feature system-font-setting or font-render-setting is
5201 there, load font-setting.
5202
5203 * Makefile.in (ELCFILES): Add font-settings.el.
5204 * font-setting.el: New file.
5205
5206 2009-11-17 Glenn Morris <rgm@gnu.org>
5207
5208 * vc-svn.el (vc-svn-print-log): Fix typo in previous.
5209
5210 * net/newst-treeview.el (newsticker--treeview-list-update-faces):
5211 Preserve point in the list buffer. (Bug#4939)
5212 Use point-at-eol.
5213 (newsticker--treeview-list-update-highlight)
5214 (newsticker--treeview-tree-update-highlight): Use point-at-bol/eol.
5215
5216 2009-11-16 Jay Belanger <jay.p.belanger@gmail.com>
5217
5218 * calc/calc-bin.el (math-symclip, calcFunc-symclip, calc-symclip):
5219 Remove.
5220
5221 * calc/calc-ext.el (calc-init-extensions): Remove references to
5222 symclip.
5223
5224 * calc/calc-menu.el (calc-arithmetic-menu): Remove `calc-symclip'.
5225
5226 * calc/calc-map.el (calc-get-operator, calc-b-oper-keys):
5227 * calc/calc-help.el (calc-b-prefix-help): Remove references to
5228 `calc-symclip'.
5229
5230 2009-11-16 Kevin Ryde <user42@zip.com.au>
5231
5232 * textmodes/flyspell.el (sgml-mode-flyspell-verify):
5233 Use `sgml-lexical-context' instead of own parse for tag (Bug#4511).
5234
5235 * emacs-lisp/lisp-mnt.el (lm-keywords): Allow multi-line keywords.
5236 (lm-keywords-list): Allow comma-only separator like "foo,bar".
5237 Ignore trailing spaces by omit-nulls to split-string (fixing
5238 regression from Emacs 21 due to the incompatible split-string
5239 change). (Bug #4928.)
5240
5241 2009-11-16 Dan Nicolaescu <dann@ics.uci.edu>
5242
5243 * vc.el (vc-log-show-limit): Default to 2000.
5244 (vc-print-log-internal): Insert buttons to request more entries
5245 when limiting the output.
5246
5247 * vc-sccs.el (vc-sccs-print-log):
5248 * vc-rcs.el (vc-rcs-print-log):
5249 * vc-cvs.el (vc-cvs-print-log):
5250 * vc-git.el (vc-git-print-log): Return 'limit-unsupported when
5251 LIMIT is non-nil.
5252
5253 2009-11-16 Michael Albinus <michael.albinus@gmx.de>
5254
5255 * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error): Raise only an
5256 error when `tramp-gvfs-dbus-event-vector' is set.
5257 (tramp-gvfs-maybe-open-connection): Loop over `read-event'.
5258
5259 2009-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
5260
5261 * vc-rcs.el (vc-rcs-consult-headers): Add missing save-excursion.
5262
5263 2009-11-16 Michael Albinus <michael.albinus@gmx.de>
5264
5265 * net/dbus.el (dbus-unregister-service): New defun.
5266 (dbus-register-property): Register the handlers of
5267 "org.freedesktop.DBus.Properties" for SERVICE.
5268 (dbus-property-handler): Fix docstring.
5269
5270 2009-11-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5271
5272 * emacs-lisp/bytecomp.el (byte-compile-output-file-form):
5273 Quote doc string reference in defvaralias as it is not in special form.
5274 (byte-compile-output-docform): Doc fix.
5275
5276 2009-11-16 Jay Belanger <jay.p.belanger@gmail.com>
5277
5278 * calc/calc.el (math-2-word-size, math-half-2-word-size)
5279 (calc-complement-signed-mode): New variables.
5280 (calc-set-mode-line): Add indicator for twos-complements.
5281 (math-format-number): Format twos-complement notation.
5282
5283 * calc/calc-bin.el (calc-word-size): Reset the variables
5284 `math-2-word-size' and `math-half-2-word-size'.
5285 (math-format-complement-signed, math-symclip, calcFunc-symclip)
5286 (calc-symclip): New functions.
5287
5288 * calc/calc-aent.el (math-read-token): Read complement signed numbers.
5289
5290 * calc/calc-embed.el (calc-embedded-mode-vars):
5291 Add `calc-complement-signed-mode' to the list of modes.
5292
5293 * calc/calc-map.el (calc-get-operator): Add `calc-symclip'.
5294 (calc-b-oper-keys): Add `calc-symclip' to list.
5295
5296 * calc/calc-ext.el (math-read-number-fancy): Read complement
5297 signed numbers.
5298 (calc-init-extensions): Add binding for `calc-symclip'.
5299 Add autoload for `calcFunc-symclip' and `calc-symclip'.
5300
5301 * calc/calc-menu.el (calc-arithmetic-menu): Add item for
5302 `calc-symclip'.
5303 (calc-modes-menu): Add item for twos complement mode.
5304
5305 * calc/calc-help.el (calc-b-prefix-help): Add help for `calc-symclip'.
5306
5307 2009-11-15 Chong Yidong <cyd@stupidchicken.com>
5308
5309 * register.el (jump-to-register, insert-register): Handle Semantic
5310 tags. From commented-out advice in semantic/senator.el.
5311
5312 2009-11-15 Dan Nicolaescu <dann@ics.uci.edu>
5313
5314 * vc.el (vc-log-show-limit): New variable.
5315 (vc-print-log, vc-print-root-log): Add new argument LIMIT. Set it
5316 when using a prefix argument.
5317 (vc-print-log-internal): Add new argument LIMIT.
5318
5319 * vc-svn.el (vc-svn-print-log):
5320 * vc-mtn.el (vc-mtn-print-log):
5321 * vc-hg.el (vc-hg-print-log):
5322 * vc-bzr.el (vc-bzr-print-log): Add new optional argument LIMIT,
5323 pass it to the log command when set. Make the BUFFER argument
5324 non-optional.
5325
5326 * vc-sccs.el (vc-sccs-print-log):
5327 * vc-rcs.el (vc-rcs-print-log):
5328 * vc-git.el (vc-git-print-log):
5329 * vc-cvs.el (vc-cvs-print-log): Add new optional argument LIMIT,
5330 ignore it. Make the BUFFER argument non-optional
5331
5332 * bindings.el (mode-line-buffer-identification): Do not purecopy.
5333
5334 2009-11-15 Chong Yidong <cyd@stupidchicken.com>
5335
5336 * dired.el (dired-mode-map): Move encryption items to "Operate"
5337 menu (Bug#4703).
5338
5339 * strokes.el (strokes-update-window-configuration): Make strokes
5340 buffer current before erasing (Bug#4906).
5341
5342 2009-11-15 Juri Linkov <juri@jurta.org>
5343
5344 * simple.el (set-mark-default-inactive): Add :type, :group
5345 and :version. (Bug#4876)
5346
5347 2009-11-15 Michael Albinus <michael.albinus@gmx.de>
5348
5349 * arc-mode.el (archive-maybe-copy): Move creation of directory ...
5350 (archive-unique-fname): ... here. (Bug#4929)
5351
5352 2009-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
5353
5354 * help-mode.el (help-make-xrefs): Undo the last revert, and replace it
5355 with a real fix.
5356
5357 * novice.el (disabled-command-function): Add useful args.
5358 Setup the help buffer so that [back] works.
5359 Remove redundant call to help-mode.
5360 (disabled-command-function): Use `case'.
5361 (en/disable-command): New function extracted from enable-command.
5362 (enable-command, disable-command): Use it.
5363
5364 2009-11-14 Glenn Morris <rgm@gnu.org>
5365
5366 * menu-bar.el (menu-bar-tools-menu): Read and send mail entries are not
5367 constants. (Bug#4913)
5368
5369 * emacs-lisp/elint.el (elint-standard-variables): Doc fix.
5370
5371 2009-11-14 Shigeru Fukaya <shigeru.fukaya@gmail.com>
5372
5373 * emacs-lisp/elint.el (elint-standard-variables): Add some variables
5374 defined in C that have no doc-strings. (Bug#1063)
5375
5376 2009-11-14 Francis Wright <F.J.Wright@qmul.ac.uk>
5377
5378 * cus-edit.el (data, files):
5379 * ps-print.el (postscript): Doc fixes for custom groups. (Bug#3327)
5380
5381 2009-11-14 Chong Yidong <cyd@stupidchicken.com>
5382
5383 * simple.el (shell-command): Doc fix (Bug#4891).
5384
5385 * help-mode.el (help-make-xrefs): Revert 2009-11-13 change.
5386
5387 2009-11-14 Glenn Morris <rgm@gnu.org>
5388
5389 * emulation/viper.el (viper-set-hooks): Remove duplicate advice
5390 statements for vc-diff, emerge-quit, and rmail-cease-edit.
5391 If they are already loaded, eval-after-load will do the right thing.
5392
5393 * speedbar.el (top-level): Remove unnecessary load of ange-ftp when
5394 compiling.
5395
5396 * emacs-lisp/bytecomp.el (byte-compile-single-version): Remove, unused.
5397
5398 * simple.el (x-selection-owner-p): Declare.
5399 (read-mail-command): Use custom radio type rather than choice.
5400 (completion-no-auto-exit): Doc fix.
5401
5402 * custom.el (defgroup):
5403 * epg-config.el (epg): Doc fixes.
5404
5405 2009-11-14 Dan Nicolaescu <dann@ics.uci.edu>
5406
5407 * bindings.el (mode-line-buffer-identification): Purecopy only the string.
5408 * international/ccl.el (define-ccl-program): Do not purecopy the
5409 docstring, defconst does it anyway.
5410
5411 2009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
5412
5413 * add-log.el (add-change-log-entry): Avoid displaying the changelog
5414 a second time.
5415
5416 * x-dnd.el (x-dnd-maybe-call-test-function):
5417 * window.el (split-window-vertically):
5418 * whitespace.el (whitespace-help-on):
5419 * vc-rcs.el (vc-rcs-consult-headers):
5420 * userlock.el (ask-user-about-lock-help)
5421 (ask-user-about-supersession-help):
5422 * type-break.el (type-break-force-mode-line-update):
5423 * time-stamp.el (time-stamp-conv-warn):
5424 * terminal.el (te-set-output-log, te-more-break, te-filter)
5425 (te-sentinel, terminal-emulator):
5426 * term.el (make-term, term-exec, term-sentinel, term-read-input-ring)
5427 (term-write-input-ring, term-check-source, term-start-output-log):
5428 (term-display-buffer-line, term-dynamic-list-completions):
5429 (term-ansi-make-term, serial-term):
5430 * subr.el (selective-display):
5431 * strokes.el (strokes-xpm-to-compressed-string, strokes-decode-buffer)
5432 (strokes-encode-buffer, strokes-xpm-for-compressed-string):
5433 * speedbar.el (speedbar-buffers-tail-notes, speedbar-buffers-item-info)
5434 (speedbar-reconfigure-keymaps, speedbar-add-localized-speedbar-support)
5435 (speedbar-remove-localized-speedbar-support)
5436 (speedbar-set-mode-line-format, speedbar-create-tag-hierarchy)
5437 (speedbar-update-special-contents, speedbar-buffer-buttons-engine)
5438 (speedbar-buffers-line-directory):
5439 * simple.el (shell-command-on-region, append-to-buffer)
5440 (prepend-to-buffer):
5441 * shadowfile.el (shadow-save-todo-file):
5442 * scroll-bar.el (scroll-bar-set-window-start, scroll-bar-drag-1)
5443 (scroll-bar-maybe-set-window-start):
5444 * sb-image.el (speedbar-image-dump):
5445 * saveplace.el (save-place-alist-to-file, save-places-to-alist)
5446 (load-save-place-alist-from-file):
5447 * ps-samp.el (ps-print-message-from-summary):
5448 * ps-print.el (ps-flush-output, ps-insert-file, ps-get-boundingbox)
5449 (ps-background-image, ps-begin-job, ps-do-despool):
5450 * ps-bdf.el (bdf-find-file, bdf-read-font-info):
5451 * printing.el (pr-interface, pr-ps-file-print, pr-find-buffer-visiting)
5452 (pr-ps-message-from-summary, pr-lpr-message-from-summary):
5453 (pr-call-process, pr-file-list, pr-interface-save):
5454 * novice.el (disabled-command-function)
5455 (enable-command, disable-command):
5456 * mouse.el (mouse-buffer-menu-alist):
5457 * mouse-copy.el (mouse-kill-preserving-secondary):
5458 * macros.el (kbd-macro-query):
5459 * ledit.el (ledit-go-to-lisp, ledit-go-to-liszt):
5460 * informat.el (batch-info-validate):
5461 * ido.el (ido-copy-current-word, ido-initiate-auto-merge):
5462 * hippie-exp.el (try-expand-dabbrev-visible):
5463 * help-mode.el (help-make-xrefs):
5464 * help-fns.el (describe-variable):
5465 * generic-x.el (bat-generic-mode-run-as-comint):
5466 * finder.el (finder-mouse-select):
5467 * find-dired.el (find-dired-sentinel):
5468 * filesets.el (filesets-file-close):
5469 * files.el (list-directory):
5470 * faces.el (list-faces-display, describe-face):
5471 * facemenu.el (list-colors-display):
5472 * ezimage.el (ezimage-image-association-dump, ezimage-image-dump):
5473 * epg.el (epg--process-filter, epg-cancel):
5474 * epa.el (epa--marked-keys, epa--select-keys, epa-display-info)
5475 (epa--read-signature-type):
5476 * emerge.el (emerge-copy-as-kill-A, emerge-copy-as-kill-B)
5477 (emerge-file-names):
5478 * ehelp.el (electric-helpify):
5479 * ediff.el (ediff-regions-wordwise, ediff-regions-linewise):
5480 * ediff-vers.el (rcs-ediff-view-revision):
5481 * ediff-util.el (ediff-setup):
5482 * ediff-mult.el (ediff-append-custom-diff):
5483 * ediff-diff.el (ediff-exec-process, ediff-process-sentinel)
5484 (ediff-wordify):
5485 * echistory.el (Electric-command-history-redo-expression):
5486 * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
5487 * disp-table.el (describe-display-table):
5488 * dired.el (dired-find-buffer-nocreate):
5489 * dired-aux.el (dired-rename-subdir, dired-dwim-target-directory):
5490 * dabbrev.el (dabbrev--same-major-mode-p):
5491 * chistory.el (list-command-history):
5492 * apropos.el (apropos-documentation):
5493 * allout.el (allout-obtain-passphrase):
5494 (allout-copy-exposed-to-buffer):
5495 (allout-verify-passphrase): Use with-current-buffer.
5496
5497 2009-11-13 Glenn Morris <rgm@gnu.org>
5498
5499 * Makefile.in (ELCFILES): Regenerate.
5500
5501 2009-11-13 Michael Albinus <michael.albinus@gmx.de>
5502
5503 * net/dbus.el (dbus-registered-objects-table): Rename from
5504 `dbus-registered-functions-table', because it contains also properties.
5505 (dbus-unregister-object): Unregister also properties.
5506 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
5507 Use a timeout of 500 msec, in order to not block.
5508 (dbus-register-property, dbus-property-handler): New defuns.
5509
5510 2009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
5511
5512 * simple.el (minibuffer-default-add-completions): Drop deprecated
5513 4th arg.
5514
5515 2009-11-13 Tomas Abrahamsson <tab@lysator.liu.se>
5516
5517 * textmodes/artist.el (artist-mouse-choose-operation):
5518 Call `tmm-prompt' instead of `x-popup-menu' if we cannot popup
5519 menus. Bug noticed by Eli Zaretskii <eliz@gnu.org>.
5520 (artist-compute-up-event-key): New function.
5521 (artist-mouse-choose-operation, artist-down-mouse-1): Call it.
5522
5523 2009-11-13 Kenichi Handa <handa@m17n.org>
5524
5525 * language/japan-util.el: Make sure that the value of jisx0208
5526 property is jisx0208 character.
5527
5528 2009-11-13 Dan Nicolaescu <dann@ics.uci.edu>
5529
5530 * international/mule.el (auto-coding-regexp-alist): Only purecopy
5531 car or each item, not the whole list.
5532
5533 2009-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
5534
5535 * minibuffer.el (minibuffer-completion-help):
5536 Use minibuffer-hide-completions.
5537
5538 2009-11-12 Per Starbäck <per@starback.se> (tiny change)
5539
5540 * dired.el (dired-save-positions, dired-restore-positions): New funs.
5541 (dired-revert): Use them (bug#4880).
5542
5543 2009-11-12 Dan Nicolaescu <dann@ics.uci.edu>
5544
5545 * tooltip.el (tooltip-frame-parameters): Undo previous change.
5546
5547 2009-11-12 Juri Linkov <juri@jurta.org>
5548
5549 * ffap.el (ffap-alternate-file-other-window, ffap-literally):
5550 New functions.
5551 (find-file-literally-at-point): Alias of `ffap-literally'.
5552
5553 2009-11-12 Dan Nicolaescu <dann@ics.uci.edu>
5554
5555 * textmodes/ispell.el (ispell-skip-region-alist):
5556 * textmodes/css-mode.el (auto-mode-alist):
5557 * progmodes/compile.el (auto-mode-alist):
5558 * international/mule.el (ctext-non-standard-encodings-alist)
5559 (ctext-non-standard-encodings-regexp):
5560 * simple.el (shell-command-switch, text-read-only):
5561 * replace.el (occur-mode-map):
5562 * paths.el (rmail-file-name):
5563 * jka-cmpr-hook.el (jka-compr-build-file-regexp):
5564 * find-file.el (ff-special-constructs):
5565 * files.el (file-name-handler-alist):
5566 * composite.el: Purecopy strings.
5567
5568 * emacs-lisp/cl-macs.el (define-compiler-macro): Purecopy the file name.
5569
5570 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
5571
5572 * widget.el (define-widget): Purecopy the docstring.
5573 * international/mule-cmds.el (charset): Do not purecopy the
5574 docstring here, define-widget does it.
5575
5576 * textmodes/texinfo.el (texinfo-open-quote, texinfo-close-quote):
5577 * textmodes/bibtex-style.el (auto-mode-alist):
5578 * progmodes/inf-lisp.el (inferior-lisp-prompt):
5579 * progmodes/compile.el (compile-command):
5580 * language/korea-util.el (default-korean-keyboard):
5581 * international/mule-conf.el (file-coding-system-alist):
5582 * emacs-lisp/eldoc.el (eldoc-minor-mode-string):
5583 * tooltip.el (tooltip-frame-parameters):
5584 * newcomment.el (comment-end, comment-padding):
5585 * dired.el (dired-trivial-filenames):
5586 * comint.el (comint-file-name-prefix): Purecopy initial values.
5587
5588 2009-11-11 Michael Albinus <michael.albinus@gmx.de>
5589
5590 * net/tramp.el (tramp-advice-minibuffer-electric-separator)
5591 (tramp-advice-minibuffer-electric-tilde): Unload advices via
5592 `tramp-unload'.
5593 (tramp-advice-make-auto-save-file-name)
5594 (tramp-advice-file-expand-wildcards): Apply also `ad-activate'
5595 after removing the advice.
5596
5597 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
5598
5599 * progmodes/grep.el (grep-regexp-alist):
5600 * international/mule-cmds.el (iso-2022-control-alist):
5601 * emacs-lisp/timer.el (timer-duration-words):
5602 * subr.el (version-separator, version-regexp-alist):
5603 * minibuffer.el (completion-styles-alist):
5604 * faces.el (face-attribute-name-alist, list-faces-sample-text):
5605 Change defvars to defconsts.
5606
5607 * Makefile.in (ELCFILES): Add international/mule-conf.elc.
5608 * loadup.el ("international/mule-conf"): Load the byte compiled version.
5609 * international/mule-conf.el: Allow to be byte compiled.
5610
5611 * international/mule.el (define-charset): Purecopy props.
5612 (load-with-code-conversion): Purecopy doc string and file name.
5613 (put-charset-property): Purecopy strings.
5614 (auto-coding-alist, auto-coding-regexp-alist): Purecopy initial value.
5615
5616 * international/mule-cmds.el (register-input-method): Purecopy arguments.
5617 (define-char-code-property): Correctly purecopy the table.
5618
5619 * international/ccl.el (define-ccl-program): Purecopy the docstring.
5620
5621 * emacs-lisp/easy-mmode.el (define-minor-mode): Purecopy :lighter.
5622
5623 * subr.el (add-hook): Purecopy strings.
5624 (eval-after-load): Purecopy load-history-regexp and the form.
5625
5626 * custom.el (custom-declare-group): Purecopy load-file-name.
5627
5628 * subr.el (menu-bar-separator): New defconst.
5629 * net/eudc.el (eudc-tools-menu):
5630 * international/mule-cmds.el (set-coding-system-map)
5631 (mule-menu-keymap):
5632 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
5633 * vc-hooks.el (vc-menu-map):
5634 * replace.el (occur-mode-map):
5635 * menu-bar.el (menu-bar-file-menu, menu-bar-search-menu)
5636 (menu-bar-edit-menu, menu-bar-goto-menu)
5637 (menu-bar-custom-menu, menu-bar-showhide-menu)
5638 (menu-bar-options-menu, menu-bar-tools-menu)
5639 (menu-bar-encryption-decryption-menu, menu-bar-describe-menu)
5640 (menu-bar-search-documentation-menu, menu-bar-manuals-menu)
5641 (menu-bar-help-menu):
5642 * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu):
5643 * buff-menu.el (Buffer-menu-mode-map): Use menu-bar-separator.
5644
5645 * term/x-win.el (x-gtk-stock-map):
5646 * progmodes/vera-mode.el (auto-mode-alist):
5647 * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
5648 (inferior-lisp-program, inferior-lisp-load-command):
5649 * progmodes/hideshow.el (hs-special-modes-alist):
5650 * progmodes/gud.el (same-window-regexps):
5651 * progmodes/grep.el (grep-program, find-program, xargs-program):
5652 * net/telnet.el (same-window-regexps):
5653 * net/rlogin.el (same-window-regexps):
5654 * language/ethiopic.el (font-ccl-encoder-alist):
5655 * vc-sccs.el (vc-sccs-master-templates):
5656 * vc-rcs.el (vc-rcs-master-templates):
5657 * subr.el (cl-assertion-failed):
5658 * simple.el (next-error-overlay-arrow-position):
5659 * lpr.el (lpr-command):
5660 * locate.el (locate-ls-subdir-switches):
5661 * info.el (same-window-regexps, info)
5662 (Info-goto-emacs-command-node, Info-goto-emacs-key-command-node):
5663 * image-mode.el (image-mode, auto-mode-alist):
5664 * hippie-exp.el (hippie-expand-ignore-buffers):
5665 * format.el (format-alist):
5666 * find-dired.el (find-ls-subdir-switches, find-grep-options)
5667 (find-name-arg):
5668 * facemenu.el (facemenu-keybindings):
5669 * dired.el (dired-listing-switches, dired-chown-program):
5670 * diff.el (diff-switches, diff-command):
5671 * cus-edit.el (same-window-regexps):
5672 * bindings.el (mode-line-mule-info)
5673 (mode-line-buffer-identification): Purecopy strings.
5674
5675 2009-11-11 Juri Linkov <juri@jurta.org>
5676
5677 * simple.el (dired-get-filename) <declare-function>:
5678 Tell the byte-compiler about dired-get-filename.
5679 (shell-command): In Dired mode, get filename from the current line
5680 as the default value.
5681
5682 2009-11-10 Glenn Morris <rgm@gnu.org>
5683
5684 * dired.el, hi-lock.el, calendar/cal-menu.el, calendar/calendar.el:
5685 * calendar/holidays.el, progmodes/cperl-mode.el:
5686 Update x-popup-menu declarations.
5687
5688 * emacs-lisp/shadow.el (find-emacs-lisp-shadows)
5689 (list-load-path-shadows): Use dolist.
5690 (list-load-path-shadows): Use with-current-buffer.
5691
5692 2009-11-10 Juri Linkov <juri@jurta.org>
5693
5694 * minibuffer.el (read-file-name): Support a list of default values
5695 in `default-filename'. Use the first file name where only one
5696 element is required. Doc fix.
5697
5698 2009-11-09 Michael Albinus <michael.albinus@gmx.de>
5699
5700 * net/dbus.el (dbus-unregister-object): Release service, if no
5701 other method is registered for it.
5702
5703 2009-11-08 Markus Rost <rost@math.uni-bielefeld.de>
5704
5705 * bookmark.el (bookmark-completing-read): Sort bookmark names if
5706 bookmark-sort-flag is non-nil (Bug#4653).
5707
5708 2009-11-08 Chong Yidong <cyd@stupidchicken.com>
5709
5710 * emulation/cua-base.el: Add CUA property to some CC mode commands
5711 (Bug#4100).
5712
5713 2009-11-08 Kevin Ryde <user42@zip.com.au>
5714
5715 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp): Match noun
5716 at end of sentence (Bug#4818).
5717
5718 2009-11-08 Jared Finder <jfinder@crypticstudios.com>
5719
5720 * progmodes/compile.el (compilation-error-regexp-alist-alist):
5721 Handle "see declaration of" MSFT statements (Bug#4100).
5722
5723 2009-11-08 Michael Albinus <michael.albinus@gmx.de>
5724
5725 * net/tramp.el (tramp-advice-make-auto-save-file-name)
5726 (tramp-advice-file-expand-wildcards): Unload via
5727 `ad-remove-advice'.
5728
5729 * net/trampver.el: Update release number.
5730
5731 2009-11-08 Kevin Ryde <user42@zip.com.au>
5732
5733 * net/tramp.el (tramp-advice-file-expand-wildcards): Don't rely on
5734 `ad-do-it'.
5735
5736 2009-11-08 Andr <m00naticus@gmail.com> (tiny change)
5737
5738 * net/tramp.el (tramp-handle-write-region): Copy but rename temp file,
5739 in order to keep context in SELinux.
5740
5741 2009-11-08 Chong Yidong <cyd@stupidchicken.com>
5742
5743 * dired-aux.el (dired-query): Place cursor in echo area and allow
5744 C-g.
5745
5746 * dired.el (dired-mode-map): Disable dired-maybe-insert-subdir
5747 menu item if not on a directory (Bug#4701).
5748
5749 2009-11-07 Michael Albinus <michael.albinus@gmx.de>
5750
5751 Sync with Tramp 2.1.17.
5752
5753 * net/tramp.el (tramp-handle-copy-directory): Don't use
5754 `file-remote-p' (due to compatibility).
5755
5756 * net/tramp-compat.el (tramp-compat-copy-directory)
5757 (tramp-compat-delete-directory): New defuns.
5758
5759 * net/tramp-fish.el (tramp-fish-handle-delete-directory):
5760 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory):
5761 Use `tramp-compat-delete-directory'.
5762
5763 * net/tramp-smb.el (tramp-smb-handle-copy-directory)
5764 (tramp-smb-handle-delete-directory):
5765 Use `tramp-compat-copy-directory' and `tramp-compat-delete-directory'.
5766
5767 * net/trampver.el: Update release number.
5768
5769 2009-11-07 Chong Yidong <cyd@stupidchicken.com>
5770
5771 * tar-mode.el (tar-copy): Call write-region on the right buffer
5772 (Bug#4857).
5773
5774 * mail/rmailsum.el (rmail-summary-rmail-update): Call linum-update
5775 by hand, if necessary (Bug#4878).
5776
5777 2009-11-06 Chong Yidong <cyd@stupidchicken.com>
5778
5779 * buff-menu.el (Buffer-menu-buffer+size): Use display property to
5780 align size column (Bug#4839).
5781
5782 * emacs-lisp/autoload.el (autoload-rubric): Always issue a provide
5783 statement.
5784
5785 2009-11-05 Dan Nicolaescu <dann@ics.uci.edu>
5786
5787 * progmodes/ld-script.el (auto-mode-alist):
5788 * vc-hooks.el (vc-directory-exclusion-list): Purecopy strings.
5789
5790 * cus-face.el (custom-declare-face): Purecopy face spec.
5791
5792 2009-11-06 Kenichi Handa <handa@m17n.org>
5793
5794 * international/uni-bidi.el: Re-generated.
5795 * international/uni-category.el: Re-generated.
5796 * international/uni-combining.el: Re-generated.
5797 * international/uni-mirrored.el: Re-generated.
5798
5799 2009-11-05 Dan Nicolaescu <dann@ics.uci.edu>
5800
5801 * textmodes/tex-mode.el (tex-alt-dvi-print-command)
5802 (tex-dvi-print-command, tex-bibtex-command, tex-start-commands)
5803 (tex-start-options, slitex-run-command, latex-run-command)
5804 (tex-run-command, tex-directory):
5805 * textmodes/ispell.el (ispell-html-skip-alists)
5806 (ispell-tex-skip-alists, ispell-tex-skip-alists):
5807 * textmodes/fill.el (adaptive-fill-first-line-regexp):
5808 (adaptive-fill-regexp):
5809 * textmodes/dns-mode.el (auto-mode-alist):
5810 * progmodes/python.el (interpreter-mode-alist):
5811 * progmodes/etags.el (tags-compression-info-list):
5812 * progmodes/etags.el (tags-file-name):
5813 * net/browse-url.el (browse-url-galeon-program)
5814 (browse-url-firefox-program):
5815 * mail/sendmail.el (mail-signature-file)
5816 (mail-citation-prefix-regexp):
5817 * international/mule-conf.el (eight-bit):
5818 * international/latexenc.el (latex-inputenc-coding-alist):
5819 * international/fontset.el (x-pixel-size-width-font-regexp):
5820 * emacs-lisp/warnings.el (warning-type-format):
5821 * emacs-lisp/trace.el (trace-buffer):
5822 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-map)
5823 (emacs-lisp-mode-map):
5824 * calendar/holidays.el (holiday-solar-holidays)
5825 (holiday-bahai-holidays, holiday-islamic-holidays)
5826 (holiday-christian-holidays, holiday-hebrew-holidays)
5827 (hebrew-holidays-4, hebrew-holidays-3, hebrew-holidays-2)
5828 (hebrew-holidays-1, holiday-oriental-holidays)
5829 (holiday-general-holidays):
5830 * x-dnd.el (x-dnd-known-types):
5831 * tool-bar.el (tool-bar):
5832 * startup.el (site-run-file):
5833 * shell.el (shell-dumb-shell-regexp):
5834 * rfn-eshadow.el (file-name-shadow-tty-properties)
5835 (file-name-shadow-properties):
5836 * paths.el (remote-shell-program, news-directory):
5837 * mouse.el ([C-down-mouse-3]):
5838 * menu-bar.el (menu-bar-tools-menu):
5839 * jka-cmpr-hook.el (jka-compr-load-suffixes)
5840 (jka-compr-mode-alist-additions, jka-compr-compression-info-list)
5841 (jka-compr-compression-info-list):
5842 * isearch.el (search-whitespace-regexp):
5843 * image-file.el (image-file-name-extensions):
5844 * find-dired.el (find-ls-option):
5845 * files.el (directory-listing-before-filename-regexp)
5846 (directory-free-space-args, insert-directory-program)
5847 (list-directory-brief-switches, magic-fallback-mode-alist)
5848 (magic-fallback-mode-alist, auto-mode-interpreter-regexp)
5849 (automount-dir-prefix):
5850 * faces.el (face-x-resources, x-font-regexp, x-font-regexp-head)
5851 (x-font-regexp-slant, x-font-regexp-weight, face-x-resources)
5852 (face-font-registry-alternatives, face-font-registry-alternatives)
5853 (face-font-family-alternatives):
5854 * facemenu.el (facemenu-add-new-face, facemenu-background-menu)
5855 (facemenu-foreground-menu, facemenu-face-menu):
5856 * epa-hook.el (epa-file-name-regexp):
5857 * dnd.el (dnd-protocol-alist):
5858 * textmodes/rst.el (auto-mode-alist):
5859 * button.el (default-button): Purecopy strings.
5860
5861 2009-11-06 Glenn Morris <rgm@gnu.org>
5862
5863 * Makefile.in (ELCFILES): Update.
5864
5865 2009-11-05 Stefan Monnier <monnier@iro.umontreal.ca>
5866
5867 * emacs-lisp/lucid.el: Move to obsolete/lucid.el.
5868 * emacs-lisp/levents.el: Move to obsolete/levents.el.
5869
5870 * nxml/xsd-regexp.el (xsdre-gen-categories):
5871 * nxml/xmltok.el (xmltok-parse-entity):
5872 * nxml/rng-parse.el (rng-parse-validate-file):
5873 * nxml/rng-maint.el (rng-format-manual)
5874 (rng-manual-output-force-new-line):
5875 * nxml/rng-loc.el (rng-save-schema-location-1):
5876 * nxml/rng-cmpct.el (rng-c-parse-file):
5877 * nxml/nxml-maint.el (nxml-insert-target-repertoire-glyph-set):
5878 * nxml/nxml-parse.el (nxml-parse-file): Use with-current-buffer.
5879
5880 2009-11-05 Wilson Snyder <wsnyder@wsnyder.org>
5881
5882 * progmodes/verilog-mode.el (verilog-getopt-file, verilog-set-define):
5883 Remove extra save-excursions and make-variable-buffer-local's.
5884 Suggested by Stefan Monnier.
5885
5886 (verilog-getopt-file, verilog-module-inside-filename-p)
5887 (verilog-set-define): Merge GNU 1.35 and repair changes from
5888 switching to using with-current-buffer.
5889
5890 (verilog-read-always-signals-recurse): Fix "a == 2'b00 ? b : c"
5891 being treated as a number and confusing AUTORESET.
5892 Reported by Dan Dever.
5893
5894 (verilog-auto-ignore-concat, verilog-read-sub-decls-expr):
5895 Add verilog-auto-ignore-concat to fix backward compatibility with
5896 older verilog-modes. Reported by Dan Katz.
5897
5898 (verilog-read-auto-template): Fix AUTO_TEMPLATEs with regexps
5899 containing closing anchors "...$".
5900
5901 (verilog-read-decls): Fix AUTOREG not detecting "assign {a,b}".
5902 Reported by Wade Smith.
5903
5904 (verilog-batch-execute-func): Comment on function usage.
5905
5906 2009-11-05 Michael McNamara <mac@mail.brushroad.com>
5907
5908 * progmodes/verilog-mode.el (verilog-label-re): Fix regular expression
5909 for labels.
5910
5911 (verilog-label-re, verilog-calc-1): Support proper indent of named
5912 asserts.
5913
5914 (verilog-backward-token, verilog-basic-complete-re)
5915 (verilog-beg-of-statement, verilog-indent-re): Support proper
5916 indent of the assert statement at the beginning of a block of text.
5917
5918 (verilog-beg-block-re, verilog-ovm-begin-re): Support the
5919 `ovm_object_param_utils_begin and `ovm_component_param_utils_begin
5920 tokens as begins.
5921
5922 2009-11-05 Glenn Morris <rgm@gnu.org>
5923
5924 * emacs-lisp/bytecomp.el (byte-compile-insert-header): Drop test for
5925 Emacs 19. (Bug#1531)
5926 (byte-compile-fix-header): Update for the above change.
5927 Drop test for epoch::version.
5928
5929 * emacs-lisp/autoload.el (autoload-rubric): Add optional feature arg.
5930 * cus-dep.el (custom-make-dependencies):
5931 * finder.el (finder-compile-keywords):
5932 Use autoload-rubric's feature argument.
5933
5934 * calendar/diary-lib.el (top-level): Make load behave more like require.
5935
5936 * vc-git.el (vc-git-stash-map): Move definition before use.
5937
5938 2009-11-04 Dan Nicolaescu <dann@ics.uci.edu>
5939
5940 * custom.el (custom-declare-group): Purecopy standard-value.
5941 (custom-declare-group): Purecopy custom-prefix.
5942
5943 * international/mule.el (load-with-code-conversion):
5944 Call do-after-load-evaluation unconditionally.
5945
5946 * emacs-lisp/bytecomp.el (byte-compile-output-file-form): Handle defvaralias.
5947
5948 2009-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
5949
5950 * descr-text.el: Require help-mode rather than help-fns (bug#4861).
5951
5952 2009-11-04 Glenn Morris <rgm@gnu.org>
5953
5954 * emacs-lisp/bytecomp.el (byte-compile-version-cond): Remove macro.
5955 (byte-compile-compatibility): Remove option.
5956 (byte-compile-close-variables, byte-compile-fix-header)
5957 (byte-compile-insert-header, byte-compile-output-docform)
5958 (byte-compile-file-form-defmumble, byte-compile-byte-code-maker)
5959 (byte-compile-lambda, byte-compile-form, byte-defop-compiler19)
5960 (byte-compile-list, byte-compile-concat, byte-compile-function-form)
5961 (byte-compile-insert, byte-compile-defun):
5962 Remove support for byte-compile-compatibility and Emacs 18. (Bug#4571)
5963 (byte-defop-compiler19): Remove.
5964 Without byte-compile-compatibility, the 'emacs19-opcode property is not
5965 used by anything. Replace all calls with byte-defop-compiler.
5966
5967 2009-11-04 Juri Linkov <juri@jurta.org>
5968
5969 * menu-bar.el (menu-bar-make-mm-toggle): Quote each element of `props'.
5970 (menu-bar-options-menu): Don't quote the `prop' arg of
5971 `menu-bar-make-mm-toggle'.
5972
5973 2009-11-04 Juanma Barranquero <lekktu@gmail.com>
5974
5975 * calendar/calendar.el (cal-loaddefs):
5976 * calendar/diary-lib.el (diary-loaddefs):
5977 * calendar/holidays.el (hol-loaddefs):
5978 * eshell/esh-module.el (esh-groups): Load rather than require.
5979
5980 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
5981
5982 * calendar/todo-mode.el (todo-add-category): Don't hardcode
5983 point-min==1.
5984 (todo-top-priorities): Only display-buffer when called interactively.
5985 (todo-item-start): Don't save excursion point.
5986 (todo-item-end): Be slightly more careful. Add `include-sep' arg.
5987 (todo-insert-item-here, todo-file-item, todo-remove-item):
5988 Adjust uses of todo-item-start and todo-item-end.
5989
5990 * emacs-lisp/autoload.el (generated-autoload-feature): Remove.
5991 (autoload-rubric): Don't use any more.
5992
5993 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Use dolist,
5994 and only put a prop if it is non-nil.
5995
5996 2009-11-03 Juri Linkov <juri@jurta.org>
5997
5998 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle)
5999 (menu-bar-options-menu): Fix list quoting (Bug#4429).
6000
6001 * buff-menu.el (Buffer-menu-mode-map): Add hyphen between "Buffer"
6002 and "Menu" to make top-level menu item visually one unit (like
6003 it's done for "Lisp-Interaction", "Emacs-Lisp" and other
6004 multi-word menu items). Fix :help string for quit-window.
6005
6006 2009-11-03 Glenn Morris <rgm@gnu.org>
6007
6008 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar)
6009 (byte-compile-file-form-define-abbrev-table)
6010 (byte-compile-file-form-custom-declare-variable)
6011 (byte-compile-variable-ref, byte-compile-defvar):
6012 Whether or not a warning is enabled should only affect whether we issue
6013 the warning, not whether or not we collect the relevant data.
6014 Eg warnings can be turned on and off throughout the course of a file.
6015
6016 * eshell/esh-mode.el (ansi-color-apply-on-region): Autoload it...
6017 (eshell-handle-ansi-color): ... Rather than requiring ansi-color.
6018
6019 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
6020
6021 * term/ns-win.el (ns-scroll-bar-move, ns-face-at-pos):
6022 * play/mpuz.el (mpuz-create-buffer):
6023 * play/landmark.el (lm-prompt-for-move, lm-print-wts, lm-print-smell)
6024 (lm-print-y,s,noise, lm-print-w0, lm-init):
6025 * play/gomoku.el (gomoku-prompt-for-move):
6026 * play/fortune.el (fortune-in-buffer):
6027 * play/dissociate.el (dissociated-press):
6028 * play/decipher.el (decipher-adjacency-list, decipher-display-regexp)
6029 (decipher-analyze-buffer, decipher-stats-buffer, decipher-stats-buffer):
6030 * mail/supercite.el (sc-eref-show):
6031 * mail/smtpmail.el (smtpmail-send-it):
6032 * mail/rmailsum.el (rmail-summary-next-labeled-message)
6033 (rmail-summary-previous-labeled-message, rmail-summary-wipe)
6034 (rmail-summary-undelete-many, rmail-summary-rmail-update)
6035 (rmail-summary-goto-msg, rmail-summary-expunge)
6036 (rmail-summary-get-new-mail, rmail-summary-search-backward)
6037 (rmail-summary-add-label, rmail-summary-output-menu)
6038 (rmail-summary-output-body):
6039 * mail/rfc822.el (rfc822-addresses):
6040 * mail/reporter.el (reporter-dump-variable, reporter-dump-state):
6041 * mail/mailpost.el (post-mail-send-it):
6042 * mail/hashcash.el (hashcash-generate-payment):
6043 * mail/feedmail.el (feedmail-run-the-queue)
6044 (feedmail-queue-send-edit-prompt-help-first)
6045 (feedmail-send-it-immediately, feedmail-give-it-to-buffer-eater)
6046 (feedmail-deduce-address-list):
6047 * eshell/esh-ext.el (eshell-remote-command):
6048 * eshell/em-unix.el (eshell-occur-mode-mouse-goto):
6049 * emulation/viper-util.el (viper-glob-unix-files, viper-save-setting)
6050 (viper-wildcard-to-regexp, viper-glob-mswindows-files)
6051 (viper-save-string-in-file, viper-valid-marker):
6052 * emulation/viper-keym.el (viper-toggle-key):
6053 * emulation/viper-ex.el (ex-expand-filsyms, viper-get-ex-file)
6054 (ex-edit, ex-global, ex-mark, ex-next-related-buffer, ex-quit)
6055 (ex-get-inline-cmd-args, ex-tag, ex-command, ex-compile):
6056 * emulation/viper-cmd.el (viper-exec-form-in-vi)
6057 (viper-exec-form-in-emacs, viper-brac-function):
6058 * emulation/viper.el (viper-delocalize-var):
6059 * emulation/vip.el (vip-mode, vip-get-ex-token, vip-ex, vip-get-ex-pat)
6060 (vip-get-ex-command, vip-get-ex-opt-gc, vip-get-ex-buffer)
6061 (vip-get-ex-count, vip-get-ex-file, ex-edit, ex-global, ex-mark)
6062 (ex-map, ex-unmap, ex-quit, ex-read, ex-tag, ex-command):
6063 * emulation/vi.el (vi-switch-mode, vi-ex-cmd):
6064 * emulation/edt.el (edt-electric-helpify):
6065 * emulation/cua-rect.el (cua--rectangle-aux-replace):
6066 * emulation/cua-gmrk.el (cua--insert-at-global-mark)
6067 (cua--delete-at-global-mark, cua--copy-rectangle-to-global-mark)
6068 (cua-indent-to-global-mark-column):
6069 * calendar/diary-lib.el (calendar-mark-1):
6070 * calendar/cal-hebrew.el (calendar-hebrew-mark-date-pattern):
6071 Use with-current-buffer.
6072 * emulation/viper.el (viper-delocalize-var): Use dolist.
6073
6074 2009-11-03 Chong Yidong <cyd@stupidchicken.com>
6075
6076 * comint.el (comint-replace-by-expanded-history-before-point):
6077 Replace !! with the previous input string literally (Bug#1795).
6078
6079 2009-11-02 Jay Belanger <jay.p.belanger@gmail.com>
6080
6081 * calc/calc-forms.el (calc-date-notation): Allow a "blank string"
6082 to be made up of whitespace.
6083
6084 2009-11-02 Chong Yidong <cyd@stupidchicken.com>
6085
6086 * minibuffer.el (read-file-name): Don't use file dialogs for
6087 remote directories (Bug#99).
6088
6089 2009-11-01 Chong Yidong <cyd@stupidchicken.com>
6090
6091 * progmodes/sh-script.el (sh-font-lock-paren): Fix last change.
6092
6093 2009-11-01 Andreas Schwab <schwab@linux-m68k.org>
6094
6095 * view.el (view-mode-exit): If OLD-BUF is dead bury the buffer
6096 instead of deleting the window or frame.
6097
6098 2009-10-31 Chong Yidong <cyd@stupidchicken.com>
6099
6100 * textmodes/sgml-mode.el (sgml-mode-facemenu-add-face-function):
6101 Support face colors.
6102
6103 * textmodes/tex-mode.el (tex-facemenu-add-face-function):
6104 New function. Support face colors (Bug#1168).
6105 (tex-common-initialization): Use it.
6106
6107 * facemenu.el (facemenu-enable-faces-p): Enable facemenu if the
6108 mode allows it (Bug#1168).
6109
6110 2009-10-31 Juri Linkov <juri@jurta.org>
6111
6112 * facemenu.el (list-colors-display): Don't mark buffer as
6113 modified (Bug#3948).
6114
6115 2009-10-31 Chong Yidong <cyd@stupidchicken.com>
6116
6117 * international/mule-diag.el (list-character-sets-1):
6118 Minor message fix (Bug#3526).
6119
6120 * progmodes/etags.el (etags-list-tags, etags-tags-apropos):
6121 Fix face property (Bug#4834).
6122 (etags-list-tags, etags-tags-apropos-additional)
6123 (etags-tags-apropos, tags-select-tags-table): Add follow-link
6124 property.
6125
6126 * menu-bar.el (menu-bar-tools-menu): Add Semantic and EDE menu
6127 items.
6128
6129 2009-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
6130
6131 * textmodes/two-column.el (2C-split):
6132 * textmodes/texnfo-upd.el (texinfo-multi-file-included-list):
6133 * textmodes/tex-mode.el (tex-set-buffer-directory):
6134 * textmodes/spell.el (spell-region, spell-string):
6135 * textmodes/reftex.el (reftex-erase-buffer):
6136 (reftex-get-file-buffer-force, reftex-kill-temporary-buffers):
6137 * textmodes/reftex-toc.el (reftex-toc-promote-action):
6138 * textmodes/reftex-sel.el (reftex-get-offset, reftex-insert-docstruct)
6139 (reftex-select-item):
6140 * textmodes/reftex-ref.el (reftex-label-info-update)
6141 (reftex-offer-label-menu):
6142 * textmodes/reftex-index.el (reftex-index-change-entry)
6143 (reftex-index-phrases-info):
6144 * textmodes/reftex-global.el (reftex-create-tags-file)
6145 (reftex-save-all-document-buffers, reftex-ensure-write-access):
6146 * textmodes/reftex-dcr.el (reftex-echo-ref, reftex-echo-cite)
6147 (reftex-view-crossref-from-bibtex):
6148 * textmodes/reftex-cite.el (reftex-bibtex-selection-callback)
6149 (reftex-extract-bib-entries-from-thebibliography)
6150 (reftex-all-used-citation-keys, reftex-create-bibtex-file):
6151 * textmodes/refbib.el (r2b-capitalize-title):
6152 (r2b-convert-buffer, r2b-help):
6153 * textmodes/page-ext.el (pages-directory)
6154 (pages-directory-goto-with-mouse):
6155 * textmodes/bibtex.el (bibtex-validate-globally):
6156 * textmodes/bib-mode.el (bib-capitalize-title):
6157 * textmodes/artist.el (artist-clear-buffer, artist-system):
6158 * progmodes/xscheme.el (global-set-scheme-interaction-buffer):
6159 (local-set-scheme-interaction-buffer, xscheme-process-filter)
6160 (verify-xscheme-buffer, xscheme-enter-interaction-mode)
6161 (xscheme-enter-debugger-mode, xscheme-debugger-mode-p)
6162 (xscheme-send-control-g-interrupt, xscheme-start-process)
6163 (xscheme-process-sentinel, xscheme-cd):
6164 * progmodes/verilog-mode.el (verilog-read-always-signals)
6165 (verilog-set-define, verilog-getopt-file)
6166 (verilog-module-inside-filename-p):
6167 * progmodes/sh-script.el:
6168 * progmodes/python.el (python-pdbtrack-get-source-buffer)
6169 (python-pdbtrack-grub-for-buffer, python-execute-file):
6170 * progmodes/octave-inf.el (inferior-octave):
6171 * progmodes/idlwave.el (idlwave-scan-user-lib-files)
6172 (idlwave-shell-compile-helper-routines, idlwave-set-local)
6173 (idlwave-display-completion-list-xemacs, idlwave-list-abbrevs)
6174 (idlwave-display-completion-list-emacs, idlwave-list-load-path-shadows)
6175 (idlwave-completion-fontify-classes, idlwave-display-calling-sequence):
6176 * progmodes/idlw-shell.el (idlwave-shell-examine-display-clear)
6177 (idlwave-shell-filter, idlwave-shell-examine-highlight)
6178 (idlwave-shell-sentinel, idlwave-shell-filter-directory)
6179 (idlwave-shell-display-line, idlwave-shell-set-bp-in-module)
6180 (idlwave-shell-examine-display, idlwave-shell-run-region)
6181 (idlwave-shell-filter-bp, idlwave-shell-save-and-action)
6182 (idlwave-shell-sources-filter, idlwave-shell-goto-next-error):
6183 * progmodes/idlw-help.el (idlwave-help-get-special-help)
6184 (idlwave-help-get-help-buffer):
6185 * progmodes/gud.el (gud-basic-call, gud-find-class)
6186 (gud-tooltip-activate-mouse-motions-if-enabled):
6187 * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
6188 * progmodes/ebrowse.el (ebrowse-member-table, ebrowse-save-tree-as)
6189 (ebrowse-view-exit-fn, ebrowse-tags-list-members-in-file)
6190 (ebrowse-tags-next-file):
6191 * progmodes/ebnf2ps.el (ebnf-generate-eps, ebnf-generate-eps)
6192 (ebnf-eps-production-list, ebnf-begin-file, ebnf-log)
6193 (ebnf-eps-finish-and-write):
6194 * progmodes/cpp.el (cpp-edit-save):
6195 * progmodes/cperl-mode.el (cperl-pod-to-manpage):
6196 * progmodes/cc-defs.el (c-emacs-features):
6197 * progmodes/antlr-mode.el (antlr-invalidate-context-cache)
6198 (antlr-directory-dependencies):
6199 * progmodes/ada-xref.el (ada-gnat-parse-gpr, ada-get-ali-file-name)
6200 (ada-run-application, ada-find-in-src-path, ada-goto-parent)
6201 (ada-find-any-references, ada-make-filename-from-adaname)
6202 (ada-make-body-gnatstub):
6203 * obsolete/rnews.el (news-list-news-groups):
6204 * obsolete/resume.el (resume-suspend-hook, resume-write-buffer-to-file):
6205 * obsolete/iso-acc.el (iso-acc-minibuf-setup):
6206 * net/rcirc.el (rcirc-debug):
6207 * net/newst-treeview.el (newsticker--treeview-list-add-item)
6208 (newsticker--treeview-list-clear, newsticker-treeview-browse-url)
6209 (newsticker--treeview-list-update-faces, newsticker-treeview-save)
6210 (newsticker--treeview-item-show-text, newsticker--treeview-item-show)
6211 (newsticker--treeview-tree-update-tag, newsticker--treeview-buffer-init)
6212 (newsticker-treeview-show-item, newsticker--treeview-unfold-node)
6213 (newsticker--treeview-list-clear-highlight)
6214 (newsticker--treeview-list-update-highlight)
6215 (newsticker--treeview-list-highlight-start)
6216 (newsticker--treeview-tree-update-highlight)
6217 (newsticker--treeview-get-selected-item)
6218 (newsticker-treeview-mark-list-items-old)
6219 (newsticker--treeview-set-current-node):
6220 * net/newst-plainview.el (newsticker--buffer-set-uptodate):
6221 * net/newst-backend.el (newsticker--get-news-by-funcall)
6222 (newsticker--get-news-by-wget, newsticker--image-get)
6223 (newsticker--image-sentinel):
6224 * net/mairix.el (mairix-rmail-fetch-field, mairix-gnus-fetch-field):
6225 * net/eudcb-ph.el (eudc-ph-do-request, eudc-ph-open-session):
6226 (eudc-ph-close-session):
6227 * net/eudc.el (eudc-save-options):
6228 * language/thai-word.el (thai-update-word-table):
6229 * language/japan-util.el (japanese-string-conversion):
6230 * international/titdic-cnv.el (tsang-quick-converter)
6231 (ziranma-converter, ctlau-converter):
6232 * international/mule-cmds.el (describe-language-environment):
6233 * international/ja-dic-cnv.el (skkdic-convert-okuri-ari)
6234 (skkdic-convert-postfix, skkdic-convert-prefix):
6235 (skkdic-convert-okuri-nasi, skkdic-convert):
6236 * emacs-lisp/re-builder.el (reb-update-overlays):
6237 * emacs-lisp/pp.el (pp-to-string, pp-display-expression):
6238 * emacs-lisp/gulp.el (gulp-send-requests):
6239 * emacs-lisp/find-gc.el (trace-call-tree):
6240 * emacs-lisp/eieio-opt.el (eieio-browse, eieio-describe-class)
6241 (eieio-describe-generic):
6242 * emacs-lisp/eieio-base.el (eieio-persistent-read):
6243 * emacs-lisp/edebug.el (edebug-outside-excursion):
6244 * emacs-lisp/debug.el (debugger-make-xrefs):
6245 * emacs-lisp/cust-print.el (custom-prin1-to-string):
6246 * emacs-lisp/chart.el (chart-new-buffer):
6247 * emacs-lisp/authors.el (authors-scan-el, authors-scan-change-log):
6248 Use with-current-buffer.
6249 * textmodes/artist.el (artist-system): Don't call
6250 copy-sequence on a fresh string.
6251 * progmodes/idlw-shell.el (easymenu setup): Use dolist.
6252
6253 2009-10-31 Stephen Berman <stephen.berman@gmx.net>
6254
6255 * calendar/todo-mode.el (todo-edit-item): Signal an error if there
6256 is no item to edit. (Bug#4820)
6257 (todo-top-priorities): Restore point and restore narrowing in Todo
6258 buffer. (Bug#4820)
6259
6260 2009-10-31 Glenn Morris <rgm@gnu.org>
6261
6262 * net/ange-ftp.el (top-level): Don't require dired when compiling.
6263 (comint-last-output-start, comint-last-input-start)
6264 (comint-last-input-end): Don't defvar when compiling.
6265 (ange-ftp-process-file): Use bound-and-true-p.
6266
6267 * pcmpl-rpm.el (top-level): Move provide statement to end.
6268 (pcmpl-rpm): Remove unused custom group.
6269
6270 * pcmpl-gnu.el (tar-parse-info, tar-header-name): Declare for compiler.
6271
6272 * mail/emacsbug.el (report-emacs-bug): Request `emacs -Q' recipes.
6273
6274 * emacs-lisp/bytecomp.el (byte-compile-warning-types)
6275 (byte-compile-warnings): Add `constants' as an option.
6276 (byte-compile-callargs-warn, byte-compile-arglist-warn)
6277 (display-call-tree): Update for byte-compile-fdefinition possibly
6278 returning `(macro lambda ...)'. (Bug#4778)
6279 (byte-compile-variable-ref, byte-compile-setq-default):
6280 Respect `constants' member of byte-compile-warnings.
6281
6282 2009-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
6283
6284 * vc-bzr.el (vc-bzr-revision-keywords): New var.
6285 (vc-bzr-revision-completion-table): Use it to fix completion of "s:"
6286 to "submit:".
6287
6288 2009-10-30 Dan Nicolaescu <dann@ics.uci.edu>
6289
6290 * textmodes/ispell.el (ispell-skip-region-alist):
6291 * international/mule-conf.el (eight-bit):
6292 * international/fontset.el (font-encoding-alist):
6293 * startup.el (pure-space-overflow-message):
6294 * simple.el (overwrite-mode-textual, overwrite-mode-binary):
6295 * paths.el (gnus-nntp-service, rmail-spool-directory)
6296 (term-file-prefix):
6297 * files.el (save-some-buffers-action-alist):
6298 * cmuscheme.el (same-window-buffer-names):
6299 * ielm.el (same-window-buffer-names):
6300 * shell.el (same-window-buffer-names):
6301 * mail/sendmail.el (same-window-buffer-names):
6302 * progmodes/inf-lisp.el (same-window-buffer-names):
6303 * bindings.el (mode-line-client)
6304 (mode-line-column-line-number-mode-map):
6305 * language/tibetan.el (tibetan-precomposition-rule-regexp)
6306 (tibetan-precomposed-regexp): Purecopy string arguments.
6307
6308 2009-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
6309
6310 * calc/calc.el (calc, calc-refresh, calc-trail-buffer, calc-record)
6311 (calcDigit-nondigit):
6312 * calc/calc-yank.el (calc-copy-to-buffer):
6313 * calc/calc-units.el (calc-invalidate-units-table):
6314 * calc/calc-trail.el (calc-trail-yank):
6315 * calc/calc-store.el (calc-insert-variables):
6316 * calc/calc-rewr.el (math-rewrite, math-rewrite-phase):
6317 * calc/calc-prog.el (calc-read-parse-table):
6318 * calc/calc-keypd.el (calc-do-keypad, calc-keypad-right-click):
6319 * calc/calc-help.el (calc-describe-bindings, calc-describe-key):
6320 * calc/calc-graph.el (calc-graph-delete, calc-graph-add-curve)
6321 (calc-graph-juggle, calc-graph-count-curves, calc-graph-plot)
6322 (calc-graph-plot, calc-graph-format-data, calc-graph-set-styles)
6323 (calc-graph-name, calc-graph-find-command, calc-graph-view)
6324 (calc-graph-view, calc-gnuplot-command, calc-graph-init):
6325 * calc/calc-ext.el (calc-realign):
6326 * calc/calc-embed.el (calc-do-embedded, calc-do-embedded)
6327 (calc-embedded-finish-edit, calc-embedded-make-info)
6328 (calc-embedded-finish-command, calc-embedded-stack-change):
6329 * calc/calc-aent.el (calcAlg-enter): Use with-current-buffer.
6330
6331 * pcomplete.el (pcomplete-comint-setup): If there's a choice, replace
6332 shell-dynamic-complete-filename in preference to
6333 comint-dynamic-complete-filename.
6334
6335 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
6336 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
6337 Don't consider whether the display supports colors.
6338 (bookmark-import-new-list): Use dolist.
6339 (bookmark-bmenu-mode-map): Move initialization into declaration.
6340 (bookmark-bmenu-list): Use dolist, simplify.
6341 (bookmark-show-all-annotations): Use save-selected-window and dolist.
6342 (menu-bar-final-items): Use push.
6343
6344 2009-10-28 Bernhard Herzog <bernhard.herzog@intevation.de> (tiny change)
6345
6346 * vc-hg.el (vc-hg-state, vc-hg-working-revision): Use process-file so
6347 it works on remote files.
6348 (vc-hg-diff): Don't pass any `--cwd' argument.
6349
6350 2009-10-27 Kevin Ryde <user42@zip.com.au>
6351
6352 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
6353 Use help-xref-info-regexp and help-xref-url-regexp to identify links.
6354 (Further to Bug#3921).
6355
6356 2009-10-27 Michael Albinus <michael.albinus@gmx.de>
6357
6358 * net/tramp-imap.el (top): Add `X-Size' to `imap-hash-headers'.
6359 (tramp-imap-do-copy-or-rename-file): Don't use the inode, when
6360 calling `tramp-imap-put-file'. Add file size to the call.
6361 (tramp-imap-get-file-entries): Compute also user name, file size,
6362 and date.
6363 (tramp-imap-handle-insert-directory): Insert uid and gid.
6364 (tramp-imap-handle-file-attributes): Transform uid and gid
6365 according to `id-format'.
6366 (tramp-imap-put-file): New optional parameter SIZE. Encode file
6367 size in header X-Size.
6368
6369 2009-10-26 Juanma Barranquero <lekktu@gmail.com>
6370
6371 * simple.el (transpose-subr): Give clearer error when the mark
6372 is not set. (Bug#4807)
6373
6374 2009-10-26 Michael Albinus <michael.albinus@gmx.de>
6375
6376 * net/tramp.el (tramp-perl-file-truename): New defconst.
6377 Perl code contributed by yary <not.com@gmail.com> (tiny change).
6378 (tramp-handle-file-truename, tramp-get-remote-perl): Use it.
6379 Check also for "perl-file-spec" and "perl-cwd-realpath" properties.
6380 (tramp-handle-write-region): In case of APPEND, reuse the tmpfile name.
6381
6382 * net/tramp-imap.el (tramp-imap-file-name-handler-alist):
6383 Ignore `dired-call-process'.
6384 (tramp-imap-make-iht): Use `user' and `ssl' with `imap-hash-make'.
6385
6386 2009-10-26 Julian Scheid <julians37@gmail.com>
6387
6388 * net/tramp.el (tramp-perl-file-name-all-completions): New defconst.
6389 (tramp-get-remote-readlink): New defun.
6390 (tramp-handle-file-truename): Use it.
6391 (tramp-handle-file-exists-p): Check file-attributes cache, assume
6392 file exists if cache value present.
6393 (tramp-check-cached-permissions): New defun.
6394 (tramp-handle-file-readable-p): Use it.
6395 (tramp-handle-file-writable-p): Likewise.
6396 (tramp-handle-file-executable-p): Likewise.
6397 (tramp-handle-file-name-all-completions): Try using Perl to get
6398 partial completions. When perl not available, combine `cd' and
6399 `ls' into single remote operation and use shell expansion to get
6400 partial remote directory contents. Set `file-exists-p' cache for
6401 directory and any files returned by ls. Change cache handling to
6402 support partial directory contents. Use error message emitted by
6403 remote `cd' or Perl code for local tramp-error.
6404 (tramp-do-copy-or-rename-file-directly): Avoid separate
6405 tramp-send-command-and-check call.
6406 (tramp-handle-process-file): Merge three remote ops into one.
6407 Do not flush all caches when `process-file-side-effects' is set.
6408 (tramp-handle-write-region): Avoid tramp-set-file-uid-gid if
6409 file-attributes shows uid/gid to be set already.
6410
6411 2009-10-26 Dan Nicolaescu <dann@ics.uci.edu>
6412
6413 * textmodes/tex-mode.el (tex-dvi-view-command)
6414 (tex-show-queue-command, tex-open-quote):
6415 * progmodes/ruby-mode.el (auto-mode-alist)
6416 (interpreter-mode-alist): Purecopy strings.
6417
6418 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Purecopy item names.
6419
6420 * emacs-lisp/derived.el (define-derived-mode): Purecopy the doc
6421 string for the hook, keymap and abbrev table.
6422
6423 * emacs-lisp/byte-run.el (make-obsolete): Purecopy the current name.
6424
6425 * x-dnd.el (x-dnd-xdnd-to-action):
6426 * startup.el (fancy-startup-text, fancy-about-text): Change to
6427 defconst from defvar.
6428
6429 * ps-print.el (ps-page-dimensions-database): Purecopy initial value.
6430
6431 * mouse.el (mouse-buffer-menu-mode-groups, x-fixed-font-alist):
6432 Purecopy initialization strings.
6433
6434 * mail/sendmail.el (mail-header-separator)
6435 (mail-personal-alias-file):
6436 * mail/rmail.el (rmail-default-dont-reply-to-names)
6437 (rmail-ignored-headers, rmail-retry-ignored-headers)
6438 (rmail-highlighted-headers, rmail-secondary-file-directory)
6439 (rmail-secondary-file-regexp):
6440 * files.el (null-device, file-name-invalid-regexp)
6441 (locate-dominating-stop-dir-regexp)
6442 (inhibit-first-line-modes-regexps): Purecopy initialization strings.
6443 (interpreter-mode-alist): Use mapcar instead of mapc.
6444
6445 * buff-menu.el (Buffer-menu-mode-map): Purecopy name.
6446
6447 * bindings.el (mode-line-major-mode-keymap): Purecopy name.
6448 (completion-ignored-extensions):
6449 (debug-ignored-errors): Purecopy strings.
6450
6451 2009-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
6452
6453 * pcomplete.el (pcomplete-std-complete): Obey pcomplete-use-paring.
6454 (pcomplete, pcomplete-parse-buffer-arguments, pcomplete-opt)
6455 (pcomplete--here): Use push.
6456
6457 * subr.el (all-completions): Declare the 4th arg obsolete.
6458
6459 2009-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
6460
6461 * pcomplete.el (pcomplete-unquote-argument-function): New var.
6462 (pcomplete-unquote-argument): New function.
6463 (pcomplete--common-suffix): Always pay attention to case.
6464 (pcomplete--table-subvert): Quote and unquote the text.
6465 (pcomplete--common-quoted-suffix): New function.
6466 (pcomplete-std-complete): Use it and pcomplete-begin.
6467
6468 * bookmark.el (bookmark-bmenu-list): Don't use switch-to-buffer if
6469 we're inside a dedicated or minibuffer window.
6470
6471 2009-10-24 Karl Fogel <kfogel@red-bean.com>
6472
6473 * bookmark.el: Update documentation, especially documentation
6474 of `bookmark-alist' and of the bookmark file format.
6475 Patch by Drew Adams, with minor tweaks from me. (Bug#4195)
6476
6477 2009-10-24 Chong Yidong <cyd@stupidchicken.com>
6478
6479 * mail/emacsbug.el (report-emacs-bug): Clarify that the
6480 keybindings apply to the mail buffer (Bug#4003). Shrink help
6481 window to buffer.
6482
6483 * whitespace.el (whitespace-mode, whitespace-newline-mode)
6484 (global-whitespace-mode, global-whitespace-newline-mode)
6485 (whitespace-toggle-options, global-whitespace-toggle-options):
6486 Doc fix (Bug#3660).
6487
6488 * nxml/nxml-mode.el (nxml-balanced-close-start-tag): Use the value
6489 of xmltok-start before the end tag was inserted (Bug#2840).
6490
6491 * progmodes/sh-script.el (sh-font-lock-paren): Handle case
6492 patterns that are preceded by an open-paren (Bug#1320).
6493
6494 2009-10-24 Sven Joachim <svenjoac@gmx.de>
6495
6496 * files.el (delete-directory): Delete symlinks to directories with
6497 delete-file (Bug#4739).
6498
6499 2009-10-24 Dan Nicolaescu <dann@ics.uci.edu>
6500
6501 * vc.el (vc-backend-for-registration): Rename from
6502 vc-get-backend-for-registration. Update callers.
6503
6504 * international/mule-cmds.el (set-language-info-alist):
6505 Purecopy lang-env.
6506 (leim-list-header, leim-list-entry-regexp): Change defvars to defconst.
6507 (charset): Purecopy the name.
6508 (define-char-code-property): Purecopy string arguments.
6509
6510 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
6511 Purecopy string arguments.
6512
6513 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
6514 * ediff-hook.el (menu-bar-ediff-menu):
6515 * buff-menu.el (Buffer-menu-mode-map): Purecopy names and tooltips.
6516 * bookmark.el (menu-bar-bookmark-map): Add :help and purecopy the name.
6517
6518 2009-10-24 Glenn Morris <rgm@gnu.org>
6519
6520 * comint.el (comint-dynamic-list-completions):
6521 * term.el (term-dynamic-list-completions): Use choose-completion rather
6522 than obsolete alias mouse-choose-completion.
6523
6524 * filecache.el (file-cache-completions-keymap): Bind mouse-2 to
6525 file-cache-choose-completion.
6526 (file-cache-choose-completion): Handle an optional event argument.
6527 (file-cache-mouse-choose-completion): Make it an obsolete alias.
6528
6529 * progmodes/octave-mod.el (octave-complete-symbol):
6530 Use choose-completion if mouse-choose-completion is ever removed.
6531
6532 * textmodes/sgml-mode.el (sgml-looking-back-at): Move definition before
6533 use.
6534
6535 * emacs-lisp/checkdoc.el (generate-autoload-cookie): Define for
6536 compiler.
6537
6538 * vc-hooks.el (vc-responsible-backend): Fix declaration.
6539
6540 2009-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
6541
6542 * minibuffer.el (completion--embedded-envvar-table): Fix last change.
6543 Ignore `pred' now that we receive one.
6544 Handle test-completion specially.
6545
6546 2009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
6547
6548 * vc.el (vc-responsible-backend): Throw an error if not backend is
6549 found. Remove the REGISTER argument. Move the code dealing with
6550 REGISTER ...
6551 (vc-get-backend-for-registration): ... here. New function.
6552 (vc-deduce-fileset): Call vc-get-backend-for-registration instead
6553 of vc-responsible-backend, pass the file name instead of the
6554 directory name.
6555
6556 2009-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
6557
6558 * pcomplete.el (pcomplete-common-suffix, pcomplete-table-subvert):
6559 New funs.
6560 (pcomplete-std-complete): Use them. Obey pcomplete-termination-string.
6561 (pcomplete-comint-setup): Don't modify a global var via
6562 accidental side-effects.
6563 (pcomplete-shell-setup): Adjust call accordingly.
6564 (pcomplete-parse-comint-arguments): Use push.
6565
6566 2009-10-23 Chong Yidong <cyd@stupidchicken.com>
6567
6568 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
6569 Allow uncapitalized info node names (Bug#3921).
6570
6571 * mail/emacsbug.el (report-emacs-bug): Tweak the sentence pointing
6572 to the DEBUG file (Bug#3781).
6573
6574 2009-10-23 Jari Aalto <jari.aalto@cante.net>
6575
6576 * textmodes/ispell.el (ispell-dictionary-base-alist): Add finnish
6577 dictionary entry (Bug#4579).
6578
6579 2009-10-23 Michael Albinus <michael.albinus@gmx.de>
6580
6581 * net/tramp.el (top): Remove `tramp-rfn-eshadow-update-overlay'
6582 from `rfn-eshadow-update-overlay-hook' when unloading.
6583 (tramp-methods): Add `tramp-copy-keep-tmpfile' for "rsync" and
6584 "rsyncc". Adjust doc string.
6585 (tramp-temp-buffer-file-name): New buffer-local defvar.
6586 (tramp-handle-insert-file-contents, tramp-handle-write-region):
6587 Keep temporary file when indicated by method ("rsync" and
6588 "rsyncc").
6589 (tramp-handle-write-region): Handle APPEND.
6590 (tramp-delete-temp-file-function): New defun. Added to
6591 `kill-buffer-hook'.
6592
6593 2009-10-23 Juanma Barranquero <lekktu@gmail.com>
6594
6595 * menu-bar.el (cua-enable-cua-keys): Declare for the byte-compiler.
6596
6597 2009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
6598
6599 * term/tty-colors.el (msdos-color-values): Remove declaration, unused.
6600 (color-name-rgb-alist, tty-standard-colors)
6601 (tty-color-mode-alist): Change to defconst.
6602
6603 * simple.el (mark-inactive): Purecopy message.
6604
6605 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle): Fix macro.
6606 (global-map, yank-menu):
6607 * textmodes/ispell.el (ispell-menu-map):
6608 * net/eudc.el (eudc-tools-menu):
6609 * international/mule-cmds.el (describe-language-environment-map)
6610 (setup-language-environment-map, set-coding-system-map)
6611 (mule-menu-keymap):
6612 * vc-hooks.el (vc-menu-entry, vc-menu-map):
6613 * replace.el (occur-mode-map):
6614 * pcvs-defs.el (cvs-global-menu): Purecopy names and tooltips.
6615
6616 2009-10-23 Jay Belanger <jay.p.belanger@gmail.com>
6617
6618 * calc/calc.el (math-read-number, math-read-number-simple):
6619 Use `save-match-data'.
6620
6621 2009-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
6622
6623 * simple.el (normal-erase-is-backspace-mode): Use input-decode-map
6624 rather than fiddling with global-map bindings, since it should only
6625 affect per-terminal settings.
6626 See http://bugs.gentoo.org/show_bug.cgi?id=289709.
6627
6628 * minibuffer.el (completion-table-with-terminator): Allow to specify
6629 the terminator-regexp.
6630
6631 * simple.el (switch-to-completions): Look for *Completions* in other
6632 frames as well.
6633
6634 * pcomplete.el: Allow the use of completion-tables.
6635 (pcomplete-std-complete): New command.
6636 (pcomplete-dirs-or-entries): Use a single call to pcomplete-entries.
6637 (pcomplete--here): Use a function for `form' rather than an expression,
6638 so it can be byte-compiled.
6639 (pcomplete-here, pcomplete-here*): Adjust accordingly.
6640 Add edebug declaration.
6641 (pcomplete-show-completions): Remove unused var `curbuf'.
6642 (pcomplete-do-complete, pcomplete-stub):
6643 Don't assume `completions' is a list of strings any more.
6644
6645 2009-10-22 Juanma Barranquero <lekktu@gmail.com>
6646
6647 * find-dired.el (find-name-arg): Fix typo in docstring.
6648
6649 2009-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
6650
6651 * pcmpl-linux.el (pcomplete/kill): Don't abuse pcomplete-entries.
6652 (pcmpl-linux-fs-types): Same, and update to new modules layout.
6653
6654 * pcmpl-gnu.el (pcmpl-gnu-makefile-names): Use a single call to
6655 pcomplete-entries.
6656
6657 * comint.el (comint-read-input-ring, comint-write-input-ring)
6658 (comint-substitute-in-file-name)
6659 (comint-dynamic-complete-as-filename)
6660 (comint-dynamic-simple-complete)
6661 (comint-dynamic-list-filename-completions)
6662 (comint-dynamic-list-completions)
6663 (comint-redirect-results-list-from-process): Minor simplifications.
6664
6665 2009-10-21 Kevin Ryde <user42@zip.com.au>
6666
6667 * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
6668 When inserting ";;; Code" put it before any ";;;###autoload" cookie on
6669 the first form. And insert a blank line after ";;; Code" since
6670 that's usual style. (Bug#4612)
6671
6672 * net/dns.el: Add "Keywords: comm", as per net/net-utils.el.
6673
6674 2009-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
6675
6676 * minibuffer.el (completion-table-with-terminator): Properly implement
6677 boundaries, in case `terminator' appears in the suffix.
6678 (completion--embedded-envvar-table): Don't return boundaries if
6679 there's no valid completion. Simplify.
6680 (completion-file-name-table): New completion table extracted from
6681 completion--file-name-table.
6682 (completion--file-name-table): Use it.
6683 (read-file-name-predicate): Declare obsolete.
6684 (read-file-name): Use the pred arg i.s.o read-file-name-predicate.
6685 * vc-bzr.el (vc-bzr-revision-completion-table): Use the new
6686 completion-file-name-table, and use the `pred' argument.
6687 * files.el (locate-file-completion-table): Use the `pred' arg rather
6688 than read-file-name-predicate.
6689 (abbreviate-file-name): Use \` rather than ^ for BOS.
6690
6691 2009-10-21 Dan Nicolaescu <dann@ics.uci.edu>
6692
6693 * vc.el (vc-deduce-fileset): Undo previous change, do not tell
6694 vc-responsible-backend to register, it causes problems.
6695
6696 2009-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
6697
6698 * help-fns.el: Don't require help-mode (to avoid bootstrap issues).
6699
6700 2009-10-21 Michael Albinus <michael.albinus@gmx.de>
6701
6702 * net/tramp-smb.el (tramp-smb-get-stat-capability): New defun.
6703 (tramp-smb-handle-file-attributes): Use it.
6704 (tramp-smb-do-file-attributes-with-stat): Don't raise an error.
6705 (tramp-smb-handle-insert-directory): Use `mapc' rather than
6706 `mapcar'. Use `tramp-smb-get-stat-capability'.
6707 Add `dired-filename' text properties.
6708 (tramp-smb-get-cifs-capabilities): Apply `save-match-data'.
6709 (tramp-smb-maybe-open-connection): Simplify check for smbclient
6710 version.
6711
6712 2009-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
6713
6714 * subr.el (read-key-delay): Reduce to 0.01.
6715 (read-key): Use read-key-sequence-vector to avoid turning M-t into 244
6716 (bug#4751).
6717
6718 2009-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
6719
6720 * bindings.el (function-key-map): Map C-@ to C-SPC if C-@ is unbound.
6721
6722 * info.el (Info-complete-menu-item): Handle `boundaries' explicitly.
6723 (Info-menu): Remove unused vars `last' and `completions'.
6724 (Info-index-nodes): Remove unused var `node'.
6725
6726 * info.el (Info-complete-menu-item): Use complete-with-action.
6727
6728 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
6729
6730 Make vc-annotate work through copies and renames.
6731 * vc-annotate.el (vc-annotate-extract-revision-at-line):
6732 Return the file name too.
6733 (vc-annotate-revision-at-line)
6734 (vc-annotate-find-revision-at-line)
6735 (vc-annotate-revision-previous-to-line)
6736 (vc-annotate-show-log-revision-at-line): Update to get the file
6737 name from vc-annotate-extract-revision-at-line.
6738 (vc-annotate-show-diff-revision-at-line-internal): Change the
6739 argument to mean whether to show a file diff or not. Get the file
6740 name from vc-annotate-extract-revision-at-line.
6741 (vc-annotate-show-diff-revision-at-line):
6742 Update vc-annotate-show-diff-revision-at-line call.
6743 (vc-annotate-warp-revision): Add an optional file argument.
6744
6745 * vc-git.el (vc-git-annotate-command): Pass -C -C to the blame command.
6746 (vc-git-annotate-extract-revision-at-line): Also return the file
6747 name if found.
6748
6749 * vc-hg.el (vc-hg-annotate-command): Pass --follow to the annotate
6750 command. Remove unused code.
6751 (vc-hg-annotate-re): Update to match --follow output.
6752 (vc-hg-annotate-extract-revision-at-line): Also return the file
6753 name if found.
6754
6755 * vc.el: Update annotate-extract-revision-at-line documentation.
6756
6757 2009-10-18 Kevin Ryde <user42@zip.com.au>
6758
6759 * ibuffer.el (ibuffer-confirm-operation-on): Correction to error
6760 re-throw, `err' is a pair not a list so can't use apply (Bug#4740).
6761
6762 * net/browse-url.el (browse-url): Identify alist with "consp and
6763 not functionp" and let all other things go down the `apply' leg,
6764 as suggested by Stefan. (Further to bug#4531.)
6765
6766 2009-10-18 Chong Yidong <cyd@stupidchicken.com>
6767
6768 * minibuffer.el (read-file-name): Check for repeat before putting
6769 a default argument in file-name-history (Bug#4657).
6770
6771 * emacs-lisp/lisp-mode.el (preceding-sexp): Recognize hash table
6772 read syntax (Bug#4737).
6773
6774 * textmodes/sgml-mode.el (sgml-delete-tag): Use sgml-looking-back-at.
6775
6776 2009-10-18 Aaron S. Hawley <aaron.s.hawley@gmail.com>
6777
6778 * textmodes/sgml-mode.el (sgml-tag-help): Prompt user for tag.
6779 (html-tag-alist, html-tag-help): Add descriptions for undocumented
6780 entries and make note of obsolete tags.
6781
6782 2009-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
6783
6784 * net/ange-ftp.el (ange-ftp-file-size): Use unwind-protect.
6785
6786 2009-10-18 Glenn Morris <rgm@gnu.org>
6787
6788 * Makefile.in (compile-last): Ensure GREP_OPTIONS is null before calling
6789 grep, so that binary files (eg international/uni-bidi.el) can match.
6790 Remove test for "UnicodeData" files, since it is hopefully unnecessary
6791 now, and in any case the file header format has changed.
6792
6793 2009-10-17 Glenn Morris <rgm@gnu.org>
6794
6795 * textmodes/flyspell.el (flyspell-large-region, flyspell-word)
6796 (flyspell-get-word, flyspell-large-region)
6797 (flyspell-auto-correct-previous-word): Doc/error message fixes.
6798
6799 2009-10-17 Chong Yidong <cyd@stupidchicken.com>
6800
6801 * Makefile.in (ELCFILES): Add ede/shell.
6802
6803 2009-10-17 Dan Nicolaescu <dann@ics.uci.edu>
6804
6805 * term/common-win.el (x-colors): Purecopy it.
6806
6807 2009-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
6808
6809 * tar-mode.el (tar-data-swapped-p): Make the assertion a bit more
6810 permissive for when the buffer is empty.
6811 (tar-header-block-tokenize): Decode the username and groupname.
6812 (tar-chown-entry, tar-chgrp-entry): Encode the names (bug#4730).
6813
6814 2009-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
6815
6816 * international/mule-cmds.el (select-safe-coding-system): If the file
6817 has a coding cookie, use it regardless of any other setting (bug#4712).
6818
6819 2009-10-17 Glenn Morris <rgm@gnu.org>
6820
6821 * foldout.el (foldout-mouse-swallow-events):
6822 * gs.el (gs-load-image): Replace obsolete forms of sit-for, sleep-for.
6823
6824 * dired.el (dired-ls-F-marks-symlinks, dired-keep-marker-rename)
6825 (dired-keep-marker-copy, dired-keep-marker-hardlink)
6826 (dired-keep-marker-symlink, dired-dwim-target)
6827 (dired-copy-preserve-time): Do not autoload these defcustoms.
6828
6829 * mail/rmail.el (rmail-write-region-annotate): Prevent viewing different
6830 messages from messing up the file coding. (Bug#4623)
6831
6832 2009-10-17 Jari Aalto <jari.aalto@cante.net>
6833
6834 * textmodes/ispell.el (ispell-get-decoded-string): Give an error
6835 if no match is found for the current dictionary. (Bug#4578)
6836
6837 * textmodes/flyspell.el (flyspell-get-word): Make `following' argument
6838 optional, since that is how it is documented, and this is often called
6839 with a nil argument. (Bug#4577)
6840 (flyspell-external-point-words, flyspell-auto-correct-word)
6841 (flyspell-correct-word-before-point, flyspell-word-search-forward)
6842 (flyspell-word-search-backward): Remove nil argument in calls to
6843 flyspell-get-word, since it is not needed now.
6844
6845 2009-10-17 Ulrich Mueller <ulm@gentoo.org>
6846
6847 * play/doctor.el (doctor-adverbp): Exclude some nouns. (Bug#4565)
6848
6849 2009-10-16 Glenn Morris <rgm@gnu.org>
6850
6851 * net/rcirc.el (rcirc-authenticate): Simplify previous change.
6852
6853 2009-10-16 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
6854
6855 * net/ange-ftp.el (ange-ftp-send-cmd): Handle `size' like `mdtm'.
6856 (ange-ftp-file-size): New function.
6857 (ange-ftp-file-attributes): Use it.
6858
6859 2009-10-16 Michael Albinus <michael.albinus@gmx.de>
6860
6861 * net/tramp-smb.el (tramp-smb-version): New defvar.
6862 (tramp-smb-maybe-open-connection): Use it, in order to avoid
6863 repeated checks.
6864
6865 2009-10-16 Glenn Morris <rgm@gnu.org>
6866
6867 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Doc fix.
6868 Maybe copy some custom properties from old to new name. (Bug#4706)
6869
6870 2009-10-16 Juanma Barranquero <lekktu@gmail.com>
6871
6872 * subr.el (error, sit-for, start-process-shell-command)
6873 (start-file-process-shell-command): Set the calling convention
6874 after the function definition.
6875
6876 2009-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
6877
6878 * subr.el (error, sit-for, start-process-shell-command)
6879 (start-file-process-shell-command): Use the new
6880 set-advertised-calling-convention feature.
6881
6882 2009-10-16 Taichi Kawabata <kawabata.taichi@gmail.com>
6883
6884 * international/ucs-normalize.el (ucs-normalize-version):
6885 Change to 1.2.
6886 (check-range): Adjust for Unicode 5.2.
6887
6888 2009-10-15 Juri Linkov <juri@jurta.org>
6889
6890 * menu-bar.el (menu-bar-file-menu): Convert `separator-exit'
6891 to the `menu-item' format.
6892
6893 2009-10-15 Michael Albinus <michael.albinus@gmx.de>
6894
6895 * net/tramp.el (tramp-replace-environment-variables): Do not fail
6896 if the environment variable does not exist.
6897
6898 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
6899 (tramp-smb-get-share, tramp-smb-get-localname): Use only VEC as
6900 parameter.
6901 (tramp-smb-handle-add-name-to-file)
6902 (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
6903 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
6904 (tramp-smb-handle-file-attributes)
6905 (tramp-smb-do-file-attributes-with-stat)
6906 (tramp-smb-handle-file-local-copy)
6907 (tramp-smb-handle-insert-directory)
6908 (tramp-smb-handle-make-directory)
6909 (tramp-smb-handle-make-directory-internal)
6910 (tramp-smb-handle-make-symbolic-link)
6911 (tramp-smb-handle-rename-file, tramp-smb-handle-set-file-modes)
6912 (tramp-smb-handle-write-region, tramp-smb-get-file-entries)
6913 (tramp-smb-maybe-open-connection): Apply the changed parameters.
6914 (tramp-smb-read-file-entry): Read Disk names in compressed format.
6915 Handle long file names.
6916 (tramp-smb-get-cifs-capabilities): Check, whether the connection
6917 process is running.
6918 (tramp-smb-maybe-open-connection): Trace "smbclient -V" command.
6919 Read share names with "-g" option.
6920
6921 2009-10-15 Ryan Yeske <rcyeske@gmail.com>
6922
6923 * net/rcirc.el (rcirc-view-log-file): New command.
6924 (rcirc-track-minor-mode-map): Remove C-c ` binding.
6925 (rcirc-authenticate, rcirc-authinfo): Allow nickserv-nick to be
6926 specified.
6927
6928 2009-10-15 Glenn Morris <rgm@gnu.org>
6929
6930 * w32-fns.el (w32-batch-update-autoloads): Take autoload-make-program
6931 from the second command-line argument.
6932 * makefile.w32-in (autoloads, $(lisp)/calendar/cal-loaddefs.el)
6933 ($(lisp)/calendar/diary-loaddefs.el, $(lisp)/calendar/hol-loaddefs.el)
6934 ($(lisp)/mh-e/mh-loaddefs.el): Pass $(MAKE) as second argument to
6935 w32-batch-update-autoloads.
6936 * emacs-lisp/autoload.el (autoload-make-program): New variable.
6937 (batch-update-autoloads): Handle autoload-excludes on windows-nt.
6938
6939 * mail/rmailedit.el (rmail-cease-edit): Give an error if the end of
6940 the headers cannot be located. Simplify, subtracting superflous
6941 save-excursions.
6942
6943 2009-10-15 Stefan Monnier <monnier@iro.umontreal.ca>
6944
6945 Replace completion-base-size by completion-base-position to fix bugs
6946 such as (bug#4699).
6947 * simple.el (completion-base-position): New var.
6948 (completion-base-size): Mark as obsolete.
6949 (choose-completion): Make it work for mouse events as well.
6950 Pass the new base-position to choose-completion-string.
6951 (choose-completion-guess-base-position): New function, extracted from
6952 choose-completion-delete-max-match.
6953 (choose-completion-delete-max-match): Use it. Make obsolete.
6954 (choose-completion-string): Use the new base-position info.
6955 (completion-root-regexp): Delete.
6956 (completion-setup-function): Preserve completion-base-position.
6957 Eliminate obsolete base-size manipulation.
6958 * minibuffer.el (display-completion-list): Don't mess with base-size.
6959 (minibuffer-completion-help): Set completion-base-position instead.
6960 * mouse.el (mouse-choose-completion): Redefine as a mere alias to
6961 choose-completion.
6962 * textmodes/bibtex.el (bibtex-complete):
6963 * emacs-lisp/crm.el (crm--choose-completion-string):
6964 Adjust to new calling convention.
6965 * complete.el (partial-completion-mode): Use minibufferp to avoid
6966 bumping into incompatible change to choose-completion-string-functions.
6967 * ido.el (ido-choose-completion-string): Make its calling convention
6968 more permissive.
6969 * comint.el (comint-dynamic-list-input-ring-select): Remove obsolete
6970 base-size manipulation.
6971 (comint-dynamic-list-input-ring): Use dotimes and push.
6972 * iswitchb.el (iswitchb-completion-help): Remove dead-code call to
6973 fundamental-mode. Use `or'.
6974
6975 2009-10-14 Juri Linkov <juri@jurta.org>
6976
6977 * misearch.el (multi-isearch-next-buffer-from-list)
6978 (multi-isearch-next-file-buffer-from-list): Doc fix. (Bug#4723)
6979
6980 2009-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
6981
6982 * Makefile.in (compile-onefile): Load `bytecomp' rather than
6983 `bytecomp.el'.
6984
6985 * minibuffer.el (completion-pcm--merge-completions): Make sure the
6986 string we return is all made up of text from the completions rather
6987 than part from the completions and part from the input (bug#4219).
6988
6989 * ido.el (ido-everywhere): Use define-minor-mode.
6990
6991 * buff-menu.el (list-buffers, ctl-x-map):
6992 Mark the entry points with ;;;###autoload cookies.
6993
6994 2009-10-14 Dan Nicolaescu <dann@ics.uci.edu>
6995
6996 * vc-git.el (vc-git-dir-extra-headers): Set the branch name
6997 correctly in the detached head case.
6998 (vc-git-print-log): Remove unused binding.
6999
7000 * vc.el (vc-responsible-backend): When a directory is passed for
7001 for registration create a VC repository if no backend is
7002 responsible for the directory argument.
7003 (vc-deduce-fileset): Tell vc-responsible-backend to register.
7004
7005 * vc.el: Move comments about RCS and SCCS ...
7006 * vc-rcs.el:
7007 * vc-sccs.el: ... here, respectively.
7008
7009 2009-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
7010
7011 * minibuffer.el (completion--file-name-table): Return nil if there's
7012 no file completion, even if substitute-in-file-name changed
7013 the string (bug#4708).
7014
7015 2009-10-13 Juri Linkov <juri@jurta.org>
7016
7017 * files-x.el (read-file-local-variable-value): Don't filter out
7018 minor modes from mode name completion (bug#4664).
7019
7020 2009-10-13 Juanma Barranquero <lekktu@gmail.com>
7021
7022 * international/mule-cmds.el (ucs-names): Remove exclusion of
7023 "Enclosed Ideographic Supplement" range (U+1F200..U+1F2FF).
7024
7025 2009-10-13 Kenichi Handa <handa@m17n.org>
7026
7027 * international/uni-name.el: Regenerated.
7028
7029 2009-10-13 Juanma Barranquero <lekktu@gmail.com>
7030
7031 * bs.el (bs-mode): Fix last change. (`revert-buffer-function'
7032 should be automatically buffer-local, but isn't.)
7033
7034 2009-10-12 Sam Steingold <sds@gnu.org>
7035
7036 * progmodes/compile.el (compilation-next-error-function): Fix the
7037 timestamps if the buffer has been visited before.
7038 (compilation-mode-font-lock-keywords): Do not prepend "^ *" to
7039 non-anchored patterns, like the perl one (bug#3928).
7040
7041 2009-10-12 Glenn Morris <rgm@gnu.org>
7042
7043 * net/tramp-smb.el (tramp-smb-do-file-attributes-with-stat):
7044 Let-bind `size'.
7045
7046 2009-10-12 Juanma Barranquero <lekktu@gmail.com>
7047
7048 * proced.el (proced-unload-function): New function.
7049
7050 * bs.el (bs-mode): Set `revert-buffer-function' to `bs-refresh'.
7051 (bs-refresh): Add IGNORED arg for `revert-buffer' compatibility.
7052 Doc fix.
7053
7054 * menu-bar.el (menu-bar-file-menu): Fix format of `separator-exit' item.
7055
7056 2009-10-11 Juri Linkov <juri@jurta.org>
7057
7058 * files-x.el (read-file-local-variable-value):
7059 Provide default value only for bound variables (bug#4664).
7060
7061 2009-10-11 Michael Albinus <michael.albinus@gmx.de>
7062
7063 * net/tramp.el (tramp-local-host-p): Function shall return nil for
7064 connection methods like smb.
7065
7066 * net/tramp-cache.el (tramp-flush-connection-property): The hash
7067 can be empty.
7068
7069 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
7070 (tramp-smb-file-name-handler-alist): Add handlers for
7071 `add-name-to-file', `make-symbolic-link'.
7072 (tramp-smb-handle-add-name-to-file)
7073 (tramp-smb-do-file-attributes-with-stat)
7074 (tramp-smb-handle-make-symbolic-link)
7075 (tramp-smb-get-cifs-capabilities): New defuns.
7076 (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
7077 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
7078 (tramp-smb-handle-file-local-copy)
7079 (tramp-smb-handle-make-directory-internal)
7080 (tramp-smb-handle-rename-file, tramp-smb-handle-write-region):
7081 The file name syntax depends on cifs capabilities.
7082 (tramp-smb-handle-file-attributes):
7083 Call `tramp-smb-do-file-attributes-with-stat' if possible.
7084 (tramp-smb-handle-insert-directory): Use posix attributes if possible.
7085 (tramp-smb-handle-set-file-modes): It is applicable for posix only.
7086
7087 2009-10-11 Chong Yidong <cyd@stupidchicken.com>
7088
7089 * emacs-lisp/eieio.el: Avoid requiring cl at runtime.
7090 (eieio-defclass): Apply deftype handler and setf-method properties
7091 directly.
7092 (eieio-add-new-slot): Avoid union function from cl library.
7093 (eieio--typep): New function.
7094 (eieio-perform-slot-validation): Use it.
7095
7096 2009-10-10 Karl Fogel <kfogel@red-bean.com>
7097
7098 * bookmark.el (bookmark-yank-word, bookmark-insert-current-bookmark):
7099 Update documentation to refer to the variables documented in r1.135.
7100 (Bug#4188)
7101
7102 2009-10-10 Karl Fogel <kfogel@red-bean.com>
7103
7104 * bookmark.el (Info-suffix-list): Remove this unused variable.
7105 (bookmark-current-point): Remove this obsolete variable.
7106 (bookmark-set, bookmark-rename, bookmark-send-edited-annotation):
7107 Adjust for removal of bookmark-current-point.
7108
7109 (bookmarks-already-loaded, bookmark-current-buffer)
7110 (bookmark-yank-point): Document. (Bug#4188)
7111
7112 2009-10-10 Glenn Morris <rgm@gnu.org>
7113
7114 * frame.el (frame-height): Doc fix.
7115
7116 * calendar/calendar.el (calendar-split-width-threshold): New option.
7117 (calendar-basic-setup): Use calendar-split-width-threshold.
7118
7119 2009-10-09 Juanma Barranquero <lekktu@gmail.com>
7120
7121 * international/mule-cmds.el (ucs-names): Exclude new "Enclosed
7122 Ideographic Supplement" range (U+1F200..U+1F2FF).
7123
7124 2009-10-09 Karl Fogel <kfogel@red-bean.com>
7125
7126 * bookmark.el (bookmark-bmenu-rename): Don't call bookmark-bmenu-list,
7127 since the list will have been rebuilt anyway. (Bug#4349)
7128
7129 2009-10-09 Karl Fogel <kfogel@red-bean.com>
7130
7131 * bookmark.el (bookmark-delete): Don't let batch arg prevent saving.
7132 (bookmark-bmenu-execute-deletions): Don't save here, as
7133 bookmark-delete will now do so if necessary.
7134 Suggested by Thierry Volpiatto <thierry.volpiatto {_AT_} gmail.com>.
7135 (Bug#4348)
7136
7137 2009-10-09 Glenn Morris <rgm@gnu.org>
7138
7139 * mail/emacsbug.el (report-emacs-bug): Also print `features'.
7140
7141 2009-10-09 Karl Fogel <kfogel@red-bean.com>
7142
7143 * bookmark.el (bookmark-jump): Add new `display-func' parameter.
7144 (bookmark-jump-other-window): Just invoke bookmark-jump with new
7145 argument now, so the two function's behaviors will match. (Bug#3645)
7146
7147 2009-10-08 Michael Albinus <michael.albinus@gmx.de>
7148
7149 * net/tramp.el (tramp-file-name-real-user, tramp-file-name-domain)
7150 (tramp-file-name-real-host, tramp-file-name-port):
7151 Apply `save-match-data'.
7152
7153 * net/tramp-smb.el (tramp-smb-handle-copy-directory): Handle the
7154 case both directories are remote.
7155 (tramp-smb-handle-expand-file-name): Implement "~" expansion.
7156 (tramp-smb-maybe-open-connection): Flush the cache only if necessary.
7157
7158 2009-10-07 Juanma Barranquero <lekktu@gmail.com>
7159
7160 * makefile.w32-in (WINS_UPDATES): Fix typo in previous change.
7161
7162 2009-10-07 Glenn Morris <rgm@gnu.org>
7163
7164 * emacs-lisp/autoload.el (batch-update-autoloads): Remove useless use
7165 of concat.
7166
7167 2009-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
7168
7169 * files-x.el (read-file-local-variable): Include some
7170 non-user-variables in the completion table (bug#4664).
7171
7172 2009-10-07 Michael Albinus <michael.albinus@gmx.de>
7173
7174 * net/tramp-cache.el (tramp-flush-connection-property): Add trace
7175 message.
7176
7177 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
7178 (tramp-smb-file-name-handler-alist): Add handler for
7179 `copy-directory', `expand-file-name', `set-file-modes'.
7180 (tramp-smb-handle-copy-directory)
7181 (tramp-smb-handle-expand-file-name)
7182 (tramp-smb-handle-set-file-modes): New defuns.
7183 (tramp-smb-handle-copy-file): Handle KEEP-DATE.
7184 (tramp-smb-handle-file-attributes): Simplify check for retrieving
7185 entry.
7186 (tramp-smb-handle-insert-directory): Don't flush the cache.
7187 (tramp-smb-maybe-open-connection): Check for samba client and
7188 server versions.
7189
7190 2009-10-07 Eli Zaretskii <eliz@gnu.org>
7191
7192 * emacs-lisp/autoload.el (batch-update-autoloads): Fix last change
7193 to not error out of search for "^lisp=" fails.
7194
7195 2009-10-07 Juanma Barranquero <lekktu@gmail.com>
7196
7197 * makefile.w32-in (WINS_UPDATES): New macro.
7198 (custom-deps, finder-data, autoloads): Use it.
7199
7200 2009-10-07 Glenn Morris <rgm@gnu.org>
7201
7202 * Makefile.in (autoloads): Revert previous change.
7203 * emacs-lisp/autoload.el (batch-update-autoloads): Rather than having
7204 the list of preloaded files passed on the command-line, get
7205 it from src/Makefile.
7206
7207 * calendar/calendar.el (calendar-basic-setup): In the wide frame case,
7208 show the original buffer rather than a random one.
7209
7210 2009-10-07 Markus Rost <rost@math.uni-bielefeld.de>
7211
7212 * help.el (describe-no-warranty): Place point in a slightly better
7213 position in the GPLv3 text.
7214
7215 2009-10-06 Sam Steingold <sds@gnu.org>
7216
7217 * net/tramp-compat.el (tramp-compat-process-running-p): Check that
7218 the comm attribute is present before calling regexp-quote.
7219
7220 2009-10-06 Juanma Barranquero <lekktu@gmail.com>
7221
7222 * play/animate.el (animate-string): For good effect, make sure
7223 `indent-tabs-mode' and `show-trailing-whitespace' are nil.
7224
7225 * play/animate.el (animate-sequence, animate-birthday-present):
7226 * misc.el (butterfly): Don't set `indent-tabs-mode'.
7227
7228 2009-10-06 Glenn Morris <rgm@gnu.org>
7229
7230 * emacs-lisp/byte-run.el (define-obsolete-face-alias): Doc fix.
7231
7232 * emacs-lisp/autoload.el (autoload-excludes): New variable.
7233 (autoload-generate-file-autoloads): Skip files in autoload-excludes.
7234 (batch-update-autoloads): Process a string value of autoload-excludes,
7235 set during the build process.
7236 * Makefile.in (autoloads): Skip preloaded files. (Bug#4446)
7237
7238 * net/tramp.el (tramp-handle-start-file-process): Move tramp-error call
7239 inside with-parsed... macro so that `v' is defined.
7240
7241 * progmodes/f90.el (f90-end-of-block, f90-beginning-of-block):
7242 * progmodes/fortran.el (fortran-end-of-block)
7243 (fortran-beginning-of-block):
7244 Also push mark in the macro case.
7245
7246 * emerge.el (emerge-show-file-name):
7247 * calc/calc.el (calc-quit):
7248 * calc/calc-misc.el (calc-big-or-small):
7249 * calc/calc-graph.el (calc-graph-view):
7250 * calc/calc-ext.el (calc-reset):
7251 * calendar/calendar.el (calendar-basic-setup):
7252 Use window-full-height-p.
7253
7254 * mail/rmailedit.el (rmail-cease-edit): If there is a Content-Type
7255 header we don't understand, don't insert another. (Bug#4624)
7256 If changing mime charset, insert the new one in the right place.
7257
7258 2009-10-06 Matthew Junker <matthew.junker@sbcglobal.net> (tiny change)
7259
7260 * calendar/cal-tex.el (cal-tex-cursor-month-landscape)
7261 (cal-tex-cursor-month): Correctly increment the end date for diary and
7262 holiday listing. (Bug#4626)
7263
7264 2009-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
7265
7266 * help-fns.el (describe-function-1): Don't burp if the function is not
7267 a symbol.
7268
7269 2009-10-05 Juanma Barranquero <lekktu@gmail.com>
7270
7271 * emacs-lisp/chart.el (chart-face-pixmap-list, chart-new-buffer, chart)
7272 (chart-axis-range, chart-axis-names, chart-sequece, chart-bar)
7273 (chart-draw, chart-axis-draw, chart-sort, chart-sort-matchlist)
7274 (chart-draw-line, chart-bar-quickie): Fix typos in docstrings.
7275
7276 * emacs-lisp/eieio.el (generic-p, eieiomt-next, eieio-generic-form)
7277 (eieio-default-superclass): Reflow docstrings.
7278 (this, class-option-assoc, defclass, eieio-class-un-autoload)
7279 (eieio-unbind-method-implementations, defmethod)
7280 (eieio-validate-slot-value, eieio-validate-class-slot-value)
7281 (oref-default, eieio-oref-default, eieio-oset, eieio-oset-default)
7282 (with-slots, eieio-add-new-slot, object-assoc, object-remove-from-list)
7283 (eieio-slot-originating-class-p, eieio-slot-name-index)
7284 (eieio-pre-method-execution-hooks, eieio-initarg-to-attribute)
7285 (constructor, initialize-instance, no-next-method, object-print)
7286 (object-write, eieio-override-prin1, eieio-edebug-prin1-to-string):
7287 Fix typos in docstrings.
7288 (eieio-defclass, eieio-perform-slot-validation-for-default, defgeneric)
7289 (child-of-class-p, object-slots, slot-boundp, slot-exists-p)
7290 (next-method-p): Doc fixes.
7291 (eieio-add-new-slot, call-next-method, eieiomt-add, change-class):
7292 Fix typos in error messages.
7293 (eieio-defmethod): Fix typo in description of generic method.
7294
7295 * emacs-lisp/eieio-base.el (eieio-instance-inheritor, slot-unbound)
7296 (eieio-persistent-save-interactive, slot-missing):
7297 Fix typos in docstrings.
7298 (eieio-instance-inheritor-slot-boundp): Doc fix.
7299
7300 * emacs-lisp/eieio-comp.el (byte-compile-file-form-defmethod)
7301 (byte-compile-defmethod-param-convert): Fix typos in docstrings.
7302
7303 * emacs-lisp/eieio-custom.el (eieio-done-customizing)
7304 (eieio-custom-object-apply-reset):
7305 Fix typos in docstrings and error messages.
7306
7307 * emacs-lisp/eieio-datadebug.el (data-debug-show):
7308 Fix typo in docstring.
7309
7310 * emacs-lisp/eieio-opt.el (top): Fix typo in error message.
7311 (eieio-browse-tree): Doc fix.
7312 (eieio-all-generic-functions, eieio-class-speedbar): Reflow docstrings.
7313 (eieio-help-mode-augmentation-maybee, eieio-class-speedbar-make-map):
7314 Fix typos in docstrings.
7315
7316 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-file-button): Doc fix.
7317 (eieio-speedbar-key-map, eieio-speedbar-create-engine)
7318 (eieio-speedbar-buttons, eieio-speedbar, eieio-speedbar-object-children)
7319 (eieio-speedbar-make-tag-line, eieio-speedbar-object-expand):
7320 Reflow docstrings.
7321
7322 2009-10-05 Dan Nicolaescu <dann@ics.uci.edu>
7323
7324 * vc-hg.el (log-view-vc-backend): Declare for compiler.
7325 (vc-hg-outgoing-mode, vc-hg-incoming-mode):
7326 Set log-view-vc-backend so that diff can work.
7327
7328 * log-view.el (log-view-diff): Use vc-diff-internal instead of
7329 vc-version-diff.
7330 (vc-diff-internal): Autoload this instead of vc-version-diff.
7331
7332 2009-10-05 Eli Zaretskii <eliz@gnu.org>
7333
7334 * simple.el (eval-expression): Doc fix.
7335
7336 * progmodes/cwarn.el (cwarn-mode): Doc fix.
7337
7338 2009-10-05 Michael Albinus <michael.albinus@gmx.de>
7339
7340 * files.el (directory-files-no-dot-files-regexp): New defconst.
7341 (delete-directory): Use it.
7342 (copy-directory): Use it. Remove parameter PRESERVE-UID-GID.
7343
7344 * net/tramp.el (tramp-verbose): Fix docstring.
7345 (tramp-methods): Add recursive option to `tramp-copy-args'.
7346 Add `tramp-copy-recursive'. Valid for "rcp", "scp", "scp1", "scp2",
7347 "scp1_old", "scp2_old", "rsync", "rsyncc".
7348 (tramp-default-method): Check also for `auth-source-user-or-password'.
7349 (tramp-file-name-handler-alist, tramp-file-name-for-operation):
7350 Add handler for `copy-directory'.
7351 (tramp-handle-copy-directory): New defun.
7352 (tramp-do-copy-or-rename-file-out-of-band): Handle directory case.
7353 (tramp-handle-start-file-process): Raise an error when PROGRAM is nil.
7354 Optimize sent command.
7355
7356 2009-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
7357
7358 * calendar/diary-lib.el (diary-show-all-entries): Re-fit the calendar
7359 window if necessary.
7360
7361 * calendar/calendar.el (calendar-basic-setup): Don't call
7362 switch-to-buffer in a dedicated window.
7363
7364 2009-10-05 Karl Fogel <kfogel@red-bean.com>
7365
7366 * bookmark.el (bookmark-handle-bookmark): If bookmark has no file,
7367 don't do anything related to relocating, just return nil.
7368 (bookmark-error-no-filename): New error.
7369 (bookmark-default-handler): Signal `bookmark-error-no-filename' if
7370 bookmark has no file. Don't even attempt to handle things that
7371 are not files; the whole point of custom handlers is to keep that
7372 knowledge elsewhere anyway. Tighten some comments.
7373 (bookmark-file-or-variation-thereof): Remove now-unused function.
7374 (bookmark-location): Doc string fix.
7375 (Bug#4250)
7376
7377 2009-10-04 Karl Fogel <kfogel@red-bean.com>
7378
7379 * bookmark.el (bookmark-handle-bookmark): When relocating a bookmark,
7380 don't use a file dialog, because they usually don't know how to read
7381 a directory target from the user. (Bug#4230)
7382 Also, make sure the prompt can display directories as well as files.
7383
7384 2009-10-04 Karl Fogel <kfogel@red-bean.com>
7385
7386 * bookmark.el (bookmark-set, bookmark-buffer-name):
7387 Improve doc strings. (Bug#1193)
7388
7389 2009-10-04 Karl Fogel <kfogel@red-bean.com>
7390
7391 * bookmark.el (bookmark-get-bookmark, bookmark-get-bookmark-record)
7392 (bookmark-set-name, bookmark-prop-get, bookmark-prop-set)
7393 (bookmark-get-annotation, bookmark-set-annotation)
7394 (bookmark-get-filename, bookmark-set-filename, bookmark-get-position)
7395 (bookmark-set-position, bookmark-get-front-context-string)
7396 (bookmark-set-front-context-string, bookmark-get-rear-context-string)
7397 (bookmark-set-rear-context-string, bookmark-location, bookmark-jump)
7398 (bookmark-jump-other-window, bookmark-handle-bookmark)
7399 (bookmark-relocate, bookmark-insert-location, bookmark-rename)
7400 (bookmark-insert, bookmark-delete, bookmark-time-to-save-p)
7401 (bookmark-edit-annotation-mode, bookmark-edit-annotation):
7402 Improve doc strings to say whether bookmark can be a string or
7403 a record or both, and make other consistency and clarity fixes.
7404 (bookmark-get-handler, bookmark--jump-via, bookmark-write-file)
7405 (bookmark-default-annotation-text, bookmark-yank-word)
7406 (bookmark-maybe-load-default-file, bookmark-maybe-sort-alist)
7407 (bookmark-import-new-list, bookmark-maybe-rename)
7408 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
7409 (bookmark-bmenu-bookmark): Give these doc strings.
7410 (bookmark-bmenu-check-position): Give this a doc string, but also
7411 add a FIXME comment about how the function may be pointless.
7412 (bookmark-default-handler): Rework doc string and change a
7413 parameter name, to clarify that this takes a bookmark record
7414 not a bookmark name.
7415 (bookmark-set): Change a parameter name to indicate its meaning,
7416 and improve the doc string a bit.
7417 (Bug#4188)
7418
7419 2009-10-04 Karl Fogel <kfogel@red-bean.com>
7420
7421 * bookmark.el (bookmark-alist): Document the new `handler' element
7422 in the param alist.
7423 (bookmark-make-record-function): Adjust documentation for above.
7424 (Bug#4193)
7425
7426 2009-10-04 Karl Fogel <kfogel@red-bean.com>
7427
7428 * info.el (Info-bookmark-make-record): Document this function.
7429 (Info-bookmark-jump): Document with a doc string, not just a comment.
7430 (Bug#4203)
7431
7432 2009-10-04 Michael Albinus <michael.albinus@gmx.de>
7433
7434 * files.el (copy-directory): New defun.
7435
7436 * dired-aux.el (dired-copy-file-recursive): Use it.
7437
7438 2009-10-04 Juanma Barranquero <lekktu@gmail.com>
7439
7440 * files-x.el (modify-dir-local-variable)
7441 (copy-dir-locals-to-file-locals-prop-line): Fix typos in
7442 docstrings.
7443
7444 * recentf.el (recentf-unload-function): New function.
7445
7446 2009-10-04 Glenn Morris <rgm@gnu.org>
7447
7448 * window.el (window-full-height-p): Add doc string.
7449
7450 2009-10-04 Martin Rudalics <rudalics@gmx.at>
7451
7452 * window.el (window-full-height-p): New function. (Bug#4543)
7453
7454 2009-10-03 Dan Nicolaescu <dann@ics.uci.edu>
7455
7456 * vc.el: Remove commented out code.
7457 (vc-derived-from-dir-mode): Remove, unused.
7458 (vc-version-diff, vc-diff): Consistently pass t to vc-deduce-fileset.
7459
7460 2009-10-03 Michael Albinus <michael.albinus@gmx.de>
7461
7462 * net/tramp-ftp.el (tramp-ftp-file-name-handler):
7463 Disable `file-name-handler-alist' when loading 'ange-ftp. Otherwise,
7464 there could be recursive loading when `default-directory' is a
7465 remote file name. (Bug#4614)
7466
7467 2009-10-03 Glenn Morris <rgm@gnu.org>
7468
7469 * calendar/calendar.el (calendar-basic-setup): Handle the case where
7470 the frame is wide.
7471 (calendar-generate-window): Test for shrinkability rather than width.
7472
7473 * mail/rmail.el (rmail-generate-viewer-buffer): Be more careful about
7474 reusing existing buffers, in case we happen to visit two files with the
7475 same basename. (Bug#4593)
7476
7477 2009-10-02 Eli Zaretskii <eliz@gnu.org>
7478
7479 * makefile.w32-in (update-subdirs-CMD): Add cedet to $(WINS_SUBDIR).
7480 (WINS_CEDET_SUBDIRS): List of subdirectories of cedet.
7481 (bootstrap-clean-CMD, bootstrap-clean-SH): Remove *.elc files in
7482 subdirs of cedet as well.
7483 (AUTOGENEL): Add loaddefs.el files in cedet subdirectories.
7484
7485 2009-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
7486
7487 * emacs-lisp/eldoc.el (eldoc-get-fnsym-args-string):
7488 Obey advertised-signature-table.
7489
7490 * help-fns.el (help-function-arglist): Don't check
7491 advertised-signature-table.
7492 (describe-function-1): Do it here instead so it also applies to subrs.
7493
7494 2009-10-02 Michael Albinus <michael.albinus@gmx.de>
7495
7496 * simple.el (start-file-process): Say in the doc-string, that file
7497 handlers might not support pty association, if PROGRAM is nil.
7498
7499 * net/ange-ftp.el (ange-ftp-generate-passwd-key): Check, whether
7500 HOST and USER are strings. They are nil, when there are
7501 incomplete entries in ~/.netrc, for example.
7502 (ange-ftp-delete-directory): Implement RECURSIVE case. Change to
7503 root directory ("device busy" error otherwise).
7504
7505 * net/tramp-smb.el (tramp-smb-handle-make-directory-internal):
7506 Flush file properties of created directory.
7507
7508 2009-10-02 Eli Zaretskii <eliz@gnu.org>
7509
7510 * makefile.w32-in (WINS_BASIC): Remove cedet.
7511 (WINS_CEDET): Add cedet.
7512 (update-subdirs-SH): Use $(WINS_SUBDIR), not $(WINS).
7513
7514 2009-10-02 Kevin Ryde <user42@zip.com.au>
7515
7516 * net/browse-url.el (browse-url): Pass any symbol in
7517 browse-url-browser-function to `apply', since if you've mistakenly put
7518 an unbound symbol then the error is clearer. (Bug#4531)
7519
7520 2009-10-02 Juanma Barranquero <lekktu@gmail.com>
7521
7522 * allout.el (allout-init, allout-back-to-current-heading)
7523 (allout-beginning-of-current-entry, allout-ascend-to-depth)
7524 (allout-ascend, allout-up-current-level, allout-end-of-level)
7525 (allout-previous-visible-heading, allout-forward-current-level)
7526 (allout-backward-current-level, allout-show-children):
7527 * apropos.el (apropos-describe-plist):
7528 * bookmark.el (bookmark-maybe-historicize-string, bookmark-bmenu-list):
7529 * comint.el (comint-strip-ctrl-m, comint-goto-process-mark):
7530 * completion.el (add-completion, add-permanent-completion):
7531 * descr-text.el (describe-text-category, describe-char):
7532 * desktop.el (desktop-lazy-abort):
7533 * dired-x.el (dired-omit-expunge, dired-x-bind-find-file):
7534 * dired.el (dired-build-subdir-alist):
7535 * ediff.el (ediff-version):
7536 * elide-head.el (elide-head, elide-head-show):
7537 * emerge.el (emerge-version):
7538 * env.el (getenv):
7539 * face-remap.el (variable-pitch-mode):
7540 * faces.el (describe-face):
7541 * ffap.el (ffap-next-url, find-file-at-point, ffap-at-mouse)
7542 (dired-at-point):
7543 * files.el (find-file-existing, auto-save-mode):
7544 * font-lock.el (font-lock-fontify-buffer):
7545 * help-fns.el (describe-function, describe-variable)
7546 (describe-syntax, describe-categories):
7547 * help.el (view-lossage, describe-bindings, describe-key)
7548 (describe-mode):
7549 * hexl.el (hexl-current-address):
7550 * hi-lock.el (hi-lock-mode, hi-lock-find-patterns):
7551 * info.el (Info-goto-emacs-key-command-node):
7552 * log-edit.el (log-edit-insert-cvs-template)
7553 (log-edit-insert-cvs-rcstemplate):
7554 * menu-bar.el (menu-bar-mode):
7555 * mouse.el (mouse-appearance-menu):
7556 * newcomment.el (comment-indent-new-line):
7557 * pgg.el (pgg-save-coding-system, pgg-encrypt-region)
7558 (pgg-encrypt-symmetric-region, pgg-encrypt-symmetric)
7559 (pgg-encrypt, pgg-decrypt-region, pgg-decrypt)
7560 (pgg-sign-region, pgg-sign, pgg-verify-region, pgg-verify):
7561 * recentf.el (recentf-mode):
7562 * savehist.el (savehist-mode, savehist-save):
7563 * shadowfile.el (shadow-copy-files):
7564 * simple.el (kill-ring-save, next-line, previous-line)
7565 (normal-erase-is-backspace-mode):
7566 * strokes.el (strokes-update-window-configuration)
7567 (strokes-load-user-strokes, strokes-prompt-user-save-strokes)
7568 (strokes-xpm-for-stroke):
7569 * time.el (emacs-uptime, emacs-init-time):
7570 * tutorial.el (tutorial--describe-nonstandard-key)
7571 (tutorial--detailed-help):
7572 * type-break.el (type-break-mode)
7573 (type-break-mode-line-message-mode, type-break-query-mode)
7574 (type-break-guesstimate-keystroke-threshold):
7575 * vc.el (vc-version-diff, vc-diff, vc-root-diff):
7576 * version.el (emacs-version):
7577 * vt-control.el (vt-keypad-on, vt-keypad-off, vt-numlock):
7578 * winner.el (winner-mode):
7579 * calendar/timeclock.el (timeclock-in, timeclock-out)
7580 (timeclock-status-string, timeclock-change)
7581 (timeclock-workday-remaining-string)
7582 (timeclock-workday-elapsed-string)
7583 (timeclock-when-to-leave-string):
7584 * calendar/todo-mode.el (todo-add-category):
7585 * emacs-lisp/advice.el (ad-enable-regexp, ad-disable-regexp):
7586 * emacs-lisp/autoload.el (update-file-autoloads):
7587 * emacs-lisp/checkdoc.el (checkdoc-current-buffer)
7588 (checkdoc-start, checkdoc-continue, checkdoc-rogue-spaces)
7589 (checkdoc-message-text, checkdoc-defun):
7590 * emacs-lisp/debug.el (debugger-list-functions):
7591 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
7592 * emacs-lisp/eieio-opt.el (eieio-describe-class)
7593 (eieio-describe-generic):
7594 * emacs-lisp/lisp-mnt.el (lm-synopsis):
7595 * emacs-lisp/shadow.el (list-load-path-shadows):
7596 * emulation/cua-base.el (cua-mode):
7597 * emulation/edt.el (edt-set-scroll-margins):
7598 * emulation/tpu-edt.el (tpu-toggle-newline-and-indent)
7599 (tpu-toggle-regexp, tpu-toggle-search-direction)
7600 (tpu-toggle-rectangle, tpu-toggle-control-keys):
7601 * emulation/tpu-extras.el (tpu-set-scroll-margins):
7602 * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
7603 (viper-set-parsing-style-toggling-macro)
7604 (viper-set-emacs-state-searchstyle-macros):
7605 * emulation/viper.el (viper-set-hooks):
7606 * eshell/esh-mode.el (eshell-truncate-buffer):
7607 * international/mule-cmds.el (prefer-coding-system)
7608 (describe-input-method, describe-language-environment):
7609 * international/mule-diag.el (list-character-sets)
7610 (describe-character-set, describe-coding-system)
7611 (describe-fontset, list-fontsets, list-input-methods):
7612 * mail/sendmail.el (mail-signature):
7613 * net/ange-ftp.el (ange-ftp-copy-file):
7614 * net/browse-url.el (browse-url):
7615 * net/eudc.el (eudc-set-server, eudc-get-attribute-list):
7616 * net/quickurl.el (quickurl-add-url):
7617 * net/rcirc.el (names, topic):
7618 * net/xesam.el (xesam-mode):
7619 * play/5x5.el (5x5-new-game):
7620 * play/yow.el (apropos-zippy):
7621 * progmodes/ada-mode.el (ada-mode-version):
7622 * progmodes/f90.el (f90-beginning-of-subprogram, f90-end-of-subprogram)
7623 (f90-end-of-block)
7624 (f90-beginning-of-block):
7625 * progmodes/fortran.el (fortran-end-of-block)
7626 (fortran-beginning-of-block):
7627 * progmodes/js.el (js-syntactic-context, js-gc, js-eval):
7628 * progmodes/python.el (python-describe-symbol, python-shell):
7629 * term/ns-win.el (ns-print-buffer):
7630 * textmodes/bibtex.el (bibtex-end-of-entry, bibtex-url):
7631 * textmodes/flyspell.el (flyspell-mode-on):
7632 * textmodes/page-ext.el (set-page-delimiter, pages-directory)
7633 (pages-directory-for-addresses):
7634 * textmodes/table.el (table-recognize-cell)
7635 (table-query-dimension, table-generate-source)
7636 (table-insert-sequence, table--warn-incompatibility):
7637 * textmodes/tex-mode.el (tex-validate-buffer):
7638 * textmodes/texinfmt.el (texinfmt-version)
7639 (texinfo-format-buffer):
7640 Use `called-interactively-p' instead of `interactive-p'.
7641
7642 2009-10-02 Juanma Barranquero <lekktu@gmail.com>
7643
7644 * image-mode.el (image-toggle-display):
7645 * emacs-lisp/elp.el (elp-instrument-function):
7646 * emacs-lisp/advice.el (ad-make-advised-definition):
7647 * emacs-lisp/easy-mmode.el (define-minor-mode):
7648 * net/browse-url.el (browse-url-maybe-new-window):
7649 * progmodes/sh-script.el (sh-learn-buffer-indent):
7650 Pass new argument 'any to `called-interactively-p'.
7651
7652 2009-10-01 Juanma Barranquero <lekktu@gmail.com>
7653
7654 * international/uni-bidi.el:
7655 * international/uni-category.el:
7656 * international/uni-combining.el:
7657 * international/uni-comment.el:
7658 * international/uni-decimal.el:
7659 * international/uni-decomposition.el:
7660 * international/uni-digit.el:
7661 * international/uni-lowercase.el:
7662 * international/uni-mirrored.el:
7663 * international/uni-name.el:
7664 * international/uni-numeric.el:
7665 * international/uni-old-name.el:
7666 * international/uni-titlecase.el:
7667 * international/uni-uppercase.el:
7668 Regenerate from Unicode 5.2.0 data.
7669
7670 2009-10-01 Glenn Morris <rgm@gnu.org>
7671
7672 * Makefile.in (ELCFILES): Regenerate.
7673
7674 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
7675
7676 * subr.el (interactive-p): Mark obsolete.
7677 (called-interactively-p): Make the optional-ness of `kind' obsolete.
7678 * emacs-lisp/bytecomp.el (byte-compile-fdefinition): Make it obey
7679 advertised-signature-table for subroutines as well.
7680
7681 * emacs-lisp/byte-run.el (advertised-signature-table): New var.
7682 (set-advertised-calling-convention): New function.
7683 (make-obsolete, define-obsolete-function-alias)
7684 (make-obsolete-variable, define-obsolete-variable-alias):
7685 Make the optional-ness of `when' obsolete.
7686 (define-obsolete-face-alias): Make `when' non-optional.
7687 * help-fns.el (help-function-arglist):
7688 * emacs-lisp/bytecomp.el (byte-compile-fdefinition):
7689 Use advertised-signature-table.
7690
7691 2009-10-01 Michael Albinus <michael.albinus@gmx.de>
7692
7693 * files.el (delete-directory): New defun. The original function
7694 in fileio.c has been renamed to `delete-directory-internal'.
7695
7696 * dired.el (dired-delete-file): Call `delete-directory' with
7697 RECURSIVE parameter.
7698
7699 * net/ange-ftp.el (ange-ftp-delete-directory): Add optional
7700 parameter RECURSIVE. Implementation is missing.
7701
7702 * net/tramp.el (tramp-handle-make-directory): Flush upper
7703 directory's file properties.
7704 (tramp-handle-delete-directory): Handle optional parameter RECURSIVE.
7705 (tramp-handle-dired-recursive-delete-directory): Flush directory
7706 properties after the remove command only.
7707
7708 * net/tramp-fish.el (tramp-fish-handle-delete-directory):
7709 Handle optional parameter RECURSIVE.
7710
7711 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory):
7712 Handle optional parameter RECURSIVE.
7713
7714 * net/tramp-smb.el (tramp-smb-errors): Add error message for
7715 connection timeout.
7716 (tramp-smb-handle-delete-directory): Handle optional parameter
7717 RECURSIVE.
7718
7719 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
7720
7721 * emacs-lisp/bytecomp.el (byte-compile-defmacro-declaration): New fun.
7722 (byte-compile-file-form-defmumble, byte-compile-defmacro): Use it.
7723 (byte-compile-defmacro): Use backquotes.
7724
7725 * files.el (cd-absolute): Don't abbreviate-file-name (bug#4599).
7726
7727 * vc-dispatcher.el (vc-resynch-window): Don't revert a buffer which
7728 has no associated file.
7729 (vc-resynch-buffer): Use vc-dir-buffers.
7730
7731 2009-10-01 Glenn Morris <rgm@gnu.org>
7732
7733 * emacs-lisp/chart.el (chart-zap-chars, chart-bar-quickie)
7734 (chart-file-count):
7735 * emacs-lisp/eieio-comp.el (byte-compile-defmethod-param-convert):
7736 * emacs-lisp/eieio-datadebug.el (data-debug-insert-object-button):
7737 * emacs-lisp/eieio-opt.el (eieio-describe-class):
7738 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-create):
7739 * emacs-lisp/eieio.el (defclass, eieio-defclass-autoload)
7740 (eieio-copy-parents-into-subclass, make-instance, class-children)
7741 (eieio-generic-form):
7742
7743 * vc-cvs.el (vc-cvs-parse-entry): Be more careful with the
7744 match-data. (Bug#4555).
7745
7746 * emacs-lisp/check-declare.el (check-declare-scan): Read the declaration
7747 rather than parsing it as a regexp. This relaxes the layout
7748 requirements and makes errors easier to detect.
7749 (check-declare-verify): Check file is regular.
7750 (check-declare-directory): Doc fix.
7751 * subr.el (declare-function): Doc fix.
7752
7753 * ibuffer.el (ibuffer-format-qualifier):
7754 * isearch.el (hi-lock-regexp-okay):
7755 * calc/calc.el (math-zerop):
7756 * mail/uce.el (rmail-msgbeg, rmail-msgend):
7757 * term/w32-win.el (setup-default-fontset, set-fontset-font):
7758 Remove unused declarations.
7759
7760 2009-09-30 Glenn Morris <rgm@gnu.org>
7761
7762 * emacs-lisp/authors.el (authors-ignored-files): Add "js2-mode.el".
7763
7764 * emacs-lisp/elint.el (elint-init-form): Report declarations where the
7765 filename is not a string.
7766
7767 2009-09-29 Chong Yidong <cyd@stupidchicken.com>
7768
7769 * files.el (safe-local-eval-forms): Fix typo.
7770
7771 2009-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
7772
7773 * vc-hooks.el (vc-dir-buffers): New var.
7774 (vc-state-refresh): New function.
7775 (vc-state): Use it.
7776 (vc-after-save): Always ask the backend to recompute the new state.
7777 Always call vc-dir if necessary, using vc-dir-buffers.
7778 * vc-dir.el (vc-dir-prepare-status-buffer, vc-dir-resynch-file):
7779 Use vc-dir-buffers.
7780 (vc-dir-mode): Use vc-dir-buffers rather than after-save-hook.
7781 (vc-dir-prepare-status-buffer, vc-dir-update)
7782 (vc-dir-resync-directory-files, vc-dir-resynch-file, vc-dir-mode):
7783 Don't call expand-file-name on default-directory.
7784
7785 2009-09-29 Juanma Barranquero <lekktu@gmail.com>
7786
7787 * speedbar.el (speedbar-item-delete):
7788 * calc/calc-prog.el (calc-kbd-if):
7789 * language/hanja-util.el (hanja-init-load): Fix typos in messages.
7790
7791 * epa.el (epa-key-list-mode-map):
7792 * hi-lock.el (hi-lock-menu): Fix typos in menus.
7793
7794 * progmodes/hideshow.el (hs-allow-nesting): Reflow docstring.
7795 (hs-show-hook): Fix typo in docstring.
7796
7797 2009-09-29 Glenn Morris <rgm@gnu.org>
7798
7799 * emacs-lisp/check-declare.el (check-declare-locate): Remove pointless
7800 file-name-nondirectory call preventing location of cedet files.
7801 (check-declare-verify): Use literal search rather than re-search.
7802 Add basic defmethod and defclass, and define-overloadable-function.
7803
7804 * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
7805 Use tramp-compat-file-attributes rather than nonexistent
7806 tramp-compat-handle-file-attributes.
7807
7808 * Makefile.in (lisptagsfiles4): New.
7809 (AUTOGENEL): Add cedet loaddefs files.
7810 (TAGS, TAGS-LISP): Use $lisptagsfiles4.
7811 (update-elclist, compile-always, backup-compiled-files)
7812 (bootstrap-clean): Add yet another directory level.
7813 (update-elclist): Use LC_COLLATE rather than COLLATE.
7814 (ELCFILES): Update, via `make update-elclist'.
7815
7816 2009-09-29 Juanma Barranquero <lekktu@gmail.com>
7817
7818 * makefile.w32-in (WINS_CEDET, WINS_BASIC, WINS_SUBDIR): New macros.
7819 (WINS_ALMOST): Set from WINS_BASIC and WINS_CEDET.
7820 (update-subdirs-CMD): Use WINS_SUBDIR, not WINS_ALMOST.
7821
7822 2009-09-28 Andreas Schwab <schwab@linux-m68k.org>
7823
7824 * Makefile.in (lisptagsfiles3): Define.
7825 (TAGS, TAGS-LISP): Use it.
7826 (update-elclist): Add third directory level to look for elc files.
7827 (compile-always): Likewise.
7828 (backup-compiled-files): Likewise.
7829 (bootstrap-clean): Likewise.
7830 (ELCFILES): Update.
7831
7832 2009-09-28 Chong Yidong <cyd@stupidchicken.com>
7833
7834 * Makefile.in (ELCFILES): Add CEDET files.
7835
7836 2009-09-28 Michael Albinus <michael.albinus@gmx.de>
7837
7838 * Makefile.in (ELCFILES): Add net/tramp-imap.elc.
7839
7840 * net/tramp.el (top): Require tramp-imap.
7841
7842 * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
7843 Use `tramp-compat-handle-file-attributes'.
7844
7845 2009-09-28 Teodor Zlatanov <tzz@lifelogs.com>
7846
7847 * net/tramp-imap.el: New package.
7848
7849 2009-09-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
7850
7851 * whitespace.el (whitespace-trailing-regexp)
7852 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
7853 Fix doc string.
7854
7855 2009-09-27 Chong Yidong <cyd@stupidchicken.com>
7856
7857 * menu-bar.el: Remove menu-bar-ediff-misc-menu from the Tools
7858 menu.
7859
7860 * ediff-hook.el: Move menu-bar-ediff-misc-menu into
7861 menu-bar-ediff-menu.
7862
7863 * emacs-lisp/lisp-mode.el: Add doc-string-elt property to
7864 define-overloadable-function.
7865
7866 * progmodes/autoconf.el: Provide autoconf as well, so that this
7867 file can be `require'd.
7868
7869 * emacs-lisp/cl-macs.el (deftype): Add to cl-loaddefs.
7870
7871 * emacs-lisp/autoload.el (generated-autoload-feature)
7872 (generated-autoload-load-name): New vars.
7873 (autoload-rubric, autoload-generate-file-autoloads): Use them.
7874 (make-autoload): Recognize define-overloadable-function and
7875 defclass forms (for EIEIO).
7876
7877 * Makefile.in (update-subdirs): Exclude cedet directory.
7878
7879 2009-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
7880
7881 * term/ns-win.el: Don't set the region face background. (Bug#4381)
7882
7883 * faces.el: Default light-background background for region face to
7884 ns_selection_color under NS.
7885
7886 2009-09-27 Teodor Zlatanov <tzz@lifelogs.com>
7887
7888 * net/imap-hash.el: New library, see NEWS.
7889
7890 * Makefile.in (ELCFILES): Add imap-hash.el.
7891
7892 2009-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
7893
7894 * help.el (help-for-help-internal): Don't purecopy the text (bug#4560).
7895 * isearch.el (isearch-help-for-help-internal): Purecopy the second arg.
7896 * help-macro.el (make-help-screen): Avoid using an ambiguous function
7897 definition where the docstring could be taken for the return value.
7898
7899 2009-09-26 Glenn Morris <rgm@gnu.org>
7900
7901 * mail/rmailmm.el (rmail-mime-show-images, rmail-mime-bulk-handler):
7902 Add option to only show images below a certain size.
7903 (rmail-mime-multipart-handler): Remove unnecessary save-match-data and
7904 save-excursion calls.
7905
7906 2009-09-26 Eli Zaretskii <eliz@gnu.org>
7907
7908 * makefile.w32-in (WINS_ALMOST): Add cedet (with its
7909 subdirectories) and eieio.
7910
7911 2009-09-26 Alan Mackenzie <acm@muc.de>
7912
7913 * progmodes/cc-engine.el (c-beginning-of-statement-1):
7914 Correct buggy bracketing. (Bug#4289)
7915
7916 * progmodes/cc-langs.el (c-nonlabel-token-key): Allow quoted
7917 character constants (as case labels). (Bug#4289)
7918
7919 2009-09-25 Juri Linkov <juri@jurta.org>
7920
7921 * files.el (safe-local-eval-forms): Allow time-stamp in
7922 before-save-hook (Bug#4554).
7923
7924 2009-09-25 Drew Adams <drew.adams@oracle.com>
7925
7926 * menu-bar.el (list-buffers-directory): Doc fix.
7927
7928 2009-09-25 Stefan Monnier <monnier@iro.umontreal.ca>
7929
7930 * log-edit.el (log-edit-changelog-entries): Avoid inf-loops.
7931 Try and avoid copying twice the same paragraph.
7932 (log-edit-changelog-paragraph, log-edit-changelog-subparagraph):
7933 Remove save-excursion.
7934 (log-edit-changelog-entry): Do it here instead.
7935
7936 2009-09-25 Juanma Barranquero <lekktu@gmail.com>
7937
7938 * bs.el (bs--get-file-name): Use `list-buffers-directory'
7939 when available, instead of hardcoding mode names. Doc fix.
7940
7941 * menu-bar.el (list-buffers-directory): Add docstring.
7942 Make automatically buffer-local.
7943
7944 * dired.el (dired-mode):
7945 * files.el (cd-absolute):
7946 * pcvs.el (cvs-temp-buffer):
7947 * pcvs-util.el (cvs-get-buffer-create):
7948 * shell.el (shell-mode):
7949 * vc-dir.el (vc-dir-mode):
7950 Don't make `list-buffers-directory' buffer local.
7951
7952 2009-09-25 Devon Sean McCullough <emacs-hacker@Jovi.Net>
7953
7954 * comint.el (comint-exec, comint-run, make-comint):
7955 Doc fixes (Bug#4542).
7956
7957 2009-09-25 Glenn Morris <rgm@gnu.org>
7958
7959 * mail/rmailmm.el (rmail-mime): New custom group.
7960 Move all defcustoms in this file into this group.
7961 (rmail-mime-media-type-handlers-alist): Revert previous change.
7962 (rmail-mime-show-images): New option.
7963 (rmail-mime-total-number-of-bulk-attachments): Remove variable and all
7964 references to it, since it wasn't actually used for anything.
7965 (rmail-mime-insert-image): New function.
7966 (rmail-mime-image): Use rmail-mime-insert-image.
7967 (rmail-mime-bulk-handler): Remove optional `image' argument, instead
7968 obey the value of `rmail-mime-show-images' option. Print the size of
7969 attachments.
7970
7971 2009-09-25 David Engster <deng@randomsample.de>
7972
7973 * progmodes/hideshow.el (hs-show-block): Run `hs-show-hook'. (Bug#4548)
7974
7975 2009-09-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
7976
7977 * whitespace.el: Does not highlight trailing spaces While point is
7978 at end of line. Does not highligt spaces at beginning of buffer
7979 while point is at beginning of buffer. Does not highlight spaces
7980 at end of buffer while point is at end of buffer. (Bug#4177)
7981 New version 12.0.
7982 (whitespace-display-mappings): Adjust initialization.
7983 (whitespace-point, whitespace-font-lock-refontify): New vars.
7984 (whitespace-color-on, whitespace-color-off): Adjust code.
7985 (whitespace-trailing-regexp, whitespace-empty-at-bob-regexp)
7986 (whitespace-empty-at-eob-regexp, whitespace-space-regexp)
7987 (whitespace-tab-regexp, whitespace-post-command-hook): New funs.
7988
7989 2009-09-24 Chong Yidong <cyd@stupidchicken.com>
7990
7991 * nxml/nxml-mode.el: Alias xml-mode to nxml-mode.
7992
7993 * textmodes/sgml-mode.el: Remove xml-mode alias.
7994
7995 * files.el (auto-mode-alist, conf-mode-maybe)
7996 (magic-fallback-mode-alist): Revert 2009-09-18 and 2009-09-21 changes.
7997
7998 2009-09-24 Alan Mackenzie <acm@muc.de>
7999
8000 * progmodes/cc-cmds.el (c-scan-conditionals): A new function like
8001 c-forward-conditionals, but it doesn't move point and doesn't set
8002 the mark.
8003 (c-up-conditional, c-up-conditional-with-else, c-down-conditional)
8004 (c-down-conditional-with-else, c-backward-conditional)
8005 (c-forward-conditional): Refactor to use c-scan-conditionals.
8006
8007 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
8008
8009 * help-fns.el (help-downcase-arguments): New option, defaulting to nil.
8010 (help-default-arg-highlight): Remove.
8011 (help-highlight-arg): New function.
8012 (help-do-arg-highlight): Use it.
8013 Suggested by Drew Adams <drew.adams@oracle.com>. (Bug#4510, bug#4520)
8014
8015 2009-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
8016
8017 * term.el (term-set-scroll-region, term-handle-ansi-escape):
8018 Undo last change, which didn't fix the problem and introduced others.
8019
8020 2009-09-24 Nick Roberts <nickrob@snap.net.nz>
8021
8022 * progmodes/gdb-mi.el: Don't require speedbar.
8023 (gdb-jsonify-buffer): Handle case where "=" is part of value string.
8024
8025 2009-09-24 Glenn Morris <rgm@gnu.org>
8026
8027 * calendar/diary-lib.el (diary-fancy-display): Always run the hook.
8028
8029 * term/ns-win.el (ns-reg-to-script): Define for compiler.
8030
8031 * mail/rmailmm.el (rmail-mime-multipart-handler): Accept the case where
8032 there is no newline after the final mime boundary. (Bug#4539)
8033 Move markers on insertion so that any buttons inserted don't end up in
8034 the next part of a multipart message.
8035 (rmail-mime-media-type-handlers-alist): Doc fix. Add image handler.
8036 (rmail-mime-bulk-handler): Optionally handle images.
8037 (rmail-mime-image): New button action.
8038 (rmail-mime-image-handler): New function.
8039 (rmail-mime-mode): New mode.
8040 (rmail-mime): Doc fix. Use rmail-mime-mode (for font-lock).
8041
8042 2009-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
8043
8044 * minibuffer.el (minibuffer-force-complete): Cycle the list, rather
8045 than just dropping elements from it (bug#4504).
8046
8047 * term.el (term-set-scroll-region): Don't move cursor any more.
8048 (term-handle-ansi-escape): Call term-goto here instead.
8049 Suggested by Ivan Kanis <apple@kanis.eu>.
8050
8051 * term.el: Require CL.
8052 (term-ansi-reset): New function.
8053 (term-mode, term-emulate-terminal, term-handle-colors-array): Use it.
8054 (term-handle-colors-array): Simplify.
8055
8056 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
8057
8058 * allout.el (allout-overlay-interior-modification-handler)
8059 (allout-obtain-passphrase):
8060 * epa-file.el (epa-file-write-region):
8061 * ps-print.el (ps-begin-job):
8062 * vc-hooks.el (vc-toggle-read-only):
8063 * vc-rcs.el (vc-rcs-rollback):
8064 * vc-sccs.el (vc-sccs-rollback):
8065 * vc.el (vc-deduce-fileset, vc-next-action, vc-register-with)
8066 (vc-version-diff, vc-revert, vc-rollback):
8067 * wdired.el (wdired-check-kill-buffer):
8068 * emacs-lisp/authors.el (authors):
8069 * net/socks.el (socks-open-connection):
8070 * net/zeroconf.el (zeroconf-service-add-hook):
8071 * obsolete/vc-mcvs.el (vc-mcvs-register):
8072 * progmodes/gdb-mi.el (def-gdb-thread-buffer-gud-command)
8073 (gdb-select-frame):
8074 * progmodes/grep.el (lgrep, rgrep):
8075 * progmodes/idlw-help.el (idlwave-help-check-locations)
8076 (idlwave-help-html-link, idlwave-help-assistant-open-link):
8077 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
8078 * textmodes/reftex-toc.el (reftex-toc-promote-prepare)
8079 (reftex-toc-rename-label): Fix typos in error messages.
8080
8081 * dired-aux.el (dired-do-shell-command): Reflow docstring.
8082 (dired-copy-how-to-fn): Doc fix.
8083 (dired-files-attributes, dired-read-shell-command):
8084 Fix typos in docstrings.
8085
8086 * dired-x.el (dired-enable-local-variables, dired-filename-at-point)
8087 (dired-x-find-file-other-window): Reflow docstrings.
8088 (dired-omit-marker-char, dired-read-shell-command)
8089 (dired-x-submit-report): Fix typos in docstrings.
8090
8091 * shell.el (shell-mode-hook):
8092 * view.el (View-scroll-line-forward):
8093 * progmodes/inf-lisp.el (inferior-lisp-mode-hook):
8094 Fix typos in docstrings.
8095
8096 * net/dig.el (dig-invoke): Fix typo in docstring.
8097 (query-dig): Reflow docstring.
8098
8099 * progmodes/idlwave.el (idlwave-create-user-catalog-file)
8100 (idlwave-quoted, idlwave-rinfo-max-source-lines): Doc fixes.
8101 (idlwave-abbrev-move, idlwave-auto-routine-info-updates)
8102 (idlwave-begin-block-reg, idlwave-begin-unit-reg)
8103 (idlwave-beginning-of-subprogram, idlwave-block-jump-out)
8104 (idlwave-block-match-regexp, idlwave-calculate-paren-indent)
8105 (idlwave-check-abbrev, idlwave-class-file-or-buffer)
8106 (idlwave-class-found-in, idlwave-complete, idlwave-complete-in-buffer)
8107 (idlwave-completion-map, idlwave-current-indent)
8108 (idlwave-custom-ampersand-surround, idlwave-customize)
8109 (idlwave-default-font-lock-items, idlwave-default-insert-timestamp)
8110 (idlwave-define-abbrev, idlwave-determine-class-special)
8111 (idlwave-do-action, idlwave-doc-header, idlwave-doc-modification)
8112 (idlwave-end-block-reg, idlwave-end-of-statement)
8113 (idlwave-end-of-statement0, idlwave-end-of-subprogram)
8114 (idlwave-end-unit-reg, idlwave-entry-find-keyword)
8115 (idlwave-explicit-class-listed, idlwave-file-header)
8116 (idlwave-fill-paragraph, idlwave-find-class-definition)
8117 (idlwave-fix-keywords, idlwave-hang-indent-regexp, idlwave-hard-tab)
8118 (idlwave-idlwave_routine_info-compiled, idlwave-in-comment)
8119 (idlwave-in-quote, idlwave-indent-action-table)
8120 (idlwave-indent-expand-table, idlwave-indent-line)
8121 (idlwave-indent-subprogram, idlwave-indent-to-open-paren)
8122 (idlwave-is-comment-line, idlwave-is-comment-or-empty-line)
8123 (idlwave-is-continuation-line, idlwave-is-pointer-dereference)
8124 (idlwave-kill-autoloaded-buffers, idlwave-lib-p, idlwave-look-at)
8125 (idlwave-make-tags, idlwave-mode, idlwave-mode-abbrev-table)
8126 (idlwave-mouse-active-rinfo, idlwave-newline, idlwave-no-change-comment)
8127 (idlwave-outlawed-buffers, idlwave-popup-select)
8128 (idlwave-previous-statement, idlwave-rescan-catalog-directories)
8129 (idlwave-routine-entry-compare, idlwave-routine-info.pro)
8130 (idlwave-scan-all-buffers-for-routine-info, idlwave-scan-class-info)
8131 (idlwave-shell-automatic-start, idlwave-shell-explicit-file-name)
8132 (idlwave-show-begin, idlwave-split-line, idlwave-split-link-target)
8133 (idlwave-statement-type, idlwave-struct-skip)
8134 (idlwave-substitute-link-target, idlwave-toggle-comment-region)
8135 (idlwave-update-current-buffer-info, idlwave-use-library-catalogs)
8136 (idlwave-what-module-find-class): Fix typos in docstrings.
8137 (idlwave-all-method-classes, idlwave-calc-hanging-indent)
8138 (idlwave-calculate-cont-indent, idlwave-expand-equal)
8139 (idlwave-find-module, idlwave-find-structure-definition)
8140 (idlwave-init-rinfo-when-idle-after, idlwave-insert-source-location)
8141 (idlwave-list-load-path-shadows, idlwave-next-statement)
8142 (idlwave-routine-entry-compare-twins, idlwave-routine-info)
8143 (idlwave-routines, idlwave-sintern-rinfo-list, idlwave-statement-match)
8144 (idlwave-template): Reflow docstrings.
8145
8146 * progmodes/idlw-shell.el (idlwave-shell-syntax-error): Doc fix.
8147 (idlwave-shell-batch-command, idlwave-shell-bp-alist)
8148 (idlwave-shell-bp-get, idlwave-shell-bp-overlays)
8149 (idlwave-shell-bp-query, idlwave-shell-break-here, idlwave-shell-buffer)
8150 (idlwave-shell-display-line, idlwave-shell-display-wframe)
8151 (idlwave-shell-electric-debug-mode, idlwave-shell-examine-select)
8152 (idlwave-shell-file-name-chars, idlwave-shell-filter-bp)
8153 (idlwave-shell-goto-frame, idlwave-shell-halt-messages-re)
8154 (idlwave-shell-highlighting-and-faces, idlwave-shell-idl-wframe)
8155 (idlwave-shell-mode-hook, idlwave-shell-mode-line-info)
8156 (idlwave-shell-mode-map, idlwave-shell-module-source-filter)
8157 (idlwave-shell-mouse-help, idlwave-shell-mouse-print)
8158 (idlwave-shell-pc-frame, idlwave-shell-pending-commands)
8159 (idlwave-shell-print, idlwave-shell-quit, idlwave-shell-redisplay)
8160 (idlwave-shell-scan-for-state, idlwave-shell-send-command)
8161 (idlwave-shell-sentinel-hook, idlwave-shell-separate-examine-output)
8162 (idlwave-shell-shell-command, idlwave-shell-sources-alist)
8163 (idlwave-shell-sources-bp, idlwave-shell-sources-filter)
8164 (idlwave-shell-step, idlwave-shell-use-breakpoint-glyph)
8165 (idlwave-toolbar-add-everywhere, idlwave-toolbar-toggle):
8166 Fix typos in docstrings.
8167 (idlwave-shell-bp, idlwave-shell-clear-current-bp)
8168 (idlwave-shell-hide-output, idlwave-shell-mode)
8169 (idlwave-shell-run-region, idlwave-shell-set-bp-in-module):
8170 Reflow docstrings.
8171
8172 * textmodes/bibtex.el (bibtex-sort-entry-class): Fix group name.
8173
8174 2009-09-24 Ivan Kanis <apple@kanis.eu>
8175
8176 * term.el (term-bold-attribute): New var.
8177 (term-handle-colors-array): Use it.
8178
8179 2009-09-23 Nick Roberts <nickrob@snap.net.nz>
8180
8181 * progmodes/gdb-mi.el (gdb-version): New variable.
8182 (gdb-non-stop-handler): Set gdb-version.
8183 (gdb-gud-context-command, gdb-current-context-command, gdb-stopped):
8184 Condition "--thread" option on gdb-version.
8185 (gdb-invalidate-threads): Remove unused argument.
8186
8187 2009-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
8188
8189 * textmodes/flyspell.el (sgml-mode-flyspell-verify): Pass limit args
8190 to looking-back to avoid ridiculous slow down in large files (bug#4511).
8191
8192 2009-09-23 Glenn Morris <rgm@gnu.org>
8193
8194 * mail/rmail.el (rmail-reply): Don't try to add a References header when
8195 replying to mail without References or Message-Id. (Bug#4525)
8196
8197 2009-09-23 Adrian Robert <Adrian.B.Robert@gmail.com>
8198
8199 * term/ns-win.el (ns-reg-to-script): New variable.
8200
8201 2009-09-23 Daiki Ueno <ueno@unixuser.org>
8202
8203 * epg.el (epg-wait-for-status): Preserve existing 'error results.
8204
8205 2009-09-22 Sam Steingold <sds@gnu.org>
8206
8207 * vc-hg.el (vc-hg-print-log): Fix shortlog arg passing.
8208 (vc-hg-outgoing, vc-hg-incoming): Bump okstatus in `vc-hg-command'
8209 to 1 because hg returns status 1 when nothing is found.
8210 Bind `vc-short-log' for the sake of `vc-hg-log-view-mode'.
8211
8212 2009-09-22 Stefan Monnier <monnier@iro.umontreal.ca>
8213
8214 * textmodes/fill.el: Convert to utf-8 encoding.
8215 (fill-french-nobreak-p): Remove redundant » and « inherited from our
8216 pre-unicode days.
8217
8218 * add-log.el (change-log-fill-forward-paragraph): New function.
8219 (change-log-mode): Use it so fill-region DTRT.
8220 Set fill-indent-according-to-mode here rather than in
8221 change-log-fill-paragraph.
8222 (change-log-fill-paragraph): Remove.
8223
8224 2009-09-22 Juanma Barranquero <lekktu@gmail.com>
8225
8226 * info.el (Info-try-follow-nearest-node): Use the URL extracted by
8227 `Info-get-token', instead of `browse-url-url-at-point'. (Bug#4508)
8228
8229 2009-09-22 Glenn Morris <rgm@gnu.org>
8230
8231 * calendar/calendar.el (calendar-mode-map): Make mouse-1 and 3 clicks on
8232 the scroll-bar scroll the calendar window rather than the buffer.
8233
8234 * calendar/cal-menu.el (cal-menu-scroll-menu): Add a sub-section with
8235 commands that move point (as opposed to scrolling).
8236
8237 * emulation/tpu-edt.el (tpu-copy-keyfile): Fix condition-case handler.
8238
8239 * emacs-lisp/elint.el (elint): New custom group.
8240 (elint-log-buffer): Make it a defcustom.
8241 (elint-scan-preloaded, elint-ignored-warnings)
8242 (elint-directory-skip-re): New options.
8243 (elint-builtin-variables): Doc fix.
8244 (elint-preloaded-env): New variable.
8245 (elint-unknown-builtin-args): Add an entry for encode-time.
8246 (elint-extra-errors): Make it a variable rather than a constant.
8247 (elint-preloaded-skip-re): New constant.
8248 (elint-directory): Skip files matching elint-directory-skip-re.
8249 (elint-features): New variable, local to linted buffers.
8250 (elint-update-env): Initialize elint-features. Possibly add
8251 elint-preloaded-env to the buffer's environment.
8252 (elint-get-top-forms): Bind elint-current-pos, for log messages.
8253 Skip quoted forms.
8254 (elint-init-form): New function, extracted from elint-init-env.
8255 Make non-list forms a warning rather than an error.
8256 Add the mode-map for define-derived-mode. Handle define-minor-mode,
8257 easy-menu-define, put that adds an error-condition, and provide.
8258 When requiring cl, also require cl-macs. Really require cl, to handle
8259 some cl macros. Store required libraries in the list elint-features,
8260 so as not to re-load them. Treat cc-require like require.
8261 (elint-init-env): Call elint-init-form to do the work.
8262 Handle eval-and-compile and such like.
8263 (elint-add-required-env): Do not clear messages.
8264 (elint-special-forms): Add handlers for function, defalias, if, when,
8265 unless, and, or.
8266 (elint-form): Add optional argument to ignore elint-special-forms,
8267 useful to prevent recursive calls from handlers. Doc fix.
8268 Respect elint-ignored-warnings.
8269 (elint-form): Respect elint-ignored-warnings.
8270 (elint-bound-variable, elint-bound-function): New variables.
8271 (elint-unbound-variable): Respect elint-bound-variable.
8272 (elint-get-args): Respect elint-bound-function.
8273 (elint-check-cond-form): Add some simple handling for (f)boundp and
8274 featurep tests.
8275 (elint-check-defalias-form): New handler.
8276 (elint-check-let-form): Make an empty let a warning rather than an
8277 error.
8278 (elint-check-setq-form): Make an empty setq a warning rather than an
8279 error. Respect elint-ignored-warnings.
8280 (elint-check-defvar-form): Accept null doc-strings.
8281 (elint-check-conditional-form): New handler. Does some simple-minded
8282 checking of featurep and (f)boundp tests.
8283 (elint-put-function-args): New function.
8284 (elint-initialize): Use elint-scan-doc-file rather than
8285 elint-find-builtin-variables. Use elint-put-function-args.
8286 Possibly scan preloaded-file-list.
8287 (elint-scan-doc-file): Rename from elint-find-builtin-variables and
8288 extend to handle functions as well.
8289
8290 2009-09-22 Lennart Borgman <lennart.borgman@gmail.com>
8291
8292 * linum.el (linum-delete-overlays, linum-update-window):
8293 Do not modify the right margin. (Bug#3971)
8294
8295 2009-09-21 Chong Yidong <cyd@stupidchicken.com>
8296
8297 * files.el (conf-mode-maybe, magic-fallback-mode-alist):
8298 Use nxml-mode instead of xml-mode.
8299
8300 2009-09-21 Kevin Ryde <user42@zip.com.au>
8301
8302 * net/dig.el: Add "Keywords: comm", as per net-utils.el. (Bug#4501)
8303
8304 2009-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
8305
8306 * net/dig.el (dig-mode): Use define-derived-mode.
8307
8308 2009-09-20 Dan Nicolaescu <dann@ics.uci.edu>
8309
8310 * vc-dispatcher.el (vc-do-command): Return the process object in
8311 the asynchronous case. Use when instead of if. Do not run
8312 vc-exec-after to display a message if not enabled. (Bug#4463)
8313
8314 * vc-git.el (vc-git-dir-extra-headers): Add keymap and mouse-face
8315 properties to the stash strings.
8316 (vc-git-stash-list): Return a list of strings.
8317 (vc-git-stash-get-at-point, vc-git-stash-delete-at-point)
8318 (vc-git-stash-show-at-point): New functions.
8319 (vc-git-stash-map): New keymap.
8320
8321 * register.el (ctl-x-r-map): Define the keys here instead of
8322 using autoload.
8323
8324 2009-09-20 Thierry Volpiatto <thierry.volpiatto@gmail.com> (tiny change)
8325
8326 * bookmark.el (bookmark-write-file): Avoid calling `pp' with large
8327 list, to workaround performance problem (bug#4485).
8328
8329 2009-09-20 Nick Roberts <nickrob@snap.net.nz>
8330
8331 * progmodes/gud.el (gud-sentinel): Revert indavertant change.
8332
8333 2009-09-20 Daiki Ueno <ueno@unixuser.org>
8334
8335 * epa-file.el (epa-file-cache-passphrase-for-symmetric-encryption):
8336 Document that this option is not recommended to use.
8337
8338 2009-09-19 Glenn Morris <rgm@gnu.org>
8339
8340 * calc/calc-graph.el (calc-graph-lookup): Avoid assignment to free
8341 variable `var'.
8342
8343 * calc/calc-alg.el (var):
8344 * calc/calcalg2.el (var): Define for compiler.
8345
8346 2009-09-19 Chong Yidong <cyd@stupidchicken.com>
8347
8348 * emacs-lisp/advice.el (ad-get-argument, ad-set-argument):
8349 Doc fix (Bug#3932).
8350
8351 * subr.el (baud-rate): Remove long-obsolete function (Bug#4372).
8352
8353 * time-stamp.el (time-stamp-month-dd-yyyy)
8354 (time-stamp-dd/mm/yyyy, time-stamp-mon-dd-yyyy)
8355 (time-stamp-dd-mon-yy, time-stamp-yy/mm/dd)
8356 (time-stamp-yyyy/mm/dd, time-stamp-yyyy-mm-dd)
8357 (time-stamp-yymmdd, time-stamp-hh:mm:ss, time-stamp-hhmm):
8358 Remove functions that have been obsolete since 1995 (Bug#4436).
8359
8360 * progmodes/sh-script.el (sh-learn-buffer-indent): Pop to the
8361 indent buffer only if called interactively (Bug#4452).
8362
8363 2009-09-19 Juanma Barranquero <lekktu@gmail.com>
8364 Eli Zaretskii <eliz@gnu.org>
8365
8366 This fixes bug#4197 (merged to bug#865, though not identical).
8367 * server.el (server-auth-dir): Add docstring note about FAT32.
8368 (server-ensure-safe-dir): Accept FAT32 directories as "safe",
8369 but warn against using them.
8370
8371 2009-09-19 Nick Roberts <nickrob@snap.net.nz>
8372
8373 * progmodes/gdb-mi.el (gdb-var-update-handler-1): Include case of
8374 older GDB where there is no has_more field.
8375
8376 2009-09-19 Glenn Morris <rgm@gnu.org>
8377
8378 * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
8379
8380 2009-09-18 Chong Yidong <cyd@stupidchicken.com>
8381
8382 * files.el (auto-mode-alist): Change default for XML files to nXML
8383 mode (Bug#4169).
8384
8385 2009-09-18 Juanma Barranquero <lekktu@gmail.com>
8386
8387 * server.el (server-ensure-safe-dir): Pass 'integer
8388 to `file-attributes', as suggested.
8389
8390 2009-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
8391
8392 * dired-aux.el (dired-query-alist): Remove spurious backslash.
8393 (dired-query): Use read-key.
8394
8395 2009-09-18 Adrian Robert <Adrian.B.Robert@gmail.com>
8396
8397 * cus-start.el (ns-use-qd-smoothing): Remove.
8398
8399 2009-09-18 Glenn Morris <rgm@gnu.org>
8400
8401 * allout.el (top-level): Remove unnecessary progn.
8402
8403 * progmodes/js.el (js-end-of-defun): Remove malformed and unneeded let.
8404
8405 * emacs-lisp/derived.el (define-derived-mode): Fix paren typo in
8406 definition of abbrev table.
8407
8408 * speedbar.el (speedbar-track-mouse):
8409 * net/eudc-bob.el (eudc-bob-pipe-object-to-external-program):
8410 * net/eudc.el (eudc-expand-inline):
8411 * net/newst-backend.el (newsticker--cache-read-feed):
8412 * nxml/nxml-outln.el (nxml-end-of-heading): Fix typos in
8413 condition-case handlers.
8414
8415 2009-09-18 Nick Roberts <nickrob@snap.net.nz>
8416
8417 * progmodes/gdb-mi.el (gdb-frame-address): New variable.
8418 (gdb-var-list): Add an element for has_more field.
8419 (gdb-non-stop-handler): Enable pretty printing for STL containers.
8420 (gdb-var-create-handler, gdb-var-list-children-handler-1)
8421 (gdb-var-update-handler-1): Parse output of dynamic variable
8422 objects (STL containers).
8423 (gdb-var-delete-1): Pass var1 as an explicit second argument.
8424 (gdb-get-field): Delete alias. Use bindat-get-field directly.
8425
8426 * progmodes/gud.el (gud-speedbar-item-info): Adjust for change to
8427 gdb-var-list.
8428 (gud-speedbar-buttons): Make node expandable if expression "has more"
8429 children.
8430
8431 2009-09-17 Juanma Barranquero <lekktu@gmail.com>
8432
8433 * startup.el (emacs-quick-startup): Remove variable and all uses.
8434 (command-line): Set `inhibit-x-resources' instead.
8435 (command-line-1): Use `inhibit-x-resources' instead.
8436
8437 2009-09-17 Chong Yidong <cyd@stupidchicken.com>
8438
8439 * subr.el: Fix last change to avoid using the `unless' macro,
8440 which breaks bootstrapping.
8441
8442 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
8443
8444 * subr.el (push, pop, dolist, dotimes, declare): Don't overwrite CL's
8445 extended definitions, in case we reload subr.el after having
8446 loaded CL.
8447 (eval-next-after-load): Mark as obsolete.
8448
8449 2009-09-17 Juri Linkov <juri@jurta.org>
8450
8451 * menu-bar.el (menu-bar-search-menu, menu-bar-edit-menu)
8452 (menu-bar-options-menu, menu-bar-showhide-fringe-menu)
8453 (menu-bar-showhide-menu, menu-bar-tools-menu)
8454 (menu-bar-describe-menu, menu-bar-help-menu)
8455 (minibuffer-local-completion-map, minibuffer-local-map):
8456 Fix list quoting.
8457
8458 2009-09-17 Glenn Morris <rgm@gnu.org>
8459
8460 * emacs-lisp/bytecomp.el (byte-compile-form): Always check the function
8461 arguments, whether or not it has a handler.
8462
8463 * ansi-color.el (ansi-color-get-face-1): Fix typo in handler.
8464
8465 * simple.el (hard-newline): Give it a doc-string.
8466
8467 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
8468 (lisp-mode-syntax-table): Give them doc-strings.
8469
8470 2009-09-17 Dan Nicolaescu <dann@ics.uci.edu>
8471
8472 * menu-bar.el (menu-bar-file-menu, menu-bar-file-menu)
8473 (menu-bar-i-search-menu, menu-bar-edit-menu, menu-bar-custom-menu)
8474 (menu-bar-options-menu, menu-bar-showhide-menu)
8475 (menu-bar-showhide-fringe-ind-menu, menu-bar-showhide-fringe-menu)
8476 (menu-bar-showhide-scroll-bar-menu, menu-bar-showhide-menu)
8477 (menu-bar-options-menu, menu-bar-line-wrapping-menu)
8478 (menu-bar-options-menu, menu-bar-tools-menu)
8479 (menu-bar-describe-menu, menu-bar-search-documentation-menu)
8480 (menu-bar-help-menu):
8481 (menu-bar-make-mm-toggle, menu-bar-make-toggle): Purecopy the
8482 string arguments.
8483
8484 * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu)
8485 (menu-bar-epatch-menu, menu-bar-ediff-misc-menu): Add purecopy
8486 calls for the menu names and :help.
8487
8488 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
8489
8490 * mouse.el (minor-mode-menu-from-indicator): Pay attention
8491 to :minor-mode-function (bug#4455).
8492
8493 2009-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
8494
8495 * startup.el (command-line): Initialize the window-system after
8496 processing the command-line.
8497
8498 * textmodes/page.el (what-page): Make sure we don't inf-loop if
8499 page-delimiter matches the empty string.
8500
8501 2009-09-16 Glenn Morris <rgm@gnu.org>
8502
8503 * emacs-lisp/bytecomp.el (byte-compile-not-obsolete-vars): Rename from
8504 byte-compile-not-obsolete-var. It's a list now.
8505 (byte-compile-not-obsolete-funcs): New variable.
8506 (byte-compile-warn-obsolete): Don't warn about functions if they are in
8507 byte-compile-not-obsolete-funcs.
8508 (byte-compile-variable-ref, byte-compile-defvar): Update for
8509 byte-compile-not-obsolete-vars name-change and list nature.
8510 (byte-compile-maybe-guarded): Suppress warnings about obsolete functions
8511 and variables behind (f)boundp tests.
8512 * net/tramp-compat.el (byte-compile-not-obsolete-vars): Set if bound.
8513
8514 2009-09-15 Dan Nicolaescu <dann@ics.uci.edu>
8515
8516 * vc-git.el (vc-git-log-view-mode): Undo inadvertent change.
8517
8518 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
8519
8520 * Makefile.in (compile-onefile): Use byte-compile-refresh-preloaded.
8521 * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded):
8522 Don't autoload.
8523
8524 2009-09-15 Stephen Eglen <stephen@gnu.org>
8525
8526 * iswitchb.el (iswitchb-read-buffer): When selecting a match from
8527 the virtual-buffers, use the name of the buffer specified by
8528 find-file-noselect, as the match may be a symlink. (This was a
8529 problem if the target and the symlink had different names.)
8530
8531 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
8532
8533 * custom.el (custom-initialize-default, custom-initialize-set): CSE.
8534
8535 * desktop.el (desktop-path): Check user-emacs-directory.
8536
8537 * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded): New function.
8538
8539 * loadup.el: Use after-load-functions to GC after loading each file.
8540 Remove the explicit GC calls that used to be sprinkled around.
8541
8542 * subr.el (after-load-functions): New hook.
8543 (do-after-load-evaluation): Run it. Use string-match-p to detect
8544 `obsolete' packages, rather than painfully extracting the relevant
8545 directory name.
8546
8547 2009-09-15 Glenn Morris <rgm@gnu.org>
8548
8549 * apropos.el (apropos-documentation-check-doc-file): Avoid assignment to
8550 free variable `doc'.
8551
8552 * dired.el (dired-mode-map): Add menu entry for async shell command.
8553
8554 * help-fns.el (find-lisp-object-file-name): When looking for autoloaded
8555 variables, also consider the .elc files, since the .el files are
8556 normally gzipped (subsequent code locates the .el.gz from the .elc).
8557
8558 * calc/calc-prog.el (arglist): Define for compiler.
8559
8560 * calendar/diary-lib.el (diary-display-function): Change the default to
8561 fancy display.
8562 (body): Define for compiler.
8563
8564 * emacs-lisp/bytecomp.el (byte-compile-keep-pending)
8565 (byte-compile-file-form, byte-compile-lambda)
8566 (byte-compile-top-level-body, byte-compile-form)
8567 (byte-compile-variable-ref, byte-compile-setq)
8568 (byte-compile-setq-default, byte-compile-body)
8569 (byte-compile-body-do-effect, byte-compile-and, byte-compile-or)
8570 (batch-byte-compile): Give some more local variables with common names
8571 a "bytecomp-" prefix to avoid masking warnings about free variables.
8572
8573 * startup.el (command-line-1): Give local variables with common names a
8574 distinguishing prefix, so as not to hide free variable warnings during
8575 bootstrap.
8576
8577 * mail/rmailmm.el (rmail-mime-save): If file exists, don't try to be
8578 clever and add a suffix to make a unique name, just let the user decide
8579 whether or not to overwrite it. If the input is a directory, write the
8580 default filename to that directory. (Bug#4388)
8581 (rmail-mime-bulk-handler): Ensure the save button's 'directory property
8582 is a filename-as-a-directory.
8583
8584 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
8585
8586 * textmodes/page.el (what-page): Don't move to beginning of line.
8587 See <87tyz5ajte.fsf@x2.delysid.org> in emacs-devel.
8588
8589 2009-09-15 Dan Nicolaescu <dann@ics.uci.edu>
8590
8591 * vc-git.el (vc-git-dir-extra-headers): Show the remote location.
8592
8593 2009-09-14 Dan Nicolaescu <dann@ics.uci.edu>
8594
8595 * bindings.el (mode-line-mode-menu): Add purecopy calls for :help.
8596 * help.el (help-for-help-internal): Add purecopy calls for text.
8597
8598 * vc.el (top): print-log method now takes an optional SHORTLOG
8599 argument. Add a new method: root.
8600 (vc-root-diff, vc-print-root-log): New functions.
8601 (vc-log-short-style): New variable.
8602 (vc-print-log-internal): Add support for showing short logs.
8603
8604 * vc-hooks.el (vc-prefix-map, vc-menu-map): Add bindings for
8605 vc-print-root-log and vc-print-root-diff.
8606
8607 * vc-bzr.el (vc-bzr-log-view-mode, vc-bzr-print-log):
8608 * vc-git.el (vc-git-print-log, vc-git-log-view-mode):
8609 * vc-hg.el (vc-hg-print-log, vc-hg-log-view-mode): Add support for
8610 short logs.
8611
8612 * vc-cvs.el (vc-cvs-print-log):
8613 * vc-mtn.el (vc-mtn-print-log):
8614 * vc-rcs.el (vc-rcs-print-log):
8615 * vc-sccs.el (vc-sccs-print-log):
8616 * vc-svn.el (vc-svn-print-log): Add an optional argument shortlog
8617 that is ignored for now.
8618
8619 * vc-mtn.el (vc-mtn-annotate-command):
8620 * vc-svn.el (vc-svn-annotate-command): Run asynchronously.
8621
8622 2009-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
8623
8624 * simple.el: Add mapping for backspace/delete/clear/tab/escape/return
8625 to function-key-map, and give them ascii-character property.
8626 * term/x-win.el (x-alternatives-map):
8627 * term/ns-win.el (ns-alternatives-map):
8628 * term/internal.el (msdos-key-remapping-map):
8629 * w32-fns.el (x-alternatives-map): Remove redundant mappings.
8630
8631 2009-09-14 Glenn Morris <rgm@gnu.org>
8632
8633 * emacs-lisp/elint.el (elint-add-required-env): Revert to not using
8634 temp-buffers (2009-09-12).
8635
8636 2009-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
8637
8638 * textmodes/ispell.el (ispell-command-loop): Improve last fix, using
8639 the new read-key function.
8640
8641 2009-09-13 Chong Yidong <cyd@stupidchicken.com>
8642
8643 * term/x-win.el (x-menu-bar-open): Only call accelerate-menu if it
8644 is defined (Bug#4405).
8645
8646 2009-09-13 Vincent Belaïche <vincent.belaiche@gmail.com>
8647
8648 * recentf.el (recentf-cleanup): Use a hash table to find
8649 duplicates (Bug#4407).
8650
8651 2009-09-13 Per Starbäck <per@starback.se> (tiny change)
8652
8653 * textmodes/ispell.el (ispell-command-loop): Convert keys such as
8654 kp-0 to ascii equivalents (Bug#4325).
8655
8656 2009-09-13 Chong Yidong <cyd@stupidchicken.com>
8657
8658 * progmodes/cperl-mode.el (cperl-init-faces): Revert last change.
8659
8660 * eshell/em-hist.el:
8661 * eshell/em-dirs.el (eshell-complete-user-reference):
8662 Declare pcomplete functions and variables to avoid compiler warnings.
8663
8664 2009-09-13 Leo <sdl.web@gmail.com> (tiny change)
8665
8666 * eshell/em-script.el (eshell-login-script, eshell-rc-script):
8667 * eshell/em-dirs.el (eshell-last-dir-ring-file-name):
8668 * eshell/em-alias.el (eshell-aliases-file):
8669 * eshell/em-hist.el (eshell-history-file-name):
8670 Use expand-file-name instead of concat to make file names (Bug#4308).
8671
8672 2009-09-13 Glenn Morris <rgm@gnu.org>
8673
8674 * ediff-merg.el (ediff-do-merge):
8675 * filesets.el (filesets-run-cmd):
8676 * emulation/ws-mode.el (ws-show-markers, ws-move-block, ws-delete-block)
8677 (ws-find-marker-0, ws-find-marker-1, ws-find-marker-2, ws-find-marker-3)
8678 (ws-find-marker-4, ws-find-marker-5, ws-find-marker-6, ws-find-marker-7)
8679 (ws-find-marker-8, ws-find-marker-9, ws-goto-block-begin)
8680 (ws-goto-block-end, ws-goto-last-cursorposition, ws-copy-block):
8681 Replace empty `let's with `progn'.
8682
8683 2009-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
8684
8685 * mail/sendmail.el (send-mail-function):
8686 * tooltip.el (tooltip-mode):
8687 * simple.el (transient-mark-mode):
8688 * rfn-eshadow.el (file-name-shadow-mode):
8689 * frame.el (blink-cursor-mode):
8690 * font-core.el (global-font-lock-mode):
8691 * files.el (temporary-file-directory)
8692 (small-temporary-file-directory, auto-save-file-name-transforms):
8693 * epa-hook.el (auto-encryption-mode):
8694 * composite.el (global-auto-composition-mode):
8695 Use custom-initialize-delay.
8696 * startup.el (command-line): Don't explicitly call
8697 custom-reevaluate-setting for all the above vars.
8698 * custom.el (custom-initialize-safe-set)
8699 (custom-initialize-safe-default): Delete.
8700
8701 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
8702
8703 * term/x-win.el (x-initialize-window-system):
8704 * term/w32-win.el (w32-initialize-window-system):
8705 * term/ns-win.el (ns-initialize-window-system): Don't call
8706 mouse-wheel-mode since it's enabled globally by default already.
8707
8708 * mwheel.el (mouse-wheel-mode): Make sure the new defvar doesn't
8709 actually define the variable, but only silences the byte-compiler.
8710 (mouse-wheel-change-button): Check whether mouse-wheel-mode is bound
8711 before looking it up.
8712 (mouse-wheel-scroll-amount): Also reset the bindings if this value
8713 is changed.
8714
8715 2009-09-12 Glenn Morris <rgm@gnu.org>
8716
8717 * emacs-lisp/elint.el (elint-file): Make max-lisp-eval-depth at least
8718 1000.
8719 (elint-add-required-env): Don't beep on error.
8720 (elint-forms): In case of error, return ENV unchanged.
8721 (elint-init-env): Skip non-list forms.
8722 (elint-log): Handle unknown file positions.
8723
8724 2009-09-12 Daiki Ueno <ueno@unixuser.org>
8725
8726 * epg.el (epg-make-context): Add autoload cookie.
8727 (epg-list-keys, epg-cancel, epg-start-decrypt, epg-decrypt-file)
8728 (epg-decrypt-string, epg-start-verify, epg-verify-file)
8729 (epg-verify-string, epg-start-sign, epg-sign-file)
8730 (epg-sign-string, epg-start-encrypt, epg-encrypt-file)
8731 (epg-encrypt-string, epg-start-export-keys)
8732 (epg-export-keys-to-file, epg-export-keys-to-string)
8733 (epg-start-import-keys, epg-import-keys-from-file)
8734 (epg-import-keys-from-string, epg-start-receive-keys)
8735 (epg-receive-keys, epg-import-keys-from-server)
8736 (epg-start-delete-keys, epg-delete-keys, epg-start-sign-keys)
8737 (epg-sign-keys, epg-start-generate-key)
8738 (epg-generate-key-from-file, epg-generate-key-from-string):
8739 Remove autoload cookie.
8740
8741 2009-09-12 Eli Zaretskii <eliz@gnu.org>
8742
8743 * dos-fns.el (dos-reevaluate-defcustoms): Comment out the
8744 reevaluation of trash-directory.
8745
8746 * mwheel.el: Fix last change.
8747 (mouse-wheel-mode): New defvar.
8748 (mouse-wheel-mode): Remove autoload cookie.
8749
8750 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
8751
8752 * mwheel.el (mwheel-installed-bindings): New var.
8753 (mouse-wheel-mode): Use it, so as to make sure we really remove all
8754 the bindings we set last time. Use custom-initialize-delay.
8755 * loadup.el: Load mwheel after term/*-win.el.
8756 * startup.el (command-line): Don't reevaluate mouse-wheel-down-event
8757 and mouse-wheel-up-event now that their first evaluation is done
8758 sufficiently late to be correct.
8759
8760 * startup.el (tutorial-directory): Make it a defcustom.
8761 Use custom-initialize-delay rather than eval-at-startup to set it.
8762 * image.el (image-load-path): Make it a defcustom.
8763 Use custom-initialize-delay rather than eval-at-startup to set it.
8764 * subr.el (eval-at-startup): Remove.
8765 * font-lock.el (lisp-font-lock-keywords-2): Remove eval-at-startup.
8766
8767 * subr.el (do-after-load-evaluation): Warn the user after loading an
8768 obsolete package.
8769
8770 2009-09-12 Glenn Morris <rgm@gnu.org>
8771
8772 * proced.el (proced-mark-alt): Remove alias.
8773 (proced-mode-map): Remove proced-mark-alt.
8774
8775 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries to
8776 Elint file and directory. Remove initialization entry.
8777
8778 * emacs-lisp/elint.el (elint-file, elint-directory): New autoloaded
8779 commands.
8780 (elint-current-buffer): Set mode-line-process.
8781 (elint-init-env): Handle define-derived-mode.
8782 Fix declare-function with unspecified arglist. Guard against odd
8783 defalias statements (eg iso-insert's 8859-1-map).
8784 (elint-add-required-env): Use a temp buffer.
8785 (elint-form): Just print the function/macro name, not the whole form.
8786 Return env unchanged if we fail to parse a macro.
8787 (elint-forms): Guard against parse errors.
8788 (elint-output): New function, to handle batch mode.
8789 (elint-log-message): Add optional argument. Use elint-output.
8790 (elint-set-mode-line): New function.
8791
8792 2009-09-12 Andreas Politz <politza@fh-trier.de> (tiny change)
8793
8794 * emacs-lisp/elp.el (elp-not-profilable): Add more
8795 functions (Bug#4233).
8796
8797 2009-09-12 Chong Yidong <cyd@stupidchicken.com>
8798
8799 * emulation/pc-select.el (scroll-down-mark, scroll-down-nomark)
8800 (scroll-up-mark, scroll-up-nomark): Doc fix (Bug#4190).
8801
8802 2009-09-11 Nick Roberts <nickrob@snap.net.nz>
8803
8804 * progmodes/gdb-mi.el (gdb-var-list-children-regexp): Delete.
8805 (gdb-var-list-children): Use json parsing.
8806
8807 2009-09-11 Daniel Colascione <dan.colascione@gmail.com>
8808
8809 * progmodes/js.el (js--proper-indentation): Handle the case where
8810 char-before is null. Reported by Deniz Dogan.
8811
8812 2009-09-11 Juanma Barranquero <lekktu@gmail.com>
8813
8814 * emacs-lisp/cl-macs.el (help-add-fundoc-usage): Declare.
8815
8816 2009-09-11 Daiki Ueno <ueno@unixuser.org>
8817
8818 * epg.el (epg-cipher-algorithm-alist): Add CAMELLIA.
8819 (epg-digest-algorithm-alist): Add SHA224.
8820 (epg-context-set-passphrase-callback)
8821 (epg-context-set-progress-callback): Add description about
8822 callback function.
8823
8824 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
8825
8826 * custom.el (custom-delayed-init-variables): New var.
8827 (custom-initialize-delay): New function.
8828 * startup.el (command-line): "Re"evaluate all vars in
8829 custom-delayed-init-variables. Don't reevaluate abbrev-file-name
8830 explicitly any more.
8831 * abbrev.el (abbrev-file-name): Use custom-initialize-delay
8832 to avoid creating a ~/.emacs.d at build-time (bug#4347).
8833
8834 * proced.el (proced-mode-map): Prefer "m" for proced-mark (bug#4362).
8835
8836 2009-09-11 Nick Roberts <nickrob@snap.net.nz>
8837
8838 * progmodes/gdb-mi.el (gdb-var-update-regexp): Delete.
8839 (gdb-var-update-handler): Use json parsing.
8840
8841 2009-09-11 Juanma Barranquero <lekktu@gmail.com>
8842
8843 * vc-annotate.el (vc-annotate): Use the main file's coding-system to
8844 decode annotated text, regardless of language environment. (Bug#2741)
8845
8846 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
8847
8848 * Makefile.in (autoloads): Make rmail.el writable as well.
8849
8850 2009-09-11 Glenn Morris <rgm@gnu.org>
8851
8852 * dired-aux.el, dired-x.el: Put autoloads in dired.el rather than
8853 loaddefs.el.
8854 * dired.el: Regenerate with extracted autoloads.
8855 * Makefile.in (autoloads): Make dired.el writable.
8856
8857 * ibuf-ext.el: Put autoloads in ibuffer.el rather than loaddefs.el.
8858 * ibuffer.el: Regenerate with extracted autoloads.
8859 * Makefile.in (autoloads): Make ibuffer.el writable.
8860
8861 * paths.el (prune-directory-list, gnus-nntp-service, rmail-file-name):
8862 * version.el (emacs-copyright, emacs-major-version)
8863 (emacs-minor-version): Reformat doc-strings for make-docfile.
8864
8865 * apropos.el (apropos-documentation-check-doc-file): Exclude unbound
8866 functions and variables, since they must be stuff specific to some other
8867 platform.
8868 (apropos-print): Make mouse-click message less specific about button.
8869
8870 * emacs-lisp/cl-macs.el (define-compiler-macro): Add a property
8871 that records where a macro was defined.
8872 * help-fns.el (describe-function-1): Mention if a function has a
8873 compiler-macro.
8874 * help-mode.el (help-function-cmacro): New button.
8875
8876 * locate.el (top-level): Always require dired.
8877 (locate-mode-map): Initialize inside the defvar.
8878
8879 * net/ange-ftp.el (dired-compress-file): Declare.
8880 (ange-ftp-dired-compress-file): Add doc string.
8881
8882 * term/ns-win.el (x-display-name, x-setup-function-keys):
8883 Unify doc-strings with X versions.
8884
8885 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
8886
8887 * emulation/crisp.el (crisp-mode-map): Move initialization
8888 into declaration.
8889 (crisp-mode): Use define-minor-mode.
8890
8891 * progmodes/xscheme.el (xscheme-evaluation-commands):
8892 Put a :advertised-binding property rather than using
8893 advertised-xscheme-send-previous-expression.
8894 (advertised-xscheme-send-previous-expression): Declare obsolete.
8895 * emulation/crisp.el (crisp-mode-map): Use `undo' rather than
8896 `advertised-undo'.
8897 (crisp-mode): Add corresponding bindings to
8898 undo's :advertised-binding instead.
8899 * dired.el (dired-mode-map): Put a :advertised-binding property rather
8900 than using dired-advertised-find-file.
8901 (dired-advertised-find-file):
8902 * simple.el (advertised-undo):
8903 * wid-edit.el (advertised-widget-backward): Declare obsolete.
8904 (widget-keymap): Put a :advertised-binding property rather
8905 than using advertised-widget-backward.
8906 * bindings.el (ctl-x-map): Put a :advertised-binding property rather
8907 than using advertised-undo.
8908 * tutorial.el (tutorial--default-keys): Adjust accordingly.
8909
8910 2009-09-10 Simon South <ssouth@slowcomputing.org>
8911
8912 * progmodes/delphi.el (delphi-tab): Indent region when Transient
8913 Mark mode is enabled and region is active; otherwise indent or
8914 insert TAB as usual.
8915 (delphi-mode): Update description of TAB-key binding.
8916
8917 2009-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
8918
8919 * subr.el (define-key-rebound-commands): Mark obsolete.
8920 * startup.el (precompute-menubar-bindings): Remove.
8921 (normal-top-level): Remove obsolete code that tried to precompute
8922 menubar bindings.
8923 * loadup.el (define-key-rebound-commands): Don't bother fiddling with
8924 define-key-rebound-commands and precompute-menubar-bindings.
8925
8926 2009-09-10 Teodor Zlatanov <tzz@lifelogs.com>
8927
8928 * net/imap.el (imap-interactive-login): Better messages.
8929 (imap-open): Fix bug with renamed buffer on reconnect.
8930 (imap-authenticate): Add buffer-local imap-last-authenticator variable
8931 for easier debugging and cleaner code. On successful (guessed based on
8932 server capabilities) secondary authentication, set imap-state
8933 correctly.
8934 (imap-last-authenticator): Define imap-last-authenticator as a variable
8935 to avoid warnings.
8936
8937 2009-09-10 Glenn Morris <rgm@gnu.org>
8938
8939 * pcvs.el (cvs-mode-find-file): Use forward-line rather than goto-line.
8940
8941 * emacs-lisp/bytecomp.el (byte-compile-function-environment): Doc fix.
8942 (byte-compile-file-form-autoload): Don't warn about unknown functions
8943 where the autoload statement comes after the use.
8944 (with-no-warnings): Give it a byte-hunk-handler like than of progn, so
8945 that any handlers inside the body (eg require) are in turn respected.
8946
8947 * emacs-lisp/byte-opt.el (degrees-to-radians): Mark as free from side
8948 effects.
8949
8950 * emacs-lisp/derived.el (define-derived-mode): Give the mode's map,
8951 and syntax and abbrev tables basic docs, if they don't have any.
8952
8953 * emacs-lisp/easy-mmode.el (easy-mmode-defmap): Add doc-string.
8954
8955 * international/mule-cmds.el (top-level): Require cl when compiling.
8956 (view-hello-file): Use default-value rather than
8957 default-enable-multibyte-characters.
8958
8959 * progmodes/fortran.el: Move all safe and risky properties into the
8960 defcustoms.
8961
8962 * mail/rmailedit.el, mail/rmailkwd.el, mail/rmailmm.el:
8963 * mail/rmailmsc.el, mail/rmailsort.el, mail/rmailsum.el:
8964 * mail/undigest.el:
8965 Put autoloads in rmail.el rather than loaddefs.el.
8966 * mail/rmail.el: Regenerate with extracted autoloads.
8967
8968 * mail/rmailsum.el (rmail-user-mail-address-regexp): Move to rmail.el.
8969 * mail/rmail.el (rmail-user-mail-address-regexp): Move from rmailsum.el.
8970
8971 2009-09-10 Nick Roberts <nickrob@snap.net.nz>
8972
8973 Reported in thread for Bug#4375.
8974 * progmodes/gud.el (gud-tooltip-print-command): Use MI command
8975 "-data-evaluate-expression" instead of print.
8976 * progmodes/gdb-mi.el (gdb-tooltip-print-1): Ditto.
8977 (gdb-tooltip-print): Parse output from above MI command.
8978 (gdb): Revert 2009-08-11 change. User should detach inferior
8979 manually.
8980
8981 Remove the word "separate" from IO functions as inferior
8982 output is now never displayed in the GUD buffer.
8983
8984 2009-09-10 Juanma Barranquero <lekktu@gmail.com>
8985
8986 * startup.el (command-line-normalize-file-name): On Windows and
8987 MS-DOS, also convert C:\/ and C:\\ (two backslashes) into C:/.
8988
8989 2009-09-10 Juri Linkov <juri@jurta.org>
8990
8991 * isearch.el (isearch-text-char-description): Propertize escape
8992 character sequences with the `escape-glyph' face. (Bug#4344)
8993
8994 * simple.el (shell-command): Set asynchronous process filter to
8995 `comint-output-filter'. (Bug#4343)
8996
8997 * progmodes/grep.el (grep-template): Add "<X>" to docstring.
8998 (grep-files-aliases): Add "all". Move "el" and "ch" to the top of
8999 the list. Move "asm" to the bottom.
9000 (grep-find-ignored-directories): Add `choice' with nil value
9001 to empty the list easily.
9002 (grep-find-ignored-files): New option.
9003 (grep-files-history): Set to nil by default instead of '("ch" "el").
9004 (grep-compute-defaults): Add "<X>" to `grep-template'.
9005 (grep-read-files): Bind new local variables `default-alias' and
9006 `default-extension'. Use a list of default values for the file prompt.
9007 (lgrep): Add `--exclude=' command line options composed from
9008 `grep-find-ignored-files'.
9009 (rgrep): Add `-name' command line options composed from
9010 `grep-find-ignored-files'. (Bug#4301)
9011
9012 2009-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
9013
9014 * diff-mode.el (diff-hunk-kill): Fix the search of the next hunk
9015 (bug#4368).
9016
9017 2009-09-09 Katsumi Yamaoka <yamaoka@jpl.org>
9018
9019 * calendar/time-date.el (autoload):
9020 Expand define-obsolete-function-alias into defalias and make-obsolete
9021 for old Emacsen that Gnus supports.
9022 (with-no-warnings): Define it for old Emacsen.
9023 (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
9024 is available.
9025 (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
9026 float-time is available; suppress compile warning for time-to-seconds.
9027
9028 2009-09-09 Teodor Zlatanov <tzz@lifelogs.com>
9029
9030 * net/imap.el (imap-message-map): Docstring fix.
9031
9032 2009-09-09 Glenn Morris <rgm@gnu.org>
9033
9034 * ffap.el (ffap-file-at-point): Handle absolute (non-remote) files with
9035 line numbers too. (Bug#4374)
9036
9037 2009-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
9038
9039 * smerge-mode.el (smerge-remove-props, smerge-refine):
9040 Use with-silent-modifications (bug#4342).
9041
9042 * subr.el (with-silent-modifications): New macro.
9043
9044 2009-09-07 Juanma Barranquero <lekktu@gmail.com>
9045
9046 * files.el (top-level): Require `cl' when compiling.
9047
9048 2009-09-07 Glenn Morris <rgm@gnu.org>
9049
9050 * files.el (auto-mode-alist): Use delphi-mode for .dpr files.
9051
9052 * proced.el (proced-mode-map): Bind "d" to proced-mark-alt.
9053 (proced-mark-alt): New alias, to control the advertised key. (Bug#4362)
9054
9055 2009-09-06 Nick Roberts <nickrob@snap.net.nz>
9056
9057 * vc-git.el (vc-git-annotate-command): Use separator to parse
9058 arguments correctly.
9059
9060 2009-09-06 Eli Zaretskii <eliz@gnu.org>
9061
9062 * proced.el (proced-mode): Doc fix.
9063
9064 2009-09-06 Julian Scheid <julians37@gmail.com> (tiny change)
9065
9066 * net/tramp.el (tramp-perl-file-attributes): Print "nil" when
9067 lstat fails.
9068 (tramp-do-file-attributes-with-ls): Check for file existence at
9069 remote end.
9070 (tramp-do-file-attributes-with-stat): Likewise.
9071 (tramp-convert-file-attributes): Return nil when attr is nil.
9072
9073 2009-09-05 Glenn Morris <rgm@gnu.org>
9074
9075 * calendar/diary-lib.el (diary-entry): Add help-echo and follow-link
9076 properties to this button.
9077 (diary-fancy-display): Don't extend the button to the final newline.
9078 (diary-fancy-display-mode): Continue to define "q" as a local key.
9079
9080 * calendar/cal-china.el (holiday-chinese): Make it slightly more
9081 efficient.
9082
9083 * font-lock.el (lisp-font-lock-keywords-2): Add letf.
9084
9085 * emacs-lisp/bytecomp.el (emacs-lisp-file-regexp): Doc fix.
9086 (byte-compile-dest-file-function): New option.
9087 (byte-compile-dest-file): Doc fix.
9088 Obey byte-compile-dest-file-function.
9089 (byte-compile-cl-file-p): New function.
9090 (byte-compile-eval): Only suppress noruntime warnings about cl functions
9091 if the cl-functions warning is enabled. Use byte-compile-cl-file-p.
9092 (byte-compile-eval): Check for non-nil byte-compile-cl-functions rather
9093 than for file being previously loaded.
9094 (byte-compile-find-cl-functions): Use byte-compile-cl-file-p.
9095 (byte-compile-file-form-require): Handle the case where requiring a file
9096 indirectly causes CL to be loaded.
9097
9098 2009-09-05 Karl Fogel <kfogel@red-bean.com>
9099
9100 * files.el (find-alternate-file): Run `kill-buffer-hook' manually
9101 before killing the old buffer, since by the time `kill-buffer' is
9102 run so many buffer variables have been set to nil that it may not
9103 behave as expected. (Bug#4061)
9104
9105 2009-09-05 Karl Fogel <kfogel@red-bean.com>
9106
9107 * files.el (find-alternate-file): If the old buffer is modified
9108 and visiting a file, behave similarly to `kill-buffer' when
9109 killing it, thus reverting to the pre-1.878 behavior; see
9110 http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00101.html
9111 for discussion. Also, consult `buffer-file-name' as a variable
9112 not as a function, for consistency with the rest of the code.
9113
9114 2009-09-04 Michael Albinus <michael.albinus@gmx.de>
9115
9116 * net/tramp.el (tramp-handle-insert-directory): Handle "--dired"
9117 also when adding a new directory.
9118
9119 * net/tramp-compat.el (tramp-compat-line-beginning-position):
9120 New defun.
9121
9122 2009-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
9123
9124 * files.el (locate-file-completion-table): Make it provide boundary
9125 information, so partial-completion works better.
9126
9127 2009-09-04 Leo <sdl.web@gmail.com> (tiny change)
9128
9129 * mail/footnote.el (Footnote-text-under-cursor):
9130 Check footnote-text-marker-alist before using it (bug#4324).
9131
9132 2009-09-04 Glenn Morris <rgm@gnu.org>
9133
9134 * play/5x5.el, play/decipher.el, play/gametree.el, play/handwrite.el:
9135 * play/hanoi.el, play/landmark.el, play/mpuz.el, play/pong.el:
9136 * play/solitaire.el, play/tetris.el:
9137 Remove leading * from defcustom and defface docs.
9138
9139 * calendar/diary-lib.el (diary-fancy-display): Only switch modes if
9140 necessary.
9141 (diary-fancy-overriding-map): New variable.
9142 (diary-fancy-display-mode): Set minor-mode-overriding-map-alist.
9143 Use view-mode.
9144
9145 * vc-rcs.el (vc-rcs-annotate-command): Use forward-line rather than
9146 goto-line.
9147
9148 2009-09-03 Glenn Morris <rgm@gnu.org>
9149
9150 * arc-mode.el (archive-mode):
9151 * dos-fns.el (set-default-process-coding-system):
9152 * man.el (Man-getpage-in-background):
9153 * menu-bar.el (menu-bar-describe-menu):
9154 * server.el (server-process-filter):
9155 * startup.el (command-line):
9156 * tar-mode.el (tar-header-block-tokenize, tar-extract):
9157 * w32-fns.el (set-default-process-coding-system):
9158 * x-dnd.el (x-dnd-handle-file-name):
9159 * international/mule-cmds.el (mule-menu-keymap)
9160 (set-default-coding-systems, language-info-alist, set-language-info)
9161 (set-language-environment, standard-display-european-internal)
9162 (set-locale-environment):
9163 * international/mule-diag.el (mule-diag):
9164 * mail/emacsbug.el (report-emacs-bug):
9165 * mail/rmail.el (rmail-mode):
9166 * mail/sendmail.el (mail-setup):
9167 Use default-value rather than default-enable-multibyte-characters.
9168
9169 * progmodes/f90.el: Move all safe properties into the defcustoms.
9170 (f90-get-correct-indent, f90-indent-region, f90-abbrev-start): Use memq.
9171
9172 * calendar/appt.el (appt-check):
9173 * calendar/diary-lib.el (diary-set-header, diary-live-p)
9174 (diary-check-diary-file, diary-list-entries)
9175 (diary-include-other-diary-files, diary-simple-display)
9176 (diary-fancy-display, diary-print-entries)
9177 (diary-mark-included-diary-files, diary-make-entry):
9178 Don't call substitute-in-file-name on diary-file.
9179
9180 2009-09-03 Eduard Wiebe <usenet@pusto.de>
9181 Stefan Monnier <monnier@iro.umontreal.ca>
9182
9183 * mail/footnote.el (footnote-prefix): Make it a defcustom.
9184 (footnote-mode-map): Move initialization into the declaration.
9185 (footnote-minor-mode-map): Define it rather than changing global-map.
9186 (footnote-mode): Use define-minor-mode.
9187
9188 2009-09-02 Michael Albinus <michael.albinus@gmx.de>
9189
9190 * net/tramp.el (tramp-handle-file-attributes-with-ls)
9191 (tramp-do-file-attributes-with-perl)
9192 (tramp-do-file-attributes-with-stat): Rename from
9193 `tramp-handle-file-attributes-with-*'.
9194 (tramp-handle-file-attributes): Use them.
9195 (tramp-do-directory-files-and-attributes-with-perl)
9196 (tramp-do-directory-files-and-attributes-with-stat): Rename from
9197 `tramp-handle-directory-files-and-attributes-with-*'.
9198 (tramp-handle-directory-files-and-attributes): Use them.
9199 (tramp-method-out-of-band-p): Additional parameter SIZE.
9200 (tramp-do-copy-or-rename-file, tramp-handle-file-local-copy)
9201 (tramp-handle-write-region): Use it.
9202 (tramp-handle-insert-directory): Use "?\ " for compatibility reasons.
9203 (tramp-handle-vc-registered): Check, whether the first run did
9204 return files to be tested.
9205 (tramp-advice-make-auto-save-file-name): Do not call directly
9206 `tramp-handle-make-auto-save-file-name', because this would bypass
9207 the locking mechanism.
9208
9209 * net/tramp-compat.el (top): Autoload used functions from tramp.el.
9210 (file-remote-p, process-file, start-file-process, set-file-times)
9211 (tramp-compat-file-attributes): Compatibility functions shall not
9212 call directly `tramp-handle-*', because this would bypass the
9213 locking mechanism.
9214 (tramp-compat-number-sequence): New defun.
9215
9216 2009-09-02 Glenn Morris <rgm@gnu.org>
9217
9218 * calendar/time-date.el (time-to-seconds): In Emacs, make it an obsolete
9219 alias for float-time.
9220 (time-to-number-of-days): In Emacs, use float-time.
9221 * net/newst-backend.el (time-add): Suppress warnings from compat
9222 function.
9223 * time.el (emacs-uptime, emacs-init-time):
9224 * net/rcirc.el (rcirc-keepalive, rcirc-handler-ctcp-KEEPALIVE):
9225 Use float-time rather than time-to-seconds.
9226
9227 * minibuffer.el (completion-initials-expand): Fix typo.
9228
9229 * faces.el (modeline, modeline-inactive, modeline-highlight)
9230 (modeline-buffer-id):
9231 * info.el (info-menu-5): Mark these face aliases as obsolete.
9232
9233 2009-09-01 Nick Roberts <nickrob@snap.net.nz>
9234
9235 * progmodes/gdb-mi.el (gdb-current-context-command): Move the
9236 space ...
9237 (gdb-gud-context-call): ... to here for pre GDB 7.0 when there is
9238 no "--thread" option.
9239 (gdb-stopped): Don't print "Switched to thread" message when it is
9240 unchanged.
9241
9242 2009-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
9243
9244 * minibuffer.el (completion-try-completion)
9245 (completion-all-completions): Remove ill-defined (and
9246 mistakenly installed and luckily never used nor documented)
9247 `completion-styles' property.
9248 (completion-initials-expand, completion-initials-all-completions)
9249 (completion-initials-try-completion): New functions.
9250 (completion-styles-alist): Add doc to each entry.
9251 Add new `initials' entry.
9252
9253 2009-09-01 Nick Roberts <nickrob@snap.net.nz>
9254
9255 * progmodes/gdb-mi.el (gdb-var-create-handler): Remove redundant
9256 MI command -var-evaluate-expression.
9257 (gdb-var-list-children-regexp): Update from regexp-1 in gdb-ui.el
9258 and tweak for case of string child.
9259 (gdb-var-list-children-handler): Update from handler-1 in gdb-ui.el.
9260
9261 2009-09-01 Glenn Morris <rgm@gnu.org>
9262
9263 * add-log.el (change-log-date-face, change-log-name-face)
9264 (change-log-email-face, change-log-file-face, change-log-list-face)
9265 (change-log-conditionals-face, change-log-function-face)
9266 (change-log-acknowledgement-face):
9267 * cus-edit.el (custom-invalid-face, custom-rogue-face)
9268 (custom-modified-face, custom-set-face, custom-changed-face)
9269 (custom-saved-face, custom-button-face, custom-button-pressed-face)
9270 (custom-documentation-face, custom-state-face, custom-comment-face)
9271 (custom-comment-tag-face, custom-variable-tag-face)
9272 (custom-variable-button-face, custom-face-tag-face)
9273 (custom-group-tag-face-1, custom-group-tag-face):
9274 * diff-mode.el (diff-header-face, diff-file-header-face)
9275 (diff-index-face, diff-hunk-header-face, diff-removed-face)
9276 (diff-added-face, diff-changed-face, diff-function-face)
9277 (diff-context-face, diff-nonexistent-face):
9278 * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
9279 * hilit-chg.el (highlight-changes-face, highlight-changes-delete-face):
9280 * info.el (Info-title-1-face, Info-title-2-face, Info-title-3-face)
9281 (Info-title-4-face):
9282 * isearch.el (isearch-lazy-highlight-face):
9283 * log-view.el (log-view-file-face, log-view-message-face):
9284 * paren.el (show-paren-match-face, show-paren-mismatch-face):
9285 * pcvs-info.el (cvs-header-face, cvs-filename-face, cvs-unknown-face)
9286 (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
9287 (cvs-msg-face):
9288 * smerge-mode.el (smerge-mine-face, smerge-other-face)
9289 (smerge-base-face, smerge-markers-face):
9290 * wid-edit.el (widget-documentation-face, widget-button-face)
9291 (widget-field-face, widget-single-line-field-face)
9292 (widget-inactive-face, widget-button-pressed-face):
9293 * woman.el (woman-italic-face, woman-bold-face, woman-unknown-face)
9294 (woman-addition-face):
9295 * eshell/em-ls.el (eshell-ls-directory-face, eshell-ls-symlink-face)
9296 (eshell-ls-executable-face, eshell-ls-readonly-face)
9297 (eshell-ls-unreadable-face, eshell-ls-special-face)
9298 (eshell-ls-missing-face, eshell-ls-archive-face)
9299 (eshell-ls-backup-face, eshell-ls-product-face)
9300 (eshell-ls-clutter-face):
9301 * eshell/em-prompt.el (eshell-prompt-face):
9302 * eshell/esh-test.el (eshell-test-ok-face, eshell-test-failed-face):
9303 * obsolete/old-whitespace.el (whitespace-highlight-face):
9304 * progmodes/antlr-mode.el (antlr-font-lock-default-face)
9305 (antlr-font-lock-keyword-face, antlr-font-lock-syntax-face)
9306 (antlr-font-lock-ruledef-face, antlr-font-lock-tokendef-face)
9307 (antlr-font-lock-ruleref-face, antlr-font-lock-tokenref-face)
9308 (antlr-font-lock-literal-face):
9309 * progmodes/ebrowse.el (ebrowse-tree-mark-face)
9310 (ebrowse-root-class-face, ebrowse-file-name-face)
9311 (ebrowse-default-face, ebrowse-member-attribute-face)
9312 (ebrowse-member-class-face, ebrowse-progress-face):
9313 * progmodes/make-mode.el (makefile-space-face):
9314 * progmodes/sh-script.el (sh-heredoc-face):
9315 * textmodes/flyspell.el (flyspell-incorrect-face)
9316 (flyspell-duplicate-face):
9317 * textmodes/tex-mode.el (tex-math-face, tex-verbatim-face):
9318 * textmodes/texinfo.el (texinfo-heading-face):
9319 Mark face aliases with "-face" suffix as obsolete.
9320
9321 * mail/feedmail.el (file-name-buffer-file-type-alist): Define for
9322 compiler.
9323
9324 * net/eudc-bob.el (eudc-bob-generic-menu, eudc-bob-image-menu)
9325 (eudc-bob-sound-menu): Use defvar rather than defconst, since
9326 easy-menu-define wants to modify these.
9327
9328 * net/net-utils.el (nslookup): Use make-comint rather than comint-run.
9329
9330 * net/browse-url.el (browse-url-file-url):
9331 * term/internal.el (dos-codepage-setup):
9332 Use default-value rather than default-enable-multibyte-characters.
9333
9334 * progmodes/etags.el (etags-goto-tag-location):
9335 * progmodes/flymake.el (flymake-highlight-line)
9336 (flymake-goto-file-and-line, flymake-goto-line):
9337 * progmodes/gdb-mi.el (gdb-mouse-until, gdb-mouse-jump)
9338 (gdb-goto-breakpoint):
9339 * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
9340 * progmodes/python.el (python-find-function)
9341 (python-pdbtrack-track-stack-file):
9342 * progmodes/verilog-mode.el (verilog-surelint-off):
9343 * term/ns-win.el (ns-open-file-select-line):
9344 * textmodes/bibtex.el (bibtex-validate, bibtex-validate-globally):
9345 Use forward-line rather than goto-line.
9346
9347 * textmodes/reftex-cite.el (reftex-offer-bib-menu):
9348 * textmodes/reftex-index.el (reftex-display-index):
9349 * textmodes/reftex-ref.el (reftex-offer-label-menu):
9350 * textmodes/reftex-toc.el (reftex-toc):
9351 Remove unnecessary bindings of default-major-mode (all are followed by
9352 major-mode check and possible mode switch).
9353
9354 2009-08-31 Nick Roberts <nickrob@snap.net.nz>
9355
9356 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
9357 Handle watchpoints (bug#4282).
9358 (def-gdb-thread-buffer-command): Enable thread to be selected by
9359 clicking without selecting threads buffer first.
9360 (gdb-current-context-command): Use selected frame so that "up",
9361 "down" etc work in the GUD buffer.
9362 (gdb-update): Find selected frame before rendering stack buffer.
9363 (gdb-frame-handler): Set gdb-frame-number for stack buffer.
9364
9365 2009-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
9366
9367 * progmodes/sym-comp.el (displayed-completions): Remove.
9368 (symbol-complete): Use minibuffer-complete.
9369
9370 2009-08-31 Glenn Morris <rgm@gnu.org>
9371
9372 * emacs-lisp/byte-run.el (define-obsolete-face-alias): New macro.
9373
9374 * apropos.el (apropos-symbols-internal):
9375 Handle (obsolete) face aliases.
9376
9377 * faces.el (describe-face): Adjust the output format to be more like
9378 describe-variable, and to mention (obsolete) face aliases.
9379 Adjust the whitespace so that help-setup-xref works.
9380
9381 * calendar/calendar.el (calendar-today-face, diary-face, holiday-face):
9382 * calendar/diary-lib.el (diary-button-face):
9383 Mark these face aliases as obsolete.
9384
9385 * calendar/calendar.el (calendar-today): Doc fix.
9386
9387 2009-08-31 Nick Roberts <nickrob@snap.net.nz>
9388
9389 * progmodes/gdb-mi.el (gdb-control-all-threads)
9390 (gdb-control-current-thread): Force tool bar update.
9391 (gdb-non-stop-handler): New function.
9392 (gdb-init-1): Use it to test if non-stop mode is supported.
9393 Remove unused gdbmi buffer type.
9394
9395 2009-08-30 Kevin Rodgers <kevin.d.rodgers@gmail.com>
9396
9397 * progmodes/grep.el (grep-read-files): Strip trailing <N> from
9398 buffer names not visiting a file (e.g. cloned buffers). (Bug#4210)
9399
9400 2009-08-30 Nick Roberts <nickrob@snap.net.nz>
9401
9402 * comint.el (comint-exec-1): Check command is non-null first.
9403 Part of gdb-mi.el change (2009-08-28).
9404
9405 2009-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
9406
9407 * emacs-lisp/lisp.el (lisp-complete-symbol): Use minibuffer-complete.
9408
9409 2009-08-30 Juanma Barranquero <lekktu@gmail.com>
9410
9411 * subr.el (do-after-load-evaluation): Fix last change: use `mapc'
9412 instead of `dolist' to avoid a recursive require when bootstrapping.
9413
9414 2009-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
9415
9416 * emacs-lisp/lisp.el (field-complete): Use minibuffer-complete.
9417
9418 * net/ldap.el (ldap-search-internal): Use with-current-buffer and push.
9419
9420 * net/imap.el (imap-send-command): Simplify.
9421 (imap-wait-for-tag): point-max -> buffer-size.
9422
9423 * net/ange-ftp.el (internal-ange-ftp-mode): Use define-derived-mode.
9424
9425 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't use symbol-value
9426 with constant argument.
9427
9428 * emacs-lisp/debug.el (debugger-setup-buffer): Make it multibyte.
9429
9430 * emacs-lisp/cl.el (cl-macro-environment): Don't define it here.
9431
9432 * emacs-lisp/checkdoc.el (checkdoc-force-history-flag):
9433 Change default, since most of our files don't have a history.
9434 (checkdoc-display-status-buffer): Don't use a hidden buffer to show to
9435 the user.
9436
9437 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
9438 Add comint-run.
9439
9440 * calc/calc.el: Improve commenting convention.
9441 (calc-digit-map, toplevel): Simplify.
9442
9443 * comint.el (comint-insert-input): Be careful to only set point if we
9444 don't delegate to some other command.
9445
9446 * proced.el (proced-signal-list): Make it an alist.
9447 (proced-grammar-alist): Capitalize names.
9448 (proced-send-signal): Use a non-hidden buffer (since it's displayed).
9449 Disable undo manually and make it read-only.
9450 Use completion-annotate-function.
9451
9452 * minibuffer.el (minibuffer-message): If the current buffer is not
9453 a minibuffer, insert the message in the echo area rather than at the
9454 end of the buffer.
9455 (completion-annotate-function): New variable.
9456 (minibuffer-completion-help): Use it.
9457 (completion--embedded-envvar-table): Environment vars are
9458 always case-sensitive.
9459
9460 2009-08-30 Glenn Morris <rgm@gnu.org>
9461
9462 * progmodes/fortran.el (fortran-start-prog-re): New constant, extracted
9463 from fortran-current-defun.
9464 (fortran-beginning-of-subprogram): Be more precise about finding the
9465 start, to avoid an infinite loop in end-of-defun. (Bug#4259)
9466 (fortran-end-of-subprogram): Simplify.
9467 (fortran-current-defun): Use fortran-start-prog-re.
9468
9469 2009-08-29 Juanma Barranquero <lekktu@gmail.com>
9470
9471 * subr.el (do-after-load-evaluation): Simplify.
9472
9473 2009-08-29 Dan Nicolaescu <dann@ics.uci.edu>
9474
9475 * vc.el (vc-print-log-internal): Move RCS/CVS specific code ...
9476
9477 * vc-rcs.el (vc-rcs-print-log-cleanup): ... here. New function.
9478 (vc-rcs-print-log): Use it.
9479
9480 * vc-cvs.el (vc-cvs-print-log): Use vc-rcs-print-log-cleanup.
9481
9482 2009-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
9483
9484 * paths.el (abbrev-file-name): Move to abbrev.el.
9485 * abbrev.el (abbrev-file-name): Move from paths.el.
9486 Obey user-emacs-directory.
9487 * calc/calc.el (calc-settings-file): Don't autoload and instead obey
9488 user-emacs-directory.
9489 * dos-fns.el (dos-reevaluate-defcustoms): Don't reevaluate
9490 abbrev-file-name and calc-settings-file any more.
9491 * startup.el (command-line): Recompute abbrev-file-name and
9492 abbreviated-home-dir.
9493 (normal-no-mouse-startup-screen): Improve the generic code and get rid
9494 of the special code for when C-h bindings haven't been changed.
9495 (display-startup-echo-area-message): Use with-current-buffer.
9496 (command-line-1): Use a list of strings, rather than a list of lists
9497 of strings for longopts.
9498
9499 * files.el (get-free-disk-space): Use / for default-directory.
9500
9501 * textmodes/ispell.el (ispell-accept-output, ispell-command-loop):
9502 Use with-current-buffer.
9503
9504 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p):
9505 Recognize immutable variables like most-positive-fixnum.
9506 (byte-compile-setq-default): Check and warn if trying to assign
9507 to an immutable variable, or a non-variable.
9508
9509 * progmodes/cc-vars.el (c-comment-continuation-stars):
9510 * progmodes/cc-engine.el (c-looking-at-bos):
9511 * progmodes/cc-cmds.el (c-toggle-auto-state)
9512 (c-forward-into-nomenclature, c-backward-into-nomenclature)
9513 (c-comment-line-break-function): Add version of obsolescence.
9514
9515 2009-08-28 Juri Linkov <juri@jurta.org>
9516
9517 * files.el (magic-fallback-mode-alist): Add ZIP magic number
9518 associated with `archive-mode'.
9519
9520 * image.el (image-type-header-regexps): Use only JPEG magic number
9521 to determine JPEG images, and don't use `image-jpeg-p' because
9522 Emacs can display non-JFIF non-Exif JPEG images.
9523
9524 2009-08-28 Juanma Barranquero <lekktu@gmail.com>
9525
9526 * arc-mode.el (archive-mode):
9527 * emacs-lisp/re-builder.el (re-builder-unload-function):
9528 Protect against the default value of `major-mode' being nil.
9529
9530 2009-08-28 Juanma Barranquero <lekktu@gmail.com>
9531
9532 * international/ucs-normalize.el (ucs-normalize-sort, quick-check-list):
9533 Fix typos in docstrings.
9534
9535 * progmodes/js.el (js--macro-decl-re): Doc fix.
9536 (js--plain-method-re, js--split-name): Refloc docstring.
9537 (js--class-styles, js--make-merged-item, js--splice-into-items):
9538 Fix typos in docstrings; reflow docstrings.
9539 (js--maybe-join, js--function-prologue-beginning, js--flush-caches)
9540 (js--variable-decl-matcher, js--inside-pitem-p)
9541 (js--parse-state-at-point, js--get-all-known-symbols)
9542 (js--symbol-history, js-find-symbol, js--js-references)
9543 (js--moz-interactor, js--js-encode-value, js--read-tab):
9544 Fix typos in docstrings.
9545
9546 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
9547
9548 * textmodes/reftex.el (reftex-get-file-buffer-force):
9549 * progmodes/verilog-mode.el (verilog-batch-execute-func):
9550 * emulation/viper.el (viper-go-away, viper-set-hooks):
9551 * emacs-lisp/re-builder.el (re-builder-unload-function):
9552 * emacs-lisp/bytecomp.el (byte-compile-file):
9553 * ses.el (ses-unload-function):
9554 * hexl.el (hexl-find-file):
9555 * files.el (normal-mode):
9556 * ehelp.el (with-electric-help):
9557 * autoinsert.el (auto-insert-alist):
9558 * arc-mode.el (archive-mode):
9559 Use (default-value 'major-mode) instead of default-major-mode.
9560
9561 * textmodes/ispell.el (ispell-check-version, ispell-send-string):
9562 * international/mule.el (load-with-code-conversion):
9563 * emacs-lisp/debug.el (debug):
9564 * ediff-vers.el (ediff-rcs-get-output-buffer):
9565 * dired.el (dired-internal-noselect): Don't let-bind
9566 default-major-mode around code that doesn't use it.
9567 E.g. buffer creation via get-buffer-create doesn't use it.
9568
9569 2009-08-28 Michael Albinus <michael.albinus@gmx.de>
9570
9571 * net/tramp.el (all): Replace "'(lambda" by "(lambda".
9572 (tramp-handle-file-local-copy): Unset `file-name-handler-alist'
9573 when writing the temp file. Otherwise, epa-file gets confused.
9574 (tramp-register-file-name-handlers): Make it a defun. Move also
9575 `epa-file-handler' to the front of `file-name-handler-alist'.
9576
9577 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
9578
9579 * net/tramp.el (tramp-shell-prompt-pattern): Allow a prompt to
9580 start right after a ^M.
9581 (tramp-root-regexp, tramp-completion-file-name-regexp-unified)
9582 (tramp-completion-file-name-regexp-separate)
9583 (tramp-completion-file-name-regexp-url): Use \\` and \\'.
9584 (tramp-handle-file-attributes, tramp-set-file-uid-gid):
9585 Don't modify last-coding-system-used by accident.
9586 (tramp-completion-file-name-handler): Apply the checks here,
9587 instead during registration.
9588 (tramp-register-file-name-handlers): Renamed from
9589 `tramp-register-file-name-handler'. Register both
9590 `tramp-file-name-handler' and `tramp-completion-file-name-handler'.
9591 (tramp-register-completion-file-name-handler): Remove. (Bug#4260)
9592
9593 2009-08-28 Nick Roberts <nickrob@snap.net.nz>
9594
9595 * progmodes/gdb-mi.el (gdb-use-separate-io-buffer):
9596 Remove variable ...
9597 (gdb-init-1, gdb-display-separate-io-buffer)
9598 (gdb-frame-separate-io-buffer, gdb-setup-windows): ... and
9599 references to it.
9600 (gdb-inferior-io-mode): Use make-comint-in-buffer.
9601 (gdb-inferior-filter): Use comint-output-filter to stop
9602 echoing and remove ^M characters.
9603
9604 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
9605
9606 * emulation/viper-init.el (viper-restore-cursor-type):
9607 * emulation/cua-base.el (cua--update-indications):
9608 Replace default-cursor-type with (default-value 'cursor-type).
9609
9610 * mail/sendmail.el (mail-recover-1):
9611 * international/mule-diag.el (describe-current-coding-system-briefly)
9612 (describe-current-coding-system):
9613 * international/mule-cmds.el (select-safe-coding-system)
9614 (select-message-coding-system)
9615 (set-language-environment-coding-systems, set-locale-environment):
9616 * hexl.el (hexl-insert-multibyte-char):
9617 * dos-w32.el (find-buffer-file-type-coding-system):
9618 * simple.el (what-cursor-position):
9619 Replace uses of default-buffer-file-coding-system
9620 with (default-value 'buffer-file-coding-system).
9621
9622 * emacs-lisp/edebug.el (edebug-display, edebug-outside-excursion):
9623 Replace uses of default-cursor-in-non-selected-windows
9624 with (default-value 'cursor-in-non-selected-windows).
9625 Use with-current-buffer.
9626
9627 * mail/feedmail.el: Use CL macros.
9628 (feedmail-run-the-queue, feedmail-send-it-immediately):
9629 * dos-w32.el (find-buffer-file-type): Replace uses of
9630 default-buffer-file-type with (default-value 'buffer-file-type).
9631
9632 2009-08-28 Glenn Morris <rgm@gnu.org>
9633
9634 * calendar/diary-lib.el (diary-list-entries, diary-goto-entry)
9635 (diary-show-all-entries, diary-mark-entries, diary-make-entry):
9636 Use default-value of major-mode rather than default-major-mode.
9637
9638 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
9639
9640 * Makefile.in (update-elcfiles): Report left over elc files.
9641
9642 * mail/mailalias.el (build-mail-aliases): Use with-temp-buffer,
9643 expand-file-name and with-current-buffer.
9644 (mail-get-names, mail-directory): Use with-current-buffer.
9645
9646 * vc.el (vc-read-revision): New function.
9647 (vc-version-diff, vc-merge): Use it.
9648
9649 2009-08-27 Sam Steingold <sds@gnu.org>
9650
9651 * simple.el (kill-do-not-save-duplicates): New user option.
9652 (kill-new): When it is non-nil, and the new string is the same as
9653 the latest kill, set replace to t to avoid duplicates in kill-ring.
9654
9655 2009-08-27 Julian Scheid <julians37@gmail.com> (tiny change)
9656
9657 * net/tramp.el (tramp-handle-process-file): Do not flush all
9658 caches when `process-file-side-effects' is set.
9659 (tramp-handle-vc-registered): Use `tramp-get-file-exists-command'
9660 instead of `tramp-find-file-exists-command'.
9661 Unset `process-file-side-effects'.
9662
9663 2009-08-27 Michael Albinus <michael.albinus@gmx.de>
9664
9665 * net/tramp.el (tramp-methods): New method "rsyncc".
9666 (top): Add completion function for "rsyncc".
9667 (tramp-message-show-message): New defvar.
9668 (tramp-message, tramp-error): Use it.
9669 (tramp-do-copy-or-rename-file-directly): Extend check for direct
9670 remote copying.
9671 (tramp-do-copy-or-rename-file-out-of-band): Handle new
9672 `tramp-methods' entry `copy-env' of "rsyncc".
9673 (tramp-vc-registered-read-file-names): New defconst.
9674 (tramp-vc-registered-file-names): New defvar.
9675 (tramp-handle-vc-registered): Implement optimization strategy.
9676 (tramp-run-real-handler): Add `tramp-vc-file-name-handler'.
9677 (tramp-vc-file-name-handler): New defun.
9678 (tramp-get-ls-command, tramp-get-test-command)
9679 (tramp-get-file-exists-command, tramp-get-remote-ln)
9680 (tramp-get-remote-perl, tramp-get-remote-stat)
9681 (tramp-get-remote-id): Remove superfluous `with-current-buffer'.
9682
9683 * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
9684 (tramp-cache-inhibit-cache): Extend doc string. It allows also
9685 timestamps.
9686 (tramp-get-file-property): Check for timestamps in
9687 `tramp-cache-inhibit-cache'.
9688 (tramp-set-file-property): Write timestamp.
9689
9690 2009-08-27 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
9691
9692 * language/japan-util.el (japanese-symbol-table): Add entries for
9693 cp932-2-byte.
9694
9695 * international/characters.el: Add category `j' to cp932-2-byte.
9696
9697 2009-08-27 Kenichi Handa <handa@m17n.org>
9698
9699 * international/fontset.el (build-default-fontset-data): New macro.
9700 (setup-default-fontset): Use build-default-fontset-data for CJK,
9701 tibetan, ethiopic, and ipa.
9702
9703 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
9704
9705 * cus-start.el (default-major-mode): Customize `major-mode' instead.
9706 (enable-multibyte-characters): Not customizable any more.
9707
9708 * subr.el (default-mode-line-format, default-header-line-format)
9709 (default-line-spacing, default-abbrev-mode, default-ctl-arrow)
9710 (default-direction-reversed, default-truncate-lines)
9711 (default-left-margin, default-tab-width, default-case-fold-search)
9712 (default-left-margin-width, default-right-margin-width)
9713 (default-left-fringe-width, default-right-fringe-width)
9714 (default-fringes-outside-margins, default-scroll-bar-width)
9715 (default-vertical-scroll-bar, default-indicate-empty-lines)
9716 (default-indicate-buffer-boundaries, default-fringe-indicator-alist)
9717 (default-fringe-cursor-alist, default-scroll-up-aggressively)
9718 (default-scroll-down-aggressively, default-fill-column)
9719 (default-cursor-type, default-buffer-file-type)
9720 (default-cursor-in-non-selected-windows)
9721 (default-buffer-file-coding-system, default-major-mode)
9722 (default-enable-multibyte-characters): Mark as obsolete.
9723
9724 2009-08-27 Dan Nicolaescu <dann@ics.uci.edu>
9725
9726 * vc-dir.el (vc-dir-update): Remove debug helper.
9727
9728 * vc-cvs.el (vc-cvs-update-changelog): Fix typo.
9729
9730 2009-08-26 Sam Steingold <sds@gnu.org>
9731
9732 * simple.el (save-interprogram-paste-before-kill): New user option.
9733 (kill-new): When `save-interprogram-paste-before-kill' is non-nil,
9734 save the interprogram-paste into kill-ring before overriding it
9735 with the Emacs kill.
9736
9737 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
9738
9739 * vc.el (vc-trunk-p): Rename to vc-rcs-trunk-p and move to vc-rcs.el.
9740 (vc-minor-part): Rename to vc-rcs-minor-part and move to vc-rcs.el.
9741 (vc-default-previous-revision): Rename to vc-rcs-previous-revision
9742 and move to vc-rcs.el.
9743 (vc-default-next-revision): Rename to vc-rcs-next-revision and
9744 move to vc-rcs.el.
9745 (vc-cvs-update-changelog): Move to vc-cvs.el, use vc-call-backend.
9746 (vc-rcs-update-changelog): Remove.
9747 (vc-update-changelog-rcs2log): Rename to vc-rcs-update-changelog
9748 and move to vc-rcs.el.
9749
9750 * vc-rcs.el (vc-rcs-latest-on-branch-p, vc-rcs-checkin)
9751 (vc-rcs-checkout, vc-rcs-rollback): Adjust for the vc-rcs-trunk-p
9752 renaming.
9753 (vc-rcs-trunk-p, vc-rcs-minor-part, vc-rcs-previous-revision)
9754 (vc-rcs-next-revision, vc-rcs-update-changelog): Move here from
9755 vc.el, renamed to be RCS specific.
9756
9757 * vc-cvs.el (vc-cvs-previous-revision, vc-cvs-next-revision):
9758 New functions.
9759 (vc-cvs-update-changelog): Move here from vc.el.
9760
9761 * vc-sccs.el (vc-sccs-previous-revision, vc-sccs-next-revision):
9762 New functions.
9763
9764 2009-08-26 Stefan Monnier <monnier@iro.umontreal.ca>
9765
9766 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix up last change.
9767
9768 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
9769
9770 * vc-git.el (vc-git-register): Use "git add" for directories.
9771 (vc-git-stash, vc-git-stash-show): New functions.
9772 (vc-git-extra-menu-map): Bind them.
9773
9774 * vc-dir.el (vc-dir-node-directory, vc-dir-update): Get the parent
9775 directory correctly in case the item is a directory itself.
9776
9777 * vc.el: Document the desired behavior for reverted files in the
9778 `added' state.
9779 (vc-default-prettify-state-info): Remove function, unused.
9780
9781 * vc-bzr.el (vc-bzr-prettify-state-info): Remove function, unused.
9782
9783 2009-08-26 Glenn Morris <rgm@gnu.org>
9784
9785 * bindings.el (standard-mode-line-format): Reposition dashes in
9786 which-func entry. (Bug#4217)
9787
9788 * files.el (enable-local-variables, enable-local-eval)
9789 (safe-local-variable-values, safe-local-eval-forms): Mark as risky in
9790 the defcustoms.
9791 (auto-mode-alist, ignored-local-variables)
9792 (save-some-buffers-action-alist): Move risky declarations to the
9793 definitions.
9794 (dabbrev-case-fold-search, dabbrev-case-replace, display-time-string)
9795 (font-lock-defaults, format-alist, imenu--index-alist)
9796 (imenu-generic-expression, input-method-alist, minor-mode-alist)
9797 (mode-line-buffer-identification, mode-line-client, mode-line-modes)
9798 (mode-line-modified, mode-line-mule-info, mode-line-position)
9799 (mode-line-process, mode-line-remote, outline-level)
9800 (parse-time-rules, rmail-output-file-alist)
9801 (special-display-buffer-names, vc-mode):
9802 Move risky declarations to the relevant files.
9803 * bindings.el (mode-line-client, mode-line-mule-info, mode-line-remote)
9804 (mode-line-modified, mode-line-process, mode-line-position)
9805 (mode-line-modes, mode-line-buffer-identification, minor-mode-alist)
9806 * font-core.el (font-lock-defaults):
9807 * format.el (format-alist):
9808 * vc-hooks.el (vc-mode):
9809 * window.el (special-display-buffer-names):
9810 * international/mule-cmds.el (input-method-alist):
9811 Define riskiness here (dumped file) rather than in files.el.
9812 * dabbrev.el (dabbrev-case-fold-search, dabbrev-case-replace):
9813 * imenu.el (imenu-generic-expression, imenu--index-alist):
9814 * outline.el (outline-level):
9815 * time.el (display-time-string):
9816 * calendar/parse-time.el (parse-time-rules):
9817 * mail/rmailout.el (rmail-output-file-alist):
9818 Autoload riskiness here, rather than placing in files.el.
9819
9820 2009-08-26 Andreas Schwab <schwab@linux-m68k.org>
9821
9822 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Signal overflow.
9823
9824 2009-08-25 Michael Albinus <michael.albinus@gmx.de>
9825
9826 * simple.el (process-file-side-effects): New defvar.
9827
9828 * dired-aux.el (dired-show-file-type):
9829 * vc.el (vc-diff-internal):
9830 * vc-arch.el (vc-arch-diff):
9831 * vc-bzr.el (vc-bzr-sha1, vc-bzr-revision-completion-table):
9832 * vc-cvs.el (vc-cvs-state, vc-cvs-diff, vc-cvs-revision-table):
9833 * vc-git.el (vc-git-registered, vc-git-working-revision)
9834 (vc-git-find-revision, vc-git-diff, vc-git-revision-table)
9835 (vc-git--empty-db-p):
9836 * vc-hooks.el (vc-user-login-name):
9837 * vc-svn.el (vc-svn-registered, vc-svn-state)
9838 (vc-svn-dir-extra-headers, vc-svn-find-revision):
9839 * progmodes/grep.el (grep-probe): Let-bind
9840 `process-file-side-effects' with nil.
9841
9842 * net/dbus.el (dbus-ping): Add optional parameter TIMEOUT.
9843
9844 * net/tramp-gvfs.el (top): Use timeout of 100 msec pinging GVFS
9845 daemon. Replace ping by checking for running service for bluez
9846 and zeroconf. (Bug#4239)
9847
9848 2009-08-25 Kevin Ryde <user42@zip.com.au>
9849
9850 * net/dig.el (dig): Add autoload cookie.
9851
9852 2009-08-25 Glenn Morris <rgm@gnu.org>
9853
9854 * emacs-lisp/bytecomp.el (byte-compile-eval): Fix test for cl in
9855 load-history for absolute file-names.
9856 (byte-compile-file-form-require): Warn about use of the cl package.
9857
9858 * format.el (format-alist): Doc fix.
9859
9860 * play/bubbles.el (top-level): Don't require cl at run-time.
9861
9862 * progmodes/verilog-mode.el (top-level): Don't require lucid (and hence
9863 run-time cl).
9864
9865 2009-08-24 Dmitry Dzhus <dima@sphinx.net.ru>
9866
9867 * progmodes/gdb-mi.el (gdb-mapcar*): Replacement for `mapcar*'
9868 from cl package.
9869 (gdb-table-add-row, gdb-table-string): Use `gdb-mapcar*'.
9870
9871 2009-08-24 Jay Belanger <jay.p.belanger@gmail.com>
9872
9873 * calc/calc-alg.el (math-trig-rewrite)
9874 (math-hyperbolic-trig-rewrite): New functions.
9875 (calc-simplify): Simplify trig functions when asked.
9876
9877 2009-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
9878
9879 * diff-mode.el (diff-find-source-location): Avoid goto-line.
9880
9881 2009-08-24 Kenichi Handa <handa@m17n.org>
9882
9883 * language/ind-util.el (mapthread): Delete it.
9884 (combinatorial): New function.
9885 (indian--puthash-cv): Use combinatorial instead of mapthread.
9886
9887 2009-08-22 Kevin Ryde <user42@zip.com.au>
9888
9889 * emacs-lisp/checkdoc.el (checkdoc-force-history-flag)
9890 (checkdoc-arguments-in-order-flag): Add safe-local-variable booleanp.
9891 (checkdoc-symbol-words): Add safe-local-variable for list of strings.
9892 Clarify docstring that the value is strings not symbols.
9893 (checkdoc-list-of-strings-p): New function.
9894
9895 2009-08-22 Glenn Morris <rgm@gnu.org>
9896
9897 * files.el (auto-mode-alist):
9898 * hippie-exp.el (he-concat-directory-file-name):
9899 * lpr.el (lpr-windows-system, printer-name):
9900 * ls-lisp.el (ls-lisp-emulation, ls-lisp-use-insert-directory-program):
9901 * ps-print.el (ps-windows-system):
9902 * startup.el (command-line):
9903 * emulation/viper-ex.el (viper-glob-function):
9904 * international/mule-cmds.el (set-language-environment-coding-systems):
9905 * net/ange-ftp.el (ange-ftp-write-region):
9906 * obsolete/fast-lock.el (fast-lock-cache-name):
9907 Remove code for defunct system-types emx, macos, mswindows, next-mach,
9908 unisoft-unix, vax-vms, win32, w32.
9909
9910 * calendar/diary-lib.el (diary-mark-entries-1): Only mark all days of a
9911 given name if the pattern is not more specific.
9912
9913 * calendar/lunar.el (lunar-phase-names): New option.
9914 (lunar-phase): Doc fix.
9915 (lunar-cycles-per-year): New constant.
9916 (lunar-index): New function.
9917 (lunar-phase-list, diary-lunar-phases): Use lunar-index.
9918 (lunar-phase-name): Use lunar-phase-names.
9919 (calendar-lunar-phases): Use format.
9920 (lunar-new-moon-on-or-after): Use lunar-cycles-per-year.
9921
9922 * progmodes/cperl-mode.el (cperl-imenu-name-and-position):
9923 Copy imenu-example--name-and-position function here for own use.
9924 (cperl-xsub-scan): Use cperl-imenu-name-and-position.
9925
9926 * bs.el (bs--redisplay):
9927 * cus-edit.el (custom-redraw):
9928 * ibuffer.el (ibuffer-bury-buffer):
9929 * server.el (server-goto-line-column):
9930 * startup.el (command-line-1):
9931 * strokes.el (strokes-xpm-for-stroke):
9932 * term.el (term-display-buffer-line):
9933 * view.el (View-goto-line):
9934 * calc/calc.el (calc-do, calc-trail-buffer):
9935 * play/gamegrid.el (gamegrid-add-score-insecure):
9936 * progmodes/ada-mode.el (ada-compile-goto-error):
9937 * progmodes/ada-xref.el (ada-xref-find-in-modified-ali):
9938 (ebrowse-select-1st-to-9nth):
9939 * progmodes/cperl-mode.el (cperl-time-fontification):
9940 * progmodes/ebrowse.el (ebrowse-toggle-file-name-display)
9941 * progmodes/gud.el (gud-display-line):
9942 (idlwave-shell-display-line):
9943 * progmodes/idlw-shell.el (idlwave-shell-goto-frame)
9944 * progmodes/make-mode.el (makefile-browser-toggle):
9945 (vhdl-speedbar-port-copy, vhdl-compose-components-package):
9946 * progmodes/vhdl-mode.el (vhdl-speedbar-find-file)
9947 * textmodes/picture.el (picture-draw-rectangle):
9948 * textmodes/reftex-index.el (reftex-index-goto-letter):
9949 (reftex-select-jump-to-previous):
9950 * textmodes/reftex-sel.el (reftex-find-start-point)
9951 * textmodes/reftex-toc.el (reftex-toc, reftex-toc-restore-region):
9952 (rst-straighten-deco-spacing, rst-section-tree, rst-toc):
9953 * textmodes/rst.el (rst-promote-region, rst-straighten-decorations)
9954 * textmodes/tex-mode.el (tex-compilation-parse-errors):
9955 * textmodes/two-column.el (2C-associated-buffer):
9956 Use forward-line rather than goto-line.
9957
9958 * emulation/vi.el (vi-goto-line): Don't warn about non-interactive
9959 goto-line.
9960
9961 * international/ucs-normalize.el (nfd, decomposition-translation-alist)
9962 (decomposition-char-recursively, alist-list-to-vector, quick-check-list)
9963 (quick-check-list-to-regexp): Declare.
9964
9965 * progmodes/make-mode.el (makefile-browser-insert-selection):
9966 Use goto-char rather than goto-line.
9967
9968 * progmodes/prolog.el (compilation-error-regexp-alist)
9969 (compilation-forget-errors): Declare.
9970
9971 2009-08-22 Juri Linkov <juri@jurta.org>
9972
9973 * progmodes/grep.el (lgrep, rgrep): At the beginning
9974 set `dir' to `default-directory' unless `dir' is a non-nil
9975 readable directory. (Bug#4052)
9976 (lgrep, rgrep): Change a weird way to report an error
9977 from using `read-string' to using `error'.
9978 Instead of using interactive arguments in the function body,
9979 add new argument `confirm'.
9980
9981 2009-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
9982
9983 * textmodes/remember.el (remember-buffer):
9984 * progmodes/cperl-mode.el (cperl-vc-header-alist):
9985 * calendar/icalendar.el (icalendar-convert-diary-to-ical)
9986 (icalendar-extract-ical-from-buffer):
9987 * net/newst-treeview.el (newsticker-groups-filename):
9988 * net/newst-backend.el (newsticker-cache-filename):
9989 * speedbar.el (speedbar-update-speed, speedbar-navigating-speed)
9990 (speedbar-ignored-path-expressions, speedbar-ignored-path-regexp)
9991 (speedbar-add-ignored-path-regexp, speedbar-line-path)
9992 (speedbar-buffers-line-path, speedbar-path-line)
9993 (speedbar-buffers-line-path):
9994 * epg.el (epg-passphrase-callback-function, epg-start-sign-keys)
9995 (epg-sign-keys):
9996 * epa.el (epa-display-verify-result):
9997 * progmodes/pascal.el (pascal-outline): Add version of obsolescence.
9998
9999 2009-08-21 Glenn Morris <rgm@gnu.org>
10000
10001 * progmodes/js.el (inferior-moz-process): Fix declaration.
10002
10003 * imenu.el (imenu-example--name-and-position): Fix obsolescence message.
10004
10005 * obsolete/rnewspost.el (news-mail-reply):
10006 Use goto-char rather than goto-line.
10007
10008 * term/ns-win.el (ns-open-file-select-line):
10009 Use line-beginning-position rather than goto-line.
10010
10011 * apropos.el (apropos-command):
10012 * ehelp.el (electric-helpify):
10013 * printing.el (pr-show-setup):
10014 * strokes.el (strokes-help):
10015 * tutorial.el (tutorial--describe-nonstandard-key)
10016 (tutorial--detailed-help):
10017 * woman.el (woman-mini-help, woman-display-extended-fonts):
10018 * calc/calc-help.el (calc-describe-key):
10019 * emulation/edt.el (edt-electric-helpify):
10020 * international/mule-diag.el (mule-diag):
10021 * play/yow.el (apropos-zippy):
10022 * progmodes/python.el (python-describe-symbol):
10023 * progmodes/vhdl-mode.el (vhdl-doc-variable, vhdl-doc-mode):
10024 * textmodes/table.el (*table--cell-describe-mode)
10025 (*table--cell-describe-bindings):
10026 Use help-print-return-message rather than the now obsolete alias.
10027
10028 * calendar/cal-move.el (calendar-cursor-to-nearest-date)
10029 (calendar-cursor-to-visible-date):
10030 * play/5x5.el (5x5-position-cursor):
10031 * play/decipher.el (decipher):
10032 * play/gomoku.el (gomoku-goto-xy):
10033 * play/landmark.el (lm-goto-xy):
10034 * play/mpuz.el (mpuz-paint-errors, mpuz-paint-statistics)
10035 (mpuz-paint-digit):
10036 Use forward-line, not goto-line.
10037
10038 * mail/rmail.el (rmail-obsolete): Delete custom group.
10039 (rmail-pop-password, rmail-pop-password-required): Make into aliases.
10040 (rmail-remote-password, rmail-remote-password-required):
10041 Remove unneeded :set-after and :set properties.
10042
10043 2009-08-21 Michael Albinus <michael.albinus@gmx.de>
10044
10045 * net/dbus.el (top): Initialize only when `dbusbind' is loaded.
10046
10047 2009-08-21 Dan Nicolaescu <dann@ics.uci.edu>
10048
10049 * loadup.el: Remove leftover macos code.
10050
10051 * vc-git.el (vc-git-annotate-command): Run asynchronously.
10052 Explicitly pass the date format to git blame so that user local
10053 so that the output format can be parsed.
10054
10055 2009-08-20 Michael Albinus <michael.albinus@gmx.de>
10056
10057 * net/dbus.el (top): Don't check for (getenv
10058 "DBUS_SESSION_BUS_ADDRESS"). It's done in dbusbind.c now.
10059
10060 2009-08-19 Magnus Henoch <magnus.henoch@gmail.com>
10061
10062 * log-edit.el (log-edit-strip-single-file-name): New var.
10063 (log-edit-insert-changelog): Use it. Bug#3571
10064
10065 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
10066
10067 * subr.el (read-passwd): Use read-key so keypad keys work as well.
10068 Bug#3287
10069
10070 * help.el (help-print-return-message): Rename from
10071 print-help-return-message.
10072
10073 * log-view.el (log-view-mode-map): Remove `q' binding, and unreliable
10074 cvs-mode-map parent hack.
10075 (log-view-mode): Derive from special-mode.
10076
10077 * linum.el (linum-mode): window-size-change-functions is redundant.
10078 Adapt to new window-configuration-change-hook behavior.
10079 (linum-after-size, linum-after-config): Remove.
10080
10081 * imenu.el (imenu-example--name-and-position)
10082 (imenu-example--lisp-extract-index-name)
10083 (imenu-example--create-lisp-index, imenu-example--create-c-index):
10084 Mark as obsolete.
10085
10086 * progmodes/prolog.el (inferior-prolog-error-regexp-alist): New var.
10087 (inferior-prolog-mode): Use it.
10088 (inferior-prolog-load-file): Reset list of errors.
10089
10090 2009-08-19 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
10091
10092 * language/tibetan.el ("Tibetan"): Fix sample-text entry.
10093
10094 * language/tai-viet.el ("TaiViet"): Fix sample-text entry.
10095
10096 2009-08-19 Michael Albinus <michael.albinus@gmx.de>
10097
10098 * net/dbus.el (top): Apply `dbus-init-bus' only if the session bus
10099 is running already.
10100
10101 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
10102
10103 * subr.el (listify-key-sequence-1): Use normal syntax since those
10104 integers are nowadays always represented by the same (positive) number
10105 on all platforms.
10106 (read-key-empty-map): New const.
10107 (read-key-delay): New var.
10108 (read-key): New function.
10109 (force-mode-line-update): Use with-current-buffer.
10110 (locate-user-emacs-file): Don't forget to abbreviate the file name.
10111 (start-process-shell-command, start-file-process-shell-command):
10112 Discourage the use of command-args.
10113
10114 2009-08-19 Glenn Morris <rgm@gnu.org>
10115
10116 * emacs-lisp/authors.el (authors-fixed-entries): Remove cvtmail.
10117
10118 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
10119
10120 * simple.el (choose-completion-string): Don't rely on
10121 minibuffer-completing-file-name and ad-hoc checks to decide whether
10122 to continue completion or not.
10123
10124 * minibuffer.el (minibuffer-hide-completions): New function.
10125 (completion--do-completion): Use it.
10126 (completions-annotations): New face.
10127 (completion--insert-strings): Use it.
10128 (completion-pcm--delim-wild-regex): Add docstring.
10129 (completion-pcm--string->pattern): Add support for 0-width delimiters
10130 in completion-pcm--delim-wild-regex.
10131
10132 2009-08-18 Stefan Monnier <monnier@iro.umontreal.ca>
10133
10134 * international/ucs-normalize.el (ucs-normalize-hfs-nfd-post-read-conversion):
10135 Remove unused var `buffer-modified-p'.
10136
10137 * minibuffer.el (completion--do-completion): Move point for the #b001
10138 case as well (bug#4176).
10139 (minibuffer-complete, minibuffer-complete-word): Don't move point.
10140
10141 2009-08-18 Michael Albinus <michael.albinus@gmx.de>
10142
10143 * net/dbus.el (dbus-init-bus): Declare. Apply it for the :system
10144 and :session buses.
10145
10146 2009-08-18 Kenichi Handa <handa@m17n.org>
10147
10148 * international/ucs-normalize.el (ucs-normalize-version):
10149 Change to 1.1.
10150 (ucs-normalize-hfs-nfd-pre-write-conversion): New function.
10151 (utf-8-hfs): Make it perform normalization on encoding too.
10152
10153 * textmodes/paragraphs.el: Change to utf-8. Adjust coding cookie.
10154 (sentence-end-without-space): Delete duplicated chars.
10155 (sentence-end-base): Likewise.
10156
10157 * textmodes/sgml-mode.el: Change to utf-8. Adjust coding cookie.
10158 (html-mode): Delete duplicated chars from sentence-end-base.
10159
10160 * textmodes/texinfo.el: Change to utf-8. Adjust coding cookie.
10161 (texinfo-mode): Delete duplicated chars from sentence-end-base.
10162
10163 2009-08-17 Chong Yidong <cyd@stupidchicken.com>
10164
10165 * files.el (hack-one-local-variable): If the mode function is for
10166 a minor mode, pass it an argument (Bug#4148).
10167
10168 2009-08-17 Michael Albinus <michael.albinus@gmx.de>
10169
10170 * net/tramp.el (tramp-register-completion-file-name-handler):
10171 Check also for (member 'partial-completion completion-styles).
10172
10173 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
10174
10175 * progmodes/cperl-mode.el (cperl-electric-paren): Don't expand
10176 abbrev (Bug#3943).
10177
10178 2009-08-16 Ilya Zakharevich <ilyaz@cpan.org>
10179
10180 * progmodes/cperl-mode.el: Merge upstream 6.2.
10181 (cperl-mode-syntax-table): Modify syntax entry for ["'`].
10182 (cperl-forward-re): Check cperl-brace-recursing.
10183 (cperl-highlight-charclass): New function.
10184 (cperl-find-pods-heres): Use it.
10185 (cperl-fill-paragraph): Synch to save-excursion placement used upstream.
10186 (cperl-beautify-regexp-piece): Fix column calculation.
10187 (cperl-make-regexp-x): Handle case where point is between "q" and "rs".
10188 (cperl-beautify-level): Don't process entire regexp.
10189 (cperl-build-manpage, cperl-perldoc): Bind Man-switches before
10190 calling man.
10191 (cperl-tips-faces, cperl-mode, cperl-electric-backspace): Doc fix.
10192 (cperl-init-faces): Build a list in the normal way.
10193
10194 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
10195
10196 * calendar/parse-time.el (parse-time-string-chars): Save match
10197 data.
10198
10199 2009-08-16 Stefan Monnier <monnier@iro.umontreal.ca>
10200
10201 * progmodes/sql.el (sql-product-alist): Add :name tag to entries.
10202 (sql-product): Use it.
10203 (sql-mode-menu): Auto-generate the menu based on sql-product-alist.
10204 (sql-set-product): Add completion.
10205 (sql-highlight-oracle-keywords, sql-highlight-postgres-keywords)
10206 (sql-highlight-linter-keywords, sql-highlight-ms-keywords)
10207 (sql-highlight-ansi-keywords, sql-highlight-sybase-keywords)
10208 (sql-highlight-informix-keywords, sql-highlight-interbase-keywords)
10209 (sql-highlight-ingres-keywords, sql-highlight-solid-keywords)
10210 (sql-highlight-mysql-keywords, sql-highlight-sqlite-keywords)
10211 (sql-highlight-db2-keywords): Remove.
10212 (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
10213 (sql-highlight-product): Use derived-mode-p.
10214 (sql-set-sqli-buffer): Use with-current-buffer.
10215 (sql-connect-informix, sql-connect-ingres, sql-connect-oracle):
10216 Simplify.
10217
10218 * emacs-lisp/lisp-mode.el (lisp-indent-region): Remove unused function.
10219
10220 * term.el: Fix commenting convention, turn comments into docstrings.
10221
10222 2009-08-16 E. Jay Berkenbilt <ejb@ql.org> (tiny change)
10223
10224 * whitespace.el (whitespace-style): Doc fix (Bug#3661).
10225
10226 2009-08-16 Jan Seeger <jan.seeger@thenybble.de> (tiny change)
10227
10228 * calendar/parse-time.el (parse-time-string-chars): Compute using
10229 character classes, to handle non-ascii characters (Bug#3190).
10230
10231 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
10232
10233 * progmodes/sh-script.el (sh-maybe-here-document): Avoid inserting
10234 another heredoc if the user adds another < (Bug#3226).
10235
10236 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
10237 Don't initialize based on window-system (Bug#4124).
10238
10239 * facemenu.el (facemenu-read-color): Use a completion function
10240 that accepts any defined color, such as RGB triplets (Bug#3677).
10241
10242 * files.el (get-free-disk-space): Change fallback default
10243 directory to /. Expand DIR argument before switching to fallback.
10244 Suggested by Kevin Ryde (Bug#2631, Bug#3911).
10245
10246 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
10247
10248 * files.el (load-library): Doc fix.
10249
10250 2009-08-15 Michael Kifer <kifer@cs.stonybrook.edu>
10251
10252 * emulation/viper-cmd.el (viper-insert-isearch-string): New function.
10253 (viper-if-string): Redefine C-s in the minibuffer to insert the last
10254 incremental search string.
10255
10256 * ediff-init.el (ediff-coding-system): Use escape-quoted in case of
10257 XEmacs.
10258
10259 * ediff-merg.el (ediff-merge-region-is-non-clash-to-skip)
10260 (ediff-merge-region-is-non-clash)
10261 (ediff-skip-merge-region-if-changed-from-default-p): Use defun.
10262 Also check if the job is really a merge job.
10263
10264 * ediff.el (ediff-current-file): New function.
10265
10266 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
10267
10268 * progmodes/js.el: Edit docstrings throughout to follow Emacs
10269 conventions.
10270 (js-insert-and-indent): Delete function.
10271 (js-mode-map): Don't bind keys to js-insert-and-indent.
10272 (js-beginning-of-defun): Rename from js--beginning-of-defun.
10273 (js-end-of-defun): Rename from js--end-of-defun.
10274 (js-auto-indent-flag): Delete variable.
10275
10276 2009-08-14 Chong Yidong <cyd@stupidchicken.com>
10277
10278 * progmodes/js.el: Remove proclaim statement.
10279 Defvar which-func-imenu-joiner-function to silence compiler.
10280
10281 * files.el (auto-mode-alist): Use js-mode for .js files.
10282
10283 * progmodes/js2-mode.el: Remove file.
10284
10285 * Makefile.in (ELCFILES): Add js.el, and remove js2-mode.el.
10286
10287 * speedbar.el (speedbar-supported-extension-expressions): Add .js.
10288
10289 * progmodes/hideshow.el (hs-special-modes-alist): Add js-mode entry.
10290
10291 2009-08-14 Daniel Colascione <dan.colascione@gmail.com>
10292 Karl Landstrom <karl.landstrom@brgeight.se>
10293
10294 * progmodes/js.el: New file.
10295
10296 2009-08-14 Mark A. Hershberger <mah@everybody.org>
10297
10298 * timezone.el (timezone-parse-date): Add ability to understand ISO
10299 basic format (minimal separators) dates in addition to the
10300 already-supported extended format dates.
10301
10302 2009-08-14 Eli Zaretskii <eliz@gnu.org>
10303
10304 * international/ucs-normalize.el: Add a `coding' file variable.
10305
10306 * Makefile.in (ELCFILES): Add international/ucs-normalize.elc.
10307
10308 2009-08-14 Sam Steingold <sds@gnu.org>
10309
10310 * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
10311
10312 2009-08-13 Chong Yidong <cyd@stupidchicken.com>
10313
10314 * faces.el (help-argument-name): Define it here instead of
10315 help-fns.el, because in daemon mode help-fns.el may be loaded when
10316 faces are still uninitialized (Bug#1078).
10317
10318 * help-fns.el (help-argument-name): Move defface to faces.el.
10319
10320 2009-08-13 Nick Roberts <nickrob@snap.net.nz>
10321
10322 * progmodes/gdb-mi.el (gdb-inferior-io-mode): Use start-process to
10323 create buffer with a pty but no process so that GDB can make the
10324 inferior the controlling process.
10325
10326 2009-08-13 Taichi Kawabata <kawabata.taichi@gmail.com>
10327
10328 * international/ucs-normalize.el: New file.
10329
10330 2009-08-13 Richard Stallman <rms@gnu.org>
10331
10332 * mail/rmail.el (rmail-get-attr-names):
10333 Accept an attribute header that is too short.
10334
10335 * mail/rmail.el (rmail-forget-messages):
10336 Ignore nil elt in rmail-message-vector. Use dotimes.
10337
10338 * progmodes/compile.el (compilation-goto-locus):
10339 Use next-error-move-function.
10340
10341 * simple.el (next-error-move-function): New variable.
10342
10343 2009-08-12 Juri Linkov <juri@jurta.org>
10344
10345 * progmodes/grep.el (lgrep): Ensure that `default-directory' is
10346 always non-nil. (Bug#4052)
10347
10348 * replace.el (read-regexp): Return empty string when
10349 `default-value' is nil.
10350 (keep-lines-read-args): Don't use empty string as the
10351 default value for `read-regexp'. (Bug#2495)
10352
10353 2009-08-12 Juri Linkov <juri@jurta.org>
10354
10355 * international/mule-cmds.el (ucs-insert): Change arguments
10356 from `arg' to `character', `count', `inherit' to be the same
10357 as in `insert-char'. Doc fix. (Bug#4039)
10358
10359 * international/mule-conf.el (utf-16be-with-signature): Doc fix.
10360
10361 2009-08-12 Juri Linkov <juri@jurta.org>
10362
10363 * files-x.el: New file.
10364
10365 * files.el: Move code that deals with adding/deleting
10366 file/directory-local variables to files-x.el.
10367
10368 * Makefile.in (ELCFILES): Add files-x.elc.
10369
10370 2009-08-11 Dmitry Dzhus <dima@sphinx.net.ru>
10371
10372 * progmodes/gdb-mi.el (gdb-line-posns): New helper which helps not
10373 to use `goto-line'.
10374 (gdb-place-breakpoints, gdb-get-location): Rewritten without
10375 `goto-line'.
10376 (gdb-invalidate-disassembly): Do not refresh upon receiving
10377 'update signal. Instead, update all disassembly buffers only after
10378 threads list.
10379 (gdb): Send -target-detach when buffer is killed (Bug#3794).
10380 (gdb-starting): Moved -data-list-register-names...
10381 (gdb-stopped): ...here so it's sent when first thread stops.
10382 (gdb-registers-handler-custom): Do nothing if register names are
10383 unknown yet.
10384
10385 * progmodes/gud.el (gud-stop-subjob): Rewritten without macros
10386 from `gdb-mi.el' to avoid extra tangling.
10387
10388 * progmodes/gdb-mi.el (gdb-gud-context-call): Reverting previous
10389 change which breaks `gud-def' definitions used in `gdb'.
10390 (gdb-update-gud-running): No extra fuss for updating frame number.
10391
10392 2009-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
10393
10394 * international/mule-cmds.el (mule-keymap, mule-menu-keymap)
10395 (describe-language-environment-map, setup-language-environment-map)
10396 (set-coding-system-map): Move initialization into declaration.
10397 (set-language-info-alist): Last arg to define-key-after can be skipped.
10398
10399 * international/quail.el (quail-completion-1): Simplify.
10400 (quail-define-rules): Use slightly more compact code.
10401 (quail-insert-decode-map): Propertize keys, compact columns.
10402
10403 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
10404 Add goto-line.
10405
10406 2009-08-10 Miles Bader <miles@gnu.org>
10407
10408 * progmodes/js2-mode.el (js2-warning, js2-error, js2-jsdoc-tag)
10409 (js2-jsdoc-type, js2-jsdoc-value, js2-function-param)
10410 (js2-instance-member, js2-private-member, js2-private-function-call)
10411 (js2-jsdoc-html-tag-name, js2-jsdoc-html-tag-delimiter)
10412 (js2-magic-paren, js2-external-variable):
10413 Remove "-face" suffix from face names.
10414 (js2-jsdoc-highlight-helper, js2-highlight-jsdoc)
10415 (js2-highlight-undeclared-vars, js2-peek-token)
10416 (js2-parse-function-params, js2-mode-show-errors)
10417 (js2-mode-show-warnings, js2-make-magic-delimiter)
10418 (js2-mode-highlight-magic-parens): Update to use new face names.
10419
10420 2009-08-09 Michael Albinus <michael.albinus@gmx.de>
10421
10422 * net/tramp.el (tramp-get-ls-command-with-dired): New defun.
10423 (tramp-handle-insert-directory): Handle "--dired". (Bug#4075)
10424
10425 2009-08-09 Chong Yidong <cyd@stupidchicken.com>
10426
10427 * subr.el: Provide hashtable-print-readable.
10428
10429 * progmodes/hideshow.el (hs-special-modes-alist): Don't use
10430 hs-c-like-adjust-block-beginning.
10431 (hs-hide-block-at-point): Stop hiding at the beginning of
10432 hs-block-end-regexp (Bug#700).
10433
10434 2009-08-09 Dmitry Dzhus <dima@sphinx.net.ru>
10435
10436 * progmodes/gdb-mi.el (gdb-gud-context-call): Does not need to be
10437 a macro.
10438 (gdb-registers-handler-custom): Do not fail when register names
10439 are unavailable.
10440
10441 2009-08-08 Dmitry Dzhus <dima@sphinx.net.ru>
10442
10443 * progmodes/gdb-mi.el (gdb-control-all-threads)
10444 (gdb-control-current-thread): Interactive setters for
10445 `gdb-gud-control-all-threads' to use in menu.
10446 (gdb-show-run-p): Show «Go» when process is not active.
10447 (gud-tool-bar-map): Add non-stop/A,T indicator.
10448 Uses gud/thread.xpm and gud/all.xpm.
10449
10450 2009-08-08 Yoni Rabkin <yoni@rabkins.net>
10451
10452 * net/net-utils.el (net-utils-font-lock-keywords): New var.
10453 (nslookup-font-lock-keywords): Make it a variable.
10454 (net-utils-mode): New mode for viewing diagnostic network output.
10455 (net-utils-remove-ctrl-m-filter): Set inhibit-read-only.
10456 (net-utils-run-simple): New function.
10457 (ifconfig, iwconfig, netstat, arp, route): Use it.
10458
10459 2009-08-08 Dmitry Dzhus <dima@sphinx.net.ru>
10460
10461 * progmodes/gdb-mi.el (gdb-read-memory-custom)
10462 (gdb-memory-set-address, def-gdb-set-positive-number)
10463 (def-gdb-memory-format, def-gdb-memory-unit): Update memory buffer
10464 after changing settings.
10465 (gdb-invalidate-disassembly): Update when first shown.
10466 (gdb-edit-locals-value): Fixed.
10467 (gdb-registers-handler-custom): Print registers in right order and
10468 allow changing register values (only for current thread yet).
10469 (gdb-breakpoints-mode-map): Don't assume threads buffer is present.
10470 (gdb-threads-mode-map): Don't assume breakpoints buffer is present.
10471 (gdb-disassembly-handler-custom, gdb-stack-list-frames-custom)
10472 (gdb-locals-handler-custom, gdb-registers-handler-custom):
10473 Thread info in mode name.
10474 (gdb-registers-mode-map): TAB to switch to locals.
10475
10476 2009-08-08 Eli Zaretskii <eliz@gnu.org>
10477
10478 * mail/rmail.el (rmail-add-mbox-headers)
10479 (rmail-set-message-counters-counter): Search for
10480 rmail-unix-mail-delimiter instead of just "From ". (Bug#4076)
10481
10482 2009-08-08 Glenn Morris <rgm@gnu.org>
10483
10484 * Makefile.in (ELCFILES): Update.
10485
10486 2009-08-07 Eli Zaretskii <eliz@gnu.org>
10487
10488 * mail/sendmail.el (mail-yank-original):
10489 Set buffer-file-coding-system from the one used by the message whose
10490 text is yanked.
10491
10492 * calc/calc-graph.el (calc-graph-plot): Set calc-graph-last-device
10493 to "windows" when "pgnuplot" is used.
10494 (calc-graph-command, calc-gnuplot-command, calc-graph-init):
10495 Don't call accept-process-output if "pgnuplot" is used.
10496 (calc-graph-init): Don't send -display and -geometry to
10497 "pgnuplot". If "pgnuplot" is used, glean gnuplot version by
10498 running "pgnuplot -V" with shell-command-to-string.
10499
10500 * calc/calc.el (calc-gnuplot-name) [windows-nt]: Use "pgnuplot" as
10501 the default.
10502
10503 2009-08-07 Eli Zaretskii <eliz@gnu.org>
10504
10505 * Makefile.in (ELCFILES): org/org-export-latex.elc renamed to
10506 org/org-latex.elc.
10507
10508 2009-08-07 Dan Nicolaescu <dann@ics.uci.edu>
10509
10510 * vc-dispatcher.el (vc-resynch-window): Update comment.
10511
10512 * term.el (term-handle-ansi-escape): Add comments with the
10513 terminfo capabilities implemented.
10514
10515 2009-08-06 Dmitry Dzhus <dima@sphinx.net.ru>
10516
10517 * progmodes/gdb-mi.el (gdb-var-create-regexp): Removed.
10518 (gdb-var-create-handler): Rewritten using JSON parser.
10519 (gdb-propertize-header): Moved earlier.
10520 (gdb-set-header): Removed to avoid duplication.
10521 (gdb-thread-list-handler-custom, gdb-invalidate-disassembly):
10522 Refresh disassembly buffers only after threads list have been
10523 update.
10524 (gdb-threads-header, gdb-registers-header): Per-buffer header line
10525 variables.
10526
10527 2009-08-04 Juri Linkov <juri@jurta.org>
10528
10529 * files.el: Commands to add/delete file/directory-local variables.
10530 (read-file-local-variable, read-file-local-variable-value)
10531 (read-file-local-variable-mode, modify-file-local-variable)
10532 (modify-file-local-variable-prop-line)
10533 (modify-dir-local-variable): New functions.
10534 (add-file-local-variable, delete-file-local-variable)
10535 (add-file-local-variable-prop-line, delete-file-local-variable-prop-line)
10536 (add-dir-local-variable, delete-dir-local-variable)
10537 (copy-file-locals-to-dir-locals, copy-dir-locals-to-file-locals)
10538 (copy-dir-locals-to-file-locals-prop-line): New commands.
10539
10540 2009-08-04 Chong Yidong <cyd@stupidchicken.com>
10541
10542 * abbrev.el (insert-abbrev-table-description): Prettify output.
10543 Suggested by Karl Chen.
10544
10545 2009-08-04 Dmitry Dzhus <dima@sphinx.net.ru>
10546
10547 * progmodes/gdb-mi.el (gdb-frame-number): Initialize with nil.
10548 (gdb-overlay-arrow-position): Rename to `gdb-disassembly-position'.
10549 (gdb-overlay-arrow-position, gdb-thread-position)
10550 (gdb-disassembly-position): Declare variables.
10551 (gdb-wait-for-pending): Function now.
10552 (gdb-add-subscriber, gdb-delete-subscriber, gdb-get-subscribers)
10553 (gdb-emit-signal, gdb-buf-publisher): Declare before first use so
10554 compilation goes smoothly.
10555 (gdb, gdb-non-stop, gdb-buffers): New customization groups.
10556 (gdb-non-stop-setting): New customization setting which replaces
10557 `gdb-non-stop' so changing it doesn't break active GDB session.
10558 (gdb-stack-buffer-locations, gdb-stack-buffer-addresses)
10559 (gdb-thread-buffer-verbose-names, gdb-thread-buffer-arguments)
10560 (gdb-thread-buffer-locations, gdb-thread-buffer-addresses)
10561 (gdb-show-threads-by-default): New customization options.
10562 (gdb-buffer-type, gdb-buffer-shows-main-thread-p): New helper
10563 routines.
10564 (gdb-get-buffer-create): Send buffers update signal when they are
10565 created.
10566 (gdb-invalidate-locals, gdb-invalidate-registers)
10567 (gdb-invalidate-breakpoints)
10568 (gdb-invalidate-threads, gdb-invalidate-disassembly)
10569 (gdb-invalidate-memory): Accept update signal.
10570 (gdb-current-context-command): Use --frame option.
10571 (gdb-update-gud-running, gdb-running, gdb-setq-thread-number):
10572 Implement `gdb-frame-number' selection logic.
10573 (gdb-show-run-p, gdb-show-stop-p): Helper functions which decide
10574 whether to show GUD toolbar buttons.
10575 (gdb-thread-exited): Unselect current thread when it exits.
10576 (gdb-stopped): Typo fixed (now really runs `gdb-stopped-hooks').
10577 (gdb-mark-line): Routine which sets overlay arrow or inverses
10578 video on fringeless displays.
10579 (gdb-table, gdb-table-add-row, gdb-table-string): Structure used
10580 to build aligned columns of data in GDB buffers and set text
10581 properties line-by-line.
10582 (gdb-invalidate-breakpoints)
10583 (gdb-breakpoints-list-handler-custom)
10584 (gdb-thread-list-handler-custom, gdb-disassembly-handler-custom)
10585 (gdb-stack-list-frames-custom, gdb-locals-handler-custom)
10586 (gdb-registers-handler-custom): Align data columns.
10587 (gdb-locals-handler-custom): Now prints data like in variable
10588 declarations.
10589 (gdb-jump-to, gdb-file-button, gdb-insert-file-location-button):
10590 Removed confusing buttons.
10591 (gdb-invalidate-threads): Append --frame.
10592 (gdb-threads-mode-map, gdb-breakpoints-mode-map): TAB to switch
10593 between breakpoints/threads buffers.
10594 (gdb-set-window-buffer): Now can ignore dedicated windows.
10595 (gdb-propertize-header): Use `gdb-set-window-buffer'.
10596 (def-gdb-thread-buffer-simple-command): Numerous typos fixed.
10597 (def-gdb-thread-buffer-gud-command): Replaces
10598 `def-gdb-thread-buffer-gdb-command' and uses standard GUD commands
10599 for fine thread control.
10600 (gdb-preempt-existing-or-display-buffer): New function used to
10601 display bound buffers without breaking window layout.
10602 (gdb-frame-location): Replaces `gdb-insert-frame-location'.
10603 (gdb-select-frame): New version of `gdb-frames-select' which now
10604 sets `gdb-frame-number' so commands may use --frame option instead
10605 of inner debugger state.
10606 (gdb-frame-handler): Do not set `gdb-frame-number'.
10607 (gdb-threads-mode-map): Select threads with mouse.
10608
10609 * progmodes/gud.el (gdb-gud-context-call): Declare function to
10610 avoid compilation warning.
10611 (gud-menu-map, gud-minor-mode-map): Use `gdb-show-run-p` and
10612 `gdb-show-stop-p`.
10613
10614 * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create):
10615 Argument `key' renamed to `buffer-type'.
10616 (gdb-current-context-buffer-name): Do not add thread info to
10617 buffer name when no thread is selected.
10618 (gdbmi-record-list, gdb-shell): Try to handle GDB `shell'
10619 command (bug 3794).
10620 (gdb-thread-selected): Handle `=thread-selected' notification.
10621 (gdb-wait-for-pending): New macro to deal with congestion problems.
10622 (gdb-breakpoints-list-handler-custom): Don't fail on pending
10623 breakpoints.
10624 (gdb-invalidate-disassembly): Use 'fullname instead of 'file.
10625 This fixes problem similar to one described in bug 3947.
10626 (gud-menu-map): More menu items.
10627 (gdb-init-1): Reset `gdb-thread-number' to nil.
10628
10629 * progmodes/gud.el (gud-stop-subjob, gud-menu-map): Respect GDB
10630 non-stop settings.
10631
10632 * progmodes/gdb-mi.el (gdb-thread-number): Initialize with nil.
10633 (gdb-current-context-command): Do not append --thread if
10634 `gdb-thread-number' is nil.
10635 (gdb-running-threads-count, gdb-stopped-threads-count):
10636 New variables.
10637 (gdb-non-stop, gdb-gud-control-all-threads, gdb-switch-reasons)
10638 (gdb-stopped-hooks, gdb-switch-when-another-stopped):
10639 New customization options.
10640 (gdb-gud-context-command, gdb-gud-context-call): New wrappers for
10641 GUD commands.
10642 (gdb): `gud-def' definitions changed to use `gdb-gud-context-call'.
10643 (gdb-init-1): Activate non-stop mode if `gdb-non-stop' is enabled.
10644 (gdb-setq-thread-number, gdb-update-gud-running): New functions to
10645 set `gdb-thread-number' and update `gud-running' properly.
10646 (gdb-running): Update threads list when new threads appear.
10647 (gdb-stopped): Support non-stop operation and new thread switching
10648 logic.
10649 (gdb-jsonify-buffer, gdb-json-read-buffer, gdb-json-string)
10650 (gdb-json-partial-output): New set of JSON routines.
10651 (def-gdb-auto-update-trigger): New `signal-list' optional
10652 argument.
10653 (gdb-thread-list-handler-custom): Update `gud-running',
10654 `gdb-stopped-threads-count' and `gdb-running-threads-count'.
10655 (def-gdb-thread-buffer-gdb-command, gdb-interrupt-thread)
10656 (gdb-continue-thread, gdb-step-thread): New commands for fine
10657 thread execution control.
10658 (gud-menu-map): New menu items to switch non-stop options.
10659 (gdb-reset): Cleanup `gdb-thread-position' overlay arrow marker.
10660 (gdb-send): Mimic RET properly (bug 3794).
10661
10662 * progmodes/gdb-mi.el (gdb-rules-name-maker)
10663 (gdb-rules-buffer-mode, gdb-rules-update-trigger): Accessors for
10664 gdb-buffer-rules.
10665 (def-gdb-auto-update-handler): New nopreserve optional argument.
10666 (gdb-stack-list-frames-custom): Print stack from top to bottom.
10667
10668 * progmodes/gdb-mi.el (gdb-pc-address): Removed unused variable.
10669 (gdb-threads-list, gdb-breakpoints-list): New assoc lists.
10670 (gdb-parent-mode): New mode to derive other GDB modes from.
10671 (gdb-display-disassembly-for-thread)
10672 (gdb-frame-disassembly-for-thread): New commands for threads
10673 buffer.
10674
10675 * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create)
10676 (gdb-init-1, gdb-bind-function-to-buffer, gdb-add-subscriber)
10677 (gdb-get-subscribers, gdb-emit-signal, gdb-buf-publisher)
10678 (gdb-update): We now store all GDB buffers in a list so that they
10679 can be updated by traversing a list instead of calling invalidate
10680 triggers explicitly.
10681 (def-gdb-trigger-and-handler): New macro to define trigger-handler
10682 pair for GDB buffer.
10683 (gdb-stack-buffer-name): Add thread information.
10684 (gdb-add-pending, gdb-pending-p, gdb-delete-pending): Macros to
10685 handle pending triggers.
10686 (gdb-threads-mode-map, def-gdb-thread-buffer-command)
10687 (def-gdb-thread-buffer-simple-command)
10688 (gdb-display-stack-for-thread, gdb-display-locals-for-thread)
10689 (gdb-display-registers-for-thread, gdb-frame-stack-for-thread)
10690 (gdb-frame-locals-for-thread, gdb-frame-registers-for-thread):
10691 New commands which show buffers bound to thread.
10692 (gdb-stack-list-locals-regexp): Removed unused regexp.
10693
10694 * progmodes/gdb-mi.el (gdb-breakpoints-buffer-name)
10695 (gdb-locals-buffer-name, gdb-registers-buffer-name)
10696 (gdb-memory-buffer-name, gdb-stack-buffer-name): Do not switch
10697 to (gud-comint-buffer) in *-buffer-name functions
10698 because (gdb-get-target-string) already does that.
10699 (gdb-locals-handler-custom, gdb-registers-handler-custom)
10700 (gdb-changed-registers-handler): Rewritten without regexps.
10701
10702 * progmodes/gdb-mi.el: Basic thread selection support.
10703 (gdb-thread-number): New variable.
10704 (gdb-current-context-command): New macro which adds --thread
10705 option to command.
10706 (gdb-threads-mode-map): Select thread with SPC.
10707 (gdb-thread-list-handler-custom): Mark current thread with overlay
10708 arrow. Synchronize GDB thread and Emacs thread.
10709 (gdb-select-thread): New command which selects current thread.
10710 (gdb-invalidate-frames, gdb-invalidate-locals)
10711 (gdb-invalidate-registers): Use --thread option.
10712
10713 2009-08-04 Michael Albinus <michael.albinus@gmx.de>
10714
10715 * net/tramp.el (top): Make check for tramp-gvfs loading more
10716 robust. (Bug#3977)
10717 (tramp-handle-insert-file-contents): `unwind-protect' must be
10718 inside `with-parsed-tramp-file-name'.
10719
10720 * net/tramp-gvfs.el (top): Remove superfluous message when loading
10721 fails.
10722
10723 2009-08-03 Nick Roberts <nickrob@snap.net.nz>
10724
10725 * progmodes/gud.el (jdb): Set gud-jdb-classpath-string to current
10726 directory if CLASSPATH is not set.
10727
10728 2009-08-03 Michael Albinus <michael.albinus@gmx.de>
10729
10730 * net/tramp.el (tramp-rfn-eshadow-update-overlay-regexp):
10731 New defconst.
10732 (tramp-rfn-eshadow-update-overlay): Use it. (Bug#4004)
10733
10734 2009-08-02 Kevin Ryde <user42@zip.com.au>
10735
10736 * net/newst-backend.el (newsticker--raw-url-list-defaults):
10737 Update freshmeat link. Delete newsforge.com as it seems gone.
10738
10739 2009-08-02 Chong Yidong <cyd@stupidchicken.com>
10740
10741 * select.el (x-set-selection): Doc fix (Bug#4021).
10742
10743 * w32-fns.el (x-set-selection): Doc fix (Bug#4021).
10744
10745 * help-fns.el (describe-variable): Treat list return values from
10746 dir-locals-find-file properly (Bug#4005).
10747
10748 2009-08-02 Julian Scheid <julians37@googlemail.com> (tiny change)
10749
10750 * net/tramp.el (tramp-debug-message): Print also microseconds.
10751
10752 2009-08-02 Michael Albinus <michael.albinus@gmx.de>
10753
10754 * net/tramp.el (tramp-handle-insert-file-contents): Optimize, when BEG
10755 or END is non-nil.
10756 (tramp-handle-vc-registered): Use `tramp-cache-inhibit-cache'.
10757 (tramp-get-debug-buffer): Change `outline-regexp' according to new
10758 format.
10759
10760 * net/tramp-cache.el (tramp-cache-inhibit-cache): New defvar.
10761 (tramp-get-file-property): Use it.
10762
10763 * autorevert.el (auto-revert-handler):
10764 Allow `auto-revert-tail-mode' for remote files.
10765
10766 2009-08-02 Jason Rumney <jasonr@gnu.org>
10767
10768 * minibuffer.el (read-file-name): Treat confirm options to
10769 MUSTMATCH as nil when invoking x-file-dialog. (Bug#3969)
10770
10771 2009-08-02 Chong Yidong <cyd@stupidchicken.com>
10772
10773 * font-lock.el (font-lock-string-face, font-lock-builtin-face)
10774 (font-lock-variable-name-face, font-lock-constant-face):
10775 Darken the colors for light backgrounds.
10776
10777 2009-08-01 Eli Zaretskii <eliz@gnu.org>
10778
10779 * mail/rmailsum.el (rmail-header-summary): Ignore letter-case of
10780 month names. (Bug#3987)
10781
10782 2009-07-31 Chong Yidong <cyd@stupidchicken.com>
10783
10784 * simple.el (line-move-finish): Pass whole number to
10785 line-move-to-column.
10786 (line-move-visual): Perform hscroll to the recorded position.
10787
10788 2009-07-30 Jay Belanger <jay.p.belanger@gmail.com>
10789
10790 * calc/calc-mode.el (calc-matrix-brackets): Remove "P" from prompt.
10791
10792 2009-07-29 Alan Mackenzie <acm@muc.de>
10793
10794 * progmodes/cc-defs.el (c-version): Bump to 5.31.7.
10795
10796 2009-07-29 Dmitry Dzhus <dima@sphinx.net.ru>
10797
10798 * progmodes/gdb-mi.el (gdb-goto-breakpoint)
10799 (gdb-place-breakpoints): Use full path when setting breakpoints.
10800
10801 2009-07-29 Jay Belanger <jay.p.belanger@gmail.com>
10802
10803 * calc/calc.el (calc-mode-map): Add keybinding for
10804 `calc-transpose-lines'.
10805
10806 2009-07-29 Vincent Belaïche <vincent.belaiche@gmail.com>
10807
10808 * calc/calc-misc.el (calc-transpose-lines): New function.
10809
10810 2009-07-28 Michael Albinus <michael.albinus@gmx.de>
10811
10812 * net/tramp.el (tramp-do-copy-or-rename-file): Add messages.
10813 Simplify check for out-of-band methods.
10814 (tramp-do-copy-or-rename-file-out-of-band): Allow both files to be
10815 remote. Remove messages which are in `tramp-do-copy-or-rename-file'.
10816
10817 2009-07-28 Dan Nicolaescu <dann@ics.uci.edu>
10818
10819 * vc-git.el (vc-git-checkin): Fix typo.
10820
10821 2009-07-28 Steve Yegge <steve.yegge@gmail.com>
10822
10823 * progmodes/js2-mode.el: New file.
10824
10825 2009-07-28 Nick Roberts <nickrob@snap.net.nz>
10826
10827 * progmodes/gud.el (jdb): Add gud-pstar to dump object information.
10828 (gud-menu-map): Adjust tooltip accordingly.
10829
10830 2009-07-27 Dan Nicolaescu <dann@ics.uci.edu>
10831
10832 * vc-bzr.el (vc-bzr-print-log): Pass multiple arguments to bzr log.
10833 (vc-bzr-log-view-mode): Adjust log-view-file-re.
10834
10835 * add-log.el (change-log-mode-map): Add a menu.
10836
10837 2009-07-27 Michael Albinus <michael.albinus@gmx.de>
10838
10839 * net/dbus.el (dbus-call-method-non-blocking): Handle the case the
10840 function returns nil.
10841 (dbus-handle-event): Handle special return value :ignore.
10842 Reported by Jan Moringen <jan.moringen@uni-bielefeld.de>.
10843
10844 2009-07-26 Chong Yidong <cyd@stupidchicken.com>
10845
10846 * view.el (view-mode-enable): Don't define Helper-return-blurb if
10847 it's not needed.
10848
10849 2009-07-25 Eli Zaretskii <eliz@gnu.org>
10850
10851 Fix Bug#3888:
10852
10853 * w32-vars.el (x-select-enable-clipboard): Doc fix.
10854
10855 * term/pc-win.el (x-display-name, x-colors)
10856 (x-select-enable-clipboard, x-select-text): Doc fix.
10857
10858 * term/common-win.el (x-display-name, x-colors): Doc fix.
10859
10860 * term/ns-win.el (x-select-text, x-setup-function-keys, x-colors)
10861 (xw-defined-colors): Doc fix.
10862
10863 * w32-fns.el (x-select-text, x-setup-function-keys)
10864 (x-get-selection, x-set-selection): Doc fix.
10865
10866 * term/x-win.el (x-select-text, x-setup-function-keys)
10867 (x-select-enable-clipboard, xw-defined-colors): Doc fix.
10868
10869 * select.el (x-set-selection): Doc fix.
10870
10871 2009-07-25 Michael Albinus <michael.albinus@gmx.de>
10872
10873 * net/zeroconf.el (zeroconf-init): Check for "GetVersionString"
10874 instead of "IsNSSSupportAvailable". Avahi ought to work also when
10875 "IsNSSSupportAvailable" method is not available.
10876 Reported by Steve Youngs <steve@sxemacs.org>.
10877
10878 2009-07-24 Kenichi Handa <handa@m17n.org>
10879
10880 * international/characters.el: Fix setting of category ?C, ?|, ?K,
10881 and ?H. Fix setting of case for Latin Extended and Greek Extended.
10882 (build-unicode-category-table): Fix range checks.
10883
10884 2009-07-24 Dan Nicolaescu <dann@ics.uci.edu>
10885
10886 * vc-dispatcher.el (vc-resynch-buffers-in-directory): Make sure
10887 the buffer we try to sync is current when calling
10888 vc-resynch-buffer.
10889
10890 * vc-dir.el (vc-dir-resynch-file): Make sure vc-dir-update does
10891 not show up to date files.
10892
10893 2009-07-24 Glenn Morris <rgm@gnu.org>
10894
10895 * emacs-lisp/elint.el (elint-current-buffer, elint-defun):
10896 Add autoload cookies. If necessary, initialize.
10897 (elint-log): Handle non-file buffers.
10898 (elint-initialize): Add optional argument to reinitialize.
10899 (elint-find-builtin-variables): Save excursion.
10900
10901 2009-07-23 Dan Nicolaescu <dann@ics.uci.edu>
10902
10903 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
10904 for Lint.
10905
10906 2009-07-22 Dan Nicolaescu <dann@ics.uci.edu>
10907
10908 * vc.el (vc-print-log-internal): New function, split out from ...
10909 (vc-print-log): ... here.
10910 (vc-dir-move-to-goal-column): Declare.
10911
10912 * vc-git.el (vc-git-add-signoff): New variable.
10913 (vc-git-checkin): Use it.
10914 (vc-git-toggle-signoff): New function.
10915 (vc-git-extra-menu-map): Bind it to menu.
10916 (vc-git--run-command-string): Accept a nil FILE argument.
10917 (vc-git-stash-list): New function.
10918 (vc-git-dir-extra-headers): Use it.
10919
10920 2009-07-23 Glenn Morris <rgm@gnu.org>
10921
10922 * help-fns.el (describe-variable): Describe ignored and risky local
10923 variables in a similar way to that in which we describe safe ones.
10924
10925 * emacs-lisp/bytecomp.el (byte-compile-from-buffer)
10926 (byte-compile-output-file-form, byte-compile-output-docform)
10927 (byte-compile-file-form-defmumble, byte-compile-output-as-comment):
10928 Give some more local variables with common names a "bytecomp-" prefix,
10929 so as not to shadow things during compilation.
10930 * emacs-lisp/cl-macs.el (load-time-value)
10931 * emacs-lisp/cl.el (cl-compiling-file): Update for the name-change
10932 `outbuffer' to `bytecomp-outbuffer'.
10933
10934 * emacs-lisp/elint.el (elint-standard-variables): Remove most members,
10935 since the next two variables cover them automatically now.
10936 (elint-builtin-variables, elint-autoloaded-variables): New.
10937 (elint-unknown-builtin-args): Remove all members, since they can be
10938 parsed automatically now.
10939 (elint-extra-errors): New.
10940 (elint-env-add-env, elint-env-add-macro): Use cadr.
10941 (elint-current-buffer): Use or. Change final message.
10942 (elint-get-top-forms): Use line-end-position.
10943 (elint-init-env): Use cadr. Handle autoload, declare-function,
10944 and defalias.
10945 (elint-add-required-env): Doc fix. Use or. Standardize error.
10946 (regexp-assoc): Remove unused function.
10947 (elint-top-form): Set elint-current-pos, to record the start of the
10948 top-level form, for compilation-mode.
10949 (elint-form): Trap errors in macro expansion. Use dolist.
10950 (elint-unbound-variable): Use elint-builtin-variables and
10951 elint-autoloaded-variables.
10952 (elint-get-args): Use cadr, or.
10953 (elint-check-cond-form): Use dolist, cadr.
10954 (elint-check-condition-case-form): Doc fix. Use cadr.
10955 Use elint-extra-errors.
10956 (elint-log): New function.
10957 (elint-error, elint-warning): Use elint-log for a bytecomp-style format.
10958 Distinguish errors and warnings.
10959 (elint-log-message): Use with-current-buffer. Inhibit read-only.
10960 Use a bytecomp-style format.
10961 (elint-clear-log): Preserve default-directory. Inhibit read-only.
10962 (elint-get-log-buffer): Use compilation mode. Disable undo.
10963 Don't truncate lines.
10964 (elint-initialize): Set builtin and autoloaded variable lists.
10965 Only process elint-unknown-builtin-args if non-nil.
10966 (elint-find-builtin-variables, elint-find-autoloaded-variables):
10967 New functions.
10968 (elint-find-builtin-args): Doc fix. Handle "BODY...)".
10969
10970 2009-07-22 Kevin Ryde <user42@zip.com.au>
10971
10972 * net/newst-backend.el (newsticker--parse-atom-1.0)
10973 (newsticker--parse-rss-0.91, newsticker--parse-rss-0.92)
10974 (newsticker--parse-rss-1.0):
10975 * progmodes/idlwave.el (idlwave-mode):
10976 * progmodes/idlw-shell.el (idlwave-shell-mode):
10977 * progmodes/vera-mode.el (vera-mode):
10978 * progmodes/verilog-mode.el (verilog-auto-inst, verilog-auto):
10979 * progmodes/vhdl-mode.el (vhdl-mode):
10980 * textmodes/table.el (table-generate-source)
10981 (table--warn-incompatibility):
10982 Hyperlink urls in docstrings with URL `...'.
10983
10984 2009-07-22 Glenn Morris <rgm@gnu.org>
10985
10986 * emacs-lisp/advice.el, emacs-lisp/checkdoc.el:
10987 * emacs-lisp/debug.el, emacs-lisp/elp.el, emacs-lisp/gulp.el:
10988 * emacs-lisp/lisp.el, emacs-lisp/pp.el, emacs-lisp/trace.el:
10989 Remove leading * from defcustom docs.
10990
10991 * simple.el (blink-matching-paren-distance): Bump to 100k. (Bug#3889)
10992
10993 * emacs-lisp/shadow.el (shadows-compare-text-p): Remove leading * from
10994 defcustom doc.
10995 (list-load-path-shadows): Optionally, just return shadows as a string.
10996
10997 * mail/emacsbug.el (report-emacs-bug): Include any load-path shadows.
10998
10999 2009-07-21 Chong Yidong <cyd@stupidchicken.com>
11000
11001 * mail/rmailedit.el (rmail-edit-mode):
11002 Use auto-save-include-big-deletions.
11003
11004 * mail/rmail.el (rmail-variables):
11005 Use auto-save-include-big-deletions.
11006
11007 * files.el (auto-save-mode): Revert 2009-07-21 and 2009-07-16
11008 changes.
11009
11010 2009-07-21 Jay Belanger <jay.p.belanger@gmail.com>
11011
11012 * calc/calc.el (calc-undo-length): New variable.
11013 (calc-quit): Truncate rather than eliminate `calc-undo-list'.
11014
11015 2009-07-21 Richard Stallman <rms@gnu.org>
11016
11017 * files.el (auto-save-mode): Handle buffer-save-size = -2
11018 for toggling mode.
11019
11020 2009-07-21 Glenn Morris <rgm@gnu.org>
11021
11022 * textmodes/ispell.el (ispell-looking-back): Update declaration.
11023
11024 * calendar/todo-mode.el (calendar-current-date): Update declaration.
11025
11026 * ps-print.el (ps-jitify, ps-lazify): Remove aliases only used to
11027 silence compiler. Instead...
11028 (jit-lock-fontify-now, lazy-lock-fontify-region): ...Declare.
11029 (ps-print-ensure-fontified): Update for above function name changes.
11030
11031 * printing.el (pr-mh-get-msg-num, pr-mh-show)
11032 (pr-mh-start-of-uncleaned-message): Remove aliases only used to
11033 silence compiler. Instead...
11034 (mh-get-msg-num, mh-show, mh-start-of-uncleaned-message): ...Declare.
11035 (mh-show-buffer): Only define for compiler.
11036 (pr-mh-current-message): Update for above function name changes.
11037
11038 * files.el (abort-if-file-too-large): Explicitly pass `filename'
11039 as an argument.
11040 (find-file-noselect, insert-file-1): Update for above change.
11041
11042 * mail/rmail.el (rmail-retry-ignored-headers): Bump :version.
11043
11044 * mail/mailclient.el (mailclient-send-it): Fix message.
11045
11046 * emacs-lisp/edebug.el (cl-debug-env): Only define for compiler.
11047 (edebug-eval): Check cl-debug-env is bound.
11048 (print-level, print-circle): Don't redefine built-in variables.
11049
11050 * emacs-lisp/cust-print.el: Remove leading * from defcustom docs.
11051 (custom-print-vectors): Remove old comments from doc.
11052
11053 * emerge.el (menu-bar-emerge-menu): Remove unused variable.
11054 (emerge-version): Make the variable an obsolete alias for the
11055 emacs-version variable. Make the function obsolete.
11056 (emerge-fast-keymap, emerge-edit-keymap): Make a separate menu for
11057 Emerge options, rather than merging in into the main Options menu.
11058 (emerge-options-menu): Adjust menu text. Use buttons for skip prefers
11059 and auto advance modes. Disable edit/fast items when not relevant.
11060
11061 2009-07-20 Dan Nicolaescu <dann@ics.uci.edu>
11062
11063 * term/vt420.el (terminal-init-vt420): Fix typo.
11064
11065 2009-07-20 Sam Steingold <sds@gnu.org>
11066
11067 * progmodes/ada-mode.el (compile-auto-highlight): Remove the
11068 variable (removed from compile.el on 2004-03-11).
11069
11070 2009-07-20 Chong Yidong <cyd@stupidchicken.com>
11071
11072 * files.el (hack-local-variables-filter): Fix last change.
11073
11074 2009-07-19 Juri Linkov <juri@jurta.org>
11075
11076 * files.el (ignored-local-variables): Add `dir-local-variables-alist'.
11077 (dir-local-variables-alist): New buffer-local variable.
11078 (hack-local-variables-filter): If variable is not dir-local,
11079 i.e. `dir-name' is nil, then remove it from `dir-local-variables-alist',
11080 because file-local overrides dir-local.
11081 (c-postprocess-file-styles) <declare-function>:
11082 Remove obsolete declaration.
11083 (hack-dir-local-variables): Add dir-local variable/value pair to
11084 `dir-local-variables-alist' and remove duplicates. Doc fix.
11085
11086 * help-fns.el (describe-variable): Add information about
11087 file-local and dir-local variables.
11088
11089 2009-07-19 Chong Yidong <cyd@stupidchicken.com>
11090
11091 * files.el (hack-local-variables-filter): Rewrite.
11092
11093 2009-07-19 Glenn Morris <rgm@gnu.org>
11094
11095 * progmodes/verilog-mode.el (verilog-error-regexp-add-xemacs):
11096 Silence compiler by only defining on XEmacs.
11097
11098 * international/mule.el (auto-coding-regexp-alist): Only match
11099 BABYL... at the start of buffer, not of lines. (Bug#3790)
11100
11101 * calendar/cal-menu.el (cal-menu-set-date-title): Handle calls from
11102 non-calendar buffers (Bug#3862). Restore "not on a date" message.
11103 (cal-menu-context-mouse-menu): Doc fix.
11104
11105 * desktop.el (desktop-buffers-not-to-save): Set :version tag.
11106
11107 * simple.el (mail-user-agent): Doc fix. Set :version tag.
11108
11109 2009-07-18 Juri Linkov <juri@jurta.org>
11110
11111 * info.el: Virtual Info keyword finder.
11112 (add-to-list) <Info-virtual-files>: Add "\\`\\*Finder.*\\*\\'".
11113 (Info-finder-file): New variable.
11114 (Info-finder-find-file): New function.
11115 (finder-known-keywords, finder-package-info)
11116 (find-library-name, lm-commentary): Use defvar and
11117 declare-function to silence compiler warnings.
11118 (Info-finder-find-node): New function.
11119 (info-finder): New command.
11120
11121 * subr.el (process-kill-buffer-query-function): New function.
11122 (add-hook)<kill-buffer-query-functions>: Add hook
11123 `process-kill-buffer-query-function'.
11124
11125 2009-07-18 Alan Mackenzie <acm@muc.de>
11126
11127 * progmodes/cc-mode.el (c-before-hack-hook)
11128 (c-postprocess-file-styles): Give invocation of `c-set-style'
11129 DONT-OVERRIDE parameter of t. Already set style variables will
11130 thus not be overridden by style settings given by `c-file-syle'.
11131
11132 * files.el (hack-local-variables-filter): Remove entries with
11133 duplicate keys from `file-local-variables-alist'.
11134
11135 2009-07-18 Eli Zaretskii <eliz@gnu.org>
11136
11137 * simple.el (deactivate-mark, activate-mark, set-mark): Don't call
11138 x-set-selection if display-selections-p returns nil for the
11139 current frame.
11140
11141 2009-07-18 Chong Yidong <cyd@stupidchicken.com>
11142
11143 * simple.el (region-active-p, use-region-p): Doc fix (Bug#3873).
11144
11145 2009-07-18 Eli Zaretskii <eliz@gnu.org>
11146
11147 * desktop.el (desktop-buffers-not-to-save): Default value is nil.
11148 Accept nil in addition to a regexp.
11149 (desktop-files-not-to-save): Add "(ftp)$" to the default regexp.
11150 Accept nil in addition to a regexp.
11151 (desktop-save-buffer-p): Don't use desktop-buffers-not-to-save for
11152 buffers that have an associated file. Handle nil values of
11153 desktop-buffers-not-to-save and desktop-files-not-to-save.
11154 (Bug#3833)
11155
11156 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
11157 (x-disown-selection-internal): New functions.
11158
11159 2009-07-18 Nick Roberts <nickrob@snap.net.nz>
11160
11161 * progmodes/gdb-mi.el (speedbar-frame): Declare to avoid compiler
11162 warning.
11163 (gdb-breakpoints-header): Move forward to avoid compiler warning.
11164 (gdb-make-header-line-mouse-map): Remove duplicate definition.
11165
11166 2009-07-18 David De La Harpe Golden <david@harpegolden.net>
11167
11168 * simple.el (set-mark): Revert last change.
11169
11170 2009-07-17 Tassilo Horn <tassilo@member.fsf.org>
11171
11172 * doc-view.el (doc-view-initiate-display): Add yes-or-no-p if
11173 rendering of pngs is not possible instead of messaging a long
11174 description.
11175
11176 2009-07-17 David De La Harpe Golden <david@harpegolden.net>
11177
11178 * w32-fns.el (x-selection-owner-p): New function.
11179
11180 * mouse.el (mouse-drag-track): Call deactivate-mark earlier.
11181 (mouse-yank-at-click, mouse-yank-primary):
11182 If select-active-regions is non-nil, deactivate the mark before
11183 insertion.
11184
11185 * simple.el (deactivate-mark, set-mark): Only save selection if we
11186 own it.
11187
11188 2009-07-17 Kenichi Handa <handa@m17n.org>
11189
11190 * case-table.el (describe-buffer-case-table): Fix for the case
11191 that KEY is a cons.
11192
11193 2009-07-16 Dan Nicolaescu <dann@ics.uci.edu>
11194
11195 * vc-rcs.el (vc-rcs-find-file-hook):
11196 * vc-sccs.el (vc-sccs-find-file-hook): Fix cut and paste error.
11197
11198 2009-07-16 Michael Albinus <michael.albinus@gmx.de>
11199
11200 * net/tramp.el (tramp-wait-for-output): Handle the case when
11201 commands do not return a newline but a null byte before the shell
11202 prompt. (Bug#3858)
11203
11204 2009-07-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11205
11206 * term/ns-win.el (ns-set-alpha): Don't declare.
11207 (ns-set-background-alpha): Remove function.
11208
11209 2009-07-16 Kevin Ryde <user42@zip.com.au>
11210
11211 * emacs-lisp/copyright.el (copyright-update): Save match-data across
11212 y-or-n-p, for safety.
11213
11214 2009-07-16 Richard Stallman <rms@gnu.org>
11215
11216 * files.el (auto-save-mode): If buffer-saved-size is -2,
11217 don't clobber it.
11218
11219 * mail/rmail.el (rmail-variables): Set buffer-saved-size to -2.
11220 (rmail-retry-ignored-headers): Add more uninteresting fields.
11221
11222 2009-07-15 Jari Aalto <jari.aalto@cante.net>
11223
11224 * net/rcirc.el (rcirc): Use history variables.
11225 (rcirc-server-name-history, rcirc-nick-name-history)
11226 (rcirc-server-port-history): New variables.
11227
11228 2009-07-15 Kenichi Handa <handa@m17n.org>
11229
11230 * international/mule-cmds.el (set-language-environment-charset):
11231 If coding-system-charset-list returns `iso-2022' or `emacs-mule',
11232 ignore them.
11233
11234 * language/misc-lang.el ("IPA"): Change coding systems to utf-8.
11235 Delete unibyte-display.
11236
11237 2009-07-15 Chong Yidong <cyd@stupidchicken.com>
11238
11239 * simple.el (kill-visual-line): Obey kill-whole-line (Bug#3695).
11240
11241 2009-07-15 Chong Yidong <cyd@stupidchicken.com>
11242
11243 * simple.el (deactivate-mark): Optional argument FORCE.
11244 (set-mark): Use deactivate-mark.
11245
11246 * info.el (Info-search): No need to check transient-mark-mode
11247 before calling deactivate-mark.
11248
11249 * select.el (x-set-selection): Doc fix.
11250 (x-valid-simple-selection-p): Allow buffer values.
11251 (xselect--selection-bounds): Handle buffer values.
11252 Suggested by David De La Harpe Golden.
11253
11254 * mouse.el (mouse-set-region, mouse-drag-track):
11255 Call copy-region-as-kill before setting the mark, to let
11256 select-active-regions work.
11257
11258 2009-07-15 David De La Harpe Golden <david@harpegolden.net>
11259
11260 * simple.el (deactivate-mark): If select-active-regions is
11261 non-nil, copy the selection data into a string.
11262 (activate-mark): If select-active-regions is non-nil, set the
11263 selection to the current buffer.
11264 (set-mark): Update selection if select-active-regions is non-nil.
11265
11266 * select.el (x-valid-simple-selection-p): Allow buffer values.
11267
11268 2009-07-14 Stefan Monnier <monnier@iro.umontreal.ca>
11269
11270 * simple.el (mail-user-agent): Default to the upwardly-UI-compatible
11271 and more featureful message-mode.
11272
11273 2009-07-14 Chong Yidong <cyd@stupidchicken.com>
11274
11275 * select.el (x-set-selection): Doc fix.
11276 (x-valid-simple-selection-p): Disallow selection data consisting
11277 of a list or cons of integers, since that is not used.
11278 (xselect--selection-bounds, xselect--int-to-cons): New functions.
11279 (xselect-convert-to-string, xselect-convert-to-length)
11280 (xselect-convert-to-filename, xselect-convert-to-charpos)
11281 (xselect-convert-to-lineno, xselect-convert-to-colno): Use them.
11282
11283 2009-07-14 Dmitry Dzhus <dima@sphinx.net.ru>
11284
11285 * progmodes/gdb-mi.el (json-partial-output): Fix broken GDB/MI
11286 output in -break-info command (Emacs bug #3794).
11287
11288 2009-07-14 Glenn Morris <rgm@gnu.org>
11289
11290 * emacs-lisp/edebug.el (edebug-setup-hook, edebug-all-forms)
11291 (edebug-eval-macro-args, edebug-save-displayed-buffer-points)
11292 (edebug-print-length, edebug-print-level, edebug-print-circle)
11293 (edebug-sit-for-seconds, edebug-view-outside)
11294 (edebug-bounce-point, edebug-set-global-break-condition)
11295 (edebug-Go-nonstop-mode, edebug-trace-mode)
11296 (edebug-Trace-fast-mode, edebug-continue-mode)
11297 (edebug-Continue-fast-mode, edebug-forward-sexp, edebug-help)
11298 (edebug-visit-eval-list): Doc fixes.
11299
11300 * subr.el (def-edebug-spec): Doc fix.
11301
11302 2009-07-14 Kenichi Handa <handa@m17n.org>
11303
11304 * international/characters.el: Fix setting of category ?C.
11305
11306 2009-07-13 Jan Djärv <jan.h.d@swipnet.se>
11307
11308 * term/ns-win.el (x-select-font): defalias x-select-font to
11309 ns-popup-font-panel instead of generate-fontset-menu.
11310
11311 2009-07-12 Eli Zaretskii <eliz@gnu.org>
11312
11313 * desktop.el (desktop-buffers-not-to-save): Remove ".log". (Bug#3833)
11314
11315 2009-07-12 Peter Jolly <peter@jollys.org> (tiny change)
11316
11317 * arc-mode.el (archive-find-type): Allow for a PK00 string before
11318 the PK\003\004 header (Bug#3770).
11319
11320 2009-07-12 Guanpeng Xu <herberteuler@hotmail.com>
11321
11322 * pcomplete.el (pcomplete-comint-setup): Check for
11323 shell-dynamic-complete-filename too.
11324
11325 2009-07-11 Chong Yidong <cyd@stupidchicken.com>
11326
11327 * simple.el (temporary-goal-column): Change the value for
11328 line-move-visual to a cons cell.
11329 (line-move-visual): Record or set the window hscroll, if
11330 necessary (Bug#3494).
11331 (line-move-1): Handle cons value of temporary-goal-column.
11332
11333 2009-07-11 Kenichi Handa <handa@m17n.org>
11334
11335 * international/mule-diag.el (describe-character-set): Don't show
11336 width.
11337
11338 2009-07-10 Sam Steingold <sds@gnu.org>
11339
11340 * progmodes/compile.el (compilation-mode-font-lock-keywords):
11341 Omake sometimes indents the errors it prints, so allow all
11342 regexps to start with spaces.
11343
11344 2009-07-10 Eli Zaretskii <eliz@gnu.org>
11345
11346 * cus-edit.el (customize-changed-options-previous-release):
11347 Bump value to 22.1. (Bug#3804)
11348
11349 2009-07-08 Sam Steingold <sds@gnu.org>
11350
11351 * progmodes/grep.el (rgrep): Allow grep-find-ignored-directories
11352 to be a cons cell (test . ignored-directory) to selectively ignore
11353 some directories depending on the location of the search.
11354
11355 2009-07-08 Michael Albinus <michael.albinus@gmx.de>
11356
11357 * net/tramp.el (tramp-set-file-uid-gid): Handle the case the
11358 remote user is root, on the local host.
11359 (tramp-local-host-p): Either the local user or the remote user
11360 must be root. (Bug#3771)
11361
11362 2009-07-08 Nick Roberts <nickrob@snap.net.nz>
11363
11364 * progmodes/gdb-mi.el (gdb): Remove description of
11365 gdb-use-separate-io-buffer.
11366 (menu): Don't allow toggling of or enable
11367 gdb-use-separate-io-buffer from menubar.
11368
11369 2009-07-08 E. Jay Berkenbilt <ejb@ql.org> (tiny change)
11370
11371 * mail/unrmail.el (unrmail): Make sure the message ends with two
11372 newlines (Bug#3769).
11373
11374 2009-07-08 Glenn Morris <rgm@gnu.org>
11375
11376 * calendar/calendar.el (calendar-current-date): Rework previous change.
11377
11378 2009-07-08 Ed Reingold <reingold@emr.cs.iit.edu>
11379
11380 * calendar/calendar.el (calendar-current-date):
11381 Add an optional argument giving an offset from today.
11382
11383 2009-07-08 Glenn Morris <rgm@gnu.org>
11384
11385 * tutorial.el (tutorial--describe-nonstandard-key):
11386 Adjust the message for when a key has been unbound.
11387 (help-with-tutorial): Hide the arch-tag.
11388
11389 2009-07-08 Kenichi Handa <handa@m17n.org>
11390
11391 * international/fontset.el (setup-default-fontset): For each
11392 script, append (not set) font-specs.
11393
11394 * language/japanese.el (japanese-shift-jis-2004): Fix typo in the
11395 docstring.
11396
11397 2009-07-08 Nick Roberts <nickrob@snap.net.nz>
11398
11399 * progmodes/gdb-mi.el (gdb-init-1): Move sending
11400 -data-list-register-names to ...
11401 (gdb-starting): ... here because GDB 7.0 requires execution to
11402 have started when using this MI command.
11403 (gdb-set-header): New function to distinguish select and
11404 unselected tabs in gdb buffers.
11405 (gdb-propertize-header): New macro that uses gdb-set-header.
11406 (gdb-breakpoints-header, gdb-locals-header): Use it.
11407 (gdb-disassembly-mode-map): Add keybinding to kill buffer.
11408
11409 2009-07-07 Chong Yidong <cyd@stupidchicken.com>
11410
11411 * Makefile.in (ELCFILES): Remove fadr.elc.
11412
11413 2009-07-07 Dmitry Dzhus <dima@sphinx.net.ru>
11414
11415 * progmodes/gdb-mi.el (gdb-init-1): Disassembly buffer mode name
11416 may contain frame information, so `string-match' should be used.
11417 (gdb-update): Disassembly is invalidated through
11418 `gdb-get-selected-frame'.
11419 (gdb-pad-string): New function to pad string with spaces.
11420 (gdb-invalidate-disassembly): Invalidate only if the buffer
11421 exists.
11422 (gdb-disassembly-handler-custom): Column alignment.
11423 (gdb-disassembly-place-breakpoints): Clear old breakpoints before
11424 placing new ones.
11425 (gdb-toggle-breakpoint, gdb-delete-breakpoint): Now work from the
11426 end of line, too.
11427 (gdb-frame-handler): Match convention to for disassembly buffer
11428 mode name.
11429 (gdb-stack-list-frames-handler): Rewritten without regexps.
11430 (gdb-breakpoints-list-handler-custom): y/n instead of on/off; do
11431 not highlight breakpoints without line information.
11432 (gdb-input): Add trailing newline to command.
11433
11434 * progmodes/gdb-mi.el (gdb-init-1): Set mode name for disassembly
11435 buffer properly.
11436 (gdb-breakpoints-list-handler-custom): Replacement for
11437 `gdb-break-list-handler'. Using real parser instead of regexps
11438 now.
11439 (gdb-place-breakpoints): Replacement for `gdb-break-list-custom'.
11440 Use `gdb-breakpoints-list' instead of parsing breakpoints buffer
11441 to place breakpoints.
11442 (def-gdb-memory-unit): A new macro to define gdb-memory-unit-..
11443 functions.
11444 (gdb-disassembly-handler-custom): Show overlay arrow.
11445 (gdb-disassembly-place-breakpoints): Show breakpoints in
11446 disassembly buffer.
11447 (gdb-toggle-breakpoint, gdb-delete-breakpoint)
11448 (gdb-goto-breakpoint): Using `gdb-breakpoint' text properties
11449 instead of parsing breakpoints buffer. Fixed old menu references
11450 in `gud-menu-map'.
11451
11452 * fadr.el: Remove.
11453
11454 * progmodes/gdb-mi.el: Port memory buffer from gdb-ui.el.
11455 (gdb-memory-address): New variable which holds top address of
11456 memory page shown in memory buffer.
11457 (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit):
11458 New customization variables.
11459 New functions:
11460 (gdb-display-memory-buffer, gdb-frame-memory-buffer): Functions to
11461 display the memory buffer.
11462 (gdb-memory-set-address, gdb-memory-set-repeat-count): Set memory
11463 buffer display parameters.
11464 (def-gdb-memory-format, gdb-memory-format-binary)
11465 (gdb-memory-format-octal, gdb-memory-format-unsigned)
11466 (gdb-memory-format-signed, gdb-memory-format-hexadecimal):
11467 Functions for setting memory buffer format.
11468 (gdb-memory-unit-word, gdb-memory-unit-halfword)
11469 (gdb-memory-unit-giant, gdb-memory-unit-byte): Functions to set
11470 unit size used in memory buffer.
11471 (gdb-memory-show-next-page, gdb-memory-show-previous-page):
11472 Switch to next/previous page of memory buffer.
11473 Now using (bindat-get-field) instead of fadr functions.
11474
11475 2009-07-07 Sam Steingold <sds@gnu.org>
11476
11477 * vc-cvs.el (vc-cvs-merge-news): Fix message parsing for
11478 non-top-level files.
11479
11480 2009-07-07 Kenichi Handa <handa@m17n.org>
11481
11482 * international/mule-cmds.el (reset-language-environment):
11483 Put the highset priority to the charset iso-8859-1.
11484
11485 2009-07-06 Chong Yidong <cyd@stupidchicken.com>
11486
11487 * progmodes/hideshow.el (hs-hide-block-at-point): Don't move point
11488 to the end of the line when locating the block (Bug#700).
11489
11490 2009-07-06 Michael Albinus <michael.albinus@gmx.de>
11491
11492 * net/tramp.el (tramp-handle-write-region): Flush file properties
11493 in case of short track.
11494
11495 2009-07-06 Michael McNamara <mac@mail.brushroad.com>
11496
11497 * progmodes/verilog-mode.el (verilog-error-regexp-emacs-alist):
11498 Coded custom representation of verilog error regular expressions
11499 to work with Emacs-22's new format.
11500 (verilog-error-regexp-xemacs-alist): Coded custom representation
11501 of verilog error regular expressions to work with XEmacs format.
11502 (verilog-error-regexp-add-xemacs): Hook routine to install verilog
11503 error recognition into XEmacs.
11504 (verilog-error-regexp-add-emacs): Hook routine to install verilog
11505 error recognition into Emacs-22.
11506
11507 2009-07-06 Chong Yidong <cyd@stupidchicken.com>
11508
11509 * woman.el: Remove stand-alone closing parentheses.
11510 (woman-file-name, woman2-format-paragraphs)
11511 (woman-leave-blank-lines): Code cleanup.
11512 (woman-use-own-frame): Change default to nil.
11513 (woman-italic, woman-bold, woman-unknown, woman-addition):
11514 Change defaults to inherit from default faces.
11515 (woman2-process-escapes): Consume the newline after a stand-alone
11516 filler character (Bug#3651).
11517
11518 2009-07-06 Glenn Morris <rgm@gnu.org>
11519
11520 * ffap.el (ffap-version): Make it an obsolete alias for emacs-version.
11521 (top-level): Move provide to the end.
11522 (ffap): Remove defunct URL from custom group.
11523
11524 * subr.el (eval-after-load): Doc fix.
11525
11526 2009-07-06 Vincent Belaïche <vincent.belaiche@gmail.com>
11527
11528 * calc/calc-embed.el (calc-embedded-make-info): Don't force when
11529 `calc-embedded-word' is called twice.
11530
11531 2009-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
11532
11533 * files.el (find-alternate-file-other-window, find-alternate-file):
11534 Obey confirm-nonexistent-file-or-buffer.
11535
11536 2009-07-05 Michael Albinus <michael.albinus@gmx.de>
11537
11538 * dired-aux.el (dired-show-file-type): Handle remote files.
11539
11540 2009-07-05 Jari Aalto <jari.aalto@cante.net>
11541
11542 * desktop.el (desktop-globals-to-save):
11543 Add file-name-history (Bug#2750).
11544
11545 2009-07-05 Chong Yidong <cyd@stupidchicken.com>
11546
11547 * add-log.el (add-log-current-defun-header-regexp): Doc fix (Bug#2217).
11548
11549 2009-07-04 Johan Bockgård <bojohan@gnu.org>
11550
11551 * eshell/esh-arg.el (eshell-parse-argument-hook): Put `number'
11552 property on entire argument since this is what eshell-lisp-command
11553 expects.
11554
11555 2009-07-03 Michael Albinus <michael.albinus@gmx.de>
11556
11557 * net/tramp-gvfs.el (tramp-gvfs-methods)
11558 (tramp-gvfs-zeroconf-domain)
11559 (tramp-bluez-discover-devices-timeout): Add version flag.
11560 (tramp-gvfs-handler-mounted-unmounted)
11561 (tramp-gvfs-connection-mounted-p): Polish handling of
11562 incompatibilities between GVFS 0.2 and 1.0.
11563
11564 2009-07-03 Jan Djärv <jan.h.d@swipnet.se>
11565
11566 * cus-start.el (all): Add make-pointer-invisible.
11567
11568 2009-07-03 Jay Belanger <jay.p.belanger@gmail.com>
11569
11570 * calc/calc-math.el (math-use-emacs-fn): Make sure that the number is
11571 formatted correctly.
11572
11573 2009-07-02 Juri Linkov <juri@jurta.org>
11574
11575 * info.el: Virtual Info files and nodes.
11576 (Info-virtual-files, Info-virtual-nodes): New variables.
11577 (Info-current-node-virtual): New variable.
11578 (Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
11579 New functions.
11580 (Info-file-supports-index-cookies): Use Info-virtual-file-p
11581 to check for a virtual file instead of checking a fixed list
11582 of node names.
11583 (Info-find-file): Use Info-virtual-fun and Info-virtual-call
11584 instead of ad-hoc processing of "dir" and (apropos history toc).
11585 (Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
11586 instead of ad-hoc processing of "dir" and (apropos history toc).
11587 Reread a file when moving from a virtual node.
11588 (add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
11589 (Info-directory-toc-nodes, Info-directory-find-file)
11590 (Info-directory-find-node): New functions.
11591 (add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
11592 (Info-history): Move part of code to
11593 `Info-history-find-node'.
11594 (Info-history-toc-nodes, Info-history-find-file)
11595 (Info-history-find-node): New functions.
11596 (add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
11597 (Info-toc): Move part of code to `Info-toc-find-node'.
11598 (Info-toc-find-node): New function.
11599 (Info-toc-insert): Rename from `Info-insert-toc'. Don't insert
11600 the current Info file name to references because now the node
11601 "*TOC*" belongs to the same Info manual.
11602 (Info-toc-build): Rename from `Info-build-toc'.
11603 (Info-toc-nodes): Rename input argument `file' to `filename'.
11604 Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
11605 instead of ad-hoc processing of ("dir" apropos history toc).
11606 (Info-index-nodes): Use Info-virtual-file-p
11607 to check for a virtual file instead of checking a fixed list
11608 of node names.
11609 (Info-index-node): Add check for `Info-current-node-virtual'.
11610 Raise `save-match-data' higher up the tree to contain
11611 `search-forward' too (bug fix).
11612 (add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
11613 (Info-virtual-index-nodes): New variable.
11614 (Info-virtual-index-find-node, Info-virtual-index): New functions.
11615 (add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
11616 (Info-apropos-file, Info-apropos-nodes): New variables.
11617 (Info-apropos-toc-nodes, Info-apropos-find-file)
11618 (Info-apropos-find-node, Info-apropos-matches): New functions.
11619 (info-apropos): Move part of code to `Info-apropos-find-node' and
11620 `Info-apropos-matches'.
11621 (Info-mode-map): Bind "I" to `Info-virtual-index'.
11622 (Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
11623 for a virtual file instead of checking a fixed list of node names.
11624
11625 * simple.el (async-shell-command): New command.
11626
11627 * bindings.el (esc-map): Bind "&" to `async-shell-command'.
11628
11629 * net/tramp-gvfs.el (tramp-gvfs-connection-mounted-p): Use `elt'
11630 instead of `mount-info'.
11631
11632 2009-07-02 Michael Albinus <michael.albinus@gmx.de>
11633
11634 * net/tramp-gvfs.el (tramp-gvfs-handler-mounted-unmounted)
11635 (tramp-gvfs-connection-mounted-p): Handle changed mount-info interface.
11636
11637 2009-07-02 Kenichi Handa <handa@m17n.org>
11638
11639 * international/mule.el (set-keyboard-coding-system): Force *-unix
11640 coding-system to avoid eol conversion.
11641
11642 2009-07-01 Michael Albinus <michael.albinus@gmx.de>
11643
11644 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
11645 Add handler for `process-file', `shell-command' and
11646 `start-file-process'.
11647 (tramp-gvfs-handle-shell-command)
11648 (tramp-gvfs-handle-start-file-process)
11649 (tramp-gvfs-handle-process-file): New defuns.
11650 (tramp-synce-list-devices): Simplify check for existence of property.
11651
11652 2009-07-01 Jan Djärv <jan.h.d@swipnet.se>
11653
11654 * startup.el (command-line-x-option-alist): Add -mm and --maximized.
11655
11656 2009-07-01 Eduard Wiebe <usenet@pusto.de> (tiny change)
11657
11658 * language/korean.el (set-language-info-alist): Add korean-cp949,
11659 cp949 to spec.
11660
11661 2009-07-01 Kenichi Handa <handa@m17n.org>
11662
11663 * Makefile.in (ELCFILES): Delete encoded-kb.elc.
11664
11665 * international/encoded-kb.el: Deleted.
11666
11667 * international/mule.el (set-keyboard-coding-system): Perform the
11668 necessary setup here instead of calling encoded-kbd-setup-display.
11669
11670 2009-07-01 Glenn Morris <rgm@gnu.org>
11671
11672 * progmodes/f90.el (f90-break-delimiters, f90-no-break-re): Doc fixes.
11673
11674 2009-07-01 Evangelos Evangelou <vangelis@email.unc.edu> (tiny change)
11675
11676 * progmodes/f90.el (f90-no-break-re): Add "(/" and "/)". (Bug#3730)
11677
11678 2009-06-30 Michael Albinus <michael.albinus@gmx.de>
11679
11680 * net/tramp.el (tramp-do-copy-or-rename-file-directly):
11681 Handle also the 'rename case, when setting file modes. (Bug#3712)
11682 (tramp-default-file-modes): Remove execute permissions.
11683
11684 * net/tramp-gvfs.el (tramp-gvfs-methods): Add "synce" method.
11685 (top): Add a default for "synce" in `tramp-default-user-alist'.
11686 Add completion function for "synce" method.
11687 (tramp-hal-service, tramp-hal-path-manager)
11688 (tramp-hal-interface-manager, tramp-hal-interface-device):
11689 New defconst.
11690 (tramp-gvfs-connection-mounted-p): Handle empty user name for synce.
11691 (tramp-synce-list-devices, tramp-synce-parse-device-names):
11692 New defuns.
11693
11694 * net/trampver.el: Update release number.
11695
11696 2009-06-30 Kenichi Handa <handa@m17n.org>
11697
11698 * international/fontset.el (setup-default-fontset): Add CJK fonts
11699 for symbols and the other miscellaneous characters.
11700
11701 * language/korea-util.el (setup-korean-environment-internal):
11702 Make char-width-table suitable for Korean environments.
11703 (exit-korean-environment): Cancel above.
11704
11705 * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
11706 ("Chinese-CNS", "Chinese-EUC-TW", "Chinese-GBK"): Add a
11707 setup-function to make char-width-table suitable for respective
11708 environments, and an exit-function to cancel that.
11709
11710 * language/japan-util.el (setup-japanese-environment-internal):
11711 Call use-cjk-char-width-table with arg `ja_JP'.
11712
11713 * international/characters.el (cjk-char-width-table): Delete it.
11714 (cjk-char-width-table-list): New variable.
11715 (use-cjk-char-width-table): New arg local-name.
11716 (use-default-char-width-table): Fix for the case that Emacs is
11717 already using the default char-width-table.
11718
11719 2009-06-29 Michael Albinus <michael.albinus@gmx.de>
11720
11721 * net/tramp.el (tramp-do-copy-or-rename-file-directly): Set file
11722 modes mandatory. (Bug#3712)
11723
11724 2009-06-29 Alan Mackenzie <acm@muc.de>
11725
11726 * progmodes/cc-cmds.el (c-mask-paragraph): Remove a spurious
11727 correction between the visible width of TABs and their number of bytes.
11728
11729 2009-06-29 Chong Yidong <cyd@stupidchicken.com>
11730
11731 * server.el (server-buffer-done): Prevent kill-buffer from
11732 prompting by clearing the buffer modification flag (Bug#3696).
11733
11734 2009-06-28 Michael McNamara <mac@mail.brushroad.com>
11735
11736 * progmodes/verilog-mode.el (verilog-beg-of-statement)
11737 (verilog-endcomment-reason-re): Support unique case and priority case.
11738 (verilog-basic-complete-re): Support localparam lineup.
11739 (verilog-beg-of-statement-1): Fix for robustness, unique case.
11740 (verilog-set-auto-endcomments): Fix for unique case, always_comb
11741 commenting.
11742 (verilog-leap-to-case-head): Now support *nested* unique &
11743 priority case statements.
11744 (verilog-auto-lineup): Make just declarations the default (as it
11745 had been).
11746 (verilog-leap-to-case-head): Support priority/unique case statements.
11747 (verilog-auto-lineup): Rework to give users radio buttons to
11748 select the various styles of automatic lineup.
11749 (verilog-error-regexp-alist): Rework to support the XEmacs style
11750 of error regular expressions from compilers, lint tools &
11751 simulators. Note that GNU Emacs has made it impossible for a mode
11752 to load such things.
11753 (electric-verilog-terminate-line, verilog-indent-declaration)
11754 (verilog-auto-wiure): Rework for radio button selection of
11755 auto-lineup selection of specification of auto lineup.
11756 (verilog-beg-of-statement-1): Redesign to support proper operation
11757 in additional code, based on testing with auto-lineup.
11758 (verilog-calculate-indent, assignments & declarations)
11759 (verilog-backward-token): Enhance to support auto-lineup of
11760 assignments & declarations.
11761 (verilog-in-directive-p, verilog-at-struct-p): New function for
11762 easy test of whether we are.
11763 (verilog-pretty-declarations, verilog-pretty-expr): Massive rework
11764 to support safe execution at almost anyline.
11765 (verilog-calc-1): Properly support indenting deep inside generate
11766 blocks.
11767 (verilog-init-font): Remove definition & use of verilog-init-font,
11768 as it is redundant with font-lock-defaults.
11769 (verilog-mode): Alter the definition of verilog-font-lock-defaults
11770 to avoid circular calls if syntax-ppss is a function (as is the
11771 case now in 22.x GNU Emacs) as that function would sometimes call
11772 itself, leading to (nearly) infinite recursion.
11773 (verilog-ovm-begin-re, verilog-ovm-end-re)
11774 (verilog-ovm-statement-re, verilog-leap-to-head)
11775 (verilog-backward-token): Add support for OVM macros. Some are
11776 complete statements, and others open and close scopes like begin
11777 and end.
11778 (verilog-defun-level-not-generate-re, verilog-defun-level-re)
11779 (verilog-defun-level-generate-only-re): Really fix the defun-list
11780 compilation issue.
11781 (verilog-calc-1, verilog-beg-of-statement): Enhance support for
11782 coverpoint, constraint and cross statements.
11783 (verilog-defun-level-list, verilog-generate-defun-level-list)
11784 (verilog-all-defun-level-list): Redo these specifications - it is
11785 too hard to support eval-when compile aggregation of lists also
11786 built at when-compile time.
11787 (verilog-defun-level-list): Place defconsts of variables used in
11788 building regular expressions which are built in eval-when-compile
11789 bodies in the same eval-when-compile body to facilitate compile
11790 without load.
11791 (verilog-beg-block-re-ordered): Support indenting
11792 virtual/protected tasks and functions.
11793 (verilog-defun-level-list, verilog-in-generate-region-p)
11794 (verilog-backward-ws&directives, verilog-calc-1): Speed up
11795 indentation of some module items (generate items).
11796 (verilog-forward-sexp, verilog-leap-to-head): Support stepping
11797 across virtual/protected tasks and functions.
11798
11799 2009-06-28 Wilson Snyder <wsnyder@wsnyder.org>
11800
11801 * progmodes/verilog-mode.el (verilog-auto-arg, verilog-auto-arg-sort):
11802 Allow sorting AUTOARG lists. Suggested by Andrea Fedeli.
11803 (verilog-read-sub-decls-line): Fix AUTOWIRE signals getting lost
11804 in concatenations. Reported by Yishay Belkind.
11805 (verilog-auto-ascii-enum): Support one-hot state machines in
11806 AUTOASCIIENUM. Suggested by Lloyd Gomez.
11807 (verilog-auto-inst, verilog-auto-inst-port): Include interface
11808 modport in AUTOINST and add vl-modport for users.
11809 Reported by David Rogoff.
11810 (verilog-auto-inout-module, verilog-auto-inst)
11811 (verilog-decls-get-interfaces, verilog-insert-definition)
11812 (verilog-insert-one-definition, verilog-read-decls)
11813 (verilog-read-sub-decls, verilog-read-sub-decls-sig)
11814 (verilog-sig-modport, verilog-signals-combine-bus)
11815 (verilog-subdecls-get-interfaces): Fix expansion of SystemVerilog
11816 interfaces in AUTOINOUTMODULE, AUTOINOUTCOMP, and AUTOINST.
11817 Suggested by David Rogoff.
11818 (verilog-repair-open-comma): Fix non-insertion of comma when
11819 `DEFINE occurs in V2K argument list. Reported by Lane Brooks.
11820 (verilog-make-width-expression): Simplify [A-1:0] expression
11821 widths to just {A{1'b0}}.
11822 (verilog-mode): Cleanup checkdoc warnings.
11823 (verilog-auto-inout-module, verilog-signals-matching-dir-re):
11824 Add third optional regexp to AUTOINOUTMODULE to allow selecting only
11825 inputs/outputs or data type. Suggested by Vasu Kandadi.
11826 (next-error-last-buffer): Fix byte-compiler warning.
11827 (verilog-auto, verilog-auto-insert-lisp, verilog-auto-inst)
11828 (verilog-delete-auto): Add AUTOINSERTLISP to insert arbitrary lisp
11829 or shell command text during AUTO expansion. Suggested by Tad Truex.
11830 (verilog-read-sub-decls-expr, verilog-read-sub-decls-line)
11831 (verilog-read-sub-decls-sig, verilog-symbol-detick-text):
11832 Fix dotted nets {a.b,c.d} and excaped identifiers being mis-included
11833 in AUTOINOUT. Reported by Matthew Lovell.
11834 (verilog-read-always-signals-recurse): Fix AUTORESET "if (a<=b)"
11835 causing use of <= assignments. Reported by Alex Reed.
11836 (verilog-read-decls): Fix triand, trior, wand, wor to be
11837 recognized by AUTOWIRE. Reported by Spencer Isaacson.
11838 (verilog-extended-complete-re): Support import "DPI-C" functions.
11839 (verilog-read-always-signals-recurse): Fix AUTORESET of "x <=
11840 y[a+1:a+1]" to not include a in reset list. Reported by Dan Dever.
11841 (verilog-insert-date, verilog-insert-year)
11842 (verilog-sk-header-tmpl): Fix verilog-header inserting error on
11843 Windows systems. Reported by Michael Potts.
11844 (verilog-read-module-name): Fix AUTOINST when the child module
11845 declaration's name is a tick define. Reported by Elliot Mednick.
11846 (verilog-read-decls): Fix V2K parameter bit subscripts getting
11847 passed to next parameter's definition. Reported by Bruce T.
11848 (verilog-read-decls): Fix detecting "parameter int" when using
11849 AUTOINSTPARAM. Reported by Bruce T.
11850 (verilog-goto-defun): Fix goto not finding modules unless first
11851 perform a verilog-auto expansion. Suggested by Lawrence Butcher.
11852 (verilog-mode): Expand -f flag arguments on entry to mode so
11853 verilog-goto-defun will work. Reported by Lawrence Butcher.
11854 (verilog-getopt): Expand environment variables in -f file
11855 arguments. Suggested by Lawrence Butcher.
11856 (verilog-set-define): Fix "Symbol's value as variable is void"
11857 when reading enumerations.
11858 (verilog-auto-ascii-enum): Fix duplicate labels in AUTOASCIIENUM.
11859 Suggested by Stephen Peltan.
11860 (verilog-read-defines): Fix reading of enumerations in include
11861 files. Reported by Steve Peltan.
11862
11863 2009-06-28 David De La Harpe Golden <david@harpegolden.net>
11864
11865 * files.el (trash-directory): Fix defcustom type.
11866
11867 2009-06-28 Juri Linkov <juri@jurta.org>
11868
11869 * help-fns.el (describe-function-1): Correctly locate adviced
11870 functions in hyperlink (Bug#2438).
11871
11872 2009-06-28 Chong Yidong <cyd@stupidchicken.com>
11873
11874 * files.el (trash-directory): Change default to nil.
11875 (move-file-to-trash): If trash-directory is nil and
11876 system-move-file-to-trash is unbound, perform freedesktop-style
11877 trashing.
11878
11879 2009-06-28 David De La Harpe Golden <david@harpegolden.net>
11880
11881 * files.el (move-file-to-trash): Add freedesktop trash
11882 support (Bug#973).
11883
11884 2009-06-28 Glenn Morris <rgm@gnu.org>
11885
11886 * autorevert.el (global-auto-revert-non-file-buffers)
11887 (global-auto-revert-mode): Doc fixes.
11888
11889 2009-06-27 Johan Bockgård <bojohan@gnu.org>
11890
11891 * emacs-lisp/cl-specs.el (defstruct): Fix :conc-name spec.
11892
11893 2009-06-27 Chong Yidong <cyd@stupidchicken.com>
11894
11895 * faces.el (x-handle-named-frame-geometry): Ensure that we have
11896 opened an X connection before calling x-get-resource (Bug#3194).
11897
11898 * play/doctor.el: Remove reference to obsolete website.
11899 (make-doctor-variables): Correct grammar mistake (Bug#2633).
11900
11901 2009-06-26 Dan Nicolaescu <dann@ics.uci.edu>
11902
11903 Remove find-file-not-found-hook VC method. (Bug#2757)
11904 * vc-hooks.el (vc-file-not-found-hook)
11905 (vc-default-find-file-not-found-hook): Remove functions.
11906 (find-file-not-found-functions): Do not add vc-file-not-found-hook.
11907 * vc-rcs.el (vc-rcs-find-file-not-found-hook): Remove function.
11908 * vc.el:
11909 * vc-hg.el:
11910 * vc-git.el: Do not mention find-file-not-found-hook VC method.
11911
11912 2009-06-25 Agustín Martín <agustin.martin@hispalinux.es>
11913
11914 * textmodes/ispell.el: Add `ispell-looking-back' XEmacs
11915 compatibility function for `looking-back'.
11916
11917 * textmodes/flyspell.el (sgml-mode-flyspell-verify):
11918 Use `ispell-looking-back'.
11919
11920 2009-06-24 Michael Albinus <michael.albinus@gmx.de>
11921
11922 * net/tramp-gvfs.el (tramp-gvfs-handle-make-directory): Use `dir'
11923 rather than `filename'.
11924
11925 2009-06-23 Miles Bader <miles@gnu.org>
11926
11927 * face-remap.el (text-scale-set): New function.
11928
11929 2009-06-23 Glenn Morris <rgm@gnu.org>
11930
11931 * pcmpl-rpm.el (pcomplete/rpm): Doc fix.
11932
11933 * bindings.el (mode-line-modified): Fix case of "Buffer is modified".
11934
11935 * textmodes/ispell.el (ispell-local-dictionary): Doc fix.
11936
11937 * progmodes/gdb-mi.el (gud-remove, gud-break): Update declarations.
11938
11939 * calendar/cal-dst.el (calendar-time-zone-daylight-rules):
11940 Simplify Persian conditionals.
11941
11942 * calc/calc-graph.el (calc-graph-plot): Avoid assignment to free
11943 variable `filename'.
11944
11945 * comint.el (comint-insert-input): Doc fix.
11946
11947 * Makefile.in (ELCFILES): Fix typo in previous change.
11948
11949 2009-06-23 Miles Bader <miles@gnu.org>
11950
11951 * cus-start.el: Add entry for `recenter-redisplay'.
11952
11953 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
11954
11955 * vc-hooks.el (vc-stay-local-p, vc-state, vc-working-revision):
11956 Add an optional argument for the backend, use it instead of
11957 calling vc-backend.
11958 (vc-mode-line): Add an optional argument for the backend.
11959 Pass the backend to vc-state and vc-working-revision. Move code for
11960 special handling for vc-state being a buffer to ...
11961
11962 * vc-rcs.el (vc-rcs-find-file-hook):
11963 * vc-sccs.el (vc-sccs-find-file-hook): ... here. New functions.
11964
11965 * vc-svn.el (vc-svn-state, vc-svn-dir-status, vc-svn-checkout)
11966 (vc-svn-print-log, vc-svn-diff): Pass 'SVN to vc-state,
11967 vc-stay-local-p and vc-mode-line calls.
11968
11969 * vc-cvs.el (vc-cvs-state, vc-cvs-checkout, vc-cvs-print-log)
11970 (vc-cvs-diff, vc-cvs-annotate-command)
11971 (vc-cvs-make-version-backups-p, vc-cvs-stay-local-p)
11972 (vc-cvs-dir-status): Pass 'CVS to vc-state, vc-stay-local-p and
11973 vc-mode-line calls.
11974
11975 * vc.el (vc-deduce-fileset): Use vc-deduce-fileset instead of
11976 direct comparison.
11977 (vc-next-action, vc-transfer-file, vc-rename-file): Also pass the
11978 backend when calling vc-mode-line.
11979 (vc-register): Do not create a closure for calling the vc register
11980 function, call it directly.
11981
11982 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
11983
11984 * emacs-lisp/elp.el (elp-output-insert-symname): Add a link face
11985 to make it obvious item can be clicked.
11986
11987 * vc-mtn.el (vc-mtn-after-dir-status, vc-mtn-dir-status): New functions.
11988
11989 2009-06-23 Kenichi Handa <handa@m17n.org>
11990
11991 * language/korea-util.el (korean-key-bindings): Change the binding
11992 of F9 to hangul-to-hanja-conversion. Bind Hangul_Hanja to the
11993 same command.
11994
11995 2009-06-22 Michael Albinus <michael.albinus@gmx.de>
11996
11997 Sync with Tramp 2.1.16.
11998
11999 * Makefile.in (ELCFILES): Add net/tramp-gvfs.elc.
12000
12001 * net/tramp.el (top): Require tramp-gvfs. Catch `tramp-loading',
12002 when a loading of a package fails. Completion function for rsync
12003 is `tramp-completion-function-alist-ssh'.
12004 (all): Replace all calls of `split-string' and
12005 `tramp-split-string' by `tramp-compat-split-string'.
12006 (tramp-default-method): Use `tramp-compat-process-running-p'.
12007 (tramp-default-proxies-alist): Allow also Lisp forms.
12008 (tramp-remote-path): Add choice "Private Directories".
12009 (tramp-wrong-passwd-regexp): Remove "Tramp connection closed" option.
12010 (tramp-domain-regexp): Allow also "-", "_" and ".".
12011 (tramp-end-of-output): Remove newlines, and add "$" at the end.
12012 (tramp-file-name-handler-alist): Add handler for `dired-uncache'.
12013 (tramp-debug-message): Insert header line in debug buffer.
12014 (tramp-handle-directory-files-and-attributes-with-stat):
12015 Care about filenames with spaces, or starting with "-".
12016 (tramp-handle-dired-uncache): New defun.
12017 (tramp-handle-insert-directory): Don't flush the directory from
12018 cache, this is handled by `dired-uncache' now.
12019 (tramp-handle-insert-file-contents): Improve error handling.
12020 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
12021 Quote `tramp-end-of-output'.
12022 (tramp-action-password): Improve trace message.
12023 (tramp-check-for-regexp): Both echoes must be present, before removing.
12024 (tramp-open-connection-setup-interactive-shell): Trace coding system.
12025 (tramp-compute-multi-hops): Eval cons cells of
12026 `tramp-default-proxies-alist'.
12027 (tramp-maybe-open-connection): Use the same command pattern for
12028 first hop and further hops.
12029 (tramp-wait-for-output): Remove handling of newlines.
12030 (tramp-get-remote-path): Handle also `tramp-own-remote-path'.
12031 (tramp-split-string): Remove function. It is handled in
12032 tramp-compat now.
12033
12034 * net/tramp-cmds.el (tramp-bug):
12035 Recommend `tramp-cleanup-all-connections' in the bug mail.
12036
12037 * net/tramp-compat.el (tramp-compat-split-string)
12038 (tramp-compat-process-running-p): New defuns.
12039
12040 * net/tramp-fish.el (tramp-fish-file-name-handler-alist): Add handler
12041 for `dired-uncache'.
12042
12043 * net/tramp-gvfs.el: New package.
12044
12045 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
12046 Add handler for `dired-uncache'.
12047 (tramp-smb-handle-file-local-copy): Cleanup in case of error.
12048
12049 * net/trampver.el: Update release number. Make version check fit
12050 for SXEmacs 22.
12051
12052 2009-06-22 Jim Meyering <meyering@redhat.com>
12053
12054 Automatically handle .xz suffix (XZ-compressed files), too.
12055 * jka-cmpr-hook.el (jka-compr-compression-info-list): Add xz.
12056 XZ is the successor to LZMA: <http://tukaani.org/xz/>
12057
12058 2009-06-22 Dmitry Dzhus <dima@sphinx.net.ru>
12059 Nick Roberts <nickrob@snap.net.nz>
12060
12061 * progmodes/gdb-mi.el: Pull further modified changes from Dmitry's
12062 repository (http://sphinx.net.ru/hg/gdb-mi/).
12063
12064 2009-06-22 Glenn Morris <rgm@gnu.org>
12065
12066 * files.el (dir-locals-collect-mode-variables): Allow for any number of
12067 `mode' and `eval' entries. (Bug#3430)
12068
12069 * Makefile.in (ELCFILES): Add fadr.elc.
12070
12071 * calendar/appt.el (appt-make-list): Fix off-by-one error caused by
12072 differing behavior of \n and ^ in strings. (Bug#3385)
12073
12074 * emacs-lisp/cl-indent.el: Remove leading "*" from defcustom docs.
12075
12076 * emacs-lisp/lisp-mode.el (lisp-indent-offset): Fix safe-local-variable
12077 property.
12078 (lisp-indent-function): Make it a defcustom.
12079
12080 2009-06-21 Nick Roberts <nickrob@snap.net.nz>
12081
12082 * progmodes/gdb-ui.el: Replace with ...
12083 * progmodes/gdb-mi.el: ... this file.
12084 * progmodes/gud.el: Modify for gdb-mi.el.
12085
12086 2009-06-21 Dmitry Dzhus <dima@sphinx.net.ru>
12087
12088 * fadr.el: New file.
12089
12090 See ChangeLog.14 for earlier changes.
12091
12092 ;; Local Variables:
12093 ;; coding: utf-8
12094 ;; End:
12095
12096 Copyright (C) 2009, 2010 Free Software Foundation, Inc.
12097
12098 This file is part of GNU Emacs.
12099
12100 GNU Emacs is free software: you can redistribute it and/or modify
12101 it under the terms of the GNU General Public License as published by
12102 the Free Software Foundation, either version 3 of the License, or
12103 (at your option) any later version.
12104
12105 GNU Emacs is distributed in the hope that it will be useful,
12106 but WITHOUT ANY WARRANTY; without even the implied warranty of
12107 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12108 GNU General Public License for more details.
12109
12110 You should have received a copy of the GNU General Public License
12111 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
12112
12113 ;; arch-tag: d3e45e38-19e2-49b6-8dc2-7cb26adcc5a1