Add preliminary describe-package functionality, and some cleanup.
[bpt/emacs.git] / lisp / ChangeLog
1 2010-06-19 Chong Yidong <cyd@stupidchicken.com>
2
3 * emacs-lisp/package.el: Move package-list-packages binding to
4 menu-bar.el.
5 (describe-package, describe-package-1, package--dir): New funs.
6 (package-activate-1): Use package--dir.
7
8 * emacs-lisp/package-x.el (gnus-article-buffer): Require package.
9
10 * help-mode.el (help-package-def): New button type.
11
12 * menu-bar.el: Move package-list-packages binding here from
13 package.el.
14
15 2010-06-19 Gustav Hållberg <gustav@gmail.com> (tiny change)
16
17 * descr-text.el (describe-char): Avoid trailing whitespace. (Bug#6423)
18
19 2010-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
20
21 * emacs-lisp/edebug.el (edebug-read-list):
22 Phase out old-style backquotes.
23
24 2010-06-17 Juri Linkov <juri@jurta.org>
25
26 * help-mode.el (help-mode): Set buffer-local variable
27 revert-buffer-function to help-mode-revert-buffer.
28 (help-mode-revert-buffer): New function.
29
30 * info.el (Info-revert-find-node): Check for major-mode Info-mode
31 before popping to "*info*" (like in other Info functions).
32 Keep buffer-name in old-buffer-name. Keep Info-history-forward in
33 old-history-forward. Pop to old-buffer-name or "*info*" to
34 recreate the killed buffer. Set Info-history-forward from
35 old-history-forward.
36 (Info-breadcrumbs-depth): Add :group and :version.
37
38 2010-06-17 Dan Nicolaescu <dann@ics.uci.edu>
39
40 * emacs-lisp/package.el (package-menu-mode-map): Add a menu.
41
42 2010-06-17 Agustín Martín <agustin.martin@hispalinux.es>
43
44 * ispell.el (ispell-aspell-find-dictionary): Fix regexp for
45 languages like Portuguese with pt_{BR,PT} and no plain pt.
46
47 2010-06-17 Juanma Barranquero <lekktu@gmail.com>
48
49 * emacs-lisp/package.el (package-menu-mode-map):
50 Move initialization into declaration.
51
52 * menu-bar.el (menu-bar-options-menu): Fix typo in menu entry.
53
54 2010-06-17 Chong Yidong <cyd@stupidchicken.com>
55
56 * emacs-lisp/package.el (package-archive-base): Point to
57 elpa.gnu.org.
58 (package-enable, package-load-list): New defcustoms.
59 (package-user-dir, package-directory-list): Turn into defcustoms.
60 Don't include package-user-dir in package-directory-list.
61 (package--builtins-base): Don't include Emacs as a "package".
62 (package-subdirectory-regexp): New var.
63 (package-load-all-descriptors, package-compute-transaction)
64 (package-download-transaction): Obey package-load-list.
65 (package-activate-1): Rename from package-do-activate.
66 (package-list-packages-internal): Check package-load-list.
67 (package-load-descriptor, package-generate-autoloads)
68 (package-unpack, package-unpack-single)
69 (package--read-archive-file, package-delete): Use
70 expand-file-name.
71
72 * emacs-lisp/package-x.el: New file. Package uploading
73 functionality split out from package.el.
74
75 * startup.el (command-line): Load packages after reading init
76 file.
77
78 2010-06-17 Tom Tromey <tromey@redhat.com>
79
80 * emacs-lisp/package.el: New file.
81
82 2010-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
83
84 * emacs-lisp/macroexp.el (macroexpand-all-1): Put back special
85 handling for `lambda' (misunderstanding).
86
87 2010-06-16 Jay Belanger <jay.p.belanger@gmail.com>
88
89 * calc/calc-poly.el: (math-accum-factors): Make sure that
90 constants aren't distributed after they are factored out.
91
92 2010-06-16 Juri Linkov <juri@jurta.org>
93
94 * facemenu.el (list-colors-display): Call `pop-to-buffer' before
95 `list-colors-print'. (Bug#6332)
96
97 2010-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
98
99 * emacs-lisp/macroexp.el (macroexpand-all-1): Don't handle `lambda'
100 specially, since it's a macro. Fix up wrong hint passed to maybe-cons.
101
102 * font-lock.el (font-lock-major-mode): Rename from
103 font-lock-mode-major-mode to distinguish it from
104 global-font-lock-mode's own font-lock-mode-major-mode (bug#6135).
105 (font-lock-set-defaults):
106 * font-core.el (font-lock-default-function): Adjust users.
107 (font-lock-mode): Don't set it at all.
108
109 2010-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
110
111 * vc-annotate.el (vc-annotate): Use vc-read-revision.
112
113 2010-06-16 Glenn Morris <rgm@gnu.org>
114
115 * calendar/appt.el (appt-time-msg-list): Doc fix.
116 (appt-check): Let-bind appt-warn-time.
117 (appt-add): Make the 3rd argument optional.
118 Simplify argument names. Doc fix. Check for integer WARNTIME.
119 Only add WARNTIME to the output list if non-nil.
120
121 2010-06-16 Ivan Kanis <apple@kanis.eu>
122
123 * calendar/appt.el (appt-check): Let the 3rd element of
124 appt-time-msg-list specify the warning time.
125 (appt-add): Add new argument with the warning time. (Bug#5176)
126
127 2010-06-16 Bob Rogers <rogers-emacs@rgrjr.dyndns.org> (tiny change)
128
129 * vc-svn.el (vc-svn-after-dir-status): Fix regexp for Subversions
130 older than version 1.6. (Bug#6361)
131
132 2010-06-16 Helmut Eller <eller.helmut@gmail.com>
133
134 * emacs-lisp/cl-macs.el (destructuring-bind): Bind `bind-enquote',
135 used by cl-do-arglist. (Bug#6408)
136
137 2010-06-16 Agustín Martín <agustin.martin@hispalinux.es>
138
139 * ispell.el (ispell-dictionary-base-alist): Fix
140 portuguese casechars/not-casechars for missing 'çÇ'.
141 Suggested by Rolando Pereira (bug#6434).
142
143 2010-06-15 Juanma Barranquero <lekktu@gmail.com>
144
145 * facemenu.el (list-colors-sort): Doc fix.
146
147 2010-06-15 Bob Rogers <rogers-emacs@rgrjr.dyndns.org> (tiny change)
148
149 * progmodes/sql.el (sql-connect-mysql): Fix typo.
150
151 2010-06-14 Juri Linkov <juri@jurta.org>
152
153 Add sort option `list-colors-sort'. (Bug#6332)
154 * facemenu.el (color-rgb-to-hsv): New function.
155 (list-colors-sort): New defcustom.
156 (list-colors-sort-key): New function.
157 (list-colors-display): Doc fix. Sort list according to the option
158 `list-colors-sort'.
159 (list-colors-print): Add HSV values to `help-echo' property of
160 RGB strings.
161
162 2010-06-14 Juri Linkov <juri@jurta.org>
163
164 * compare-w.el: Move to the "vc" subdirectory.
165
166 2010-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
167
168 * image-mode.el (image-mode-map): Remap left-char and right-char.
169
170 * nxml/nxml-mode.el (nxml-indent-line): Standardize indent behavior.
171
172 2010-06-12 Chong Yidong <cyd@stupidchicken.com>
173
174 * term/common-win.el (x-colors): Add all the color names defined
175 in rgb.txt (Bug#6332).
176
177 * facemenu.el (list-colors-print): Don't print extra names if it
178 will overflow the window width.
179
180 * vc/log-edit.el (log-edit-font-lock-keywords): Revert 2010-06-02
181 change (Bug#6343).
182
183 2010-06-12 Eli Zaretskii <eliz@gnu.org>
184
185 * files.el (make-directory): Doc fix (bug#6396).
186
187 2010-06-12 Michael Albinus <michael.albinus@gmx.de>
188
189 * net/tramp.el (tramp-remote-process-environment): Protect version
190 string by apostroph.
191 (tramp-shell-prompt-pattern): Do not use a shy group in case of
192 XEmacs.
193 (tramp-file-name-for-operation): Add `call-process-region'.
194 (tramp-set-process-query-on-exit-flag): Fix wrong parentheses.
195
196 * net/tramp-compat.el (top): Do not autoload
197 `tramp-handle-file-remote-p'. Load tramp-util.el and tramp-vc.el
198 only when `start-file-process' is not bound.
199 (tramp-advice-file-expand-wildcards): Do not use
200 `tramp-handle-file-remote-p'.
201 (tramp-compat-make-temp-file): Handle the case, that
202 `make-temp-file' has no third argument EXTENSION.
203
204 2010-06-11 Juanma Barranquero <lekktu@gmail.com>
205
206 * makefile.w32-in (WINS_BASIC): Include new directory vc.
207
208 * loadup.el ("vc-hooks", "ediff-hook"): Load from lisp/vc/.
209
210 2010-06-11 Juri Linkov <juri@jurta.org>
211
212 * finder.el (finder-known-keywords): Add keyword "vc"
213 for version control.
214
215 * add-log.el, cvs-status.el, diff.el, diff-mode.el, ediff.el,
216 * emerge.el, log-edit.el, log-view.el, pcvs.el, smerge-mode.el,
217 * vc-annotate.el, vc-bzr.el, vc-dir.el, vc-dispatcher.el, vc-git.el,
218 * vc-hg.el, vc-mtn.el, vc.el: Add keyword "vc".
219
220 2010-06-11 Juri Linkov <juri@jurta.org>
221
222 Move version control related files to the "vc" subdirectory.
223 * add-log.el, cvs-status.el, diff.el, diff-mode.el, ediff-diff.el,
224 * ediff.el, ediff-help.el, ediff-hook.el, ediff-init.el,
225 * ediff-merg.el, ediff-mult.el, ediff-ptch.el, ediff-util.el,
226 * ediff-vers.el, ediff-wind.el, emerge.el, log-edit.el, log-view.el,
227 * pcvs-defs.el, pcvs.el, pcvs-info.el, pcvs-parse.el, pcvs-util.el,
228 * smerge-mode.el, vc-annotate.el, vc-arch.el, vc-bzr.el, vc-cvs.el,
229 * vc-dav.el, vc-dir.el, vc-dispatcher.el, vc.el, vc-git.el,
230 * vc-hg.el, vc-hooks.el, vc-mtn.el, vc-rcs.el, vc-sccs.el, vc-svn.el:
231 Move files to the "vc" subdirectory.
232
233 2010-06-11 Chong Yidong <cyd@stupidchicken.com>
234
235 * comint.el (comint-password-prompt-regexp): Fix 2010-04-10 change
236 (Bug#6367).
237
238 2010-06-11 Stephen Eglen <stephen@gnu.org>
239
240 * shell.el: Bind `shell-resync-dirs' to M-RET.
241
242 2010-06-10 Michael Albinus <michael.albinus@gmx.de>
243
244 * notifications.el: Move file from lisp/net, because it is
245 supposed to talk locally to the user.
246
247 2010-06-10 Julien Danjou <julien@danjou.info>
248
249 * net/notifications.el (notifications-on-action-signal)
250 (notifications-on-closed-signal): Pass notification id as first
251 argument to the callback functions. Add docstrings.
252 (notifications-notify): Fix docstring.
253
254 2010-06-10 Glenn Morris <rgm@gnu.org>
255
256 * emacs-lisp/authors.el (authors-ignored-files)
257 (authors-valid-file-names): Add some files.
258
259 2010-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
260
261 * net/rcirc.el (rcirc-server-alist, rcirc, rcirc-connect): Resolve
262 merge conflict, giving preference to the emacs-23 version of the code.
263
264 2010-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
265
266 * emacs-lisp/advice.el (ad-compile-function):
267 Define warning-suppress-types before we let-bind it (bug#6275).
268
269 * vc-dispatcher.el: Rename mode-line-hook to vc-mode-line-hook;
270 declare it, make it buffer-local and permanent-local (bug#6324).
271 (vc-resynch-window): Adjust name.
272 * vc-hooks.el (vc-find-file-hook): Adjust name.
273
274 2010-06-09 Michael Albinus <michael.albinus@gmx.de>
275
276 * net/notifications.el (notifications-notify): Fix docstring.
277
278 2010-06-09 Juanma Barranquero <lekktu@gmail.com>
279
280 Update to Unicode 6.0.0 beta.
281 * international/charprop.el: Update copyright.
282 * international/mule-cmds.el (ucs-names): Update character ranges.
283 * international/uni-bidi.el:
284 * international/uni-category.el:
285 * international/uni-combining.el:
286 * international/uni-comment.el:
287 * international/uni-decimal.el:
288 * international/uni-decomposition.el:
289 * international/uni-digit.el:
290 * international/uni-lowercase.el:
291 * international/uni-mirrored.el:
292 * international/uni-name.el:
293 * international/uni-numeric.el:
294 * international/uni-old-name.el:
295 * international/uni-titlecase.el:
296 * international/uni-uppercase.el: Regenerate.
297
298 2010-06-09 Juanma Barranquero <lekktu@gmail.com>
299
300 * emacs-lisp/smie.el (comment-string-strip): Declare function.
301 (smie-precs-precedence-table): Fix typo in docstring.
302
303 * vc-mtn.el (log-edit-extract-headers): Declare function.
304
305 * vc-hg.el (log-edit-extract-headers): Remove duplicate declaration.
306
307 * net/notifications.el (dbus-register-signal): Declare function.
308 (notifications-notify): Fix typos and reflow docstring.
309
310 2010-06-09 Dan Nicolaescu <dann@ics.uci.edu>
311
312 Improve VC create/retrieve tag/branch.
313 * vc.el (vc-create-tag): Do not read the directory name for VCs
314 with repository revision granularity. Adjust the tag/branch
315 prompt. Reset VC properties.
316 (vc-retrieve-tag): Do not read the directory name for VCs
317 with repository revision granularity. Reset VC properties.
318
319 2010-06-09 Julien Danjou <julien@danjou.info>
320
321 * net/notifications.el: New file.
322
323 2010-06-09 Dan Nicolaescu <dann@ics.uci.edu>
324
325 Add optional support for resetting VC properties.
326 * vc-dispatcher.el (vc-resynch-window): Add new optional argument,
327 call vc-file-clearprops when true.
328 (vc-resynch-buffer): Add new optional argument, pass it down.
329 (vc-resynch-buffers-in-directory): Likewise.
330
331 Improve support for special markup in the VC commit message.
332 * vc-mtn.el (vc-mtn-checkin): Add support for Author: and Date: markup.
333 * vc-hg.el (vc-hg-checkin): Add support for Date:.
334 * vc-git.el (vc-git-checkin):
335 * vc-bzr.el (vc-bzr-checkin): Likewise.
336
337 2010-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
338
339 * emacs-lisp/smie.el (smie-indent-keyword): Remove special case that
340 can be handled with a ((:before "fn") (:prev "=>" parent)) rule.
341
342 2010-06-07 Martin Pohlack <mp26@os.inf.tu-dresden.de>
343
344 * iimage.el: Remove images as soon as the underlying text is modified.
345 (iimage-modification-hook): New function.
346 (iimage-mode-buffer): Use it.
347
348 2010-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
349
350 * emacs-lisp/smie.el (smie-indent-offset-rule): Rename from
351 smie-indent-offset-after. Add :prev case. Make a bit more generic.
352 (smie-indent-virtual): Remove `virtual' arg. Update callers.
353 (smie-indent-keyword): Add handling of open-paren keywords.
354 (smie-indent-comment-continue): Don't assume comment-continue.
355
356 2010-06-07 Martin Rudalics <rudalics@gmx.at>
357
358 * window.el (pop-to-buffer): Remove the conditional that
359 compares new-window and old-window, so it will reselect
360 the selected window unconditionally.
361 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00078.html
362
363 2010-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
364
365 * emacs-lisp/smie.el (smie-indent-offset-after)
366 (smie-indent-forward-token, smie-indent-backward-token): New functions.
367 (smie-indent-after-keyword): Use them.
368 (smie-indent-fixindent): Only applies to the indentation of the BOL.
369 (smie-indent-keyword): Tweak the black magic.
370 (smie-indent-comment-continue): Strip comment-continue before use.
371 (smie-indent-functions): Indent comments before keywords.
372
373 2010-06-06 Juri Linkov <juri@jurta.org>
374
375 * isearch.el (isearch-lazy-highlight-search): Fix looping
376 by checking for empty match. This syncs this loop with the
377 similar loop in `isearch-search'. (Bug#6362)
378
379 2010-06-05 Juanma Barranquero <lekktu@gmail.com>
380
381 * net/dbus.el (dbus-register-method): Declare function.
382 (dbus-handle-event, dbus-property-handler): Fix typos in docstrings.
383 (dbus-introspect): Doc fix.
384 (dbus-event-bus-name, dbus-introspect-get-interface)
385 (dbus-introspect-get-argument): Reflow docstrings.
386
387 2010-06-05 Dan Nicolaescu <dann@ics.uci.edu>
388
389 vc-log-incoming/vc-log-outgoing fixes for Git.
390 * vc-git.el (vc-git-log-view-mode): Fix font lock for
391 incoming/outgoing logs.
392 (vc-git-log-outgoing, vc-git-log-incoming): Use @{upstream}
393 instead of vc-git-compute-remote.
394 (vc-git-compute-remote): Remove.
395
396 2010-06-04 Chong Yidong <cyd@stupidchicken.com>
397
398 * term/common-win.el (x-colors): Add "dark green" and "dark
399 turquoise" (Bug#6332).
400
401 2010-06-04 Juri Linkov <juri@jurta.org>
402
403 * simple.el (kill-new): Fix logic of kill-do-not-save-duplicates.
404 Instead of setting `replace' to t and replacing the same string
405 with itself, don't do certain actions when
406 kill-do-not-save-duplicates is non-nil and string is equal to car
407 of kill-ring: don't call menu-bar-update-yank-menu, don't push
408 interprogram-paste strings to kill-ring, and don't push the input
409 argument `string' to kill-ring.
410 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00072.html
411
412 2010-06-04 Juanma Barranquero <lekktu@gmail.com>
413
414 * subr.el (directory-sep-char): Move from fileio.c and make a defconst.
415
416 2010-06-04 Michael Albinus <michael.albinus@gmx.de>
417
418 * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name): Expand "~/".
419 (tramp-gvfs-handler-mounted-unmounted)
420 (tramp-gvfs-connection-mounted-p): Handle default-location.
421
422 * net/tramp-smb.el (tramp-smb-handle-delete-directory): Don't try to
423 move files to trash.
424
425 2010-06-04 Juanma Barranquero <lekktu@gmail.com>
426
427 * international/mule-cmds.el (nonascii-insert-offset)
428 (nonascii-translation-table): Add obsolescence information.
429
430 * international/mule.el (make-translation-table-from-vector): Doc fix.
431
432 2010-06-03 Eric Ludlam <zappo@gnu.org>
433
434 * cedet/semantic/lex-spp.el
435 (semantic-lex-spp-table-write-slot-value): Instead of erroring on
436 invalid values during save, just save a nil (Bug#6324).
437
438 2010-06-03 Glenn Morris <rgm@gnu.org>
439
440 * desktop.el (desktop-clear-preserve-buffers):
441 Add "*Warnings*" buffer. (Bug#6336)
442
443 2010-06-03 Dan Nicolaescu <dann@ics.uci.edu>
444
445 vc-log-incoming/vc-log-outgoing improvements for Git.
446 * vc-git.el (vc-git-log-outgoing): Use the same format as the
447 short log.
448 (vc-git-log-incoming): Likewise. Run "git fetch" before the log command.
449
450 Add bindings for vc-log-incoming and vc-log-outgoing.
451 * vc-hooks.el (vc-prefix-map): Add bindings for vc-log-incoming
452 and vc-log-outgoing.
453 * vc-dir.el (vc-dir-menu-map): Add menu bindings for vc-log-incoming
454 and vc-log-outgoing.
455
456 2010-06-03 Chong Yidong <cyd@stupidchicken.com>
457
458 * net/rcirc.el (rcirc-sort-nicknames): Remove.
459 (rcirc-handler-366): Always sort nicknames.
460
461 2010-06-03 Juanma Barranquero <lekktu@gmail.com>
462
463 * emacs-lisp/smie.el (comment-continue): Declare for byte-compiler.
464
465 2010-06-03 Chong Yidong <cyd@stupidchicken.com>
466
467 * net/rcirc.el (rcirc-nickname<, rcirc-sort-nicknames-join): Doc
468 fix.
469
470 2010-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
471
472 * net/rcirc.el (rcirc-sort-nicknames): Change default.
473 (rcirc-sort-nicknames-join): Avoid setq.
474
475 2010-06-03 Deniz Dogan <deniz.a.m.dogan@gmail.com>
476
477 * net/rcirc.el (rcirc-sort-nicknames): New custom.
478 (rcirc-nickname<, rcirc-sort-nicknames-join): New funs.
479 (rcirc-handler-366): Use them.
480
481 2010-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
482
483 Split smie-indent-calculate into more manageable chunks.
484 * emacs-lisp/smie.el (smie-indent-virtual, smie-indent-fixindent)
485 (smie-indent-comment, smie-indent-after-keyword, smie-indent-keyword)
486 (smie-indent-close, smie-indent-comment-continue, smie-indent-bob)
487 (smie-indent-exps): Extract from smie-indent-calculate.
488 (smie-indent-functions): New var.
489 (smie-indent-functions): Use them.
490
491 2010-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
492
493 * emacs-lisp/smie.el (smie-indent-hanging-p): Use smie-bolp.
494 (smie-indent-calculate): Simplify and cleanup.
495
496 2010-06-02 Michael Albinus <michael.albinus@gmx.de>
497
498 * net/tramp-gvfs.el (top): Require url-util.
499 (tramp-gvfs-mount-point): Remove.
500 (tramp-gvfs-stringify-dbus-message, tramp-gvfs-send-command):
501 New defuns.
502 (with-tramp-dbus-call-method): Format trace message.
503 (tramp-gvfs-handle-copy-file, tramp-gvfs-handle-rename-file):
504 Implement backup call, when operation on local files fails.
505 Use progress reporter. Flush properties of changed files.
506 (tramp-gvfs-handle-make-directory): Make more traces.
507 (tramp-gvfs-url-file-name): Hexify file name in url.
508 (tramp-gvfs-fuse-file-name): Take also prefix (like dav shares)
509 into account for the resulting file name.
510 (tramp-gvfs-handler-askquestion): Return dummy mountpoint, when
511 the answer is "no". See `tramp-gvfs-maybe-open-connection'.
512 (tramp-gvfs-handler-mounted-unmounted)
513 (tramp-gvfs-connection-mounted-p): Test also for new mountspec
514 attribute "default_location". Set "prefix" property.
515 (tramp-gvfs-mount-spec): Return both prefix and mountspec.
516 (tramp-gvfs-maybe-open-connection): Test, whether mountpoint
517 exists. Raise an error, if not (due to a corresponding answer
518 "no" in interactive questions, for example).
519
520 2010-06-02 Dan Nicolaescu <dann@ics.uci.edu>
521
522 * log-edit.el (log-edit-font-lock-keywords): Make group 4 match lax.
523
524 2010-06-01 Juanma Barranquero <lekktu@gmail.com>
525
526 * emacs-lisp/eldoc.el: Add completions for new commands left-* and
527 right-*. (Bug#6265)
528
529 2010-06-01 Dan Nicolaescu <dann@ics.uci.edu>
530
531 Add support for vc-log-incoming, improve vc-log-outgoing for Git.
532 * vc-git.el (vc-git-compute-remote): New function.
533 (vc-git-log-outgoing): Use it instead of hard coding a value.
534 (vc-git-log-incoming): New function.
535
536 Improve state updating for VC tag commands.
537 * vc.el (vc-create-tag, vc-retrieve-tag): Call vc-resynch-buffer
538 to update the state of all buffers in the directory.
539
540 * vc-dir.el (vc-dir-update): Remove entries with a nil state (bug#5539).
541
542 2010-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
543
544 * vc-bzr.el (vc-bzr-revision-completion-table): Apply
545 `file-directory-p' to the filename part rather than to the whole text.
546
547 2010-05-31 Jonathan Marchand <jonathlela@gmail.com> (tiny change)
548
549 * cedet/ede/cpp-root.el (ede-set-project-variables): Fix feature name
550 (bug#6231).
551
552 2010-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
553
554 * man.el (Man-completion-table): Let the user type "-k " (bug#6319).
555
556 2010-05-31 Drew Adams <drew.adams@oracle.com>
557
558 * files.el (directory-files-no-dot-files-regexp): Doc fix (bug#6298).
559
560 2010-05-31 Juanma Barranquero <lekktu@gmail.com>
561
562 * subr.el (momentary-string-display): Just use read-event to read
563 the exit event (Bug#6238).
564
565 2010-05-30 Eli Zaretskii <eliz@gnu.org>
566
567 * international/mule.el (define-coding-system): Doc fix (bug#6313).
568
569 2010-05-30 Juanma Barranquero <lekktu@gmail.com>
570
571 * emulation/cua-base.el: Recognize also `right-word' and `left-word'.
572 Suggested by Eli Zaretskii <eliz@gnu.org>.
573
574 2010-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
575
576 * minibuffer.el (completion-file-name-table): Don't return a boundary
577 past the end of `string' (bug#6299).
578 (completion--file-name-table): Delegate to completion-file-name-table
579 for the `boundaries' case.
580
581 2010-05-30 Juanma Barranquero <lekktu@gmail.com>
582
583 * emulation/cua-base.el: Recognize `right-char' and `left-char' as
584 movement commands.
585
586 * progmodes/ada-xref.el (ada-prj-ada-project-path-sep): Set from
587 `path-separator', but maintain compatibility with Emacs 20.2.
588
589 2010-05-29 Chong Yidong <cyd@stupidchicken.com>
590
591 * server.el (server-process-filter): Receive parent-id argument
592 from emacsclient.
593 (server-create-window-system-frame): New arg. Pass parent-id as
594 frame parameter.
595
596 2010-05-29 Eli Zaretskii <eliz@gnu.org>
597
598 Bidi-sensitive word movement with arrow keys.
599 * subr.el (right-arrow-command, left-arrow-command): Move to
600 bindings.el.
601
602 * bindings.el (right-char, left-char): Move from subr.el and
603 rename from right-arrow-command and left-arrow-command.
604 (right-word, left-word): New functions.
605 (global-map) <right>: Bind to right-char.
606 (global-map) <left>: Bind to left-char.
607 (global-map) <C-right>: Bind to right-word.
608 (global-map) <C-left>: Bind to left-word.
609
610 * ls-lisp.el (ls-lisp-classify-file): New function.
611 (ls-lisp-insert-directory): Call it if switches include -F (bug#6294).
612 (ls-lisp-classify): Call ls-lisp-classify-file.
613 (insert-directory): Remove blanks from switches.
614
615 2010-05-29 Chong Yidong <cyd@stupidchicken.com>
616
617 * ansi-color.el: Delete unused escape sequences (Bug#6085).
618 (ansi-color-drop-regexp): New constant.
619 (ansi-color-apply, ansi-color-filter-region)
620 (ansi-color-apply-on-region): Delete unrecognized control sequences.
621 (ansi-color-apply): Build string list before calling concat.
622
623 2010-05-28 Juri Linkov <juri@jurta.org>
624
625 * image-dired.el (image-dired-dired-toggle-marked-thumbs):
626 Replace LOCALP arg of `dired-get-filename' 'no-dir with nil.
627 (Bug#5270)
628
629 2010-05-28 Michael Albinus <michael.albinus@gmx.de>
630
631 * net/tramp.el (tramp-debug-message): Add `tramp-compat-funcall'
632 to ignored backtrace functions.
633 (with-progress-reporter): Expand docstring.
634 (tramp-handle-delete-file): Implement TRASH argument.
635 (tramp-get-remote-trash): New defun.
636
637 2010-05-28 Michael Albinus <michael.albinus@gmx.de>
638
639 * net/tramp-compat.el (tramp-compat-delete-file): Use
640 `symbol-value' for backward compatibility.
641
642 * net/tramp.el (tramp-handle-make-symbolic-link)
643 (tramp-handle-load)
644 (tramp-do-copy-or-rename-file-via-buffer)
645 (tramp-do-copy-or-rename-file-directly)
646 (tramp-do-copy-or-rename-file-out-of-band)
647 (tramp-handle-process-file, tramp-handle-call-process-region)
648 (tramp-handle-shell-command, tramp-handle-file-local-copy)
649 (tramp-handle-insert-file-contents, tramp-handle-write-region)
650 (tramp-delete-temp-file-function): Use `delete-file' instead
651 of `tramp-compat-delete-file'.
652
653 * net/tramp-fish.el (tramp-fish-handle-delete-directory)
654 (tramp-fish-handle-make-symbolic-link)
655 (tramp-fish-handle-process-file): Use `delete-file' instead
656 of `tramp-compat-delete-file'.
657
658 * net/tramp-ftp.el (tramp-ftp-file-name-handler): Use
659 `delete-file' instead of `tramp-compat-delete-file'.
660
661 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Rename arg.
662 (tramp-gvfs-handle-write-region): Use `delete-file' instead of
663 `tramp-compat-delete-file'.
664
665 * net/tramp-imap.el (tramp-imap-do-copy-or-rename-file): Use
666 `delete-file' instead of `tramp-compat-delete-file'.
667
668 * net/tramp-smb.el (tramp-smb-handle-copy-file)
669 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
670 (tramp-smb-handle-write-region): Use `delete-file' instead of
671 `tramp-compat-delete-file'.
672 (tramp-smb-handle-delete-directory): Use 'trash as arg.
673
674 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
675
676 * dired.el (dired-delete-file): New arg TRASH.
677 (dired-internal-do-deletions): New arg TRASH. Use progress reporter.
678 (dired-do-flagged-delete, dired-do-delete): Use trash.
679
680 * speedbar.el (speedbar-item-delete): Allow trashing.
681
682 * files.el (delete-directory): New arg TRASH.
683
684 * net/ange-ftp.el (ange-ftp-del-tmp-name, ange-ftp-delete-file)
685 (ange-ftp-rename-remote-to-remote)
686 (ange-ftp-rename-local-to-remote)
687 (ange-ftp-rename-remote-to-local, ange-ftp-load)
688 (ange-ftp-compress, ange-ftp-uncompress): Remove optional arg from
689 `delete-file'.
690 (ange-ftp-delete-directory): Add optional arg to `delete-file', to
691 allow trashing.
692
693 * net/tramp-compat.el (tramp-compat-delete-file): Rewrite to
694 handle new TRASH arg of `delete-file'.
695
696 * net/tramp.el (tramp-handle-delete-file): Change FORCE arg to TRASH.
697 (tramp-handle-make-symbolic-link, tramp-handle-load)
698 (tramp-do-copy-or-rename-file-via-buffer)
699 (tramp-do-copy-or-rename-file-directly)
700 (tramp-do-copy-or-rename-file-out-of-band)
701 (tramp-handle-process-file, tramp-handle-call-process-region)
702 (tramp-handle-shell-command, tramp-handle-file-local-copy)
703 (tramp-handle-insert-file-contents, tramp-handle-write-region)
704 (tramp-delete-temp-file-function): Use null TRASH arg in
705 tramp-compat-delete-file call.
706
707 * net/tramp-fish.el (tramp-fish-handle-delete-directory)
708 (tramp-fish-handle-delete-file)
709 (tramp-fish-handle-make-symbolic-link)
710 (tramp-fish-handle-process-file): Use null TRASH arg in
711 `tramp-compat-delete-file' call.
712
713 * net/tramp-ftp.el (tramp-ftp-file-name-handler): Use null TRASH
714 arg in `tramp-compat-delete-file' call.
715
716 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Rename arg.
717 (tramp-gvfs-handle-write-region): Use null TRASH arg in
718 `tramp-compat-delete-file' call.
719
720 * net/tramp-imap.el (tramp-imap-handle-delete-file): Rename arg.
721 (tramp-imap-do-copy-or-rename-file): Use null TRASH arg in
722 `tramp-compat-delete-file' call.
723
724 * net/tramp-smb.el (tramp-smb-handle-copy-file)
725 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
726 (tramp-smb-handle-write-region): Use null TRASH arg in
727 tramp-compat-delete-file call.
728 (tramp-smb-handle-delete-directory): Use tramp-compat-delete-file.
729 (tramp-smb-handle-delete-file): Rename arg.
730
731 * diff.el (diff-sentinel):
732 * epg.el (epg--make-temp-file, epg-decrypt-string)
733 (epg-verify-string, epg-sign-string, epg-encrypt-string):
734 * jka-compr.el (jka-compr-partial-uncompress)
735 (jka-compr-call-process, jka-compr-write-region):
736 * server.el (server-sentinel): Remove optional arg from
737 delete-file, reverting 2010-05-03 change.
738
739 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
740
741 * progmodes/verilog-mode.el (verilog-type-font-keywords): Use
742 font-lock-constant-face, not obsolete font-lock-reference-face.
743
744 2010-05-27 Kenichi Handa <handa@m17n.org>
745
746 * language/hebrew.el (hebrew-shape-gstring): Check if a glyph
747 element of GSTRING is nil.
748
749 2010-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
750
751 * emacs-lisp/smie.el (smie-forward-token-function)
752 (smie-backward-token-function): New vars.
753 (smie-backward-sexp, smie-forward-sexp)
754 (smie-indent-hanging-p, smie-indent-calculate): Use them.
755 (smie-default-backward-token): Rename from smie-backward-token and
756 skip comments.
757 (smie-default-forward-token): Rename from smie-forward-token and
758 skip comments.
759 (smie-next-sexp): Handle nil results from next-token.
760 (smie-indent-calculate): Add a new case for special `fixindent' comments.
761
762 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
763
764 * progmodes/verilog-mode.el (verilog-type-font-keywords):
765 Use font-lock-constant-face, not obsolete font-lock-reference-face.
766
767 2010-05-27 Masatake YAMATO <yamato@redhat.com>
768
769 * htmlfontify.el (hfy-face-resolve-face): New function.
770 (hfy-face-to-style): Use it (Bug#6279).
771
772 2010-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
773
774 * progmodes/ada-xref.el (ada-gnat-parse-gpr):
775 * emulation/edt.el (edt-load-keys): Avoid (expand-file-name ".").
776
777 2010-05-26 Glenn Morris <rgm@gnu.org>
778
779 * emulation/edt.el (edt-load-keys): Use locate-library.
780
781 2010-05-25 Chong Yidong <cyd@stupidchicken.com>
782
783 * log-edit.el (log-edit-strip-single-file-name): Default to nil.
784 (log-edit-changelog-entries): Doc fix.
785 (log-edit-changelog-insert-entries): Args changed.
786 Rename relative filenames in ChangeLog entries. Delete tabs.
787 (log-edit-insert-changelog-entries): Reorganize return value of
788 `log-edit-changelog-entries' to pass filenames to
789 log-edit-changelog-insert-entries.
790
791 2010-05-25 Thierry Volpiatto <thierry.volpiatto@gmail.com>
792
793 * dired.el (dired-mode-map): Rebind "\C-t\C-t" from
794 `image-dired-dired-insert-marked-thumbs' to
795 `image-dired-dired-toggle-marked-thumbs'.
796
797 * image-dired.el: Require cl when compiling.
798 (image-dired-dired-toggle-marked-thumbs): Rename from
799 `image-dired-dired-insert-marked-thumbs'. Add ARG. Doc fix.
800 Use interactive spec "P". Set LOCALP arg of `dired-get-filename'
801 to 'no-dir. Skip files whose names don't match
802 `image-file-name-regexp'. When file has a thumbnail overlay,
803 delete it. (Bug#5270)
804
805 2010-05-25 Juri Linkov <juri@jurta.org>
806
807 * image-mode.el (image-mode): Add image-after-revert-hook to
808 after-revert-hook.
809 (image-after-revert-hook): New function. (Bug#5669)
810
811 2010-05-25 Juri Linkov <juri@jurta.org>
812
813 * image.el (image-animated-p): When delay between animated images
814 is 0, set it to 10 (0.1 sec). (Bug#6258)
815
816 2010-05-25 Christian Lynbech <christian.lynbech@tieto.com> (tiny change)
817
818 * net/tramp.el (tramp-handle-insert-directory): Don't use
819 `forward-word', its default syntax could be changed.
820
821 2010-05-25 Michael Albinus <michael.albinus@gmx.de>
822
823 * net/tramp.el (tramp-progress-reporter-update): New defun.
824 (with-progress-reporter): Use it.
825 (tramp-process-actions):
826 * net/tramp-gvfs.el (tramp-gvfs-handler-askquestion): Preserve
827 current message, in order to let progress reporter continue
828 afterwards. (Bug#6257)
829
830 2010-05-25 Glenn Morris <rgm@gnu.org>
831
832 * net/rcirc.el (rcirc-default-user-name, rcirc-default-full-name):
833 Add :version.
834
835 2010-05-25 Ryan Yeske <rcyeske@gmail.com>
836
837 * net/rcirc.el (rcirc-default-user-name): Change to "user".
838 (rcirc-default-full-name): Change to "unknown".
839 (rcirc-user-name-history): Add variable.
840
841 2010-05-25 Ryan Yeske <rcyeske@gmail.com>
842 Jonathan Rockway <jon@jrock.us>
843
844 * net/rcirc.el (rcirc-server-alist): Add :pass.
845 (rcirc): When prompting for connection parameters, also prompt for
846 username and password.
847 (rcirc-connect): Take a PASS argument. If PASS is non-nil, send
848 value to server when connecting.
849
850 2010-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
851
852 * emacs-lisp/smie.el (smie-set-prec2tab): Check override before use.
853 (smie-merge-prec2s): Pass the tables as separate args.
854 (smie-bnf-precedence-table): Adjust call accordingly.
855 (smie-prec2-levels): Set levels at the end.
856
857 Replace Lisp calls to delete-backward-char by delete-char.
858 * bs.el, expand.el, ido.el, image-dired.el, lpr.el, pcomplete.el,
859 * skeleton.el, term.el, time.el, wid-edit.el, woman.el,
860 * calc/calc-graph.el, calc/calc-help.el, calc/calc-incom.el,
861 * calc/calc.el, emacs-cl-extra.el, emacs-cl-loaddefs.el,
862 * emulation/cua-rect.el, emulation/viper-ex.el, eshell/esh-test.el,
863 * eshell/eshell.el, gnus/gnus-uu.el, gnus/nndoc.el, gnus/nnrss.el,
864 * gnus/rfc2047.el, gnus/utf7.el, international/utf-7.el,
865 * language/ethio-util.el, mh-e/mh-alias.el, mh-e/mh-search.el,
866 * net/imap.el, net/rcirc.el, obsolete/complete.el, play/decipher.el,
867 * progmodes/ada-mode.el, progmodes/cc-awk.el, progmodes/dcl-mode.el,
868 * progmodes/ps-mode.el, progmodes/verilog-mode.el,
869 * progmodes/vhdl-mode.el, textmodes/bibtex.el, textmodes/fill.el,
870 * textmodes/reftex-auc.el, textmodes/rst.el, textmodes/sgml-mode.el,
871 * textmodes/table.el, textmodes/texinfmt.el: Replace Lisp calls to
872 delete-backward-char by calls to delete-char.
873
874 2010-05-25 Kenichi Handa <handa@m17n.org>
875
876 * language/hebrew.el (hebrew-shape-gstring): New function.
877 Register it in composition-function-table for all Hebrew combining
878 characters.
879
880 2010-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
881
882 * epa.el (epa--select-keys): Don't explicitly delete the window since
883 that can fail (e.g. sole window in frame). Use dedication instead.
884
885 2010-05-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
886
887 * textmodes/fill.el (fill-region): Don't fill past the end (bug#6201).
888
889 2010-05-22 Chong Yidong <cyd@stupidchicken.com>
890
891 * image.el (image-refresh): Define as an alias for image-flush.
892
893 * image-mode.el (image-toggle-display-image): Caller changed.
894
895 2010-05-21 Juri Linkov <juri@jurta.org>
896
897 * progmodes/grep.el (grep-read-files): Fix multi-pattern aliases.
898 Remove "all" from grep-files-aliases. Split grep-files-aliases by
899 whitespace, call wildcard-to-regexp on substrings and concat them
900 with "\\|". (Bug#6114)
901
902 2010-05-21 Alan Mackenzie <acm@muc.de>
903
904 * progmodes/cc-engine.el (c-parse-state-get-strategy):
905 Replace parameter `here' with `here-' and `here-plus', which sandwich
906 any pertinent CPP construct.
907 (c-remove-stale-state-cache-backwards): Fix a bug which happens
908 when doing (c-parse-state) in a CPP construct: Exclude any "new"
909 CPP construct from taking part in the scanning.
910
911 2010-05-21 Michael Albinus <michael.albinus@gmx.de>
912
913 * net/tramp.el (tramp-do-copy-or-rename-file)
914 (tramp-handle-file-local-copy, tramp-maybe-open-connection):
915 Tune `with-progress-reporter' messages.
916 (tramp-handle-vc-registered):
917 * net/tramp-fish.el (tramp-fish-handle-file-local-copy)
918 (tramp-fish-handle-insert-file-contents)
919 (tramp-fish-maybe-open-connection):
920 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
921 * net/tramp-imap.el (tramp-imap-do-copy-or-rename-file)
922 (tramp-imap-handle-insert-file-contents)
923 (tramp-imap-handle-file-local-copy): Use `with-progress-reporter'.
924
925 2010-05-21 Juanma Barranquero <lekktu@gmail.com>
926
927 * add-log.el (change-log-font-lock-keywords):
928 Highlight all authors in multi-author entries.
929
930 * smerge-mode.el (smerge-refine-ignore-whitespace)
931 (smerge-refine-weight-hack, smerge-refine, smerge-makeup-conflict):
932 Fix typos in docstrings.
933 (smerge-resolve, smerge-refine-subst): Reflow docstrings.
934
935 2010-05-21 Glenn Morris <rgm@gnu.org>
936
937 * progmodes/fortran.el (fortran-mode):
938 * progmodes/f90.el (f90-mode): Derive from prog-mode.
939
940 * loadup.el [CANNOT_DUMP]: Update for bootstrap-emacs no longer
941 having a relative path in src/Makefile.in.
942
943 2010-05-20 Kevin Ryde <user42@zip.com.au>
944
945 * help-mode.el (help-make-xrefs): For Info node links turn
946 newlines into spaces. Link node names with newlines are matched
947 by help-xref-info-regexp and buttonized, this change ensures they
948 can be followed successfully with RET. (Bug#6206)
949
950 2010-05-20 Juri Linkov <juri@jurta.org>
951
952 * locate.el (locate): Use pop-to-buffer instead of
953 switch-to-buffer-other-window. (Bug#6204)
954
955 2010-05-20 Juri Linkov <juri@jurta.org>
956
957 * replace.el (replace-highlight): Fix lazy-highlighting
958 for `M-s w str M-% str RET'.
959
960 2009-12-15 Masatake YAMATO <yamato@redhat.com>
961
962 * isearch.el (isearch-yank-word-or-char): Pull next subword
963 when `subword-mode' is activated. (Bug#6220)
964
965 2010-05-20 Mark A. Hershberger <mah@everybody.org>
966
967 * isearch.el (isearch-update-post-hook): New hook.
968 (isearch-update): Use the new hook. (Bug#6225)
969
970 2010-05-20 Juri Linkov <juri@jurta.org>
971
972 * isearch.el (isearch-mode-map): Bind more keys to isearch-help-map:
973 [f1], [help], and (char-to-string help-char) instead of "\C-h".
974 (Bug#6222)
975
976 2010-05-20 Juri Linkov <juri@jurta.org>
977
978 * isearch.el (isearch-yank-string): Use isearch-process-search-string.
979 (Bug#6223)
980
981 2010-05-20 Juri Linkov <juri@jurta.org>
982
983 * dired-x.el (dired-jump, dired-jump-other-window): Add arg
984 FILE-NAME to read from the minibuffer when called interactively
985 with prefix argument instead of using buffer-file-name.
986 http://lists.gnu.org/archive/html/emacs-devel/2010-05/msg00534.html
987
988 * dired.el: Update autoloads.
989
990 2010-05-20 Chong Yidong <cyd@stupidchicken.com>
991
992 * nxml/nxml-mode.el (nxml-mode-map): Bind C-c / to
993 nxml-finish-element, for consistency with SGML mode.
994
995 * progmodes/octave-mod.el (octave-mode-map): Bind C-c / to
996 octave-close-block.
997
998 2010-05-20 Juanma Barranquero <lekktu@gmail.com>
999
1000 * composite.el: Require cl when compiling.
1001 (reference-point-alist, compose-gstring-for-graphic)
1002 (compose-gstring-for-terminal): Fix typos in docstrings.
1003
1004 2010-05-19 Juri Linkov <juri@jurta.org>
1005
1006 * emacs-lisp/cl-macs.el (window-parameter): Add defsetf with
1007 set-window-parameter.
1008
1009 2010-05-19 Michael Albinus <michael.albinus@gmx.de>
1010
1011 * net/tramp.el (tramp-methods): Add `tramp-async-args' attribute
1012 where appropriate.
1013 (tramp-maybe-open-connection): Use it.
1014
1015 2010-05-19 Eli Zaretskii <eliz@gnu.org>
1016
1017 * simple.el (move-end-of-line): Make sure we are at line beginning
1018 before backing up to end of previous line.
1019
1020 2010-05-19 Michael Albinus <michael.albinus@gmx.de>
1021
1022 * password-cache.el (password-cache-remove): Fix docstring.
1023
1024 * net/secrets.el: Autoload the widget functions.
1025 (secrets-search-items, secrets-create-item)
1026 (secrets-get-attributes, secrets-expand-item): Attributes will be
1027 stored on the password database without leading ":", as all other
1028 clients do as well.
1029 (secrets-mode): Fix docstring.
1030 (secrets-show-secrets): Provide it as autoloaded command only when
1031 D-Bus support is available. Check existence of Secret Service API.
1032
1033 2010-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
1034
1035 * indent.el (indent-region): Deactivate region (bug#6200).
1036
1037 2010-05-19 Glenn Morris <rgm@gnu.org>
1038
1039 * vc-dir.el (vc-dir): Don't pop-up-windows. (Bug#6204)
1040
1041 2010-05-19 Kenichi Handa <handa@m17n.org>
1042
1043 * composite.el: Register compose-gstring-for-graphic in
1044 composition-function-table only for combining characters (Mn, Mc, Me).
1045
1046 2010-05-18 Jay Belanger <jay.p.belanger@gmail.com>
1047
1048 * calc/calc-trail.el (calc-trail-isearch-forward)
1049 (calc-trail-isearch-backward): Ensure that the new window
1050 point is set correctly.
1051
1052 2010-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
1053
1054 * subr.el (read-quoted-char): Resolve modifiers after key
1055 remapping (bug#6212).
1056
1057 2010-05-18 Michael Albinus <michael.albinus@gmx.de>
1058
1059 Add visualization code for secrets.
1060 * net/secrets.el (secrets-mode): New major mode.
1061 (secrets-show-secrets, secrets-show-collections)
1062 (secrets-expand-collection, secrets-expand-item)
1063 (secrets-tree-widget-after-toggle-function)
1064 (secrets-tree-widget-show-password): New defuns.
1065
1066 2010-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
1067
1068 * emacs-lisp/smie.el (smie-next-sexp): Break inf-loop at BOB.
1069 (smie-backward-sexp, smie-forward-sexp): Remove boundary condition now
1070 handled in smie-next-sexp.
1071 (smie-indent-calculate): Provide a starting indentation (so the
1072 recursion is well-founded ;-).
1073
1074 Fix handling of non-associative equal levels.
1075 * emacs-lisp/smie.el (smie-prec2-levels): Choose distinct levels even
1076 when it's not needed.
1077 (smie-op-left, smie-op-right): New functions.
1078 (smie-next-sexp): New function, extracted from smie-backward-sexp.
1079 Better handle equal levels to distinguish the associative case from
1080 the "multi-keyword construct" case.
1081 (smie-backward-sexp, smie-forward-sexp): Use it.
1082
1083 2010-05-18 Juanma Barranquero <lekktu@gmail.com>
1084
1085 * progmodes/prolog.el (smie-indent-basic): Declare for byte-compiler.
1086
1087 * emacs-lisp/smie.el (smie-precs-precedence-table, smie-backward-sexp)
1088 (smie-forward-sexp, smie-indent-calculate): Fix typos in docstrings.
1089
1090 2010-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
1091
1092 Provide a simple generic indentation engine and use it for Prolog.
1093 * emacs-lisp/smie.el: New file.
1094 * progmodes/prolog.el (prolog-smie-op-levels)
1095 (prolog-smie-indent-rules): New var.
1096 (prolog-mode-variables): Use them to configure SMIE.
1097 (prolog-indent-line, prolog-indent-level): Remove.
1098
1099 2010-05-17 Jay Belanger <jay.p.belanger@gmail.com>
1100
1101 * calc/calc-vec.el (math-vector-avg): Put the vector elements in
1102 order before computing the averages.
1103
1104 2010-05-16 Jay Belanger <jay.p.belanger@gmail.com>
1105
1106 * calc/calc-vec.el (calc-histogram):
1107 (calcFunc-histogram): Allow vectors as inputs.
1108 (math-vector-avg): New function.
1109
1110 * calc/calc-ext.el (math-group-float): Have the number of digits
1111 being grouped depend on the radix (Bug#6189).
1112
1113 2010-05-15 Ken Raeburn <raeburn@raeburn.org>
1114
1115 * version.el (emacs-copyright, emacs-version): Don't define here,
1116 now that emacs.c defines it.
1117
1118 2010-05-15 Eli Zaretskii <eliz@gnu.org>
1119
1120 * international/mule-cmds.el (mule-menu-keymap): Fix definition of
1121 "Describe Language Environment" menu item.
1122
1123 * language/hebrew.el ("Hebrew", "Windows-1255"): Doc fix.
1124
1125 Bidi-sensitive movement with arrow keys.
1126 * subr.el (right-arrow-command, left-arrow-command): New functions.
1127
1128 * bindings.el (global-map): Bind them to right and left arrow keys.
1129
1130 Don't override standard definition of convert-standard-filename.
1131 * files.el (convert-standard-filename): Call
1132 w32-convert-standard-filename and dos-convert-standard-filename on
1133 the corresponding systems.
1134
1135 * w32-fns.el (w32-convert-standard-filename): Rename from
1136 convert-standard-filename. Doc fix.
1137
1138 * dos-fns.el (dos-convert-standard-filename): Doc fix.
1139 (convert-standard-filename): Don't defalias.
1140 (register-name-alist, make-register, register-value)
1141 (set-register-value, intdos): Obsolete aliases for the
1142 corresponding dos-* functions and variables.
1143 (dos-intdos): Add a doc string.
1144
1145 2010-05-15 Jay Belanger <jay.p.belanger@gmail.com>
1146
1147 * calc/calc-aent.el (math-read-token, math-find-user-tokens):
1148 * calc/calc-lang.el (math-read-big-rec, math-lang-read-symbol):
1149 (math-compose-tex-func):
1150 * calc/calccomp.el (math-compose-expr):
1151 * calc/calc-ext.el (math-format-flat-expr-fancy):
1152 * calc/calc-store.el (calc-read-var-name):
1153 * calc/calc-units.el (calc-explain-units-rec): Allow Greek letters.
1154
1155 * calc/calc.el (var-π, var-φ, var-γ): New variables.
1156 * calc/calc-aent.el (math-read-replacement-list): Add "micro" symbol.
1157 * calc/calc-units.el (math-unit-prefixes): Add mu for micro.
1158 (math-standard-units): Add units.
1159
1160 2010-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
1161
1162 * progmodes/asm-mode.el (asm-mode):
1163 * progmodes/prolog.el (prolog-mode): Use define-derived-mode.
1164
1165 * pcomplete.el (pcomplete-completions-at-point): New function,
1166 extracted from pcomplete-std-complete.
1167 (pcomplete-std-complete): Use it.
1168
1169 2010-05-15 Glenn Morris <rgm@gnu.org>
1170
1171 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
1172 Remove references to CVS, RCS and Old directories.
1173
1174 2010-05-14 Jay Belanger <jay.p.belanger@gmail.com>
1175
1176 * calc/calc-bin.el (math-format-twos-complement): Group digits when
1177 appropriate.
1178
1179 2010-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
1180
1181 * progmodes/sh-script.el (sh-mode-default-syntax-table): Remove.
1182 (sh-mode-syntax-table): Give it a default value instead.
1183 (sh-header-marker): Make buffer-local.
1184 (sh-mode): Move make-local-variable to the corresponding setq.
1185 (sh-add-completer): Avoid gratuitously let-binding a buffer-local var.
1186 Use complete-with-action.
1187
1188 * simple.el (prog-mode): New (abstract) major mode.
1189 * emacs-lisp/lisp-mode.el (emacs-lisp-mode, lisp-mode): Use it.
1190 * progmodes/sh-script.el (sh-mode): Remove redundant var assignment.
1191
1192 2010-05-14 Juanma Barranquero <lekktu@gmail.com>
1193
1194 * progmodes/sql.el (sql-oracle-program): Reflow docstring.
1195 (sql-oracle-scan-on, sql-sybase-program, sql-product-font-lock)
1196 (sql-add-product-keywords, sql-highlight-product, sql-set-product)
1197 (sql-make-alternate-buffer-name, sql-placeholders-filter)
1198 (sql-escape-newlines-filter, sql-input-sender)
1199 (sql-send-magic-terminator, sql-sybase): Fix typos in docstrings.
1200
1201 2010-05-13 Chong Yidong <cyd@stupidchicken.com>
1202
1203 Add TeX open-block and close-block keybindings to SGML, and vice versa.
1204
1205 * textmodes/tex-mode.el (tex-mode-map): Bind C-c C-t to
1206 latex-open-block and C-c / to latex-close-block.
1207
1208 * textmodes/sgml-mode.el (sgml-mode-map): Bind C-c C-o to sgml-tag
1209 and C-c C-e to sgml-close-tag.
1210
1211 2010-05-13 Michael Albinus <michael.albinus@gmx.de>
1212
1213 * net/tramp.el (with-progress-reporter): Create reporter object
1214 only when the message would be displayed. Handle nested calls.
1215 (tramp-handle-load, tramp-handle-file-local-copy)
1216 (tramp-handle-insert-file-contents, tramp-handle-write-region)
1217 (tramp-maybe-send-script, tramp-find-shell):
1218 Use `with-progress-reporter'.
1219 (tramp-handle-dired-compress-file, tramp-maybe-open-connection):
1220 Fix message text.
1221
1222 * net/tramp-smb.el (tramp-smb-handle-copy-file)
1223 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
1224 (tramp-smb-handle-write-region, tramp-smb-maybe-open-connection):
1225 Use `with-progress-reporter'.
1226
1227 2010-05-13 Agustín Martín <agustin.martin@hispalinux.es>
1228
1229 * ispell.el (ispell-init-process): Do not kill ispell process
1230 everytime when spellchecking from the minibuffer (bug#6143).
1231
1232 2010-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
1233
1234 * progmodes/sh-script.el (sh-mode): Use define-derived-mode.
1235
1236 * dos-fns.el: Add "dos-" prefix for namespace control.
1237 (convert-standard-filename): Define as alias for
1238 dos-convert-standard-filename but only if applicable.
1239
1240 2010-05-12 Alan Mackenzie <acm@muc.de>
1241
1242 * progmodes/cc-cmds.el (c-beginning-of-defun, c-end-of-defun):
1243 Push the mark at the start of these functions when appropriate.
1244
1245 2010-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
1246
1247 * minibuffer.el (completion-cycle-threshold): New custom var.
1248 (completion--do-completion): Use it.
1249 (minibuffer-complete): Use cycling if appropriate.
1250
1251 2010-05-11 Juanma Barranquero <lekktu@gmail.com>
1252
1253 * dirtrack.el (dirtrackp): Remove defcustom; don't make automatically
1254 buffer-local (it's an obsolete alias for `dirtrack-mode') (bug#6173).
1255
1256 2010-05-11 Juri Linkov <juri@jurta.org>
1257
1258 * scroll-all.el (scroll-all-check-to-scroll):
1259 Add `scroll-up-command' and `scroll-down-command' (bug#6164).
1260
1261 2010-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
1262
1263 * iimage.el (iimage-mode-map): Move initialization into declaration.
1264 (iimage-mode-buffer): Use with-silent-modifications.
1265 Simplify calling convention. Adjust callers.
1266 (iimage-mode): Don't run hook redundantly.
1267
1268 * minibuffer.el (completion-pcm--pattern->regex):
1269 Fix last change (bug#6160).
1270
1271 2010-05-10 Juri Linkov <juri@jurta.org>
1272
1273 Remove nodes visited during Isearch from the Info history.
1274 * info.el (Info-isearch-initial-history)
1275 (Info-isearch-initial-history-list): New variables.
1276 (Info-isearch-start): Record initial values of
1277 Info-isearch-initial-history and Info-isearch-initial-history-list.
1278 Add Info-isearch-end to isearch-mode-end-hook.
1279 (Info-isearch-end): New function.
1280
1281 2010-05-10 Michael Albinus <michael.albinus@gmx.de>
1282
1283 * net/tramp.el (tramp-do-file-attributes-with-stat): Add space in
1284 format string, in order to work around a bug in pdksh.
1285 Reported by Gilles Pion <gpion@lfdj.com>.
1286 (tramp-handle-verify-visited-file-modtime): Do not send a command
1287 when the connection is not established.
1288 (tramp-handle-set-file-times): Simplify the check for utc.
1289
1290 2010-05-10 Juanma Barranquero <lekktu@gmail.com>
1291
1292 Fix use of `filter-buffer-substring' (rework previous change).
1293 * emulation/cua-base.el (cua--filter-buffer-noprops): New function.
1294 (cua-repeat-replace-region):
1295 * emulation/cua-rect.el (cua--extract-rectangle, cua-incr-rectangle):
1296 * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
1297 (cua-cut-region-to-global-mark): Use it.
1298
1299 2010-05-09 Michael R. Mauger <mmaug@yahoo.com>
1300
1301 * progmodes/sql.el: Version 2.1.
1302 (sql-product-alist): Redesign structure of product info.
1303 (sql-product, sql-user, sql-server, sql-database): Safe variables.
1304 (sql-port, sql-port-history): New variables.
1305 (sql-interactive-product): New variable.
1306 (sql-send-terminator): New variable.
1307 (sql-imenu-generic-expression): Add "Types" imenu entry.
1308 (sql-oracle-login-params, sql-sqlite-login-params)
1309 (sql-mysql-login-params, sql-solid-login-params)
1310 (sql-sybase-login-params, sql-informix-login-params)
1311 (sql-ingres-login-params, sql-ms-login-params)
1312 (sql-postgres-login-params, sql-interbase-login-params)
1313 (sql-db2-login-params, sql-linter-login-params)
1314 (sql-oracle-scan-on): New variables.
1315 (sql-mode-map): Add C-c C-i to start interactive mode.
1316 (sql-mode-menu): Update existing menu entries.
1317 (sql-font-lock-keywords-builder): Compile-time font-lock optimization.
1318 (sql-mode-oracle-font-lock-keywords)
1319 (sql-mode-postgres-font-lock-keywords)
1320 (sql-mode-ms-font-lock-keywords)
1321 (sql-mode-sybase-font-lock-keywords)
1322 (sql-mode-informix-font-lock-keywords)
1323 (sql-mode-interbase-font-lock-keywords)
1324 (sql-mode-ingres-font-lock-keywords)
1325 (sql-mode-solid-font-lock-keywords)
1326 (sql-mode-mysql-font-lock-keywords)
1327 (sql-mode-sqlite-font-lock-keywords)
1328 (sql-mode-db2-font-lock-keywords)
1329 (sql-mode-linter-font-lock-keywords): Update initialization to
1330 reduce run-time complexity.
1331 (sql-add-product, sql-del-product): New functions.
1332 (sql-set-product-feature, sql-get-product-feature): New functions.
1333 (sql-product-font-lock): Update product API.
1334 (sql-add-product-keywords): New function.
1335 (sql-highlight-product): Update product API.
1336 (sql-help-list-products): New function.
1337 (sql-help): Dynamically lists free and non-free products.
1338 (sql-get-login): Correct bug in handling history and added
1339 prompt for port.
1340 (sql-copy-column): Copy without properties.
1341 (sqli-input-sender): Apply filters to SQLi input.
1342 (sql-query-placeholders-and-send): Obey `sql-oracle-scan-on' setting.
1343 Implement as a filter.
1344 (sql-escape-newlines-filter): Implement as a filter.
1345 (sql-remove-tabs-filter): New function.
1346 (sql-send-magic-terminator): New function.
1347 (sql-send-string): Implement magic terminator.
1348 (sql-send-region): Use `sql-send-string'.
1349 (sql-interactive-mode): Use product API.
1350 (sql-product-interactive): Use product API.
1351 (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql)
1352 (sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase)
1353 (sql-db2, sql-linter): Use `sql-product-interactive'.
1354 (sql-connect): New function.
1355 (sql-connect-oracle, sql-connect-sybase, sql-connect-informix)
1356 (sql-connect-sqlite, sql-connect-mysql, sql-connect-solid)
1357 (sql-connect-ingres, sql-connect-ms, sql-connect-postgres)
1358 (sql-connect-interbase, sql-connect-db2, sql-connect-linter):
1359 Use `sql-connect'.
1360
1361 2010-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
1362
1363 * minibuffer.el (completion-pcm-complete-word-inserts-delimiters):
1364 New custom variable.
1365 (completion-pcm--string->pattern): Use it.
1366 (completion-pcm--pattern->regex, completion-pcm--pattern->string):
1367 Make it handle any symbol as `any'.
1368 (completion-pcm--merge-completions): Extract common suffix for the new
1369 `prefix' symbol as well.
1370 (completion-substring--all-completions): Use the new `prefix' symbol.
1371
1372 2010-05-09 Michael Albinus <michael.albinus@gmx.de>
1373
1374 * net/tramp-compat.el (byte-compile-not-obsolete-vars): Define if
1375 not bound.
1376 (tramp-compat-copy-file): Add PRESERVE-SELINUX-CONTEXT.
1377 (tramp-compat-funcall): New defmacro.
1378 (tramp-compat-line-beginning-position)
1379 (tramp-compat-line-end-position)
1380 (tramp-compat-temporary-file-directory)
1381 (tramp-compat-make-temp-file, tramp-compat-file-attributes)
1382 (tramp-compat-copy-file, tramp-compat-copy-directory)
1383 (tramp-compat-delete-file, tramp-compat-delete-directory)
1384 (tramp-compat-number-sequence, tramp-compat-process-running-p)
1385 * net/tramp.el (top, with-progress-reporter)
1386 (tramp-rfn-eshadow-setup-minibuffer)
1387 (tramp-rfn-eshadow-update-overlay, tramp-handle-set-file-times)
1388 (tramp-handle-dired-compress-file, tramp-handle-shell-command)
1389 (tramp-completion-mode-p, tramp-check-for-regexp)
1390 (tramp-open-connection-setup-interactive-shell)
1391 (tramp-compute-multi-hops, tramp-read-passwd, tramp-clear-passwd)
1392 (tramp-time-diff, tramp-coding-system-change-eol-conversion)
1393 (tramp-set-process-query-on-exit-flag, tramp-unload-tramp)
1394 * net/tramp-cmds.el (tramp-cleanup-all-connections)
1395 (tramp-reporter-dump-variable, tramp-load-report-modules)
1396 (tramp-append-tramp-buffers)
1397 * net/tramp-gvfs.el (tramp-gvfs-handle-file-selinux-context): Use it.
1398
1399 * net/tramp-imap.el (top): Autoload `epg-make-context'.
1400
1401 2010-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
1402
1403 * progmodes/compile.el (compilation-buffer-modtime): Rename from
1404 buffer-modtime. Adjust users.
1405
1406 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
1407
1408 * international/mule.el (auto-coding-alist): Only purecopy
1409 car of each item, not the whole list (Bug#6083).
1410
1411 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
1412
1413 * progmodes/js.el (js-mode): Make paragraph variables local before
1414 calling c-setup-paragraph-variables (Bug#6071).
1415
1416 2010-05-08 Eli Zaretskii <eliz@gnu.org>
1417
1418 * composite.el (compose-region, reference-point-alist): Fix typos
1419 in the doc strings.
1420
1421 2010-05-08 Alexander Klimov <alserkli@inbox.ru> (tiny change)
1422
1423 * calc/calc-graph.el (calc-graph-plot): Use the proper form for
1424 gnuplot's "set" command.
1425
1426 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
1427
1428 * abbrev.el (last-abbrev-text): Doc fix.
1429 (abbrev-prefix-mark): Don't escape parenthesis.
1430
1431 2010-05-08 Andreas Schwab <schwab@linux-m68k.org>
1432
1433 * composite.el (find-composition): Doc fix.
1434
1435 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
1436
1437 * progmodes/sql.el (sql-electric-stuff): Fix typo in tag.
1438 (sql-oracle-program, sql-sqlite-options)
1439 (sql-query-placeholders-and-send): Doc fixes.
1440 (sql-set-product, sql-interactive-mode): Reflow docstrings.
1441 (sql-imenu-generic-expression, sql-buffer)
1442 (sql-mode-ansi-font-lock-keywords, sql-mode-oracle-font-lock-keywords)
1443 (sql-mode-postgres-font-lock-keywords, sql-mode-ms-font-lock-keywords)
1444 (sql-mode-sybase-font-lock-keywords)
1445 (sql-mode-informix-font-lock-keywords)
1446 (sql-mode-interbase-font-lock-keywords)
1447 (sql-mode-ingres-font-lock-keywords, sql-mode-solid-font-lock-keywords)
1448 (sql-mode-mysql-font-lock-keywords, sql-mode-sqlite-font-lock-keywords)
1449 (sql-mode-db2-font-lock-keywords, sql-mode-font-lock-keywords)
1450 (sql-product-feature, sql-highlight-product)
1451 (comint-line-beginning-position, sql-rename-buffer)
1452 (sql-toggle-pop-to-buffer-after-send-region sql-oracle)
1453 (sql-sybase, sql-informix, sql-sqlite, sql-mysql, sql-solid)
1454 (sql-ingres, sql-ms, sql-postgres, sql-interbase, sql-db2, sql-linter):
1455 Fix typos in docstrings.
1456
1457 2010-05-08 Juri Linkov <juri@jurta.org>
1458
1459 * info.el (Info-fontify-node): Put Info-breadcrumbs to the `display'
1460 property instead of `invisible' and `after-string' (bug#5998).
1461
1462 2010-05-08 Juri Linkov <juri@jurta.org>
1463
1464 * image-mode.el (image-mode-as-text): Fix typo in docstring.
1465
1466 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
1467
1468 * filecache.el (file-cache-add-directory-list)
1469 (file-cache-add-directory-recursively): Fix typos in docstrings.
1470
1471 2010-05-08 Kenichi Handa <handa@m17n.org>
1472
1473 * language/indian.el (gurmukhi-composable-pattern): Fix typo.
1474 (gujarati-composable-pattern): Fix typo.
1475
1476 2010-05-08 Kenichi Handa <handa@m17n.org>
1477
1478 * language/indian.el (oriya-composable-pattern)
1479 (tamil-composable-pattern, malayalam-composable-pattern):
1480 Add two-part vowels to "v" (vowel sign).
1481
1482 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
1483
1484 * files.el (copy-directory): Handle symlinks (Bug#5982).
1485
1486 2010-05-08 Dan Nicolaescu <dann@ics.uci.edu>
1487
1488 * vc-hg.el (vc-hg-state): Use HGRCPATH, not HGRC.
1489 (vc-hg-working-revision): Likewise. Use hg parents, not hg parent
1490 (Bug#5846).
1491
1492 2010-05-08 Glenn Morris <rgm@gnu.org>
1493
1494 * emacs-lisp/lisp.el (lisp-completion-at-point): Give it a doc string.
1495
1496 * minibuffer.el (completion-at-point): Doc fix.
1497
1498 2010-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
1499
1500 * electric.el (Electric-command-loop): Minor tweak.
1501
1502 * ebuff-menu.el (electric-buffer-list): Try and make it behave a bit
1503 better with dedicated windows.
1504
1505 2010-05-07 Chong Yidong <cyd@stupidchicken.com>
1506
1507 * Version 23.2 released.
1508
1509 2010-05-07 Deniz Dogan <deniz.a.m.dogan@gmail.com> (tiny change)
1510 Stefan Monnier <monnier@iro.umontreal.ca>
1511
1512 Highlight vendor specific properties.
1513 * textmodes/css-mode.el (css-proprietary-nmstart-re): New var.
1514 (css-proprietary-property): New face.
1515 (css-font-lock-keywords): Use them.
1516
1517 2010-05-07 Eli Zaretskii <eliz@gnu.org>
1518
1519 * cus-start.el (all): Add native condition for tool-bar-* symbols.
1520
1521 2010-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
1522
1523 * textmodes/dns-mode.el (auto-mode-alist): Add entry for .zone files.
1524 * files.el (auto-mode-alist): Remove redundant entries.
1525
1526 * files.el (auto-save-mode): Move to simple.el to fix bootstrap.
1527 * simple.el (auto-save-mode): Move from files.el.
1528 * minibuffer.el (completion--common-suffix): Fix copy&paste error.
1529
1530 2010-05-07 Christian von Roques <roques@mti.ag> (tiny change)
1531
1532 * lisp/epg.el (epg-key-capablity-alist): Add "D" flag (Bug#5592).
1533
1534 2010-05-07 Katsumi Yamaoka <yamaoka@jpl.org>
1535
1536 * mail/binhex.el (binhex-decode-region-internal)
1537 * mail/uudecode.el (uudecode-decode-region-internal)
1538 * net/dns.el (dns-read-string-name, dns-write, dns-read)
1539 (dns-read-type, dns-query)
1540 * pgg-parse.el (pgg-parse-armor)
1541 * pgg.el (pgg-verify-region)
1542 * sha1.el (sha1-string-external): Don't run set-buffer-multibyte for
1543 XEmacs.
1544
1545 * net/imap.el (imap-disable-multibyte): Redefine it as a macro.
1546
1547 2010-05-07 Juanma Barranquero <lekktu@gmail.com>
1548
1549 * progmodes/cperl-mode.el (cperl-mode-unload-function): New function.
1550
1551 Fix use of `filter-buffer-substring' (4th arg NOPROPS removed).
1552 * emulation/cua-base.el (cua-repeat-replace-region):
1553 * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
1554 (cua-cut-region-to-global-mark):
1555 Remove text properties with `set-text-properties'.
1556
1557 2010-05-06 Michael Albinus <michael.albinus@gmx.de>
1558
1559 * net/tramp.el (top, with-progress-reporter):
1560 Use `symbol-function' inside `funcall'.
1561
1562 * net/tramp-compat.el (tramp-compat-file-attributes)
1563 (tramp-compat-delete-file, tramp-compat-delete-directory):
1564 Handle only `wrong-number-of-arguments' error.
1565
1566 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Fix typo.
1567 (tramp-gvfs-handle-file-selinux-context): Use `symbol-function'
1568 inside `funcall'.
1569
1570 2010-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
1571
1572 * minibuffer.el (completion--sreverse, completion--common-suffix):
1573 New functions.
1574 (completion-pcm--merge-completions): Extract common suffix when safe.
1575
1576 * emacs-lisp/easy-mmode.el (define-minor-mode):
1577 Make :variable more flexible.
1578 * files.el (auto-save-mode): Use it to define using define-minor-mode.
1579
1580 2010-05-05 Juri Linkov <juri@jurta.org>
1581
1582 Add `slow' and `history' tags to the desktop data.
1583
1584 * info.el (Info-virtual-nodes) [*Index*]: Add `slow' tag.
1585 (Info-virtual-files) [*Apropos*]: Add `slow' tag.
1586 (Info-finder-find-node): Require `finder.el' to be able
1587 to restore node from the desktop.
1588 (Info-desktop-buffer-misc-data): Save all nodes. Save additional
1589 data `Info-history' and `slow' tag in the assoc list.
1590 (Info-restore-desktop-buffer): Don't restore nodes with the
1591 `slow' tag. Restore `Info-history'.
1592
1593 2010-05-05 Michael Albinus <michael.albinus@gmx.de>
1594
1595 Add FORCE argument to `delete-file'.
1596
1597 * net/ange-ftp.el (ange-ftp-del-tmp-name): Make it a defun,
1598 forcing to delete the temporary file.
1599 (ange-ftp-delete-file): Add FORCE arg.
1600 (ange-ftp-rename-remote-to-remote)
1601 (ange-ftp-rename-local-to-remote, ange-ftp-rename-remote-to-local)
1602 (ange-ftp-load, ange-ftp-compress, ange-ftp-uncompress):
1603 Force file deletion.
1604
1605 * net/tramp-compat.el (tramp-compat-delete-file): New defun.
1606
1607 * net/tramp.el (tramp-handle-delete-file): Add FORCE arg.
1608 (tramp-handle-make-symbolic-link, tramp-handle-load)
1609 (tramp-do-copy-or-rename-file-via-buffer)
1610 (tramp-do-copy-or-rename-file-directly)
1611 (tramp-do-copy-or-rename-file-out-of-band)
1612 (tramp-handle-process-file, tramp-handle-call-process-region)
1613 (tramp-handle-shell-command, tramp-handle-file-local-copy)
1614 (tramp-handle-insert-file-contents, tramp-handle-write-region)
1615 (tramp-delete-temp-file-function): Use `tramp-compat-delete-file'.
1616
1617 * net/tramp-fish.el (tramp-fish-handle-delete-file): Add FORCE arg.
1618 (tramp-fish-handle-make-symbolic-link)
1619 (tramp-fish-handle-process-file): Use `tramp-compat-delete-file'.
1620
1621 * net/tramp-ftp.el (tramp-ftp-file-name-handler):
1622 Use `tramp-compat-delete-file'.
1623
1624 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Add FORCE arg.
1625 (tramp-gvfs-handle-write-region): Use `tramp-compat-delete-file'.
1626
1627 * net/tramp-imap.el (tramp-imap-handle-delete-file): Add FORCE arg.
1628 (tramp-imap-do-copy-or-rename-file): Use `tramp-compat-delete-file'.
1629
1630 * net/tramp-smb.el (tramp-smb-handle-delete-file): Add FORCE arg.
1631 (tramp-smb-handle-copy-file, tramp-smb-handle-file-local-copy)
1632 (tramp-smb-handle-rename-file, tramp-smb-handle-write-region): Use
1633 `tramp-compat-delete-file'.
1634
1635 2010-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
1636
1637 Minor cleanups.
1638 * subr.el (add-minor-mode): Use push.
1639 * mail/supercite.el (sc-electric-mode): Use more descriptive arg name.
1640 * emulation/edt.el (edt-select-mode): Simplify.
1641
1642 Use define-minor-mode in more cases.
1643 * term/tvi970.el (tvi970-set-keypad-mode):
1644 * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
1645 (normal-erase-is-backspace-mode):
1646 * scroll-bar.el (scroll-bar-mode): Use it and define-minor-mode.
1647 (set-scroll-bar-mode-1): (Re)move to its sole caller.
1648 (get-scroll-bar-mode): New function.
1649 * emacs-lisp/cl-macs.el (eq): Handle a non-variable first arg.
1650
1651 Use define-minor-mode for less obvious cases.
1652 * emacs-lisp/easy-mmode.el (define-minor-mode): Add :variable keyword.
1653 * emacs-lisp/cl-macs.el (terminal-parameter, eq): Add setf method.
1654 * international/iso-ascii.el (iso-ascii-mode):
1655 * frame.el (auto-raise-mode, auto-lower-mode):
1656 * composite.el (global-auto-composition-mode): Use define-minor-mode.
1657
1658 2010-05-04 Michael Albinus <michael.albinus@gmx.de>
1659
1660 * net/tramp.el (tramp-methods): Remove "-q" from `tramp-login-args'
1661 in order to see error messages for failed logins.
1662
1663 2010-05-03 Chong Yidong <cyd@stupidchicken.com>
1664
1665 * diff.el (diff-sentinel):
1666
1667 * epg.el (epg--make-temp-file, epg-decrypt-string)
1668 (epg-verify-string, epg-sign-string, epg-encrypt-string):
1669
1670 * jka-compr.el (jka-compr-partial-uncompress)
1671 (jka-compr-call-process, jka-compr-write-region, jka-compr-load):
1672
1673 * server.el (server-sentinel): Use delete-file's new FORCE arg
1674 (Bug#6070).
1675
1676 2010-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
1677
1678 Use define-minor-mode where applicable.
1679 * view.el (view-mode):
1680 * type-break.el (type-break-query-mode)
1681 (type-break-mode-line-message-mode):
1682 * textmodes/reftex.el (reftex-mode):
1683 * term/vt100.el (vt100-wide-mode):
1684 * tar-mode.el (tar-subfile-mode):
1685 * savehist.el (savehist-mode):
1686 * ibuf-ext.el (ibuffer-auto-mode):
1687 * composite.el (auto-composition-mode):
1688 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
1689 Use define-minor-mode.
1690 (vhdl-mode): Use static mode-line format.
1691 (vhdl-mode-line-update): Delete.
1692 (vhdl-create-mode-menu, vhdl-activate-customizations)
1693 (vhdl-hs-minor-mode): Don't bother calling it.
1694
1695 2010-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
1696
1697 * simple.el (with-wrapper-hook): Move.
1698 (buffer-substring-filters): Mark obsolete.
1699 (filter-buffer-substring-functions): New variable.
1700 (filter-buffer-substring): Use it. Remove unused arg `noprops'.
1701
1702 Use a mode-line spec rather than a static string in Semantic.
1703 * cedet/semantic/util-modes.el:
1704 (semantic-minor-modes-format): New var to replace...
1705 (semantic-minor-modes-status): Remove.
1706 (semantic-mode-line-update): Construct a mode-line spec rather than
1707 a static string so that mouse buttons can be used on individual minor
1708 modes and so that semantic-mode-line-update only needs to be called
1709 when global settings are changed.
1710 (semantic-add-minor-mode, semantic-toggle-minor-mode-globally):
1711 Call semantic-mode-line-update.
1712 (semantic-toggle-minor-mode-globally): Don't assume mode is on
1713 minor-mode-alist, check semantic-minor-mode-alist as well.
1714 (semantic-stickyfunc-mode, semantic-show-parser-state-auto-marker)
1715 (semantic-show-parser-state-marker, semantic-show-parser-state-mode)
1716 (semantic-show-unmatched-syntax-mode, semantic-highlight-edits-mode):
1717 * cedet/semantic/mru-bookmark.el (semantic-mru-bookmark-mode):
1718 * cedet/semantic/idle.el (semantic-idle-scheduler-mode)
1719 (define-semantic-idle-service, semantic-idle-summary-mode):
1720 * cedet/semantic/decorate/mode.el (semantic-decoration-mode):
1721 Don't call semantic-mode-line-update any more.
1722
1723 2010-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
1724
1725 Use define-minor-mode in CEDET where applicable.
1726
1727 * cedet/srecode/mode.el (srecode-minor-mode,global-srecode-minor-mode):
1728 Use define-minor-mode.
1729
1730 * cedet/semantic/util-modes.el (semantic-add-minor-mode):
1731 Remove unused arg `keymap' and code redundant with define-minor-mode.
1732 (semantic-toggle-minor-mode-globally): Only handle arg -1 and 1.
1733 (semantic-stickyfunc-mode, global-semantic-show-unmatched-syntax-mode)
1734 (semantic-highlight-func-mode, global-semantic-show-parser-state-mode)
1735 (global-semantic-highlight-edits-mode, semantic-highlight-edits-mode)
1736 (semantic-show-unmatched-syntax-mode, semantic-show-parser-state-mode)
1737 (global-semantic-stickyfunc-mode, global-semantic-highlight-func-mode):
1738 Use define-minor-mode.
1739 (semantic-stickyfunc-mode-setup, semantic-highlight-edits-mode-setup)
1740 (semantic-show-unmatched-syntax-mode-setup)
1741 (semantic-show-parser-state-mode-setup)
1742 (semantic-highlight-func-mode-setup): Inline into sole caller.
1743
1744 * cedet/semantic/mru-bookmark.el (global-semantic-mru-bookmark-mode)
1745 (semantic-mru-bookmark-mode): Use define-minor-mode.
1746 (semantic-mru-bookmark-mode-setup): Inline into sole caller.
1747
1748 * cedet/semantic/idle.el (define-semantic-idle-service):
1749 Use define-minor-mode and inline setup function into its sole caller.
1750 (semantic-idle-scheduler-mode-setup)
1751 (semantic-idle-summary-mode-setup): Inline into sole caller.
1752 (global-semantic-idle-scheduler-mode, semantic-idle-scheduler-mode):
1753 Use define-minor-mode.
1754
1755 * cedet/semantic/decorate/mode.el (global-semantic-decoration-mode)
1756 (semantic-decoration-mode): Use define-minor-mode.
1757 (semantic-decoration-mode-setup): Inline into sole caller.
1758
1759 * cedet/ede/dired.el (ede-dired-minor-mode): Initialize in declaration.
1760 (ede-dired-minor-mode): Use define-minor-mode and derived-mode-p.
1761 (ede-dired-add-to-target): Use dolist.
1762
1763 2010-05-01 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
1764 Michael Albinus <michael.albinus@gmx.de>
1765
1766 Implement compression for inline methods.
1767
1768 * net/tramp.el (tramp-inline-compress-start-size): New defcustom.
1769 (tramp-copy-size-limit): Allow also nil.
1770 (tramp-inline-compress-commands): New defconst.
1771 (tramp-find-inline-compress, tramp-get-inline-compress)
1772 (tramp-get-inline-coding): New defuns.
1773 (tramp-get-remote-coding, tramp-get-local-coding): Remove,
1774 replaced by `tramp-get-inline-coding'.
1775 (tramp-handle-file-local-copy, tramp-handle-write-region)
1776 (tramp-method-out-of-band-p): Use `tramp-get-inline-coding'.
1777
1778 2010-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
1779
1780 * bindings.el (mode-line-abbrev-mode, mode-line-auto-fill-mode):
1781 Remove unused functions.
1782
1783 * emacs-lisp/lisp-mode.el (lisp-mode): Use define-derived-mode.
1784 Set find-tag-default-function as a variable rather than a property.
1785
1786 * minibuffer.el (tags-completion-at-point-function): Move to etags.el.
1787 * progmodes/etags.el (tags-completion-at-point-function):
1788 Remove left over interactive spec. Add autoloading stub.
1789 (complete-tag): Use tags-completion-at-point-function.
1790
1791 2010-04-30 Chong Yidong <cyd@stupidchicken.com>
1792
1793 * minibuffer.el (tags-completion-at-point-function): Fix return value.
1794
1795 2010-04-29 Chong Yidong <cyd@stupidchicken.com>
1796
1797 * ido.el (ido-init-completion-maps): Remove C-v binding.
1798 (ido-minibuffer-setup): Don't set cua-inhibit-cua-keys (Bug#5765).
1799
1800 2010-04-29 Chong Yidong <cyd@stupidchicken.com>
1801
1802 * minibuffer.el (tags-completion-at-point-function): New function.
1803 (completion-at-point-functions): Use it.
1804
1805 * cedet/semantic.el (semantic-completion-at-point-function): New function.
1806 (semantic-mode): Use semantic-completion-at-point-function for
1807 completion-at-point-functions instead.
1808
1809 * progmodes/etags.el (complete-tag): Revert last change.
1810
1811 2010-04-29 Alan Mackenzie <acm@muc.de>
1812
1813 * progmodes/cc-mode.el (c-extend-region-for-CPP): Fix an
1814 off-by-one error (in end of macro position).
1815
1816 2010-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
1817
1818 * net/browse-url.el (browse-url-firefox-program): Use iceweasel if
1819 firefox is absent. Don't autoload.
1820 (browse-url-galeon-program): Don't autoload.
1821
1822 2010-04-28 Chong Yidong <cyd@stupidchicken.com>
1823
1824 * bindings.el (complete-symbol): Move into minibuffer.el.
1825
1826 * minibuffer.el (complete-tag): Move from etags.el. If tags
1827 completion cannot be performed, return nil instead of signalling
1828 an error.
1829 (completion-at-point): Make it an alias for complete-symbol.
1830 (complete-symbol): Move from bindings.el, and replace with the
1831 body of completion-at-point.
1832
1833 * progmodes/etags.el (complete-tag): Move to minibuffer.el.
1834
1835 * cedet/semantic.el (semantic-mode): When enabled, add
1836 semantic-ia-complete-symbol to completion-at-point-functions.
1837
1838 * cedet/semantic/ia.el (semantic-ia-complete-symbol): Return nil
1839 if Semantic is not active.
1840
1841 2010-04-28 Michael Albinus <michael.albinus@gmx.de>
1842
1843 * net/tramp.el (tramp-remote-selinux-p): New defun.
1844 (tramp-handle-file-selinux-context)
1845 (tramp-handle-set-file-selinux-context): Use it.
1846
1847 2010-04-28 Sam Steingold <sds@gnu.org>
1848
1849 * progmodes/bug-reference.el (bug-reference-url-format): Mark as
1850 `safe-local-variable' if the value is a string or a symbol with
1851 the property `bug-reference-url-format'.
1852
1853 2010-04-28 Chong Yidong <cyd@stupidchicken.com>
1854
1855 * progmodes/bug-reference.el (bug-reference-url-format): Revert
1856 2010-04-27 change due to security risk.
1857
1858 2010-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
1859
1860 Make it possible to locally disable a globally enabled mode.
1861 * simple.el (fundamental-mode): Run fundamental-mode-hook.
1862 * emacs-lisp/derived.el (define-derived-mode): Use fundamental-mode
1863 rather than kill-all-local-variables so it runs fundamental-mode-hook.
1864 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
1865 Use fundamental-mode-hook to run MODE-enable-in-buffers earlier, so
1866 that subsequent hooks get a chance to disable it.
1867
1868 2010-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
1869
1870 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
1871 Avoid re-enabling a minor mode after the user turned the minor mode
1872 off if MODE-enable-in-buffers is run twice (typically once from
1873 fundamental-mode's after-change-major-mode-hook and a second time from
1874 run-mode-hook's own after-change-major-mode-hook).
1875
1876 * emacs-lisp/lisp.el (lisp-complete-symbol): Fail gracefully.
1877
1878 2010-04-27 Sam Steingold <sds@gnu.org>
1879
1880 * progmodes/bug-reference.el (bug-reference-url-format): Mark as
1881 `safe-local-variable' if the value is a string or a function, as
1882 documented and implemented on 2010-04-02.
1883
1884 2010-04-27 Juanma Barranquero <lekktu@gmail.com>
1885
1886 * ido.el (ido-buffer-internal): Bind `ido-use-virtual-buffers' to nil
1887 when method is 'kill.
1888
1889 2010-04-27 Agustín Martín <agustin.martin@hispalinux.es>
1890
1891 * ispell.el (ispell-init-process): Fix personal dictionary condition
1892 in default directory check.
1893 (ispell-init-process,ispell-kill-ispell,kill-buffer-hook):
1894 Kill ispell process when killing its associated buffer.
1895
1896 2010-04-27 Jan Djärv <jan.h.d@swipnet.se>
1897
1898 * desktop.el (desktop-kill): ask-if-new: Ask if desktop file exists,
1899 but we aren't using it.
1900
1901 2010-04-25 Jan Djärv <jan.h.d@swipnet.se>
1902
1903 * tool-bar.el (tool-bar-local-item-from-menu): Revert unintended
1904 checkin in 2010-04-23T16:26:11Z!monnier@iro.umontreal.ca.
1905
1906 2010-04-24 Glenn Morris <rgm@gnu.org>
1907
1908 * emacs-lisp/authors.el (authors-obsolete-files-regexps):
1909 Ignore VCS-ignore files, and deleted nextstep preferences files.
1910 (authors-ignored-files): Ignore deleted cedet test files, and "*.el".
1911 (authors-ambiguous-files): New list.
1912 (authors-valid-file-names): Add some deleted files.
1913 (authors-renamed-files-alist): Add font-setting.el, edt-user.doc.
1914 (authors-disambiguate-file-name): New function. (Bug#5501)
1915 (authors-canonical-file-name): Doc fix.
1916 Don't warn about obsolete files.
1917 (authors-canonical-file-name, authors-scan-el):
1918 Use authors-disambiguate-file-name.
1919
1920 * hfy-cmap.el (htmlfontify-load-rgb-file, hfy-fallback-colour-values):
1921 Add autoload cookies.
1922 (htmlfontify-unload-rgb-file, hfy-fallback-colour-values): Add docs.
1923 (generated-autoload-file): Set file-local value to "htmlfontify.el".
1924 * htmlfontify.el (caddr, cadddr): Remove fallback definitions.
1925 They have definitions / compiler macros in cl.el.
1926 (htmlfontify-load-rgb-file, hfy-fallback-colour-values):
1927 Replace manual autoloads with generated ones.
1928 (htmlfontify-unload-rgb-file): Remove autoload.
1929 * Makefile.in (autoloads): Ensure htmlfontify.el is writable.
1930
1931 2010-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
1932
1933 * emacs-lisp/bytecomp.el (byte-compile-set-default): New function.
1934 (byte-compile-setq-default): Optimize for the
1935 single-var case and don't call byte-compile-form in this case to avoid
1936 inf-loop with byte-compile-set-default.
1937
1938 * progmodes/compile.el (compilation-start): Abbreviate default directory.
1939
1940 2010-04-23 Michael Albinus <michael.albinus@gmx.de>
1941
1942 Implement SELINUX backends.
1943
1944 * net/tramp.el (tramp-file-name-handler-alist):
1945 Add `file-selinux-context' and `set-file-selinux-context'.
1946 (tramp-handle-file-selinux-context)
1947 (tramp-handle-set-file-selinux-context): New defuns.
1948 (tramp-handle-copy-file, tramp-do-copy-or-rename-file):
1949 Handle PRESERVE-SELINUX-CONTEXT.
1950
1951 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
1952 Add `file-selinux-context' and `set-file-selinux-context'.
1953 (tramp-gvfs-handle-file-selinux-context)
1954 (tramp-gvfs-handle-set-file-selinux-context): New defuns.
1955 (tramp-gvfs-handle-copy-file): Handle PRESERVE-SELINUX-CONTEXT.
1956
1957 * net/ange-ftp.el (ange-ftp-copy-file):
1958 * net/tramp-fish.el (tramp-fish-handle-copy-file):
1959 * net/tramp-imap.el (tramp-imap-handle-copy-file):
1960 * net/tramp-smb.el (tramp-smb-handle-copy-file):
1961 Add PRESERVE-SELINUX-CONTEXT.
1962
1963 2010-04-22 Michael Albinus <michael.albinus@gmx.de>
1964
1965 Synchronize with Tramp repository.
1966
1967 * net/tramp.el (with-connection-property, tramp-completion-mode-p)
1968 (tramp-action-process-alive, tramp-action-out-of-band)
1969 (tramp-check-for-regexp, tramp-file-name-p, tramp-equal-remote)
1970 (tramp-exists-file-name-handler): Fix docstring.
1971 (with-progress-reporter): New defmacro.
1972 (tramp-do-copy-or-rename-file, tramp-handle-dired-compress-file)
1973 (tramp-maybe-open-connection): Use it.
1974
1975 2010-04-22 Noah Lavine <noah549@gmail.com> (tiny change)
1976
1977 Detect ssh 'ControlMaster' argument automatically in some cases.
1978
1979 * net/tramp.el (tramp-detect-ssh-controlmaster): New defun.
1980 (tramp-default-method): Use it.
1981
1982 2010-04-22 Michael Albinus <michael.albinus@gmx.de>
1983
1984 * net/tramp.el (tramp-handle-copy-file): Add new optional
1985 parameter `preserve-selinux-context'.
1986 (tramp-file-name-for-operation): Add `set-file-selinux-context'.
1987
1988 2010-04-22 Michael Albinus <michael.albinus@gmx.de>
1989
1990 * net/tramp.el (tramp-completion-handle-file-name-all-completions):
1991 Ensure, that non remote files are still checked. Oops.
1992
1993 2010-04-21 Michael Albinus <michael.albinus@gmx.de>
1994
1995 Fix Bug#5840.
1996
1997 * icomplete.el (icomplete-completions): Use `non-essential'.
1998
1999 * net/tramp.el (tramp-connectable-p): New defun.
2000 (tramp-handle-expand-file-name)
2001 (tramp-completion-handle-file-name-all-completions)
2002 (tramp-completion-handle-file-name-completion): Use it.
2003
2004 2010-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
2005
2006 * emacs-lisp/lisp.el (lisp-completion-at-point): Try and handle errors.
2007
2008 2010-04-21 Jan Djärv <jan.h.d@swipnet.se>
2009
2010 * vc-dir.el (vc-dir-tool-bar-map): Add :label on some tool bar items.
2011
2012 * tool-bar.el (tool-bar-setup): Add :label on some tool bar items.
2013
2014 * loadup.el: Load dynamic-setting.el if feature dynamic-setting
2015 is present.
2016
2017 * info.el (info-tool-bar-map): Add labels.
2018
2019 * cus-start.el (all): Add tool-bar-style and tool-bar-max-label-size.
2020
2021 * cus-edit.el (custom-commands): Add labels for tool bar.
2022 (custom-buffer-create-internal, Custom-mode): Adjust for
2023 labels in custom-commands.
2024
2025 * dynamic-setting.el: Renamed from font-setting.el.
2026
2027 2010-04-21 John Wiegley <jwiegley@gmail.com>
2028
2029 * ido.el (ido-init-completion-maps): For ido-switch-buffer, C-o
2030 toggles the use of virtual buffers.
2031 (ido-buffer-internal): Guard `ido-use-virtual-buffers' global
2032 value.
2033 (ido-toggle-virtual-buffers): New function.
2034
2035 2010-04-21 Juanma Barranquero <lekktu@gmail.com>
2036
2037 Use `define-derived-mode'; fix window selection; doc fixes.
2038 * play/tetris.el (tetris, tetris-update-speed-function)
2039 (tetris-tty-colors, tetris-x-colors, tetris-move-bottom)
2040 (tetris-move-left, tetris-move-right, tetris-rotate-prev)
2041 (tetris-rotate-next, tetris-end-game, tetris-start-game)
2042 (tetris-pause-game): Fix typos in docstrings.
2043 (tetris-mode-map, tetris-null-map):
2044 Move initialization into declaration.
2045 (tetris-mode): Define with `define-derived-mode';
2046 set show-trailing-whitespace to nil.
2047 (tetris): Prefer window already displaying the "*Tetris*" buffer.
2048
2049 2010-04-21 Karel Klíč <kklic@redhat.com>
2050
2051 * files.el (backup-buffer): Handle SELinux context, and return it
2052 if a backup was made by renaming.
2053 (backup-buffer-copy): Set SELinux context to the target file.
2054 (basic-save-buffer): Set SELinux context of the newly written file.
2055 (basic-save-buffer-1): Now it also returns any SELinux context.
2056 (basic-save-buffer-2): Set SELinux context of the newly created file,
2057 and return it.
2058 * net/tramp.el (tramp-file-name-for-operation):
2059 Add file-selinux-context.
2060
2061 2010-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
2062
2063 Make the log-edit comments use RFC822 format throughout.
2064
2065 * vc.el (vc-checkin, vc-modify-change-comment):
2066 Adjust to new vc-start/finish-logentry.
2067 (vc-find-conflicted-file): New command.
2068 (vc-transfer-file): Adjust to new vc-checkin.
2069 (vc-next-action): Improve scoping.
2070
2071 * vc-hg.el (vc-hg-log-edit-mode): Remove.
2072 (vc-hg-checkin): Remove extra arg. Use log-edit-extract-headers.
2073
2074 * vc-git.el (vc-git-log-edit-mode): Remove.
2075 (vc-git-checkin): Remove extra arg. Use log-edit-extract-headers.
2076 (vc-git-commits-coding-system): Rename from git-commits-coding-system.
2077
2078 * vc-dispatcher.el (vc-log-edit): Shorten names for log-edit-show-files.
2079 (vc-start-logentry): Remove argument `extra'.
2080 (vc-finish-logentry): Remove extra args.
2081
2082 * vc-bzr.el (vc-bzr-log-edit-mode): Remove.
2083 (vc-bzr-checkin): Remove extra arg. Use log-edit-extract-headers.
2084 (vc-bzr-conflicted-files): New function.
2085
2086 * log-edit.el (log-edit-extra-flags)
2087 (log-edit-before-checkin-process): Remove.
2088 (log-edit-summary, log-edit-header, log-edit-unknown-header): New faces.
2089 (log-edit-headers-alist): New var.
2090 (log-edit-header-contents-regexp): New const.
2091 (log-edit-match-to-eoh): New function.
2092 (log-edit-font-lock-keywords): Use them.
2093 (log-edit): Insert a "Summary:" header as default.
2094 (log-edit-mode): Mark font-lock rules as case-insensitive.
2095 (log-edit-done): Cleanup headers.
2096 (log-view-process-buffer): Remove.
2097 (log-edit-extract-headers): New function to replace it.
2098
2099 2010-04-20 Juanma Barranquero <lekktu@gmail.com>
2100
2101 * subr.el (default-direction-reversed): Remove obsolescence info.
2102
2103 2010-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
2104
2105 * vc-dispatcher.el (vc-finish-logentry): Don't mess so badly with the
2106 windows/frames.
2107
2108 * emacs-lisp/lisp.el (lisp-completion-at-point): Complete around point.
2109 I.e. include text after point in the completion region.
2110 Also, return nil when we're not after/in a symbol.
2111
2112 * international/mule-cmds.el (view-hello-file): Don't fiddle with the
2113 default enable-multibyte-characters.
2114
2115 2010-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
2116
2117 * international/mule.el: Help the user choose a valid coding-system.
2118 (read-buffer-file-coding-system): New function.
2119 (set-buffer-file-coding-system): Use it. Prompt the user if the
2120 coding-system cannot encode all the chars.
2121
2122 * vc-bzr.el: Use standard *vc* and *vc-diff* buffers.
2123 (vc-bzr-shelve-show, vc-bzr-shelve-apply)
2124 (vc-bzr-shelve-apply-and-keep, vc-bzr-shelve-snapshot):
2125 Don't use *vc-bzr-shelve*.
2126
2127 2010-04-19 Chong Yidong <cyd@stupidchicken.com>
2128
2129 * cedet/ede/pmake.el (ede-proj-makefile-insert-variables):
2130 Don't destroy list before using it.
2131
2132 2010-04-19 Dan Nicolaescu <dann@ics.uci.edu>
2133
2134 Fix the version number for added files.
2135 * vc-hg.el (vc-hg-working-revision): Check if the file is
2136 registered after hg parent fails (Bug#5961).
2137
2138 2010-04-19 Glenn Morris <rgm@gnu.org>
2139
2140 * htmlfontify.el (htmlfontify-buffer)
2141 (htmlfontify-copy-and-link-dir): Autoload entry points.
2142
2143 2010-04-19 Magnus Henoch <magnus.henoch@gmail.com>
2144
2145 * vc-hg.el (vc-hg-annotate-extract-revision-at-line): Expand file
2146 name relative to the project root (Bug#5960).
2147
2148 2010-04-19 Glenn Morris <rgm@gnu.org>
2149
2150 * vc-git.el (vc-git-print-log): Doc fix.
2151
2152 2010-04-19 Óscar Fuentes <ofv@wanadoo.es>
2153
2154 * ido.el (ido-file-internal): Fix 2009-12-02 change.
2155
2156 2010-04-19 Christoph <cschol2112@googlemail.com> (tiny change)
2157
2158 * progmodes/grep.el (grep-compute-defaults): Fix handling of host
2159 default settings (Bug#5928).
2160
2161 2010-04-19 Glenn Morris <rgm@gnu.org>
2162
2163 * progmodes/fortran.el (fortran-match-and-skip-declaration):
2164 New function.
2165 (fortran-font-lock-keywords-3): Use it. (Bug#1385)
2166
2167 2010-04-19 Kenichi Handa <handa@m17n.org>
2168
2169 * language/indian.el (malayalam-composable-pattern): Fix previous
2170 change (add U+0D4D "SIGN VIRAMA").
2171 (oriya-composable-pattern): Add U+0B30 and fix typo in the regexp.
2172 (tamil-composable-pattern): Fix typo in the regexp.
2173 (telugu-composable-pattern): Fix U+0C4D and typo in the regexp.
2174 (kannada-composable-pattern): Fix U+0CB0 and typo in the regexp.
2175 (malayalam-composable-pattern): Fix U+0D4D and typo in the regexp.
2176
2177 2010-04-19 Chong Yidong <cyd@stupidchicken.com>
2178
2179 * textmodes/tex-mode.el (latex-mode): Revert 2008-03-03 change to
2180 paragraph-separate (Bug#5821).
2181
2182 2010-04-19 Juri Linkov <juri@jurta.org>
2183
2184 Put breadcrumbs on overlay instead of inserting to buffer (bug#5809).
2185
2186 * info.el (Info-find-node-2): Comment out code that skips
2187 breadcrumbs line.
2188 (Info-mouse-follow-link): New command.
2189 (Info-link-keymap): New keymap.
2190 (Info-breadcrumbs): Rename from `Info-insert-breadcrumbs'.
2191 Return a string with links instead of inserting breadcrumbs
2192 to the Info buffer.
2193 (Info-fontify-node): Comment out code that inserts breadcrumbs.
2194 Instead of putting the `invisible' text property over the Info
2195 header, make an overlay over the Info header with the `invisible'
2196 property and `after-string' set to the string returned by
2197 `Info-breadcrumbs'.
2198
2199 2010-04-19 Chong Yidong <cyd@stupidchicken.com>
2200
2201 * help.el (help-window-setup-finish): Doc fix (Bug#5830).
2202 Reported by monkey@sandpframing.com.
2203
2204 2010-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
2205
2206 * tmm.el (tmm-prompt): Remove obsolete call to x-popup-menu.
2207 (tmm-get-keymap): Add key-binding shortcuts now that they're not
2208 available in the "keyseq cache" any more.
2209
2210 * custom.el (defcustom): Add edebug spec.
2211
2212 2010-04-18 Juri Linkov <juri@jurta.org>
2213
2214 Test for special mode-class in view-buffer instead of view-file (bug#5513).
2215
2216 * view.el (view-file, view-buffer): Move test for special mode-class
2217 from view-file to view-buffer.
2218
2219 * tar-mode.el (tar-extract): Turn if's into one cond
2220 like in arc-mode.el.
2221
2222 2010-04-18 Juri Linkov <juri@jurta.org>
2223
2224 Add 7z archive format support (bug#5475).
2225
2226 * arc-mode.el (archive-zip-extract): Try to find 7z executable.
2227 (archive-7z-extract): New defcustom.
2228 (archive-find-type): Add magic string for 7z.
2229 (archive-extract-by-stdout): Add new optional arg `stderr-file'.
2230 If `stderr-file' is non-nil, use `(t stderr-file)' for the
2231 `buffer' arg of `call-process'.
2232 (archive-zip-extract): Check `archive-zip-extract' for "7z" and
2233 call the function `archive-7z-extract' with the variable
2234 `archive-7z-extract' let-bound to `archive-zip-extract'.
2235 (archive-7z-summarize, archive-7z-extract): New functions.
2236
2237 * international/mule.el (auto-coding-alist):
2238 * files.el (auto-mode-alist): Add 7z file extension.
2239
2240 2010-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
2241
2242 * loadup.el: Setup hash-cons for pure data.
2243
2244 Fix duplicate entries in cedet's loaddefs.el files.
2245 * emacs-lisp/autoload.el (autoload-file-load-name): Be more clever.
2246 Should make most file-local generated-autoload-file unnecessary.
2247 (print-readably): Silence warnings.
2248 (autoload-find-destination): Take load-name as an arg to make sure
2249 it's the same as the one that will be in the file.
2250 (autoload-generate-file-autoloads): Adjust to above changes.
2251 Try to make the dataflow a bit simpler.
2252
2253 * cvs-status.el (cvs-refontify): Remove unused.
2254
2255 2010-04-18 Jay Belanger <jay.p.belanger@gmail.com>
2256
2257 * calc.el (calc-mode-map): Bind "O" to `calc-missing-key'.
2258
2259 * calc-bin.el (calc-radix): Have the "O" option turn on
2260 twos-complement mode.
2261
2262 2010-04-17 Jay Belanger <jay.p.belanger@gmail.com>
2263
2264 * calc-ext.el (calc-init-extensions): Add keybinding for 'calc-option'.
2265 Add `calc-option-prefix-help' to calc-help autoloads.
2266 (calc-inverse): Add "Option" to message, as appropriate.
2267 (calc-hyperbolic): Add "Option" to message, as appropriate.
2268 (calc-option, calc-is-option): New functions.
2269
2270 * calc-help.el (calc-full-help): Add `calc-option-help'.
2271 (calc-option-prefix-help): New function.
2272
2273 * calc-misc.el (calc-help): Add "Option" entry.
2274
2275 * calc.el (calc-local-var-list): Add `calc-option-flag'.
2276 (calc-option-flag): New variable.
2277 (calc-do): Set `calc-option-flag to nil.
2278 (calc-set-mode-line): Add "Opt " as appropriate.
2279
2280 2010-04-16 Juri Linkov <juri@jurta.org>
2281
2282 Move scrolling commands from simple.el to window.el
2283 because their primitives are implemented in window.c.
2284
2285 * simple.el (scroll-error-top-bottom)
2286 (scroll-up-command, scroll-down-command, scroll-up-line)
2287 (scroll-down-line, scroll-other-window-down)
2288 (beginning-of-buffer-other-window, end-of-buffer-other-window):
2289 * window.el (scroll-error-top-bottom)
2290 (scroll-up-command, scroll-down-command, scroll-up-line)
2291 (scroll-down-line, scroll-other-window-down)
2292 (beginning-of-buffer-other-window, end-of-buffer-other-window):
2293 Move from simple.el to window.el because their primitives are
2294 implemented in window.c.
2295
2296 2010-04-16 Juri Linkov <juri@jurta.org>
2297
2298 * isearch.el (isearch-lookup-scroll-key): Check both
2299 `isearch-scroll' and `scroll-command' properties.
2300 (scroll-up, scroll-down): Remove `isearch-scroll' property.
2301
2302 * mwheel.el (mwheel-scroll): Remove `isearch-scroll' property.
2303
2304 * simple.el (scroll-up-command, scroll-down-command)
2305 (scroll-up-line, scroll-down-line): Remove `isearch-scroll' property.
2306
2307 2010-04-15 Juri Linkov <juri@jurta.org>
2308
2309 * simple.el (scroll-up-command, scroll-down-command)
2310 (scroll-up-line, scroll-down-line): Put `scroll-command'
2311 property on the these symbols. Remove them from
2312 `scroll-preserve-screen-position-commands'.
2313
2314 * mwheel.el (mwheel-scroll): Put `scroll-command' and
2315 `isearch-scroll' properties on the `mwheel-scroll' symbol.
2316 Remove it from `scroll-preserve-screen-position-commands'.
2317
2318 * isearch.el (isearch-allow-scroll): Doc fix.
2319
2320 2010-04-15 Michael Albinus <michael.albinus@gmx.de>
2321
2322 * net/tramp.el (tramp-error-with-buffer): Don't show the
2323 connection buffer when we are in completion mode.
2324 (tramp-file-name-handler): Catch the error for some operations
2325 when we are in completion mode. This gives the user the chance to
2326 correct the file name in the minibuffer.
2327
2328 2010-04-15 Glenn Morris <rgm@gnu.org>
2329
2330 * progmodes/verilog-mode.el (verilog-forward-sexp): Avoid free variable.
2331
2332 2010-04-15 Juanma Barranquero <lekktu@gmail.com>
2333
2334 Simplify by using `define-derived-mode'.
2335 * info.el (Info-mode):
2336 * calendar/todo-mode.el (todo-mode):
2337 * play/gomoku.el (gomoku-mode): Define with `define-derived-mode'.
2338 (gomoku-mode-map): Move initialization into declaration.
2339
2340 2010-04-14 Michael Albinus <michael.albinus@gmx.de>
2341
2342 Fix Bug#5840.
2343 * ido.el (ido-file-name-all-completions-1):
2344 * minibuffer.el (minibuffer-completion-help):
2345 * net/tramp.el (tramp-completion-mode-p): Use `non-essential'.
2346
2347 2010-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
2348
2349 * simple.el (non-essential): New var.
2350
2351 Add a new field `location' to bookmarks for non-file bookmarks.
2352 * bookmark.el (bookmark-location): Use the new field, if present.
2353 (bookmark-insert-location): Undo last change, not needed any more.
2354 * man.el (Man-bookmark-make-record):
2355 * woman.el (woman-bookmark-make-record): Add `location' field.
2356
2357 2010-04-14 Juri Linkov <juri@jurta.org>
2358
2359 * simple.el (scroll-error-top-bottom): New defcustom.
2360 (scroll-up-command, scroll-down-command): Use it. Doc fix.
2361
2362 * emulation/pc-select.el (pc-select-override-scroll-error):
2363 Obsolete in favor of `scroll-error-top-bottom'.
2364
2365 2010-04-14 Juri Linkov <juri@jurta.org>
2366
2367 * tutorial.el (tutorial--default-keys): Rebind `C-v' to
2368 `scroll-up-command' and `M-v' to `scroll-down-command'.
2369
2370 * emulation/cua-rect.el (cua--init-rectangles):
2371 * forms.el (forms--change-commands):
2372 * image-mode.el (image-mode-map):
2373 Remap scroll-down-command and scroll-up-command
2374 in addition to scroll-down and scroll-up.
2375
2376 2010-04-14 Juri Linkov <juri@jurta.org>
2377
2378 * mwheel.el (scroll-preserve-screen-position-commands):
2379 Add mwheel-scroll to this list of commands.
2380
2381 * simple.el (scroll-preserve-screen-position-commands):
2382 Add scroll-up-command, scroll-down-command, scroll-up-line,
2383 scroll-down-line to this list of commands.
2384
2385 2010-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
2386
2387 * obsolete/complete.el: Move from lisp/complete.el.
2388
2389 * pcomplete.el (pcomplete-here*): Fix mistaken change (bug#5935).
2390
2391 * emacs-lisp/easy-mmode.el (define-minor-mode): Passing a nil argument
2392 to the minor mode function now turns the mode ON unconditionally.
2393
2394 2010-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
2395
2396 * vc-dir.el (vc-dir-kill-line): New command.
2397 (vc-dir-mode-map): Bind it to C-k.
2398
2399 * bookmark.el (bookmark-insert-location): Handle a nil filename.
2400
2401 * woman.el: Add bookmark declarations to silence the compiler.
2402 (bookmark-prop-get): Use `man-args' rather than `filename' as a first
2403 step to compatibility between man and woman bookmarks.
2404 Adjust for Man-default-bookmark-title renaming.
2405 (woman-bookmark-jump): Adjust accordingly. Don't forget to autoload.
2406
2407 * man.el: Add bookmark declarations to silence the compiler.
2408 (Man-name-local-regexp): Make it match NAME as well.
2409 (Man-getpage-in-background): Return the buffer.
2410 (Man-notify-when-ready): Use `case'.
2411 (man-set-default-bookmark-title): Rename to Man-default-bookmark-title.
2412 Don't hardcode "NAME". Simplify.
2413 (Man-bookmark-make-record): Use Man-arguments rather than buffer-name.
2414 Rename from Man-bookmark-make-record.
2415 (Man-bookmark-jump): Rename from man-bookmark-jump. Simplify now that
2416 we have the actual man-args. Use Man-getpage-in-background rather
2417 than `man' since the arg is already processed. Let bookmark.el do the
2418 window handling. Only wait for the relevant process.
2419 Don't forget to autoload.
2420
2421 * bookmark.el (bookmark-default-file): Use locate-user-emacs-file.
2422
2423 2010-04-12 Thierry Volpiatto <thierry.volpiatto@gmail.com>
2424
2425 * woman.el (woman-bookmark-make-record, woman-bookmark-jump):
2426 New functions.
2427 (woman-mode): Setup bookmark support.
2428
2429 * man.el (man-set-default-bookmark-title, man-bookmark-make-record)
2430 (man-bookmark-jump): New functions.
2431 (Man-mode): Setup bookmark support.
2432
2433 2010-04-10 Jari Aalto <jari.aalto@cante.net>
2434
2435 * comint.el (comint-password-prompt-regexp): Use regexp-opt, and
2436 recognize ssh-keygen prompt (Bug#2817).
2437
2438 2010-04-10 Michael Albinus <michael.albinus@gmx.de>
2439
2440 * net/tramp.el (tramp-do-copy-or-rename-file): Add progress reporter.
2441
2442 2010-04-10 Michael Albinus <michael.albinus@gmx.de>
2443
2444 Synchronize with Tramp repository.
2445
2446 * net/tramp.el (tramp-completion-function-alist)
2447 (tramp-file-name-regexp, tramp-chunksize)
2448 (tramp-local-coding-commands, tramp-remote-coding-commands):
2449 Fix docstring.
2450 (tramp-remote-process-environment): Use `format' instead of `concat'.
2451 (tramp-handle-directory-files-and-attributes)
2452 (tramp-get-remote-path): Use `copy-tree'.
2453 (tramp-handle-file-name-all-completions): Backward/ XEmacs
2454 compatibility: Use `completion-ignore-case' if
2455 `read-file-name-completion-ignore-case' does not exist.
2456 (tramp-do-copy-or-rename-file-directly): Do not use
2457 `tramp-handle-file-remote-p'.
2458 (tramp-do-copy-or-rename-file-out-of-band):
2459 Use `tramp-compat-delete-directory'.
2460 (tramp-do-copy-or-rename-file-out-of-band)
2461 (tramp-compute-multi-hops, tramp-maybe-open-connection):
2462 Use `format-spec-make'.
2463 (tramp-find-foreign-file-name-handler)
2464 (tramp-advice-make-auto-save-file-name)
2465 (tramp-set-auto-save-file-modes): Remove superfluous check for
2466 `stringp'. This is done inside `tramp-tramp-file-p'.
2467 (tramp-debug-outline-regexp): New defconst.
2468 (tramp-get-debug-buffer): Use it.
2469 (tramp-check-for-regexp): Use (forward-line 1).
2470 (tramp-set-auto-save-file-modes): Adapt version check.
2471
2472 * net/tramp-compat.el (tramp-advice-file-expand-wildcards):
2473 Wrap call of `featurep' for 2nd argument.
2474 (tramp-compat-make-temp-file): Simplify fallback implementation.
2475 (tramp-compat-copy-tree): Remove function.
2476 (tramp-compat-delete-directory): Provide implementation for older
2477 Emacsen.
2478
2479 * net/tramp-fish.el (tramp-fish-handle-directory-files-and-attributes):
2480 Do not use `tramp-fish-handle-file-attributes.
2481
2482 * net/trampver.el: Update release number.
2483
2484 2010-04-10 Glenn Morris <rgm@gnu.org>
2485
2486 * progmodes/compile.el (compilation-save-buffers-predicate):
2487 Add missing :version tag.
2488
2489 2010-04-09 Sam Steingold <sds@gnu.org>
2490
2491 * progmodes/compile.el (compilation-save-buffers-predicate):
2492 Remove the "autoload" cookie.
2493
2494 * progmodes/bug-reference.el (turn-on-bug-reference-mode)
2495 (turn-on-bug-reference-prog-mode): Remove, `bug-reference-mode'
2496 and `bug-reference-prog-mode' can be used in hooks directly.
2497
2498 2010-04-09 Dan Nicolaescu <dann@ics.uci.edu>
2499
2500 Add --author support to git commit.
2501 * vc-git.el (vc-git-checkin): Pass extra-args to the commit command.
2502 (vc-git-log-edit-mode): New minor mode.
2503 (log-edit-mode, log-edit-extra-flags, log-edit-mode):
2504 New declarations.
2505
2506 2010-04-09 Eric Raymond <esr@snark.thyrsus.com>
2507
2508 * vc-hooks.el, vc-git.el: Improve documentation comments.
2509
2510 2010-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
2511
2512 Fix some of the problems in defsubst* (bug#5728).
2513 * emacs-lisp/cl-macs.el (defsubst*): Don't substitute non-trivial args.
2514 (cl-defsubst-expand): Do the substitutions simultaneously (bug#5728).
2515
2516 2010-04-07 Sam Steingold <sds@gnu.org>
2517
2518 * progmodes/compile.el (compilation-save-buffers-predicate):
2519 New custom variable.
2520 (compile, recompile): Pass it to `save-some-buffers'.
2521
2522 2010-04-07 Jan Djärv <jan.h.d@swipnet.se>
2523
2524 * wid-edit.el (widget-choose): Move cursor to the second line of
2525 the buffer (Bug#5695).
2526
2527 2010-04-07 Dan Nicolaescu <dann@ics.uci.edu>
2528
2529 Add new VC methods: vc-log-incoming and vc-log-outgoing.
2530 * vc.el (vc-print-log-setup-buttons): New function split out from
2531 vc-print-log-internal.
2532 (vc-log-internal-common): New function, a parametrized version of
2533 vc-print-log-internal.
2534 (vc-print-log-internal): Just call vc-log-internal-common with the
2535 right arguments.
2536 (vc-incoming-outgoing-internal):
2537 (vc-log-incoming, vc-log-outgoing): New functions.
2538 (vc-log-view-type): New permanent local variable.
2539
2540 * vc-hooks.el (vc-menu-map): Bind vc-log-incoming and vc-log-outgoing.
2541
2542 * vc-bzr.el (vc-bzr-log-view-mode): Use vc-log-view-type instead
2543 of the dynamic bound vc-short-log.
2544 (vc-bzr-log-incoming, vc-bzr-log-outgoing): New functions.
2545
2546 * vc-git.el (vc-git-log-outgoing): New function.
2547 (vc-git-log-view-mode): Use vc-log-view-type instead
2548 of the dynamic bound vc-short-log.
2549
2550 * vc-hg.el (vc-hg-log-view-mode): Use vc-log-view-type instead
2551 of the dynamic bound vc-short-log. Highlight the tag.
2552 (vc-hg-log-incoming, vc-hg-log-outgoing): New functions.
2553 (vc-hg-outgoing, vc-hg-incoming, vc-hg-outgoing-mode):
2554 (vc-hg-incoming-mode): Remove.
2555 (vc-hg-extra-menu-map): Do not bind vc-hg-incoming and vc-hg-outgoing.
2556
2557 2010-04-07 Dan Nicolaescu <dann@ics.uci.edu>
2558
2559 Fix default-directory for vc-root-diff.
2560 * vc.el (vc-root-diff): Bind default-directory to the root
2561 directory for the diff command.
2562
2563 2010-04-07 Michael McNamara <mac@mail.brushroad.com>
2564
2565 * progmodes/verilog-mode.el (verilog-forward-sexp):
2566 (verilog-calc-1): Support "disable fork" and "fork wait" multi
2567 word keywords, suggested by Steve Pearlmutter.
2568 (verilog-pretty-declarations): Support lineup of declarations in
2569 port lists.
2570 (verilog-skip-backward-comments, verilog-skip-forward-comment-p):
2571 fix bug for /* / comments
2572 (verilog-backward-syntactic-ws, verilog-forward-syntactic-ws):
2573 Speed up and simplfy as this is never called with a bound.
2574 (verilog-pretty-declarations): Enhance to line up declarations
2575 inside a parameter list, suggested by Alan Morgan.
2576 (verilog-pretty-expr): Tune assignment regular expression match
2577 string for corner cases; also use markers instead of character
2578 number as indent changes the later.
2579
2580 2010-04-07 Wilson Snyder <wsnyder@wsnyder.org>
2581
2582 * progmodes/verilog-mode.el (verilog-type-keywords): Fix pulldown
2583 as missing keyword.
2584 (verilog-read-sub-decls-line): Fix comments in AUTO_TEMPLATE
2585 causing truncation of AUTOWIRE signals. Reported by Bruce Tennant.
2586 (verilog-auto-inst, verilog-auto-inst-port): Add vl_mbits for
2587 AUTO_TEMPLATEs needing multiple array bits. Suggested by Bruce
2588 Tennant.
2589 (verilog-keywords):
2590 (verilog-1800-2005-keywords, verilog-1800-2009-keywords): Add IEEE
2591 1800-2009 keywords, including "global.".
2592
2593 2010-04-06 John Wiegley <jwiegley@gmail.com>
2594
2595 * ido.el (ido-add-virtual-buffers-to-list): Fix duplicated names
2596 appearing in buffer list (if a live buffer name matched a recentf
2597 file basename). Should use uniquify to offer a real solution.
2598
2599 2010-04-06 John Wiegley <jwiegley@gmail.com>
2600
2601 * ido.el (ido-use-virtual-buffers, ido-virtual): Move a ChangeLog
2602 comment to code, and add a :version tag.
2603 (ido-virtual-buffers): Move defvar to fix byte-compiler warning.
2604
2605 2010-04-06 Juanma Barranquero <lekktu@gmail.com>
2606
2607 Enable recentf-mode if using virtual buffers.
2608 * ido.el (recentf-list): Declare for byte-compiler.
2609 (ido-virtual-buffers): Move up to silence byte-compiler. Add docstring.
2610 (ido-make-buffer-list): Simplify.
2611 (ido-add-virtual-buffers-to-list): Simplify. Enable recentf-mode.
2612
2613 2010-04-05 Juri Linkov <juri@jurta.org>
2614
2615 Scrolling commands which scroll a line instead of full screen.
2616 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01452.html
2617
2618 * simple.el (scroll-up-line, scroll-down-line): New commands.
2619 Put property isearch-scroll=t on them.
2620
2621 * emulation/ws-mode.el (scroll-down-line, scroll-up-line):
2622 Remove commands.
2623
2624 2010-04-05 Juri Linkov <juri@jurta.org>
2625
2626 Scrolling commands which do not signal errors at top/bottom.
2627 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01452.html
2628
2629 * simple.el (scroll-up-command, scroll-down-command): New commands.
2630 Put property isearch-scroll=t on them.
2631
2632 * bindings.el (global-map): Rebind [prior] from `scroll-down' to
2633 `scroll-down-command' and [next] from `scroll-up' to
2634 `scroll-up-command'.
2635
2636 * emulation/cua-base.el: Put property CUA=move on
2637 `scroll-up-command' and `scroll-down-command'.
2638 (cua--init-keymaps): Remap `scroll-up-command' to `cua-scroll-up'
2639 and `scroll-down-command' to `cua-scroll-down'.
2640
2641 2010-04-05 Juanma Barranquero <lekktu@gmail.com>
2642
2643 * help.el (describe-mode): Return nil.
2644
2645 2010-04-04 John Wiegley <jwiegley@gmail.com>
2646
2647 * ido.el (ido-use-virtual-buffers): New variable to indicate
2648 whether "virtual buffer" support is enabled for IDO.
2649 (ido-virtual): Face used to indicate virtual buffers in the list.
2650 (ido-buffer-internal): If a buffer is chosen, and no such buffer
2651 exists, but a virtual buffer of that name does (which would be why
2652 it was in the list), recreate the buffer by reopening the file.
2653 (ido-make-buffer-list): If virtual buffers are being used, call
2654 `ido-add-virtual-buffers-to-list' before the make list hook.
2655 (ido-virtual-buffers): New variable which contains a copy of the
2656 current contents of the `recentf-list', albeit pared down for the
2657 sake of speed, and with proper faces applied.
2658 (ido-add-virtual-buffers-to-list): Using the `recentf-list',
2659 create a list of "virtual buffers" to present to the user in
2660 addition to the currently open set. Note that this logic could
2661 get rather slow if that list is too large. With the default
2662 `recentf-max-saved-items' of 200, there is little speed penalty.
2663
2664 2010-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
2665
2666 * font-lock.el: Require CL when compiling.
2667 (font-lock-turn-on-thing-lock): Use `case'.
2668
2669 2010-04-03 Eli Zaretskii <eliz@gnu.org>
2670
2671 * emacs-lisp/authors.el (authors-fixed-entries): Add entry for Eli
2672 Zaretskii.
2673
2674 2010-04-02 Juanma Barranquero <lekktu@gmail.com>
2675
2676 * cedet/semantic/imenu.el (semantic-imenu-bucketize-type-members)
2677 (semantic-create-imenu-directory-index): Fix typos in docstrings.
2678 (semantic-imenu-goto-function): Reflow docstring.
2679
2680 2010-04-02 Juri Linkov <juri@jurta.org>
2681
2682 * ehelp.el (electric-help-orig-major-mode):
2683 New buffer-local variable.
2684 (electric-help-mode): Set it to original major-mode. Doc fix.
2685 (with-electric-help): Use `electric-help-orig-major-mode' instead
2686 of (default-value 'major-mode). Doc fix.
2687 http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00069.html
2688
2689 2010-04-02 Sam Steingold <sds@gnu.org>
2690
2691 * vc-hg.el (vc-hg-push, vc-hg-pull): Use `apply' when calling
2692 `vc-hg-command' with a list of flags.
2693
2694 * progmodes/bug-reference.el (bug-reference-bug-regexp):
2695 Also accept "patch" and "RFE".
2696 (bug-reference-fontify): `bug-reference-url-format' can also be a
2697 function to be able to handle the bug kind.
2698 (turn-on-bug-reference-mode, turn-on-bug-reference-prog-mode): Add.
2699
2700 2010-04-02 Jan Djärv <jan.h.d@swipnet.se>
2701
2702 * tmm.el (tmm-get-keymap): Check with symbolp before passing
2703 value to fboundp, it may not be a symbol.
2704
2705 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
2706
2707 * cus-edit.el (custom-buffer-sort-alphabetically): Update :version.
2708
2709 2010-03-31 Juri Linkov <juri@jurta.org>
2710
2711 * simple.el (next-line, previous-line): Re-throw a signal
2712 with `signal' instead of using `ding'.
2713 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01432.html
2714
2715 2010-03-31 Juri Linkov <juri@jurta.org>
2716
2717 * simple.el (keyboard-escape-quit): Raise deselecting the active
2718 region higher than exiting the minibuffer.
2719 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00904.html
2720
2721 2010-03-31 Juri Linkov <juri@jurta.org>
2722
2723 * image.el (image-animated-p): Use `image-metadata' instead of
2724 `image-extension-data'. Get GIF extenstion data from metadata
2725 property `extension-data'.
2726
2727 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
2728
2729 * simple.el (append-to-buffer): Simplify.
2730
2731 2010-03-31 Tomas Abrahamsson <tab@lysator.liu.se>
2732
2733 * textmodes/artist.el (artist-mode): Fix typo in docstring.
2734 Reported by Alex Schröder <kensanata@gmail.com>. (Bug#5807)
2735
2736 2010-03-31 Kenichi Handa <handa@m17n.org>
2737
2738 * language/sinhala.el (composition-function-table): Fix regexp for
2739 the new Unicode specification.
2740
2741 * language/indian.el (devanagari-composable-pattern)
2742 (tamil-composable-pattern, kannada-composable-pattern)
2743 (malayalam-composable-pattern): Adjust for the new Unicode
2744 specification.
2745 (bengali-composable-pattern, gurmukhi-composable-pattern)
2746 (gujarati-composable-pattern, oriya-composable-pattern)
2747 (telugu-composable-pattern): New variables to cope with the new
2748 Unicode specification. Use them in composition-function-table.
2749
2750 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
2751
2752 Make tmm-menubar work for the Buffers menu again (bug#5726).
2753 * tmm.el (tmm-prompt): Also handle keymap entries in the form of
2754 vectors rather than cons cells, as used in menu-bar-update-buffers.
2755
2756 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
2757
2758 * progmodes/js.el (js-auto-indent-flag, js-mode-map)
2759 (js-insert-and-indent): Revert 2009-08-15 change, restoring
2760 electric punctuation for "{}();,:" (Bug#5586).
2761
2762 * mail/sendmail.el (mail-default-directory): Doc fix.
2763
2764 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
2765
2766 * mail/sendmail.el (mail-default-directory): Doc fix.
2767
2768 2010-03-31 Eli Zaretskii <eliz@gnu.org>
2769
2770 * subr.el (version-regexp-alist, version-to-list)
2771 (version-list-<, version-list-=, version-list-<=)
2772 (version-list-not-zero, version<, version<=, version=): Doc fix.
2773 (Bug#5744).
2774
2775 2010-02-31 Dan Nicolaescu <dann@ics.uci.edu>
2776
2777 * vc.el (vc-root-diff): Doc fix.
2778
2779 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
2780
2781 * vc.el (vc-print-log, vc-print-root-log): Doc fix.
2782
2783 * simple.el (append-to-buffer): Fix last change.
2784
2785 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
2786
2787 * simple.el (append-to-buffer): Ensure that point is preserved if
2788 BUFFER is the current buffer. Suggested by YAMAMOTO Mitsuharu.
2789 (Bug#5749)
2790
2791 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
2792
2793 * files.el (auto-mode-case-fold): Change default to t.
2794
2795 2010-03-30 Juri Linkov <juri@jurta.org>
2796
2797 * dired-x.el (dired-omit-mode): Doc fix.
2798
2799 2010-03-30 Juri Linkov <juri@jurta.org>
2800
2801 * replace.el (occur-accumulate-lines): Move occur-engine related
2802 functions `occur-accumulate-lines' and `occur-engine-add-prefix'
2803 to be located after `occur-engine'.
2804
2805 2010-03-30 Juri Linkov <juri@jurta.org>
2806
2807 Make occur handle multi-line matches cleanly with context.
2808 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01280.html
2809
2810 * replace.el (occur-accumulate-lines): Add optional arg `pt'.
2811 (occur-engine): Add local variables `ret', `prev-after-lines',
2812 `prev-lines'. Use more arguments for `occur-context-lines'.
2813 Set first elem of its returned list to `data', and the second elem
2814 to `prev-after-lines'. Don't print the separator line.
2815 In the end, print remaining context after-lines.
2816 (occur-context-lines): Add new arguments `begpt', `endpt',
2817 `lines', `prev-lines', `prev-after-lines'. Rewrite to combine
2818 after-lines of the previous match with before-lines of the
2819 current match and not overlap them. Return a list with two
2820 values: the output line and the list of context after-lines.
2821
2822 2010-03-30 Juri Linkov <juri@jurta.org>
2823
2824 * replace.el (occur-accumulate-lines): Fix a bug where the first
2825 context line at the beginning of the buffer was missing.
2826
2827 2010-03-30 Eli Zaretskii <eliz@gnu.org>
2828
2829 * files.el: Make bidi-display-reordering safe variable for boolean
2830 values.
2831
2832 2010-03-29 Phil Hagelberg <phil@evri.com>
2833 Chong Yidong <cyd@stupidchicken.com>
2834
2835 * subr.el: Extend progress reporters to perform "spinning".
2836 (progress-reporter-update, progress-reporter-do-update):
2837 Handle non-numeric value arguments.
2838 (progress-reporter--pulse-characters): New var.
2839
2840 2010-03-28 Chong Yidong <cyd@stupidchicken.com>
2841
2842 * progmodes/compile.el (compilation-start): Fix regexp detection
2843 of initial cd command (Bug#5771).
2844
2845 2010-03-28 Stefan Guath <stefan@automata.se> (tiny change)
2846
2847 * find-dired.el (find-dired): Use read-directory-name (Bug#5777).
2848
2849 2010-03-27 Nick Roberts <nickrob@snap.net.nz>
2850
2851 Restore GDB/MI fuctionality removed by 2009-12-29T07:15:34Z!nickrob@snap.net.nz.
2852 * lisp/progmodes/gdb-mi.el: Restore.
2853 * lisp/progmodes/gdb-ui.el: Remove.
2854 * lisp/progmodes/gud.el: Re-accommodate for gdb-mi.el.
2855
2856 2010-03-25 Glenn Morris <rgm@gnu.org>
2857
2858 * desktop.el (desktop-save-buffer-p): Don't mistakenly include
2859 all dired buffers, even tramp ones. (Bug#5755)
2860
2861 2010-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
2862
2863 Add "union tags" in mpc.el.
2864 * mpc.el: Remove backward compatibility code.
2865 (mpc-browser-tags): Change default.
2866 (mpc--find-memoize-union-tags): New var.
2867 (mpc-cmd-flush, mpc-cmd-special-tag-p): New fun.
2868 (mpc-cmd-find): Handle the case where the playlist does not exist.
2869 Handle union-tags.
2870 (mpc-cmd-list): Use mpc-cmd-special-tag-p. Handle union-tags.
2871 (mpc-cmd-add): Use mpc-cmd-flush.
2872 (mpc-tagbrowser-tag-name): New fun.
2873 (mpc-tagbrowser-buf): Use it.
2874 (mpc-songs-refresh): Use cond. Move to point-min as a fallback.
2875
2876 2010-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
2877
2878 Misc cleanup.
2879 * progmodes/make-mode.el (makefile-bsdmake-rule-action-regex):
2880 Use replace-regexp-in-string.
2881 (makefile-mode-abbrev-table): Merge defvar and define-abbrev-table.
2882 (makefile-imake-mode-syntax-table): Move init into defvar.
2883 (makefile-mode): Use define-derived-mode.
2884
2885 * progmodes/make-mode.el (makefile-rule-action-regex): Backtrack less.
2886 (makefile-make-font-lock-keywords): Adjust rule since submatch 1 may
2887 not be present any more.
2888
2889 2010-03-24 Juanma Barranquero <lekktu@gmail.com>
2890
2891 * faces.el (set-face-attribute): Fix typo in docstring.
2892 (face-valid-attribute-values): Reflow docstring.
2893
2894 * cedet/srecode/table.el (srecode-template-table): Fix docstring typo.
2895
2896 2010-03-24 Glenn Morris <rgm@gnu.org>
2897
2898 * textmodes/flyspell.el (sgml-lexical-context): Autoload it (Bug#5752).
2899
2900 2010-03-24 Chong Yidong <cyd@stupidchicken.com>
2901
2902 * indent.el (indent-for-tab-command): Doc fix.
2903
2904 2010-03-24 Alan Mackenzie <acm@muc.de>
2905
2906 * progmodes/cc-engine.el (c-remove-stale-state-cache):
2907 Fix off-by-one error. Fixes bug #5747.
2908
2909 2010-03-24 Juanma Barranquero <lekktu@gmail.com>
2910
2911 * image-dired.el (image-dired-display-thumbs): Fix typo in docstring.
2912 (image-dired-read-comment): Doc fix.
2913
2914 * json.el (json-object-type, json-array-type, json-key-type)
2915 (json-false, json-null, json-read-number):
2916 * minibuffer.el (completion-in-region-functions):
2917 * calendar/cal-tex.el (cal-tex-daily-end, cal-tex-number-weeks)
2918 (cal-tex-cursor-week):
2919 * emacs-lisp/trace.el (trace-function):
2920 * eshell/em-basic.el (eshell/printnl):
2921 * eshell/em-dirs.el (eshell-last-dir-ring, eshell-parse-drive-letter)
2922 (eshell-read-last-dir-ring, eshell-write-last-dir-ring):
2923 * obsolete/levents.el (allocate-event, event-key, event-object)
2924 (event-point, event-process, event-timestamp, event-to-character)
2925 (event-window, event-x, event-x-pixel, event-y, event-y-pixel):
2926 * textmodes/reftex-vars.el (reftex-index-macros-builtin)
2927 (reftex-section-levels, reftex-auto-recenter-toc, reftex-toc-mode-hook)
2928 (reftex-cite-punctuation, reftex-search-unrecursed-path-first)
2929 (reftex-highlight-selection): Fix typos in docstrings.
2930
2931 2010-03-24 Juanma Barranquero <lekktu@gmail.com>
2932
2933 * minibuffer.el (completion-in-region-functions): Fix docstring typos.
2934
2935 2010-03-24 Glenn Morris <rgm@gnu.org>
2936
2937 * mail/rmail.el (rmail-highlight-face): Restore option deleted
2938 2008-02-13 without comment; mark it obsolete.
2939 (rmail-highlight-headers): Use rmail-highlight-face once more.
2940
2941 2010-03-24 Chong Yidong <cyd@stupidchicken.com>
2942
2943 * woman.el (woman2-process-escapes): Only consume the newline if
2944 the filler character is on a line by itself (Bug#5729).
2945
2946 2010-03-24 Kenichi Handa <handa@m17n.org>
2947
2948 * language/indian.el (devanagari-composable-pattern): Add more
2949 consonants.
2950
2951 2010-03-24 Michael Albinus <michael.albinus@gmx.de>
2952
2953 * net/trampver.el: Update release number.
2954
2955 2010-03-24 Glenn Morris <rgm@gnu.org>
2956
2957 * Makefile.in (ELCFILES): Add cedet/semantic/imenu.el.
2958
2959 2010-03-24 Michael Albinus <michael.albinus@gmx.de>
2960
2961 * net/tramp.el (tramp-find-executable):
2962 Use `tramp-get-connection-buffer'. Make the regexp for checking
2963 output of "wc -l" more robust.
2964 (tramp-find-shell): Use another shell but /bin/sh on OpenSolaris.
2965 (tramp-open-connection-setup-interactive-shell): Remove workaround
2966 for OpenSolaris bug, it is not needed anymore.
2967
2968 2010-03-24 Eric M. Ludlam <zappo@gnu.org>
2969
2970 * cedet/semantic/imenu.el: New file, from the CEDET repository
2971 (Bug#5412).
2972
2973 2010-03-24 Glenn Morris <rgm@gnu.org>
2974
2975 * emacs-lisp/cl-macs.el (defsubst*): Add autoload cookie. (Bug#4427)
2976
2977 2010-03-24 Wilson Snyder <wsnyder@wsnyder.org>
2978
2979 * files.el (auto-mode-alist): Accept more verilog file patterns.
2980
2981 2010-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
2982
2983 * vc-dir.el (vc-dir-headers): Abbreviate the working dir.
2984
2985 2010-03-24 Glenn Morris <rgm@gnu.org>
2986
2987 * vc-bzr.el (vc-bzr-log-edit-mode): Add --fixes support to
2988 log-edit-before-checkin-process.
2989
2990 * vc.el (vc-modify-change-comment): Pass MODE to vc-start-logentry.
2991
2992 * vc.el, vc-bzr.el, vc-hg.el (log-edit-mode): Declare.
2993
2994 * vc-dispatcher.el (vc-start-logentry): Doc fix.
2995 (log-view-process-buffer, log-edit-extra-flags): Declare.
2996
2997 * log-edit.el (log-edit-before-checkin-process): Doc fix.
2998
2999 * cedet/semantic/bovine/c.el (semantic-c-describe-environment):
3000 Consistently check ede-object is bound throughout.
3001
3002 * cedet/ede/project-am.el (ede-shell-run-something): Declare.
3003
3004 2010-03-23 Sam Steingold <sds@gnu.org>
3005
3006 Fix bug#5620: recalculate all markers on compilation buffer
3007 modifications, not on file modifications.
3008 * progmodes/compile.el (buffer-modtime): New buffer-local variable:
3009 the buffer modification time, for buffers not associated with files.
3010 (compilation-mode): Create it.
3011 (compilation-filter): Update it.
3012 (compilation-next-error-function): Use it instead of
3013 `visited-file-modtime' for timestamp.
3014
3015 2010-03-23 Juri Linkov <juri@jurta.org>
3016
3017 Implement Occur multi-line matches.
3018 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01044.html
3019
3020 * replace.el (occur): Doc fix.
3021 (occur-engine): Set `begpt' to the beginning of the first line.
3022 Set `endpt' to the end of the last match line. At first, count
3023 line numbers between `origpt' and `begpt'. Split out code from
3024 `out-line' variable to new let-bindings `match-prefix' and
3025 `match-str'. In `out-line' add non-numeric prefix to all
3026 non-first lines of multi-line matches. Finally, count lines
3027 between `begpt' and `endpt' and add to `lines'.
3028
3029 2010-03-23 Juri Linkov <juri@jurta.org>
3030
3031 * replace.el (occur-accumulate-lines, occur-engine):
3032 Use `occur-engine-line' instead of duplicate code.
3033 (occur-engine-line): New function created from duplicate code
3034 in `occur-accumulate-lines' and `occur-engine'.
3035
3036 * replace.el (occur-engine-line): Add optional arg `keep-props'.
3037 (occur-accumulate-lines, occur-engine): Add arg `keep-props'.
3038
3039 2010-03-23 Juri Linkov <juri@jurta.org>
3040
3041 * finder.el: Remove TODO tasks.
3042
3043 * info.el (Info-finder-find-node): Add node "all"
3044 with all package info. Handle a list of multiple keywords
3045 separated by comma.
3046 (info-finder): In interactive use with a prefix argument,
3047 use `completing-read-multiple' to read a list of keywords
3048 separated by comma.
3049
3050 2010-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
3051
3052 Add a new completion style `substring'.
3053 * minibuffer.el (completion-basic--pattern): New function.
3054 (completion-basic-try-completion, completion-basic-all-completions):
3055 Use it.
3056 (completion-substring--all-completions)
3057 (completion-substring-try-completion)
3058 (completion-substring-all-completions): New functions.
3059 (completion-styles-alist): New style `substring'.
3060
3061 2010-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
3062
3063 Get rid of .elc files after removal of the corresponding .el.
3064 * Makefile.in (compile-clean): New target.
3065 (compile-main): Use it.
3066
3067 2010-03-22 Jan Djärv <jan.h.d@swipnet.se>
3068
3069 * Makefile.in (compile-main): cd to $(lisp) in a sub-shell, so we
3070 don't do make there. When compiling with separate object dir, there
3071 is no Makefile there.
3072
3073 2010-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
3074
3075 Get rid of the ELCFILES abomination, again.
3076 * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
3077 (all, compile): Don't call compile-last.
3078 (compile-main): Build the "elcfiles" list dynamically.
3079 (compile-targets): New (internal) target.
3080
3081 2010-03-21 Andreas Schwab <schwab@linux-m68k.org>
3082
3083 * Makefile.in (top_srcdir): Define.
3084 (abs_top_builddir): Define.
3085 (srcdir): Don't append `/..'.
3086 (EMACS): Use ${abs_top_builddir}.
3087 (all, compile, compile-always, compile-last): Don't set emacswd.
3088 (update-subdirs, update-authors): Use $(top_srcdir) instead of
3089 $(srcdir).
3090 (lisp): Use $(srcdir) instead of @srcdir@.
3091
3092 2010-03-21 Juri Linkov <juri@jurta.org>
3093
3094 Fix message of multi-line occur regexps and multi-buffer header lines.
3095 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00457.html
3096
3097 * replace.el (occur-1): Don't display regexp if it is longer
3098 than window-width. Use `query-replace-descr' to display regexp.
3099 (occur-engine): Don't display regexp in the buffer header for
3100 multi-buffer occur. Display a separate header line with total
3101 match count and regexp for multi-buffer occur.
3102 Use `query-replace-descr' to display regexp.
3103
3104 2010-03-20 Teodor Zlatanov <tzz@lifelogs.com>
3105
3106 * net/secrets.el: Fix parenthesis.
3107 (secrets-enabled): Fix parenthesis.
3108
3109 2010-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
3110
3111 Use more relative file and directory names.
3112 * Makefile.in (EMACS): Arrange for it to work when we chdir.
3113 (setwins, setwins_almost, setwins_for_subdirs):
3114 Don't `cd'; output relative names.
3115 (all, compile, compile-always, compile-last): Set emacswd.
3116 (custom-deps, finder-data, autoloads, update-subdirs, compile-last):
3117 Just cd to the lisp source dir so we can use relative file names.
3118
3119 * outline.el (hide-sublevels): Unfix the paren non-typo! (bug#5738).
3120
3121 2010-03-20 Glenn Morris <rgm@gnu.org>
3122
3123 * textmodes/rst.el: Use faces for font-lock customization, and make the
3124 old -face variables obsolete.
3125 (rst-block, rst-external, rst-definition, rst-directive, rst-comment)
3126 (rst-emphasis1, rst-emphasis2, rst-literal, rst-reference): New faces.
3127 (rst-block-face, rst-external-face, rst-definition-face)
3128 (rst-directive-face, rst-comment-face, rst-emphasis1-face)
3129 (rst-emphasis2-face, rst-literal-face, rst-reference-face):
3130 Make obsolete.
3131 (rst-font-lock-keywords-function): Update for above changes.
3132
3133 2010-03-20 Juri Linkov <juri@jurta.org>
3134
3135 * s-region.el:
3136 * obsolete/s-region.el: Move to obsolete.
3137
3138 2010-03-19 Juanma Barranquero <lekktu@gmail.com>
3139
3140 * vc-dispatcher.el (vc-do-command): Remove reference to `vc-path'.
3141
3142 2010-03-19 Dan Nicolaescu <dann@ics.uci.edu>
3143
3144 * vc-hooks.el (vc-path): Remove variable and obsolete declaration.
3145
3146 2010-03-19 Dan Nicolaescu <dann@ics.uci.edu>
3147
3148 Add special markup processing for commit logs.
3149 * log-edit.el (log-edit-extra-flags): New variable.
3150 (log-edit): Add new argument MODE. Use that mode when non-nil
3151 instead of the log-view-mode.
3152 (log-view-process-buffer): New function.
3153
3154 * vc.el: Document that the checkin method takes optional
3155 arguments. Document new backend specific method: log-view-mode.
3156 (vc-default-log-edit-mode): New function.
3157 (vc-checkin): Use a backend specific log-view-mode.
3158 Pass extra arguments to the checkin method.
3159 (vc-modify-change-comment): Pass a dummy extra argument.
3160
3161 * vc-dispatcher.el (vc-log-edit): Add a mode argument, pass it to
3162 log-edit.
3163 (vc-start-logentry): Add a mode argument, pass it to vc-log-edit.
3164 (vc-finish-logentry): Process the log buffer before passing it
3165 down. Pass log-edit-extra-flags.
3166
3167 * vc-bzr.el (vc-bzr-checkin): Pass extra arguments to the commit
3168 command.
3169 (log-edit-extra-flags, log-edit-before-checkin-process):
3170 New declarations.
3171
3172 * vc-hg.el (vc-hg-checkin): Pass extra arguments to the commit
3173 command.
3174 (log-edit-extra-flags, log-edit-before-checkin-process):
3175 New declarations.
3176 (vc-hg-log-edit-mode): New derived mode.
3177
3178 * vc-arch.el (vc-arch-checkin):
3179 * vc-cvs.el (vc-cvs-checkin):
3180 * vc-git.el (vc-git-checkin):
3181 * vc-mtn.el (vc-mtn-checkin):
3182 * vc-rcs.el (vc-rcs-checkin):
3183 * vc-sccs.el (vc-sccs-checkin):
3184 * vc-svn.el (vc-svn-checkin): Add an optional ignored argument.
3185
3186 2010-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
3187
3188 * outline.el (hide-sublevels): Don't hide trailing newline (and fix
3189 parent typo).
3190
3191 2010-03-19 Glenn Morris <rgm@gnu.org>
3192
3193 * password-cache.el (password-cache, password-cache-expiry): Autoload.
3194
3195 2010-03-18 Glenn Morris <rgm@gnu.org>
3196
3197 * emacs-lisp/autoload.el (autoload-rubric): Doc fix.
3198
3199 * replace.el (query-replace-history): Give it a doc string.
3200 (map-query-replace-regexp): Use query-replace-from-history-variable
3201 and query-replace-to-history-variable.
3202
3203 * mail/hashcash.el (declare-function): Remove duplicate definition.
3204
3205 * mail/emacsbug.el (report-emacs-bug-pretest-address):
3206 Make it an obsolete alias for report-emacs-bug-address.
3207 (message-strip-special-text-properties): Declare.
3208 (report-emacs-bug): Remove test for a pretest bug address.
3209 Combine message-mode-specific code.
3210
3211 * mail/supercite.el: Don't require sendmail.
3212 (mh-in-header-p): Declare rather than using with-no-warnings.
3213 (sc-no-blank-line-or-header): Use rfc822-goto-eoh rather than
3214 mail-header-end. Don't bind mysterious variable `kill-lines-magic'.
3215
3216 * calendar/cal-french.el: Convert to utf-8.
3217
3218 * files.el (interpreter-mode-alist): Use emacs-lisp-mode for
3219 Emacs scripts.
3220
3221 2010-03-16 Michael Albinus <michael.albinus@gmx.de>
3222
3223 * net/secrets.el (secrets-enabled): New variable. Use it instead
3224 of a subfeature.
3225
3226 2010-03-15 Michael Albinus <michael.albinus@gmx.de>
3227
3228 * net/secrets.el (top): Register the D-Bus signals only when the
3229 service "org.freedesktop.secrets" can be pinged.
3230 Provide subfeature `enabled'.
3231
3232 2010-03-14 Juri Linkov <juri@jurta.org>
3233
3234 Add finder unknown keywords.
3235
3236 * finder.el (finder-unknown-keywords): New function.
3237
3238 * info.el (Info-finder-find-node): Use `finder-unknown-keywords'
3239 to create a Finder node with unknown keywords.
3240
3241 2010-03-14 Juri Linkov <juri@jurta.org>
3242
3243 * finder.el (finder-compile-keywords): Replace `princ' with
3244 `prin1' on a list of symbols interned from keyword strings.
3245
3246 * emacs-lisp/lisp-mnt.el (lm-keywords-list): If `keywords' contains
3247 a comma, then split keywords using a comma and optional whitespace.
3248 Otherwise, split by whitespace.
3249
3250 * complete.el:
3251 * face-remap.el:
3252 * log-view.el:
3253 * net/hmac-def.el:
3254 * net/hmac-md5.el:
3255 * net/netrc.el:
3256 * progmodes/mixal-mode.el: Fix keywords.
3257
3258 2010-03-13 Michael Albinus <michael.albinus@gmx.de>
3259
3260 * Makefile.in (ELCFILES): Add net/secrets.elc.
3261
3262 * net/secrets.el: New file.
3263
3264 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
3265
3266 * facemenu.el (list-colors-display, list-colors-print): New arg
3267 callback. Use it to allow selecting colors.
3268
3269 * wid-edit.el (widget-image-insert): Insert image prop even if the
3270 current display is non-graphic.
3271 (widget-field-value-set): New fun.
3272 (editable-field): Use it.
3273 (widget-field-value-get): Clean up unused var.
3274 (widget-color-value-create, widget-color--choose-action):
3275 New funs. Allow using list-colors-display to choose color.
3276
3277 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
3278
3279 * cus-edit.el: Resort topmost custom groups.
3280 (custom-buffer-sort-alphabetically): Default to t.
3281 (customize-apropos): Use apropos-parse-pattern.
3282 (custom-search-field): New var.
3283 (custom-buffer-create-internal): Add custom-apropos search field.
3284 (custom-add-parent-links): Don't display parent doc.
3285 (custom-group-value-create): Don't sort top-level custom group.
3286 (custom-magic-value-create): Show visibility button before option name.
3287
3288 (custom-variable-state): New fun, from custom-variable-state-set.
3289 (custom-variable-state-set): Use it.
3290 (custom-group-value-create): Hide options with standard values
3291 using the :hidden-states property. Use progress reporter.
3292
3293 (custom-show): Simplify.
3294 (custom-visibility): Disable images by default.
3295 (custom-variable): New property :hidden-states.
3296 (custom-variable-value-create): Enable images for
3297 custom-visibility widgets. Use :hidden-states property to
3298 determine initial visibility.
3299
3300 * wid-edit.el (widget-image-find): Give images center ascent.
3301 (visibility): Add :on-image and :off-image properties.
3302 (widget-visibility-value-create): Use them.
3303
3304 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
3305
3306 * cus-edit.el (processes): Remove from development group.
3307 (oop, hypermedia): Delete group.
3308 (comm): Promote to top-level group.
3309
3310 * net/browse-url.el (browse-url):
3311 * net/xesam.el (xesam):
3312 * net/tramp.el (tramp):
3313 * net/goto-addr.el (goto-address):
3314 * net/ange-ftp.el (ange-ftp): Put in comm group.
3315
3316 * view.el (view): Remove from editing group.
3317
3318 * uniquify.el (uniquify): Put in files group.
3319
3320 * net/browse-url.el (browse-url):
3321 * ps-print.el (postscript): Put in external group.
3322
3323 * cus-edit.el (outlines):
3324 * textmodes/text-mode.el (text-mode-hook):
3325 * textmodes/table.el (table):
3326 * textmodes/picture.el (picture):
3327 * outline.el (outlines): Put in wp group.
3328
3329 * nxml/nxml-mode.el (nxml): Remove from wp group.
3330
3331 * net/tramp-imap.el (tramp-imap): Put in tramp group.
3332
3333 * mail/metamail.el (metamail): Remove from hypermedia group.
3334
3335 * cus-edit.el (abbrev):
3336 * whitespace.el (whitespace):
3337 * vcursor.el (vcursor):
3338 * reveal.el (reveal):
3339 * hl-line.el (hl-line): Put in convenience group.
3340
3341 * epg-config.el (epg): Put in data group.
3342
3343 * emulation/pc-select.el (pc-select): Put in emulations group.
3344
3345 * calculator.el (calculator): Put in applications group.
3346
3347 2010-03-12 Dan Nicolaescu <dann@ics.uci.edu>
3348
3349 Add .dir-locals.el support for file-less buffers.
3350 * files.el (hack-local-variables): Split out code to apply local
3351 variable settings ...
3352 (hack-local-variables-apply): ... here. New function.
3353 (hack-dir-local-variables): Use the default directory for when the
3354 buffer does not have an associated file.
3355 (hack-dir-local-variables-non-file-buffer): New function.
3356 * diff-mode.el (diff-mode):
3357 * vc-annotate.el (vc-annotate-mode):
3358 * vc-dir.el (vc-dir-mode):
3359 * log-edit.el (log-edit-mode):
3360 * log-view.el (log-view-mode): Call hack-dir-local-variables-non-file-buffer.
3361
3362 2010-03-12 Dan Nicolaescu <dann@ics.uci.edu>
3363
3364 Add support for shelving snapshots and for showing shelves.
3365 * vc-bzr.el (vc-bzr-shelve-show, vc-bzr-shelve-show-at-point)
3366 (vc-bzr-shelve-apply-and-keep-at-point, vc-bzr-shelve-snapshot):
3367 New functions.
3368 (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
3369 (vc-bzr-extra-menu-map): Map them.
3370
3371 2010-03-11 Glenn Morris <rgm@gnu.org>
3372
3373 * cus-edit.el (customize-changed-options-previous-release):
3374 Bump to 23.1.
3375
3376 * image.el (image-animate-max-time): Fix :version tag.
3377
3378 2010-03-10 Chong Yidong <cyd@stupidchicken.com>
3379
3380 * Branch for 23.2.
3381
3382 2010-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
3383
3384 * vc-git.el (vc-git-revision-table): Include remote branches.
3385
3386 2010-03-10 Kim F. Storm <storm@cua.dk>
3387
3388 Animated image API.
3389 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00211.html
3390
3391 * image.el (image-animate-max-time): New defcustom.
3392 (image-animated-types): New defconst.
3393 (create-animated-image, image-animate-timer)
3394 (image-animate-start, image-animate-stop, image-animate-timeout)
3395 (image-animated-p): New functions.
3396
3397 * image-mode.el (image-toggle-display-image):
3398 Replace `create-image' with `create-animated-image'.
3399
3400 2010-03-09 Miles Bader <miles@gnu.org>
3401
3402 * vc-git.el (vc-git-print-log): Use "tformat:" for shortlog,
3403 instead of "format:"; this ensures that the output is
3404 newline-terminated.
3405
3406 2010-03-08 Chong Yidong <cyd@stupidchicken.com>
3407
3408 * mail/rfc822.el (rfc822-addresses): Use nested catches to ensure
3409 that all errors are caught, and that the return value is always a
3410 list (Bug#5692).
3411
3412 2010-03-08 Kenichi Handa <handa@m17n.org>
3413
3414 * language/misc-lang.el (windows-1256): New coding system.
3415 (cp1256): New alias of windows-1256 (bug#5690).
3416
3417 2010-03-07 Andreas Schwab <schwab@linux-m68k.org>
3418
3419 * mail/rfc822.el (rfc822-addresses): Move catch clause down around
3420 call to rfc822-bad-address. (Bug#5692)
3421
3422 2010-03-07 Štěpán Němec <stepnem@gmail.com> (tiny change)
3423
3424 * vc-git.el (vc-git-annotate-extract-revision-at-line):
3425 Use vc-git-root as default directory for revision path (Bug#5657).
3426
3427 2010-03-06 Chong Yidong <cyd@stupidchicken.com>
3428
3429 * calculator.el (calculator): Don't bind split-window-keep-point
3430 (Bug#5674).
3431
3432 2010-03-06 Stefan Monnier <monnier@iro.umontreal.ca>
3433
3434 * vc-git.el: Re-flow to fit into 80 columns.
3435 (vc-git-after-dir-status-stage, vc-git-dir-status-goto-stage):
3436 Remove spurious `quote' element in each case alternative.
3437 (vc-git-show-log-entry): Use prog1.
3438 (vc-git-after-dir-status-stage): Remove unused var `remaining'.
3439
3440 2010-03-06 Glenn Morris <rgm@gnu.org>
3441
3442 * cedet/semantic/grammar.el (semantic-grammar-header-template):
3443 Update template copyright to GPLv3+.
3444
3445 2010-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
3446
3447 * man.el (Man-files-regexp): Tighten up the regexp (bug#5686).
3448
3449 2010-03-03 Chong Yidong <cyd@stupidchicken.com>
3450
3451 * macros.el (insert-kbd-macro): Look up keyboard macro using the
3452 definition, not the name (Bug#5481).
3453
3454 2010-03-03 Štěpán Němec <stepnem@gmail.com> (tiny change)
3455
3456 * subr.el (momentary-string-display): Don't overwrite the MESSAGE
3457 argument with a local variable. (Bug#5670)
3458
3459 2010-03-02 Juri Linkov <juri@jurta.org>
3460
3461 * info.el (Info-index-next): Decrement line number by 2. (Bug#5652)
3462
3463 2010-03-02 Michael Albinus <michael.albinus@gmx.de>
3464
3465 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Fix an
3466 error when FILENAME and NEWNAME are existing remote directories.
3467
3468 * net/tramp-compat.el (tramp-compat-make-temp-file): Add optional
3469 parameter DIR-FLAG.
3470
3471 2010-03-02 Glenn Morris <rgm@gnu.org>
3472
3473 * calendar/cal-hebrew.el (holiday-hebrew-passover): Fix date
3474 of Yom HaAtzma'ut when it falls on a Monday (rule changed in 2004).
3475
3476 2010-03-01 Kenichi Handa <handa@m17n.org>
3477
3478 * language/burmese.el (burmese-composable-pattern): Rename from
3479 myanmar-composable-pattern.
3480
3481 * international/characters.el (script-list):
3482 * international/fontset.el (script-representative-chars):
3483 Change myanmar to burmese.
3484 (otf-script-alist): Likewise.
3485 (setup-default-fontset): Likewise. Re-fix :otf spec.
3486
3487 2010-02-28 Katsumi Yamaoka <yamaoka@jpl.org>
3488
3489 * menu-bar.el (menu-bar-manuals-menu): Fix typo.
3490
3491 2010-02-28 Jan Djärv <jan.h.d@swipnet.se>
3492
3493 * scroll-bar.el (scroll-bar-drag-1): Add save-excursion, bug #5654.
3494
3495 2010-02-28 Michael Albinus <michael.albinus@gmx.de>
3496
3497 * net/tramp.el (tramp-handle-write-region): START can be a string.
3498 Take care in the checks. Reported by Dan Davison
3499 <davison@stats.ox.ac.uk>.
3500
3501 2010-02-28 Michael Albinus <michael.albinus@gmx.de>
3502
3503 * net/dbus.el (dbus-introspect, dbus-get-property)
3504 (dbus-set-property, dbus-get-all-properties):
3505 Use `dbus-call-method' when noninteractive. (Bug#5645)
3506
3507 2010-02-28 Chong Yidong <cyd@stupidchicken.com>
3508
3509 * textmodes/reftex-toc.el (reftex-toc-promote-prepare):
3510 * emacs-lisp/elint.el (elint-add-required-env):
3511 * cedet/semantic/db-find.el
3512 (semanticdb-find-translate-path-brutish-default):
3513 * cedet/ede/make.el (ede-make-check-version):
3514 * calendar/icalendar.el (icalendar--add-diary-entry):
3515 * calc/calcalg2.el (math-tracing-integral):
3516 * files.el (recover-session-finish): Use with-current-buffer
3517 instead of save-excursion.
3518
3519 2010-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
3520
3521 Fix in-buffer completion when after-change-functions modify the buffer.
3522 * minibuffer.el (completion--replace): New function.
3523 (completion--do-completion): Use it and use relative movement.
3524
3525 2010-02-27 Chong Yidong <cyd@stupidchicken.com>
3526
3527 * international/fontset.el (setup-default-fontset): Fix :otf spec.
3528
3529 2010-02-27 Jeremy Whitlock <jcscoobyrs@gmail.com> (tiny change)
3530
3531 * progmodes/python.el (python-pdbtrack-stack-entry-regexp):
3532 Allow the characters _<> in the stack entry (Bug#5653).
3533
3534 2010-02-26 Kenichi Handa <handa@m17n.org>
3535
3536 * language/burmese.el: Fix entries in composition-function-table.
3537 (myanmar-composable-pattern): New variable.
3538
3539 * international/fontset.el (setup-default-fontset): Add an entry
3540 for myanmar.
3541
3542 * international/characters.el (script-list): Add Myanmar
3543 Extended-A.
3544
3545 2010-02-26 Glenn Morris <rgm@gnu.org>
3546
3547 * custom.el (custom-initialize-delay): Doc fix.
3548
3549 * mail/sendmail.el (send-mail-function): Autoload the call
3550 to custom-initialize-delay, not otherwise preserved in loaddefs.el.
3551
3552 2010-02-24 Chong Yidong <cyd@stupidchicken.com>
3553
3554 * files.el (hack-local-variables-filter): For eval forms, also
3555 check safe-local-variable-p (Bug#5636).
3556
3557 2010-02-24 Eduard Wiebe <usenet@pusto.de>
3558
3559 * javascript.el (wisent-javascript-jv-expand-tag): Avoid c(ad)ddr
3560 and use c(ad)r of cddr (Bug#5640).
3561
3562 2010-02-22 Michael Albinus <michael.albinus@gmx.de>
3563
3564 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Protect
3565 setting the modes by `ignore-errors'. It might fail, for example
3566 if the file is not owned by the user but the group.
3567 (tramp-handle-write-region): Ensure, that `tmpfile' is always readable.
3568
3569 2010-02-21 Chong Yidong <cyd@stupidchicken.com>
3570
3571 * files.el (directory-listing-before-filename-regexp): Use
3572 stricter matching for iso-style dates, to avoid false matches with
3573 date-like filenames (Bug#5597).
3574
3575 * htmlfontify.el (htmlfontify): Doc fix.
3576
3577 * eshell/eshell.el (eshell): Doc fix.
3578
3579 * startup.el (fancy-about-screen): In mode-line, apply
3580 mode-line-buffer-id face only to the buffer name (Bug#5613).
3581
3582 2010-02-20 Kevin Ryde <user42@zip.com.au>
3583
3584 * progmodes/compile.el (compilation-error-regexp-alist-alist):
3585 In `watcom' anchor regexp to start of line, to avoid slowness
3586 (Bug#5599).
3587
3588 2010-02-20 Eli Zaretskii <eliz@gnu.org>
3589
3590 * subr.el (remove-yank-excluded-properties): Explain in a comment
3591 why `category' property is removed.
3592
3593 2010-02-19 Chong Yidong <cyd@stupidchicken.com>
3594
3595 * isearch.el (isearch-update-post-hook, isearch-update): Revert
3596 2010-02-17 change.
3597
3598 2010-02-19 Ulf Jasper <ulf.jasper@web.de>
3599
3600 * calendar/icalendar.el (icalendar--convert-ordinary-to-ical)
3601 (icalendar--convert-weekly-to-ical)
3602 (icalendar--convert-yearly-to-ical)
3603 (icalendar--convert-block-to-ical)
3604 (icalendar--convert-cyclic-to-ical)
3605 (icalendar--convert-anniversary-to-ical): Take care of time
3606 specifications where hour has 1-digit only (Bug#5549).
3607
3608 2010-02-19 Nick Roberts <nickrob@snap.net.nz>
3609
3610 * progmodes/gdb-ui.el (gdb-assembler-handler): Accommodate change
3611 of disassemble output in GDB 7.1.
3612
3613 2010-02-19 Glenn Morris <rgm@gnu.org>
3614
3615 * progmodes/f90.el (f90-electric-insert): Give it a delete-selection
3616 property. (Bug#5593)
3617
3618 2010-02-18 Sam Steingold <sds@gnu.org>
3619
3620 * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
3621
3622 2010-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
3623
3624 Use abbreviated file names in bookmarks (bug#5591).
3625 * bookmark.el (bookmark-maybe-load-default-file): Remove redundant
3626 calls to expand-file-name.
3627 (bookmark-relocate): Use abbreviated file names in bookmarks.
3628 (bookmark-load): Use abbreviated file names in messages.
3629
3630 2010-02-18 Michael Albinus <michael.albinus@gmx.de>
3631
3632 * net/tramp.el (tramp-handle-directory-files): When FULL, do not
3633 expand "." and "..". Reported by Thierry Volpiatto
3634 <thierry.volpiatto@gmail.com>.
3635
3636 2010-02-18 Michael Albinus <michael.albinus@gmx.de>
3637
3638 * net/tramp.el (tramp-handle-insert-file-contents): Set always the
3639 permissions of the temporary file to "0600". In case the remote
3640 file has no read permissions for the owner, there might be
3641 problems otherwise. Reported by Ole Laursen <olau@iola.dk>.
3642
3643 22010-02-18 Glenn Morris <rgm@gnu.org>
3644
3645 * emacs-lisp/authors.el (authors-renamed-files-alist):
3646 Add entries for INSTALL.CVS.
3647
3648 2010-02-17 Mark A. Hershberger <mah@everybody.org>
3649
3650 * vc-bzr.el: Fix typo in Known Bugs section.
3651
3652 * isearch.el (isearch-update-post-hook): New hook.
3653 (isearch-update): Use the new hook.
3654
3655 2010-02-16 Michael Albinus <michael.albinus@gmx.de>
3656
3657 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
3658 Fix errors in copying directories.
3659 (tramp-handle-add-name-to-file, tramp-handle-copy-directory)
3660 (tramp-do-copy-or-rename-file, tramp-handle-delete-directory)
3661 (tramp-handle-delete-file)
3662 (tramp-handle-dired-recursive-delete-directory)
3663 (tramp-handle-write-region): Flush also the cache for the upper
3664 directory.
3665
3666 2010-02-16 Chong Yidong <cyd@stupidchicken.com>
3667
3668 * simple.el (save-interprogram-paste-before-kill): Doc fix.
3669
3670 * cus-edit.el (hardware): Doc fix.
3671
3672 * man.el (man): Add to external custom group.
3673
3674 * delim-col.el (columns): Move to wp custom group.
3675
3676 * doc-view.el (doc-view): Add to data custom group.
3677
3678 * cedet/data-debug.el (data-debug): Move to extensions group.
3679
3680 * cedet/ede.el (ede):
3681 * cedet/srecode.el (srecode):
3682 * cedet/semantic.el (semantic): Put in tools and extensions group.
3683
3684 * nxml/nxml-mode.el (nxml-faces): Remove from font-lock-faces group.
3685
3686 * textmodes/flyspell.el (flyspell-word): Obey the offset specified
3687 by ispell-parse-output (Bug#5575).
3688
3689 2010-02-16 Kenichi Handa <handa@m17n.org>
3690
3691 * international/ja-dic-cnv.el (iso-2022-7bit-short): Delete it.
3692 (skkdic-convert-okuri-ari): Ignore lines starting with '>'.
3693 (skkdic-convert): Use `euc-japan' coding system for writing.
3694
3695 2010-02-16 Glenn Morris <rgm@gnu.org>
3696
3697 * textmodes/tex-mode.el (tex-bibtex-file): Expand the result of
3698 tex-main-file before using it. (Bug#5562)
3699
3700 2010-02-15 Stefan Monnier <monnier@iro.umontreal.ca>
3701
3702 * emacs-lisp/advice.el (ad-compile-function): Suppress byte-compiler
3703 warnings, since it is annoying for the user to see them each time he
3704 runs the code.
3705
3706 2010-02-15 Michael Albinus <michael.albinus@gmx.de>
3707
3708 * net/tramp.el (tramp-process-actions, tramp-read-passwd):
3709 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection): Use VEC
3710 instead of PROC for caching "first-password-request". Otherwise,
3711 new processes would not profit from passwords already entered.
3712
3713 * net/tramp-cache.el (tramp-dump-connection-properties):
3714 Don't save "first-password-request" property.
3715
3716 2010-02-14 Juanma Barranquero <lekktu@gmail.com>
3717
3718 * outline.el (outline-head-from-level):
3719 * simple.el (with-wrapper-hook):
3720 * cedet/ede.el (ede-run-target, project-delete-target)
3721 (project-dist-files, ede-name, ede-documentation, ede-parent-project)
3722 (ede-adebug-project, ede-adebug-project-parent)
3723 (ede-adebug-project-root):
3724 * emacs-lisp/elint.el (elint-extra-errors, elint-current-buffer)
3725 (elint-defun, elint-buffer-env, elint-top-form-logged)
3726 (elint-unbound-variable):
3727 * textmodes/reftex-toc.el (reftex-toc-newhead-from-alist):
3728 Fix typos in docstrings.
3729
3730 2010-02-14 Michael Albinus <michael.albinus@gmx.de>
3731
3732 * files.el (insert-directory): When WILDCARD-REGEXP and
3733 FULL-DIRECTORY-P are nil, insert the file entry instead of the
3734 whole directory. (Bug#5551)
3735
3736 * net/ange-ftp.el (ange-ftp-insert-directory): Insert " " for
3737 dired's alignment sanity. (Bug#5516)
3738
3739 2010-02-14 Juri Linkov <juri@jurta.org>
3740
3741 * man.el (Man-fontify-manpage, Man-cleanup-manpage):
3742 Remove remaining ^H with their preceding chars. (Bug#5566)
3743
3744 2010-02-13 Glenn Morris <rgm@gnu.org>
3745
3746 * simple.el (transpose-subr): Give it a doc-string.
3747
3748 * textmodes/paragraphs.el (transpose-paragraphs, transpose-sentences):
3749 Doc fixes.
3750
3751 2010-02-12 Juri Linkov <juri@jurta.org>
3752
3753 * arc-mode.el (archive-unique-fname): Make directories for nested
3754 archives. (Bug#5540)
3755
3756 2010-02-12 Juri Linkov <juri@jurta.org>
3757
3758 * ffap.el (dired-at-point): Fix docstring. (Bug#5565)
3759
3760 2010-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
3761
3762 * subr.el (copy-overlay): Handle deleted overlays.
3763
3764 * man.el (Man-completion-table): Don't signal an error if we can't run
3765 manual-program (bug#4056).
3766
3767 2010-02-10 Juanma Barranquero <lekktu@gmail.com>
3768
3769 * textmodes/artist.el (artist-mt): Fix typos in docstring.
3770
3771 2010-02-10 Thierry Volpiatto <thierry.volpiatto@gmail.com>
3772
3773 * info.el (Info-bookmark-jump): Simplify.
3774
3775 * bookmark.el (bookmark-handle-bookmark): Catch the right error.
3776 (bookmark-default-handler): Accept new bookmark field `buffer'.
3777
3778 2010-02-10 Chong Yidong <cyd@stupidchicken.com>
3779
3780 * iswitchb.el (iswitchb-completions): Revert last change.
3781
3782 2010-02-10 Michael Albinus <michael.albinus@gmx.de>
3783
3784 * ls-lisp.el (ls-lisp-insert-directory): When WILDCARD-REGEXP and
3785 FULL-DIRECTORY-P are nil, and FILE is absolute, expand it.
3786 This prevents file names like "~/" being listed literally.
3787
3788 2010-02-10 Dan Nicolaescu <dann@ics.uci.edu>
3789
3790 * term/xterm.el (xterm-maybe-set-dark-background-mode):
3791 Remove dead code. (Bug#5546)
3792
3793 2010-02-09 Chong Yidong <cyd@stupidchicken.com>
3794
3795 * eshell/em-ls.el (eshell-ls-applicable): Frob file attributes
3796 correctly (Bug#5548).
3797
3798 2010-02-08 Jose E. Marchesi <jemarch@gnu.org>
3799
3800 * progmodes/ada-mode.el (ada-in-numeric-literal-p): New function.
3801 (ada-adjust-case): Don't adjust case in hexadecimal number literals.
3802
3803 2010-02-08 Kenichi Handa <handa@m17n.org>
3804
3805 * international/mule-util.el (with-coding-priority): Add autoload
3806 cookie for putting `lisp-indent-function'.
3807
3808 2010-02-07 Glenn Morris <rgm@gnu.org>
3809
3810 * progmodes/f90.el (f90-font-lock-keywords-1, f90-font-lock-keywords-2):
3811 Move F2003 named interfaces from keywords-2 to keywords-1, and
3812 use function-name-face rather than constant-face.
3813 Simplify "abstract interface" regexp.
3814
3815 2010-02-07 Chong Yidong <cyd@stupidchicken.com>
3816
3817 * eshell/esh-util.el (eshell-file-attributes): New optional arg
3818 ID-FORMAT. Pass it to `file-attributes'.
3819
3820 * eshell/em-ls.el (eshell-do-ls): Use it (Bug#5528).
3821
3822 2010-02-07 sj <prime.wizard+emacs@gmail.com> (tiny change)
3823
3824 * faces.el (set-face-attribute): Allow calling
3825 internal-set-lisp-face-attribute with 'unspecified family and
3826 foundry argument (Bug#5536).
3827
3828 2010-02-07 Glenn Morris <rgm@gnu.org>
3829
3830 * progmodes/f90.el (f90-font-lock-keywords-2)
3831 (f90-looking-at-type-like, f90-looking-at-program-block-end):
3832 Handle F2003 named interfaces.
3833
3834 2010-02-06 Chong Yidong <cyd@stupidchicken.com>
3835
3836 * progmodes/cc-mode.el (c-common-init): Bind temporary variables
3837 beg and end before calling c-get-state-before-change-functions.
3838
3839 2010-02-06 Dan Nicolaescu <dann@ics.uci.edu>
3840
3841 * vc-bzr.el (vc-bzr-dir-extra-headers): Disable the pending merges header.
3842
3843 2010-02-05 Juri Linkov <juri@jurta.org>
3844
3845 * doc-view.el (doc-view-mode):
3846 * image-mode.el (image-mode): Put property mode-class=special.
3847 (Bug#4896)
3848
3849 2010-02-05 Mark A. Hershberger <mah@everybody.org>
3850
3851 * vc-svn.el (vc-svn-revision-table): New function.
3852
3853 2010-02-05 Michael Albinus <michael.albinus@gmx.de>
3854
3855 * net/ange-ftp.el (ange-ftp-insert-directory):
3856 * net/tramp-imap.el (tramp-imap-handle-insert-directory):
3857 * net/tramp-smb.el (tramp-smb-handle-insert-directory):
3858 Handle also directories. (Bug#5478)
3859
3860 2010-02-05 Glenn Morris <rgm@gnu.org>
3861
3862 * progmodes/f90.el (f90-font-lock-keywords-2): Fix `enum'.
3863
3864 2010-02-05 Chong Yidong <cyd@stupidchicken.com>
3865
3866 * startup.el (command-line-1): Convert options beginning with a
3867 single dash as well (Bug#5519).
3868
3869 2010-02-05 Stefan Monnier <monnier@iro.umontreal.ca>
3870
3871 Make `initials' completion work for /hh -> /home/horn again (bug#5524).
3872 * minibuffer.el (completion-initials-expand): Only check the presence
3873 of delims *within* the boundaries, since otherwise the / delim is
3874 always found for files.
3875
3876 Fix up various corner case problems.
3877 * doc-view.el (doc-view-last-page-number): New function.
3878 (doc-view-mode, doc-view-last-page, doc-view-goto-page): Use it.
3879 (doc-view-goto-page): Avoid inf-loops when the conversion fails.
3880 (doc-view-kill-proc): Avoid inf-loop in freak cases.
3881 (doc-view-reconvert-doc): Use the new recursive delete-directory.
3882 (doc-view-convert-current-doc): Don't create the resolution.el file
3883 here any more.
3884 (doc-view-pdf/ps->png): Do it here instead.
3885 (doc-view-already-converted-p): Check that resolution.el is present.
3886 (doc-view-pdf->png): Don't rely on doc-view-pdf/ps->png for the few
3887 windows that are not yet showing images.
3888
3889 2010-02-04 Michael Albinus <michael.albinus@gmx.de>
3890
3891 * dired.el (dired-revert): If DIRED-DIRECTORY is a cons cell, call
3892 `dired-uncache' for every elemnt which is an absolute file name.
3893
3894 * net/tramp.el (tramp-handle-dired-uncache): When DIR is not a
3895 directory, handle its directory component.
3896 (tramp-handle-file-remote-p): Let-bind `tramp-verbose' to 3; this
3897 function is called permanently and creates noise, otherwise.
3898
3899 * net/tramp-imap.el (tramp-imap-handle-insert-directory):
3900 * net/tramp-smb.el (tramp-smb-handle-insert-directory):
3901 Handle the case, FILENAME is not in `default-directory'. (Bug#5478)
3902
3903 2010-02-04 David Burger <dburger@google.com> (tiny change)
3904
3905 * macros.el (apply-macro-to-region-lines):
3906 Minor simplification. (Bug#5485)
3907
3908 2010-02-04 Glenn Morris <rgm@gnu.org>
3909
3910 * mail/rmail.el (rmail-show-message-1): Handle malformed
3911 quoted-printable text. (Bug#5441)
3912
3913 * mail/mail-utils.el (mail-unquote-printable-region): Doc fix.
3914
3915 * simple.el (visual-line-mode): Capitalize lighter.
3916
3917 2010-02-03 John Wiegley <jwiegley@gmail.com>
3918
3919 * iswitchb.el (iswitchb-completions): Add bookmark files to the
3920 list of files considered for "virtual buffer" completions.
3921
3922 2010-02-03 Michael Albinus <michael.albinus@gmx.de>
3923
3924 * net/ange-ftp.el (ange-ftp-insert-directory): Parse directory
3925 also in case of (and (not full) (not wildcard)). This is needed,
3926 when dired is called with a list of files, which are not in
3927 `default-directory'. (Bug#5478)
3928
3929 2010-02-03 Stefan Monnier <monnier@iro.umontreal.ca>
3930
3931 * vc-hooks.el (vc-path): Make it an obsolete var, rather than function.
3932
3933 2010-02-02 Juri Linkov <juri@jurta.org>
3934
3935 * textmodes/ispell.el (ispell-message-text-end): Remove final newline
3936 from unidiff to allow function-line after @@.
3937
3938 2010-02-02 Juri Linkov <juri@jurta.org>
3939
3940 * ediff-util.el (ediff-file-checked-in-p): Replace '(nil CVS) by
3941 '(RCS SCCS) with inverted condition.
3942
3943 2010-02-02 Michael Albinus <michael.albinus@gmx.de>
3944
3945 * net/ange-ftp.el (ange-ftp-skip-msgs): Ignore all ""^500 .*AUTH"
3946 messages.
3947
3948 2010-02-01 Juri Linkov <juri@jurta.org>
3949
3950 * arc-mode.el (archive-zip-extract): Use `member-ignore-case' to
3951 compare with "pkunzip" and "pkzip" instead of only "pkzip".
3952 In the `archive-extract-by-stdout' branch use `shell-quote-argument'
3953 only when (car archive-zip-extract) is "unzip". (Bug#5475)
3954
3955 2010-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
3956
3957 * doc-view.el (doc-view-new-window-function): Be a bit more defensive.
3958 (doc-view-revert-buffer): New command.
3959 (doc-view-mode-map): Use it.
3960
3961 2010-02-01 Dan Nicolaescu <dann@ics.uci.edu>
3962
3963 * vc-bzr.el (vc-bzr-dir-extra-headers): Add a header when a
3964 pending merge is detected.
3965
3966 2010-01-31 Juri Linkov <juri@jurta.org>
3967
3968 * progmodes/grep.el (zrgrep): Call `grep-compute-defaults' at the
3969 beginning of interactive spec like all other grep commands do.
3970 Put "all" in front of "gz". (Bug#5260)
3971
3972 2010-01-29 Dan Nicolaescu <dann@ics.uci.edu>
3973
3974 * vc-bzr.el (vc-bzr-after-dir-status): Match another renaming indicator.
3975
3976 2010-01-29 Chong Yidong <cyd@stupidchicken.com>
3977
3978 * dirtrack.el (dirtrack): Warn instead of signalling error if the
3979 regexp is incorrect (Bug#5476).
3980
3981 2010-01-29 Michael Albinus <michael.albinus@gmx.de>
3982
3983 * net/tramp.el (tramp-handle-insert-directory): Handle also
3984 symlinks, when FILENAME is not in `default-directory'.
3985
3986 2010-01-28 Michael Albinus <michael.albinus@gmx.de>
3987
3988 * net/ange-ftp.el (ange-ftp-insert-directory): Handle the case,
3989 FILE is not in `default-directory'. (Bug#5478)
3990
3991 * net/tramp.el (tramp-handle-insert-directory): Simplify handling
3992 of SWITCHES. Handle the case, FILENAME is not in
3993 `default-directory'. (Bug#5478)
3994 (tramp-register-file-name-handlers): Add safe-magic property.
3995
3996 2010-01-28 Chong Yidong <cyd@stupidchicken.com>
3997
3998 * arc-mode.el (archive-zip-extract): Quote the argument passed to
3999 unzip (Bug#5475).
4000
4001 2010-01-28 Nil Geisweiller <ngeiswei@googlemail.com> (tiny change)
4002
4003 * progmodes/flymake.el (flymake-allowed-file-name-masks)
4004 (flymake-master-make-header-init): Add other C++ filename masks.
4005 (flymake-find-possible-master-files)
4006 (flymake-check-patch-master-file-buffer): Doc fixes (Bug#5488).
4007
4008 2010-01-28 Michael Albinus <michael.albinus@gmx.de>
4009
4010 Fix some busybox annoyances.
4011
4012 * net/tramp.el (tramp-wrong-passwd-regexp): Add "Timeout, server
4013 not responding." string.
4014 (tramp-open-connection-setup-interactive-shell): Dump stty
4015 settings. Enable "neveropen" arg for all `tramp-send-command'
4016 calls. Handle "=" in variable values properly.
4017 (tramp-find-inline-encoding): Raise an error, when no encoding is
4018 found.
4019 (tramp-wait-for-output): Check, whether PROC buffer is available.
4020 Remove spurious " ^H" sequences, sent by busybox.
4021 (tramp-get-ls-command): Suppress coloring, if possible.
4022
4023 2010-01-28 Glenn Morris <rgm@gnu.org>
4024
4025 * vc-svn.el (vc-svn-update): Use "svn --non-interactive". (Bug#4280)
4026
4027 * log-edit.el (log-edit-strip-single-file-name): Add missing
4028 :safe, :group, and :version tags.
4029
4030 2010-01-27 Stephen Berman <stephen.berman@gmx.net>
4031
4032 * calendar/diary-lib.el (diary-unhide-everything): Handle narrowed
4033 buffers. (Bug#5477)
4034
4035 2010-01-27 David De La Harpe Golden <david@harpegolden.net>
4036
4037 * files.el (delete-directory): Handle moving to trash without
4038 first doing recursion (Bug#5436).
4039
4040 2010-01-26 Dan Nicolaescu <dann@ics.uci.edu>
4041
4042 * vc-hooks.el (vc-path): Mark as obsolete.
4043
4044 2010-01-25 Dan Nicolaescu <dann@ics.uci.edu>
4045
4046 * vc-annotate.el (vc-annotate-revision-at-line): Compare file
4047 names too.
4048
4049 * vc-bzr.el (vc-bzr-print-log): Use the more compact --line option
4050 for the short log.
4051 (vc-bzr-log-view-mode): Adjust regexp for the above change.
4052
4053 2010-01-25 Mark A. Hershberger <mah@everybody.org>
4054
4055 * progmodes/python.el: Replace reference to obsolete c-subword-mode.
4056
4057 * vc-bzr.el (vc-bzr-revision-table): New function.
4058
4059 2010-01-25 Eric Hanchrow <eric.hanchrow@gmail.com> (tiny change)
4060
4061 * vc-git.el (vc-git-dir-status-goto-stage): Pass --relative to the
4062 diff-index command. This requires at least git-1.5.5. (Bug#1589).
4063
4064 2010-01-24 Dan Nicolaescu <dann@ics.uci.edu>
4065
4066 Remove support for adding --signoff on commit.
4067 Future support will use an incompatible generic mechanism.
4068 * vc-git.el (vc-git-add-signoff): Remove variable.
4069 (vc-git-toggle-signoff): Remove function.
4070 (vc-git-extra-menu-map): Do not bind vc-git-toggle-signoff.
4071
4072 * term/xterm.el (xterm-maybe-set-dark-background-mode): Rename
4073 from xterm-set-background-mode. Return t if the background mode
4074 was set.
4075 (terminal-init-xterm): Move tty-set-up-initial-frame-faces
4076 earlier, call it again in case the background mode has changed.
4077
4078 2010-01-23 Dmitri Paduchikh <dpaduch@k66.ru> (tiny change)
4079
4080 * emacs-lisp/advice.el (ad-set-orig-definition): Fix typo
4081 (Bug#3541).
4082
4083 2010-01-23 Chong Yidong <cyd@stupidchicken.com>
4084
4085 * emacs-lisp/assoc.el (aelement): Doc fix.
4086 (aput, adelete, amake): Use lexical-let (Bug#5450).
4087
4088 2010-01-23 Stephen Leake <stephen_leake@member.fsf.org>
4089
4090 * progmodes/ada-mode.el (ada-in-paramlist-p): Pragma syntax
4091 is the same as subprogram call, not declaration. (Bug#5435).
4092
4093 2010-01-23 Michael Albinus <michael.albinus@gmx.de>
4094
4095 * net/tramp-smb.el (tramp-smb-conf): New defcustom.
4096 (tramp-smb-maybe-open-connection): Use it.
4097
4098 2010-01-22 Michael Albinus <michael.albinus@gmx.de>
4099
4100 * net/tramp-imap.el (top): Autoload needed packages. (Bug#5448)
4101
4102 2010-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
4103
4104 * mail/rmailmm.el (rmail-mime-handle): Don't set the buffer to unibyte
4105 just because we see "encoding: 8bit".
4106 * mail/rmail.el (rmail-show-message-1): Decode the body's QP into bytes.
4107
4108 2010-01-22 Chong Yidong <cyd@stupidchicken.com>
4109
4110 * isearch.el (isearch-allow-scroll): Doc fix (Bug#5446).
4111
4112 2010-01-22 Eli Zaretskii <eliz@gnu.org>
4113
4114 * jka-compr.el (jka-compr-load): If load-file is not in
4115 load-history, try its file-truename version. (bug#5447)
4116
4117 2010-01-21 Alan Mackenzie <acm@muc.de>
4118
4119 Fix a situation where deletion of a cpp construct throws an error.
4120 * progmodes/cc-engine.el (c-invalidate-state-cache): Before
4121 invoking c-with-all-but-one-cpps-commented-out, check that the
4122 special cpp construct is still in the buffer.
4123 (c-parse-state): Record the special cpp with markers, not numbers.
4124
4125 2010-01-21 Kenichi Handa <handa@m17n.org>
4126
4127 * textmodes/sgml-mode.el (sgml-maybe-name-self): No need to
4128 process last-command-event, as it is now decoded first (Bug#5380).
4129
4130 2010-01-20 Chong Yidong <cyd@stupidchicken.com>
4131
4132 * term.el (term-send-raw-meta): Revert 2009-12-04 change (Bug#5330).
4133
4134 2010-01-20 Glenn Morris <rgm@gnu.org>
4135
4136 * indent.el (tab-always-indent): Fix custom-type.
4137
4138 2010-01-19 Alan Mackenzie <acm@muc.de>
4139
4140 * progmodes/cc-defs.el: Fix bug#5395: typing '#' in an empty
4141 buffer throws "args out of range".
4142 (c-set-cpp-delimiters, c-clear-cpp-delimiters): Check for EOB
4143 playing the role of delimiter.
4144
4145 2010-01-18 Stephen Leake <stephen_leake@member.fsf.org>
4146
4147 * progmodes/ada-mode.el: Fix bug#5400.
4148 (ada-matching-decl-start-re): Move into ada-goto-decl-start.
4149 (ada-goto-decl-start): Rename from ada-goto-matching-decl-start; callers
4150 changed. Delete RECURSIVE parameter; never used. Improve doc string.
4151 Improve comments in "is" portion. Handle null procedure declaration.
4152 (ada-move-to-end): Improve doc string.
4153
4154 2010-01-18 Óscar Fuentes <ofv@wanadoo.es>
4155
4156 * ido.el (ido-cur-list): Initialize to nil.
4157 Remove obsolete information from commentary.
4158 (ido-choice-list): Initialize to nil.
4159 (ido-get-bufname): Reject minibuffers.
4160 (ido-make-buffer-list): If "default" is a nonexistent
4161 buffer, ignore it, as per the function's comment.
4162 (ido-kill-buffer-internal): New function.
4163 (ido-kill-buffer-at-head): Use it.
4164 (ido-visit-buffer): Likewise.
4165
4166 2010-01-18 Chong Yidong <cyd@stupidchicken.com>
4167
4168 * calendar/time-date.el (date-to-time): Doc fix (Bug#5408).
4169
4170 2010-01-18 Juanma Barranquero <lekktu@gmail.com>
4171
4172 * cedet/ede/locate.el (ede-locate-file-in-project)
4173 (ede-locate-file-in-project-impl): Fix typos in docstrings.
4174 (ede-enable-locate-on-project): Fix typos in error messages.
4175
4176 * cedet/semantic/util-modes.el (semantic-unmatched-syntax-face)
4177 (semantic-stickyfunc-old-hlf, semantic-stickyfunc-header-line-format)
4178 (semantic-stickyfunc-sticky-classes, semantic-highlight-func-mode-setup)
4179 (semantic-stickyfunc-fetch-stickyline): Fix typos in docstrings.
4180 (semantic-stickyfunc-popup-menu, semantic-highlight-func-popup-menu):
4181 Fix typos in menu help.
4182
4183 * emacs-lisp/chart.el (chart-file-count, chart-rmail-from):
4184 Fix typos in chart titles.
4185
4186 * whitespace.el (whitespace-style, global-whitespace-newline-mode):
4187 * cedet/semantic.el (semantic-require-version, semantic--buffer-cache)
4188 (semantic-unmatched-syntax-cache-check, semantic-unmatched-syntax-hook)
4189 (semantic--before-fetch-tags-hook, semantic-new-buffer-fcn-was-run)
4190 (semantic--umatched-syntax-needs-refresh-p, semantic-elapsed-time)
4191 (semantic-parse-stream, semantic-parse-region)
4192 (semantic-parse-region-default, semantic--set-buffer-cache)
4193 (semantic-minimum-working-buffer-size, semantic-refresh-tags-safe)
4194 (semantic-bovinate-toplevel, semantic-load-system-cache-loaded)
4195 (semantic-default-submodes):
4196 * cedet/semantic/db-ebrowse.el (semanticdb-table-ebrowse)
4197 (semanticdb-create-ebrowse-database)
4198 (semanticdb-find-tags-for-completion-method)
4199 (semanticdb-find-tags-by-class-method)
4200 (semanticdb-deep-find-tags-by-name-method)
4201 (semanticdb-deep-find-tags-for-completion-method):
4202 * cedet/semantic/db-el.el (semanticdb-elisp-mapatom-collector)
4203 (semanticdb-find-tags-by-name-method, emacs-lisp-mode)
4204 (semanticdb-find-tags-for-completion-method)
4205 (semanticdb-find-tags-by-class-method)
4206 (semanticdb-deep-find-tags-for-completion-method):
4207 * cedet/semantic/db-find.el (semanticdb-find-translate-path)
4208 (semanticdb-find-need-cache-update-p, semanticdb-find-result-with-nil-p)
4209 (semanticdb-find-scanned-include-tags, semanticdb-find-tags-collector)
4210 (semanticdb-find-tags-by-name-method)
4211 (semanticdb-find-tags-by-name-regexp-method)
4212 (semanticdb-find-tags-for-completion-method)
4213 (semanticdb-find-tags-by-class-method)
4214 (semanticdb-find-tags-external-children-of-type-method)
4215 (semanticdb-find-tags-subclasses-of-type-method)
4216 (semanticdb-deep-find-tags-by-name-method)
4217 (semanticdb-deep-find-tags-by-name-regexp-method)
4218 (semanticdb-deep-find-tags-for-completion-method):
4219 * cedet/semantic/db-global.el (semanticdb-enable-gnu-global-hook)
4220 (semanticdb-enable-gnu-global-in-buffer)
4221 (semanticdb-find-tags-for-completion-method)
4222 (semanticdb-deep-find-tags-by-name-method)
4223 (semanticdb-deep-find-tags-for-completion-method):
4224 * cedet/semantic/db-javascript.el (semanticdb-javascript-tags)
4225 (javascript-mode, semanticdb-find-translate-path)
4226 (semanticdb-find-tags-for-completion-method)
4227 (semanticdb-find-tags-by-class-method)
4228 (semanticdb-deep-find-tags-by-name-method)
4229 (semanticdb-deep-find-tags-for-completion-method)
4230 (semanticdb-find-tags-external-children-of-type-method):
4231 * cedet/semantic/idle.el (semantic-idle-work-core-handler)
4232 (define-semantic-idle-service, semantic-idle-summary-useful-context-p)
4233 (global-semantic-idle-scheduler-mode):
4234 * cedet/srecode/dictionary.el (srecode-field-value)
4235 (srecode-dictionary-add-section-dictionary):
4236 * emacs-lisp/eieio.el (eieio-error-unsupported-class-tags)
4237 (eieio-generic-form, eieio-help-mode-augmentation-maybee, eieio-browse)
4238 (describe-class, eieio-describe-generic, describe-generic):
4239 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click)
4240 (eieio-speedbar-expand):
4241 * emulation/viper-cmd.el (viper-exec-form-in-vi)
4242 (viper-exec-form-in-emacs, viper-harness-minor-mode, viper-ESC)
4243 (viper-repeat, viper-replace-state-exit-cmd, viper-toggle-search-style)
4244 (viper-del-backward-char-in-replace, viper-backward-indent)
4245 (viper-brac-function, viper-register-to-point, viper-submit-report):
4246 * net/tramp.el (tramp-remote-coding-commands):
4247 * term/x-win.el (emacs-session-save, x-menu-bar-open, icon-map-list):
4248 Fix typos in docstrings.
4249
4250 2010-01-17 Chong Yidong <cyd@stupidchicken.com>
4251
4252 * mail/sendmail.el (mail-yank-original): Set the mark if the
4253 specified function for yanking does not do it.
4254
4255 2010-01-17 Dan Nicolaescu <dann@ics.uci.edu>
4256
4257 * vc.el (with-vc-properties): Deal with directory arguments. (Bug#5298)
4258
4259 * vc-dir.el (vc-dir-resynch-file): Update the vc-dir header when
4260 resyncing a directory.
4261
4262 2010-01-17 Stephen Leake <stephen_leake@member.fsf.org>
4263
4264 * progmodes/ada-mode.el: Fix bug#1920.
4265 (ada-ident-re): Delete ., allow multibyte characters.
4266 (ada-goto-label-re): New; matches goto labels.
4267 (ada-block-label-re): New; matches block labels.
4268 (ada-label-re): New; matches both.
4269 (ada-named-block-re): Deleted; callers changed to use
4270 `ada-block-label-re' instead.
4271 (ada-get-current-indent, ada-get-indent-noindent, ada-get-indent-loop):
4272 Use `ada-block-label-re'.
4273 (ada-indent-on-previous-lines): Improve handling of goto labels.
4274 (ada-get-indent-block-start): Special-case block label.
4275 (ada-get-indent-label): Split into `ada-indent-block-label' and
4276 `ada-indent-goto-label'.
4277 (ada-goto-stmt-start, ada-goto-next-non-ws):
4278 Optionally ignore goto labels.
4279 (ada-goto-next-word): Simplify.
4280 (ada-indent-newline-indent-conditional): Insert newline before
4281 trying to fix indentation; doc fix.
4282
4283 2010-01-17 Jay Belanger <jay.p.belanger@gmail.com>
4284
4285 * calc/calc.el (calc-command-flags): Give it an initial value.
4286
4287 2010-01-17 Glenn Morris <rgm@gnu.org>
4288
4289 * cedet/semantic/idle.el (semantic-idle-work-for-one-buffer): Doc fix.
4290
4291 2010-01-17 Juanma Barranquero <lekktu@gmail.com>
4292
4293 * cedet/semantic.el (semantic-mode):
4294 * files.el (minibuffer-with-setup-hook):
4295 * textmodes/artist.el (artist-mt, artist-key-undraw-continously)
4296 (artist-key-draw-continously, artist-key-do-continously-continously)
4297 (artist-key-set-point-continously, artist-mouse-draw-continously):
4298 Fix typos in docstrings.
4299
4300 2010-01-16 Lennart Borgman <lennart.borgman@gmail.com>
4301
4302 * nxml/nxml-mode.el (nxml-extend-after-change-region): Never
4303 return t (Bug#3898).
4304
4305 2010-01-16 Frédéric Perrin <frederic.perrin@resel.fr> (tiny change)
4306
4307 * vc-dispatcher.el (vc-do-command): Set LC_MESSAGES, so that we
4308 can parse the output of the external commands (Bug#5279).
4309
4310 2010-01-16 Jari Aalto <jari.aalto@cante.net>
4311
4312 * pcmpl-unix.el (pcmpl-unix-read-passwd-file): Doc fix.
4313
4314 2010-01-16 Chong Yidong <cyd@stupidchicken.com>
4315
4316 * emacs-lisp/advice.el (ad-add-advice): Doc fix (Bug#5274)
4317
4318 * emacs-lisp/cl-macs.el (defstruct): Doc fix (Bug#5267).
4319
4320 * startup.el (command-line): Remove unused --icon-type arg.
4321 Handle --display arg, passing it to command-line-1 (Bug#5392).
4322
4323 2010-01-16 Mario Lang <mlang@delysid.org>
4324
4325 * cedet/ede/cpp-root.el (ede-cpp-root-project):
4326 * cedet/ede/files.el (ede-expand-filename):
4327 * cedet/ede/simple.el (ede-simple-project):
4328 * cedet/semantic/complete.el (semantic-complete-read-tag-engine)
4329 (semantic-complete-inline-tag-engine):
4330 * cedet/semantic/db-el.el (semanticdb-equivalent-mode):
4331 * cedet/semantic/db-global.el (semanticdb-equivalent-mode):
4332 * cedet/semantic/db-javascript.el (semanticdb-equivalent-mode):
4333 * cedet/semantic/db.el (semanticdb-equivalent-mode):
4334 * cedet/semantic/decorate/include.el (semantic-decoration-unknown-include-describe):
4335 * cedet/semantic/idle.el (semantic-idle-work-for-one-buffer):
4336 * emacs-lisp/chart.el (chart-translate-namezone):
4337 * textmodes/artist.el (artist-compute-popup-menu-table):
4338 Remove duplicated words in doc-strings.
4339
4340 2010-01-15 David Abrahams <dave@boostpro.com> (tiny change)
4341
4342 * net/mairix.el (mairix-widget-send-query): Send -1 instead of nil
4343 to mairix-search to suppress threading (Bug#5342).
4344
4345 2010-01-15 Kenichi Handa <handa@m17n.org>
4346
4347 * international/mule-cmds.el (canonicalize-coding-system-name):
4348 Convert "msXXX", "ibmXXX", "windows-XXX" to "cpXXX" (Bug#5387).
4349
4350 2010-01-15 Glenn Morris <rgm@gnu.org>
4351
4352 * log-view.el (top-level): Require 'wid-edit. (Bug#5311)
4353
4354 * wid-edit.el (widget-keymap): Doc fix.
4355
4356 * vc-svn.el (vc-svn-print-log): Use --limit rather than -l since the
4357 former seems to be more widely accepted by various svn versions.
4358
4359 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
4360
4361 * find-cmd.el (find-constituents):
4362 * vc-arch.el (vc-arch-root):
4363 * window.el (window-body-height, pop-up-frames):
4364 * cedet/semantic/edit.el (semantic-reparse-needed-change-hook)
4365 (semantic-no-reparse-needed-change-hook):
4366 * cedet/srecode/insert.el (srecode-resolve-argument-list)
4367 (srecode-template-inserter-blank, srecode-template-inserter-variable)
4368 (srecode-template-inserter-ask, srecode-template-inserter-width)
4369 (srecode-template-inserter-section-start)
4370 (srecode-template-inserter-section-end, srecode-insert-method):
4371 * emacs-lisp/eieio-base.el (eieio-singleton, slot-missing):
4372 * progmodes/ada-stmt.el (ada-if):
4373 * progmodes/gdb-ui.el (gdb-jsonify-buffer):
4374 * textmodes/ispell.el (ispell-grep-options, ispell-dictionary-alist)
4375 (ispell-encoding8-command, ispell-aspell-supports-utf8)
4376 (ispell-last-program-name, ispell-help): Fix typos in docstrings.
4377
4378 * progmodes/flymake.el (flymake-post-syntax-check):
4379 Fix typo in error message.
4380
4381 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
4382
4383 * hexl.el (hexl-printable-character): Fix check of `hexl-iso',
4384 which is always a string. (Bug#5313)
4385
4386 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
4387
4388 * progmodes/ada-xref.el (ada-default-prj-properties):
4389 Simplify previous change.
4390
4391 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
4392
4393 * progmodes/ada-xref.el (ada-default-prj-properties):
4394 Default ada_project_path to $ADA_PROJECT_PATH.
4395
4396 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
4397
4398 * progmodes/ada-mode.el (ada-create-keymap):
4399 Override `narrow-to-defun' with `ada-narrow-to-defun'.
4400
4401 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
4402
4403 * progmodes/ada-mode.el: Deal with Ada 2005 "overriding" keyword.
4404 (ada-subprog-start-re, ada-imenu-subprogram-menu-re): Add keyword.
4405 (ada-get-current-indent, ada-imenu-generic-expression)
4406 (ada-which-function): Check for it.
4407
4408 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
4409
4410 * progmodes/ada-mode.el (ada-clean-buffer-before-saving): Make obsolete.
4411 (ada-mode): Don't obey `ada-clean-buffer-before-saving' anymore.
4412
4413 2010-01-14 Glenn Morris <rgm@gnu.org>
4414
4415 * frame.el (show-trailing-whitespace): Safe if boolean. (Bug#5312)
4416
4417 2010-01-14 Kenichi Handa <handa@m17n.org>
4418
4419 * composite.el (auto-composition-mode): Make it a buffer local
4420 variable (permanent-local).
4421 (auto-composition-function): Set the default value to
4422 auto-compose-chars.
4423 (auto-composition-mode): Make it a simple function, not a minor mode.
4424 (global-auto-composition-mode): Likewise.
4425 (turn-on-auto-composition-if-enabled): Delete it.
4426
4427 2010-01-13 Karl Fogel <kfogel@red-bean.com>
4428
4429 * bookmark.el (bookmark-bmenu-execute-deletions): Doc fix (Bug#5276).
4430
4431 2010-01-12 Michael Albinus <michael.albinus@gmx.de>
4432
4433 * files.el (copy-directory): Compute target for recursive
4434 directories with identical names. (Bug#5343)
4435
4436 2010-01-12 Glenn Morris <rgm@gnu.org>
4437
4438 * mail/emacsbug.el (report-emacs-bug-pretest-address): Set
4439 it to bug-gnu-emacs rather than emacs-pretest-bug.
4440
4441 2010-01-12 Juanma Barranquero <lekktu@gmail.com>
4442
4443 * cedet/data-debug.el (data-debug): Fix customization group reference.
4444
4445 2010-01-12 Juanma Barranquero <lekktu@gmail.com>
4446
4447 * cedet/semantic/analyze.el (semantic-analyze-push-error)
4448 (semantic-analyze-context, semantic-analyze-context-assignment)
4449 (semantic-analyze-find-tag-sequence, semantic-analyze-find-tag):
4450 * cedet/semantic/java.el (java-mode, semantic-tag-include-filename)
4451 (semantic-java-doc-keywords-map):
4452 * cedet/semantic/bovine/c.el (c-mode, semantic-c-member-of-autocast)
4453 (semantic-lex-c-nested-namespace-ignore-second, semantic-parse-region)
4454 (semantic-c-parse-lexical-token, semantic-c-debug-mode-init-pch)
4455 (semantic-c-classname, semantic-format-tag-uml-prototype)
4456 (semantic-c-dereference-namespace, semantic-analyze-type-constants):
4457 * cedet/semantic/bovine/el.el (semantic-elisp-form-to-doc-string)
4458 (semantic-emacs-lisp-obsoleted-doc, semantic-up-context)
4459 (semantic-get-local-variables, semantic-end-of-command)
4460 (semantic-beginning-of-command, semantic-ctxt-current-class-list)
4461 (lisp-mode):
4462 * cedet/semantic/bovine/make.el (makefile-mode):
4463 * cedet/semantic/wisent/python.el (wisent-python-string-re)
4464 (wisent-python-implicit-line-joining-p, wisent-python-forward-string)
4465 (wisent-python-lex-beginning-of-line, wisent-python-lex-end-of-line)
4466 (semantic-lex, semantic-get-local-variables, python-mode):
4467 * cedet/semantic/wisent/python-wy.el (wisent-python-wy--keyword-table):
4468 * cedet/srecode/extract.el (srecode-extract-state-set)
4469 (srecode-extract-method): Fix typos in docstrings.
4470
4471 2010-01-11 Sam Steingold <sds@gnu.org>
4472
4473 * imenu.el (imenu-default-create-index-function): Detect infinite
4474 loops caused by imenu-prev-index-position-function.
4475
4476 2010-01-11 Juanma Barranquero <lekktu@gmail.com>
4477
4478 * htmlfontify.el (htmlfontify-load-rgb-file)
4479 (htmlfontify-unload-rgb-file, hfy-fallback-colour-values)
4480 (htmlfontify-manual, htmlfontify, hfy-page-header, hfy-page-footer)
4481 (hfy-src-doc-link-style, hfy-src-doc-link-unstyle, hfy-link-extn)
4482 (hfy-link-style-fun, hfy-index-file, hfy-instance-file)
4483 (hfy-html-quote-regex, hfy-init-kludge-hook, hfy-post-html-hooks)
4484 (hfy-default-face-def, hfy-etag-regex, hfy-html-quote-map)
4485 (hfy-etags-cmd-alist-default, hfy-etags-bin, hfy-ignored-properties)
4486 (hfy-which-etags, hfy-etags-cmd, hfy-istext-command, hfy-display-class)
4487 (hfy-optimisations, hfy-tags-cache, hfy-tags-sortl, hfy-tags-rmap)
4488 (hfy-style-assoc, hfy-sheet-assoc, hfy-facemap-assoc, hfy-interq)
4489 (hfy-colour-vals, hfy-default-header, hfy-link-style-string)
4490 (hfy-triplet, hfy-slant, hfy-weight, hfy-combined-face-spec)
4491 (hfy-face-attr-for-class, hfy-face-to-style-i, hfy-size-to-int)
4492 (hfy-flatten-style, hfy-face-to-style, hfy-face-or-def-to-name)
4493 (hfy-face-to-css, hfy-p-to-face, hfy-p-to-face-lennart, hfy-face-at)
4494 (hfy-fontified-p, hfy-merge-adjacent-spans, hfy-buffer)
4495 (hfy-html-enkludge-buffer, hfy-html-quote, hfy-html-dekludge-buffer)
4496 (hfy-force-fontification, htmlfontify-buffer, hfy-dirname)
4497 (hfy-make-directory, hfy-text-p, hfy-mark-tag-names, hfy-relstub)
4498 (hfy-href-stub, hfy-href, hfy-mark-tag-hrefs, hfy-prepare-index-i)
4499 (hfy-prepare-index, hfy-prepare-tag-map, hfy-subtract-maps)
4500 (htmlfontify-run-etags): Fix typos in docstrings and remove superfluous
4501 backslash-quoting from parentheses, etc.
4502
4503 2010-01-11 Chong Yidong <cyd@stupidchicken.com>
4504
4505 * progmodes/js.el: Autoload javascript-mode alias.
4506
4507 2010-01-11 Juanma Barranquero <lekktu@gmail.com>
4508
4509 * ffap.el (ffap-shell-prompt-regexp, ffap-all-subdirs, ffap-url-p)
4510 (ffap-alist, ffap-tex-path, ffap-url-at-point, ffap-gopher-regexp)
4511 (ffap-gopher-at-point, ffap-file-at-point, ffap-read-file-or-url)
4512 (ffap-read-url-internal, ffap-menu, ffap-at-mouse):
4513 Fix typos in docstrings.
4514 (ffap-url-regexp): Doc fix.
4515 (ffap-at-mouse): Fix typo in message.
4516
4517 2010-01-11 Glenn Morris <rgm@gnu.org>
4518
4519 * version.el (emacs-copyright): Set copyright year to 2010.
4520
4521 2010-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
4522
4523 * format.el (format-annotate-function): Only set
4524 write-region-post-annotation-function after running to-fn so as not to
4525 affect nested write-region calls (bug#5273).
4526
4527 2010-01-10 Chong Yidong <cyd@stupidchicken.com>
4528
4529 * cedet/semantic.el (semantic-new-buffer-setup-functions):
4530 Add python parser.
4531
4532 * Makefile.in (ELCFILES): Add wisent/python-wy.el and
4533 wisent/python.el.
4534
4535 2010-01-10 Richard Kim <emacs18@gmail.com>
4536
4537 * cedet/semantic/wisent/python-wy.el:
4538 * cedet/semantic/wisent/python.el: New files.
4539
4540 2010-01-09 Chong Yidong <cyd@stupidchicken.com>
4541
4542 * man.el (Man-goto-section): Signal error if the section is not
4543 found (Bug#5317).
4544
4545 2010-01-09 Juanma Barranquero <lekktu@gmail.com>
4546
4547 * vc-bzr.el (vc-bzr-working-revision): On Windows and MS-DOS, accept
4548 URLs with a leading triple slash in the file: scheme. (Bug#5345)
4549
4550 2010-01-09 Chong Yidong <cyd@stupidchicken.com>
4551
4552 * progmodes/compile.el: Don't treat compile-command as safe if
4553 compilation-read-command might be nil (Bug#4218).
4554
4555 2010-01-09 Jan Djärv <jan.h.d@swipnet.se>
4556
4557 * startup.el (command-line-1): Use orig-argi to check for ignored X and
4558 NS options.
4559
4560 2010-01-08 Kenichi Handa <handa@m17n.org>
4561
4562 * international/fontset.el (build-default-fontset-data):
4563 Exclude characters in scripts kana, hangul, han, or cjk-misc.
4564
4565 2010-01-07 Juanma Barranquero <lekktu@gmail.com>
4566
4567 * vc-dir.el (vc-dir-prepare-status-buffer): Pass a (fake) filename
4568 to `create-file-buffer' as it expects, not just a buffer name.
4569 (vc-dir-mode): Include the buffer name in `list-buffers-directory',
4570 to help uniquify. (Bug#3224)
4571
4572 2010-01-06 Jan Djärv <jan.h.d@swipnet.se>
4573
4574 * font-setting.el (font-setting-change-default-font): Use user-spec
4575 instead of name.
4576
4577 2010-01-06 Dan Nicolaescu <dann@ics.uci.edu>
4578
4579 * vc-bzr.el (vc-bzr-after-dir-status): Ignore pending merges.
4580
4581 2010-01-05 Tom Tromey <tromey@redhat.com>
4582
4583 * progmodes/python.el (python-font-lock-keywords):
4584 Handle qualified decorators (Bug#881).
4585
4586 2010-01-05 Dan Nicolaescu <dann@ics.uci.edu>
4587
4588 * vc-bzr.el (vc-bzr-working-revision): Fix looking for a revision
4589 in a lightweight checkout.
4590
4591 2010-01-05 Kenichi Handa <handa@m17n.org>
4592
4593 * language/indian.el (malayalam-composable-pattern): Fix ZWNJ and ZWJ.
4594
4595 2010-01-05 Dan Nicolaescu <dann@ics.uci.edu>
4596
4597 * vc-bzr.el (vc-bzr-diff): Obey vc-disable-async-diff.
4598
4599 2010-01-04 Dan Nicolaescu <dann@ics.uci.edu>
4600
4601 * vc-bzr.el (vc-bzr-state-heuristic): Make it work for lightweight
4602 checkouts. (Bug#618)
4603 (vc-bzr-log-view-mode): Also highlight the author.
4604 (vc-bzr-shelve-map): Change binding for vc-bzr-shelve-apply-at-point.
4605 (vc-bzr-shelve-menu-map):
4606 (vc-bzr-dir-extra-headers): Improve menu and tooltip text.
4607 (vc-bzr-shelve-apply): Make prompt more explicit.
4608
4609 2010-01-02 Chong Yidong <cyd@stupidchicken.com>
4610
4611 * net/browse-url.el (browse-url-encode-url): Don't escape commas.
4612 They are valid characters in URL paths (rfc3986), and at least
4613 Firefox does not understand the encoded version (Bug#3166).
4614
4615 2010-01-02 Daniel Elliott <danelliottster@gmail.com> (tiny change)
4616
4617 * progmodes/octave-mod.el (octave-end-keywords)
4618 (octave-block-begin-or-end-regexp, octave-block-match-alist):
4619 Add "end" keyword (Bug#3061).
4620 (octave-end-as-array-index-p): New function.
4621 (calculate-octave-indent): Use it.
4622
4623 2010-01-02 Karl Fogel <kfogel@red-bean.com>
4624
4625 * bookmark.el: Consistently put the text property on the bookmark name.
4626 (bookmark-bmenu-marks-width): Bump back to 2, to include
4627 annotation marks.
4628 (bookmark-bmenu-hide-filenames): Adjust for above, and put the text
4629 property on the bookmark name, instead of not putting it at all.
4630 (bookmark-bmenu-list): Fix where we put the text property.
4631
4632 2010-01-02 Karl Fogel <kfogel@red-bean.com>
4633
4634 * bookmark.el (bookmark-bmenu-save): Just depend on the new logic
4635 for showing buffer modified state (as added in the previous change).
4636
4637 2010-01-02 Karl Fogel <kfogel@red-bean.com>
4638
4639 * bookmark.el: Show modified state of bookmark buffer more accurately.
4640 (bookmark-bmenu-list): Initialize buffer-modified-p properly.
4641 (bookmark-send-edited-annotation): Mark bookmark-alist as modified.
4642 (with-buffer-modified-unmodified): New macro.
4643 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
4644 (bookmark-bmenu-mark, bookmark-bmenu-unmark, bookmark-bmenu-delete):
4645 Use new macro to preserve the buffer modified state.
4646
4647 2010-01-02 Karl Fogel <kfogel@red-bean.com>
4648
4649 * bookmark.el (bookmark-bmenu-select, bookmark-bmenu-1-window)
4650 (bookmark-bmenu-2-window, bookmark-bmenu-this-window)
4651 (bookmark-bmenu-other-window, bookmark-bmenu-switch-other-window)
4652 (bookmark-bmenu-show-annotation, bookmark-bmenu-edit-annotation)
4653 (bookmark-bmenu-rename, bookmark-bmenu-locate)
4654 (bookmark-bmenu-relocate, bookmark-bmenu-goto-bookmark):
4655 Remove unnecessary calls to `bookmark-bmenu-ensure-position'.
4656
4657 2010-01-02 Eli Zaretskii <eliz@gnu.org>
4658
4659 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
4660 Make the lines in the generated doc string shorter. (Bug#4668)
4661
4662 2010-01-02 Ryan Yeske <rcyeske@gmail.com>
4663
4664 * net/rcirc.el: Add follow-link binding (Bug#4738).
4665
4666 2010-01-02 Eli Zaretskii <eliz@gnu.org>
4667
4668 * Makefile.in (bzr-update): Rename from cvs-update.
4669 (cvs-update): New target for backward compatibility.
4670
4671 * makefile.w32-in (bzr-update): Rename from cvs-update.
4672 (cvs-update): New target for backward compatibility.
4673
4674 2010-01-02 Karl Fogel <kfogel@red-bean.com>
4675
4676 * bookmark.el: Remove gratuitous gratitude.
4677
4678 2010-01-02 Karl Fogel <kfogel@red-bean.com>
4679
4680 * bookmark.el (bookmark-bmenu-any-marks): New function
4681 (bookmark-bmenu-save): Clear buffer modification if no marks.
4682
4683 2010-01-02 Karl Fogel <kfogel@red-bean.com>
4684
4685 * bookmark.el (bookmark-bmenu-marks-width): Define to 1, not 2.
4686 (bookmark-bmenu-list, bookmark-bmenu-bookmark): Calculate property
4687 positions by using `bookmark-bmenu-marks-width', instead of hardcoding.
4688 This fixes the `bookmark-bmenu-execute-deletions' bug reported here:
4689
4690 http://lists.gnu.org/archive/html/emacs-devel/2009-12/msg00819.html
4691 From: Sun Yijiang <sunyijiang {_AT_} gmail.com>
4692 To: emacs-devel {_AT_} gnu.org
4693 Subject: bookmark.el bug report
4694 Date: Mon, 28 Dec 2009 14:19:16 +0800
4695 Message-ID: 5065e2900912272219y3734fc9fsdaee41167ef99ad7@mail.gmail.com
4696
4697 2010-01-02 Karl Fogel <kfogel@red-bean.com>
4698
4699 * bookmark.el: Improvements suggested by Drew Adams:
4700 (bookmark-bmenu-ensure-position): New name for
4701 `bookmark-bmenu-check-position'. Just ensure the position,
4702 don't return any meaningful value.
4703 (bookmark-bmenu-header-height, bookmark-bmenu-marks-width):
4704 New constants.
4705
4706 2010-01-02 Juanma Barranquero <lekktu@gmail.com>
4707
4708 * bookmark.el (bookmarks-already-loaded): Doc fix (don't use `iff').
4709 (bookmark-yank-point, bookmark-bmenu-check-position):
4710 Fix typos in docstrings.
4711 (bookmark-save-flag, bookmark-bmenu-toggle-filenames)
4712 (bookmark-name-from-full-record, bookmark-get-position)
4713 (bookmark-set-position, bookmark-set, bookmark-handle-bookmark)
4714 (bookmark-delete, bookmark-save, bookmark-save, bookmark-bmenu-mode):
4715 Remove useless quoting of parenthesis, etc. in docstrings.
4716
4717 * ediff-mult.el (ediff-prepare-meta-buffer): Fix typo in help message.
4718 (ediff-append-custom-diff): Fix typo in error message.
4719 (ediff-meta-mark-equal-files): Fix typos in messages.
4720
4721 * mpc.el (mpc-playlist-delete): Fix typo in error messages.
4722
4723 * cedet/semantic/db-typecache.el (semanticdb-typecache-find-default):
4724 Fix typo in docstring.
4725
4726 * net/imap-hash.el (imap-hash-make): Doc fix.
4727 (imap-hash-test): Fix typo in error message; reflow docstring.
4728 (imap-hash-p, imap-hash-get, imap-hash-put, imap-hash-make-message)
4729 (imap-hash-count, imap-hash-server, imap-hash-port, imap-hash-ssl)
4730 (imap-hash-mailbox, imap-hash-user, imap-hash-password):
4731 Fix typos in docstrings.
4732 (imap-hash-open-connection): Fix typo in error message.
4733
4734 * play/gomoku.el (gomoku): Fix typos in docstring.
4735
4736 * progmodes/gdb-ui.el (gdb-location-alist): Reflow docstring.
4737 (gdb-jsonify-buffer): Fix typos in docstring.
4738 (gdb-goto-breakpoint): Fix typo in error message.
4739 ("Display Other Windows"): Fix typo in help message.
4740 (gdb-speedbar-expand-node): Fix typo in question.
4741
4742 * progmodes/idlw-help.el (idlwave-help-browse-url-available)
4743 (idlwave-html-system-help-location, idlwave-html-help-location)
4744 (idlwave-help-browser-function, idlwave-help-browser-generic-program)
4745 (idlwave-help-browser-generic-args, idlwave-help-directory)
4746 (idlwave-html-help-is-available, idlwave-help-mode-line-indicator)
4747 (idlwave-help-mode-map, idlwave-help-mode, idlwave-do-context-help)
4748 (idlwave-online-help, idlwave-help-html-link)
4749 (idlwave-help-show-help-frame, idlwave-help-assistant-command):
4750 Fix typos in docstrings.
4751 (idlwave-help-with-source, idlwave-help-find-routine-definition):
4752 Reflow docstrings.
4753 (idlwave-help-assistant-start): Fix typo in error message.
4754
4755 * progmodes/octave-mod.el (octave-mode, octave-electric-semi)
4756 (octave-electric-space): Fix typos in docstrings.
4757
4758 2010-01-01 Chong Yidong <cyd@stupidchicken.com>
4759
4760 * files.el (minibuffer-with-setup-hook): Doc fix (Bug#5149).
4761
4762 2010-01-01 Juri Linkov <juri@jurta.org>
4763
4764 * comint.el (comint-input-ring-size): Make it a defcustom and
4765 increase the default to 500 (Bug#5148).
4766
4767 2009-12-31 Nick Roberts <nickrob@snap.net.nz>
4768
4769 Further changes from EMACS_23_1_RC branch (2009-12-29 contd).
4770 * term/x-win.el (x-gtk-stock-map): Map some GUD buttons.
4771 * progmodes/gud.el (gud-menu-map): Add reverse-execution commands.
4772
4773 2009-12-30 Nick Roberts <nickrob@snap.net.nz>
4774
4775 Show working revision correctly for mercurial.
4776 * vc-hg.el (vc-hg-working-revision): Use hg parent instead of
4777 hg log as suggested by Alex Harsanyi <alexharsanyi@gmail.com>.
4778
4779 2009-12-29 Juanma Barranquero <lekktu@gmail.com>
4780
4781 Declare some functions for the byte-compiler.
4782 * progmodes/gdb-ui.el (speedbar-change-initial-expansion-list)
4783 (speedbar-timer-fn, speedbar-change-expand-button-char)
4784 (speedbar-delete-subblock, speedbar-center-buffer-smartly): Declare.
4785
4786 2009-12-29 Nick Roberts <nickrob@snap.net.nz>
4787
4788 This changeset reverts GDB Graphical Interface to use annotations.
4789 * progmodes/gdb-ui.el, progmodes/gud.el: Import from EMACS_23_1_RC.
4790
4791 2009-12-29 Dan Nicolaescu <dann@ics.uci.edu>
4792
4793 Make vc-dir work on subdirectories of the bzr root.
4794 * vc-bzr.el (vc-bzr-after-dir-status): Add new argument. Return
4795 file names relative to it.
4796 (vc-bzr-dir-status, vc-bzr-dir-status-files): Pass the bzr root
4797 relative directory to vc-bzr-after-dir-status.
4798
4799 2009-12-28 Tassilo Horn <tassilo@member.fsf.org>
4800
4801 * font-lock.el (font-lock-refresh-defaults): New function, which
4802 can be used to let font-lock react to external changes in
4803 variables like font-lock-defaults and keywords.
4804 See http://thread.gmane.org/gmane.emacs.devel/118777/focus=118802
4805
4806 2009-12-28 Dan Nicolaescu <dann@ics.uci.edu>
4807
4808 * vc-rcs.el (vc-rcs-register): Fix registering a specific version.
4809
4810 * vc-bzr.el (vc-bzr-log-view-mode): Fix short log regexp.
4811
4812 2009-12-28 Juanma Barranquero <lekktu@gmail.com>
4813
4814 Supersede color.diff settings in git log (bug#5211).
4815
4816 * vc-git.el (vc-git-print-log): Pass "--no-color" to log to avoid
4817 escape chars in its output when the user has color.diff set to `always'.
4818 This fix works on git 1.4.2 and newer (released on 2006-08-13).
4819
4820 2009-12-26 Kevin Ryde <user42@zip.com.au>
4821
4822 * info-look.el (sh-mode): Look for coreutils new "Concept Index"
4823 node. Keep previous "Index" name to work with past coreutils too.
4824
4825 * man.el (man): Revise docstring a bit to show -a and -l as
4826 examples. Add -k description since support for it has otherwise
4827 been a secret. (Further to bug#3717.)
4828 (Man-bgproc-sentinel): When "-k foo" produces no output show error
4829 "no matches" rather than "Can't find manpage", as the latter reads
4830 like -k was interpreted as a page name, which is not so. (Bug#5431)
4831
4832 2009-12-26 Michael Albinus <michael.albinus@gmx.de>
4833
4834 * net/tramp.el (tramp-handle-insert-directory): Quote "'" in the
4835 switches. Check also for //SUBDIRED// line.
4836
4837 2009-12-25 Kenichi Handa <handa@m17n.org>
4838
4839 * language/indian.el (devanagari-composable-pattern): Fixed to
4840 handle ZWNJ and ZWJ. Use it in composition-function-table for
4841 Devanagari.
4842 (malayalam-composable-pattern): Fix previous change.
4843
4844 2009-12-23 Vinicius Jose Latorre <viniciusjl@ig.com.br>
4845
4846 * ps-print.el (ps-face-attributes): It was not returning the
4847 attribute face for faces specified as string. Reported by harven
4848 <harven@free.fr>.
4849 (ps-print-version): New version 7.3.5.
4850
4851 2009-12-18 Ulf Jasper <ulf.jasper@web.de>
4852
4853 * calendar/icalendar.el (icalendar--convert-tz-offset):
4854 Fix timezone names.
4855 (icalendar--convert-tz-offset): Fix the "last-day-problem".
4856 (icalendar--add-diary-entry): Remove the trailing blank that
4857 diary-make-entry inserts.
4858
4859 2009-12-17 Michael Albinus <michael.albinus@gmx.de>
4860
4861 Make `file-expand-wildcards' work for remote files.
4862
4863 * files.el (file-expand-wildcards): In case of remote files, check
4864 only local file name part for wildcards. Provide feature 'files
4865 and subfeature 'remote-wildcards. (Bug#5198)
4866
4867 * net/tramp.el (tramp-handle-file-remote-p): Expand file name only
4868 if there is already an established connection.
4869 (tramp-advice-file-expand-wildcards): Remove it.
4870
4871 * net/tramp-compat.el (top): Autoload `tramp-handle-file-remote-p'.
4872 (tramp-advice-file-expand-wildcards): Move from tramp.el.
4873 Activate advice for older GNU Emacs versions. (Bug#5237)
4874
4875 2009-12-17 Juanma Barranquero <lekktu@gmail.com>
4876
4877 Some doc fixes (more needed).
4878
4879 * find-cmd.el (find-constituents): Reflow docstring.
4880 (find-cmd, find-prune, find-command): Fix typos in docstrings.
4881 (find-generic): Doc fix.
4882
4883 2009-12-17 Juri Linkov <juri@jurta.org>
4884
4885 Fix regression from 23.1 to allow multiple modes in Local Variables.
4886
4887 * files.el (hack-local-variables-filter): While ignoring duplicates,
4888 don't take `mode' into account.
4889 (hack-local-variables-filter, hack-dir-local-variables):
4890 Don't remove duplicate `mode' from local-variables-alist (like `eval').
4891
4892 2009-12-17 Juri Linkov <juri@jurta.org>
4893
4894 Make `dired-diff' safer. (Bug#5225)
4895
4896 * dired-aux.el (dired-diff): Signal an error when `file' equals to
4897 `current' or when `file' is a directory of the `current' file.
4898
4899 2009-12-17 Andreas Schwab <schwab@linux-m68k.org>
4900
4901 * emacs-lisp/autoload.el (batch-update-autoloads): Only exclude
4902 unconditionally preloaded files.
4903
4904 2009-12-16 Juri Linkov <juri@jurta.org>
4905
4906 Revert to old 23.1 logic of using the file at the mark as default.
4907 * dired-aux.el (dired-diff): Use the file at the mark as default
4908 if it's not the same as the current file, and the target dir is
4909 the current dir or the mark is active. Add the current file
4910 as the arg of `dired-dwim-target-defaults'. Use the default file
4911 in the prompt. (Bug#5225)
4912
4913 2009-12-15 Michael Albinus <michael.albinus@gmx.de>
4914
4915 * net/tramp.el (tramp-echo-mark-marker-length): New defconst.
4916 (tramp-echo-mark, tramp-echoed-echo-mark-regexp): Use it.
4917 (tramp-check-for-regexp): Check also, when an echoing shell stops
4918 to echo sent commands.
4919
4920 2009-12-14 Chong Yidong <cyd@stupidchicken.com>
4921
4922 * Makefile.in: Revert last change (Bug#5191).
4923
4924 2009-12-14 Dan Nicolaescu <dann@ics.uci.edu>
4925
4926 * vc-hg.el (vc-hg-print-log): Fix argument order.
4927 (vc-hg-working-revision): Make sure the command is executed in a
4928 known environment so that we can parse the output. (Bug#4417)
4929
4930 2009-12-14 Chong Yidong <cyd@stupidchicken.com>
4931
4932 * progmodes/python.el (python-symbol-completions): Remove text
4933 properties from symbol string before calling python-send-receive.
4934
4935 2009-12-14 Nick Roberts <nickrob@snap.net.nz>
4936
4937 * progmodes/gdb-mi.el (gdb-frame-handler): Only set gud-lat-frame
4938 when there are values for both file and line. (Bug#5060)
4939
4940 2009-12-14 Juri Linkov <juri@jurta.org>
4941
4942 * ediff-ptch.el (ediff-context-diff-label-regexp): Don't match
4943 whitespace after the file name of the first line of unified format,
4944 because git-diff doesn't output whitespace and file modification time
4945 after the file name.
4946
4947 2009-12-14 David Kastrup <dak@gnu.org>
4948
4949 * info.el (Info-hide-cookies-node): Before hiding a cookie,
4950 check if it already has the `display' property added by
4951 `Info-display-images-node', and not put the `invisible' property
4952 in this case.
4953
4954 2009-12-14 Chong Yidong <cyd@stupidchicken.com>
4955
4956 * cedet/semantic/mru-bookmark.el (global-semantic-mru-bookmark-mode)
4957 (semantic-mru-bookmark-mode): Doc fixes.
4958
4959 * cedet/semantic/db.el (semanticdb-cache-get): Use error instead
4960 of assert.
4961
4962 2009-12-13 Glenn Morris <rgm@gnu.org>
4963
4964 * mail/emacsbug.el (message-sort-headers): Define for compiler.
4965 (report-emacs-bug): In message-mode, sort manually before storing
4966 original report text. (Bug#5178)
4967 Remove superfluous save-excursion.
4968
4969 2009-12-12 Michael Albinus <michael.albinus@gmx.de>
4970
4971 * net/dbus.el (dbus-property-handler): Filter lambda forms out
4972 when responding to "GetAll" properties.
4973
4974 2009-12-12 Chong Yidong <cyd@stupidchicken.com>
4975
4976 * simple.el (compose-mail): Remove mail-setup-with-from from
4977 customization checks.
4978
4979 2009-12-12 Eli Zaretskii <eliz@gnu.org>
4980
4981 * arc-mode.el (archive-rar-summarize): Support Attribute fields in
4982 RAR archives created on Unix systems.
4983
4984 2009-12-12 Stefan Monnier <monnier@iro.umontreal.ca>
4985
4986 * minibuffer.el (minibuffer-local-must-match-filename-map): Re-instate
4987 the varalias that was accidentally removed by the 2009-11-19 change
4988 (bug#5186).
4989
4990 2009-12-12 Kenichi Handa <handa@m17n.org>
4991
4992 * language/indian.el (indian-compose-regexp): New function.
4993 (malayalam-composable-pattern): Fix the pattern.
4994 (composition-function-table): Set malayalam-composable-pattern for
4995 Malayalam characters.
4996
4997 2009-12-11 Chong Yidong <cyd@stupidchicken.com>
4998
4999 * progmodes/bug-reference.el (bug-reference-map): Bind mouse-2
5000 rather than down-mouse-1, based on follow-link conventions.
5001
5002 * makefile.w32-in: Ensure that Lisp files in CEDET subdirectories
5003 are compiled.
5004
5005 2009-12-11 Michael McNamara <mac@mail.brushroad.com>
5006
5007 * progmodes/verilog-mode.el (verilog-vmm-begin-re, verilog-vmm-end-re)
5008 (verilog-vmm-statement-re, verilog-ovm-statement-re)
5009 (verilog-defun-level-not-generate-re, verilog-calculate-indent)
5010 (verilog-leap-to-head, verilog-backward-token):
5011 Fix indenting VMM macros. Reported by Jonathan Ashbrook.
5012
5013 2009-12-11 Wilson Snyder <wsnyder@wsnyder.org>
5014
5015 * progmodes/verilog-mode.el (verilog-auto-lineup)
5016 (verilog-nameable-item-re): Cleanup user-visible spelling and
5017 documentation errors. One reported by Gary Delp.
5018 (verilog-submit-bug-report): Mention bug tracking and CC co-author.
5019 (verilog-read-decls): Fix AUTOWIRE with types declared in a
5020 package, bug195. Reported by Pierre-David Pfister.
5021
5022 2009-12-11 Glenn Morris <rgm@gnu.org>
5023
5024 * progmodes/cc-engine.el (safe-pos-list): Define for compiler.
5025
5026 * mail/emacsbug.el: No longer require sendmail.
5027 Replace sendmail's `mail-text' by `rfc822-goto-eoh'. (Bug#5174)
5028 (report-emacs-bug-orig-text): Doc fix.
5029 (report-emacs-bug-send-command, report-emacs-bug-send-hook):
5030 New local variables, to adapt to different mail-user-agents.
5031 (report-emacs-bug): Fix test for a gnu.org address.
5032 Use overlays for emphasis, since font-lock defeats 'face property.
5033 Pretest bugs also end up at the newsgroup these days.
5034 Stop message-mode stripping text properties.
5035 Set and use the new buffer-local variables.
5036 (report-emacs-bug-hook): Add doc-string.
5037 Remove some unnecessary save-excursions and simplify.
5038 Use the appropriate hook and send-command.
5039
5040 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Standardize the
5041 capitalization of some menu entries.
5042
5043 2009-12-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5044
5045 * whitespace.el (whitespace-display-char-on):
5046 Ensure `buffer-display-table' is unique when two or more windows are
5047 visible. Reported by Martin Pohlack <mp26@os.inf.tu-dresden.de>.
5048 New version 12.1.
5049
5050 2009-12-10 Eli Zaretskii <eliz@gnu.org>
5051
5052 * arc-mode.el (archive-rar-summarize): Allow between 6 and 7
5053 characters in the Attribute field.
5054
5055 2009-12-10 Dan Nicolaescu <dann@ics.uci.edu>
5056
5057 * vc-svn.el (vc-svn-after-dir-status): Fix regexp. (Bug#4741)
5058
5059 2009-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
5060
5061 Let loaddefs.el adjust to changes in autoload-excludes (bug#5162).
5062 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
5063 Disregard autoload-excludes.
5064 (update-directory-autoloads): Obey autoload-excludes here instead.
5065 But don't store its contents in no-autoloads and remove entries that
5066 refer to excludes files.
5067
5068 2009-12-10 Glenn Morris <rgm@gnu.org>
5069
5070 * mail/feedmail.el (top-level): Move require 'mail-utils to start.
5071 (expand-mail-aliases): Define for compiler.
5072
5073 * vc-annotate.el (log-view-vc-backend, log-view-vc-fileset):
5074 Define for compiler.
5075
5076 * mail/emacsbug.el (report-emacs-bug): Use whichever send command is
5077 appropriate for the mail-user-agent in use.
5078
5079 2009-12-09 Michael Albinus <michael.albinus@gmx.de>
5080
5081 * net/tramp.el (tramp-handle-insert-directory): Suppress error messages.
5082
5083 2009-12-09 Dan Nicolaescu <dann@ics.uci.edu>
5084
5085 Fix short log parsing and fontification.
5086 * vc-bzr.el (vc-bzr-log-view-mode): Match dot in revision number.
5087 Fix fontification for the [merge] label.
5088
5089 2009-12-09 Vivek Dasmohapatra <vivek@etla.org>
5090
5091 Drop some properties to avoid surprises (bug#5002).
5092 * htmlfontify.el (hfy-ignored-properties): New defcustom.
5093 (hfy-fontify-buffer): Use it.
5094
5095 2009-12-09 Stefan Monnier <monnier@iro.umontreal.ca>
5096
5097 Minor cleanup.
5098 * ffap.el (ffap-symbol-value): Replace ffap-soft-value.
5099 Adjust all callers.
5100 (ffap-locate-file): Remove unused arg `dir-ok' and make other
5101 args compulsory. Adjust callers.
5102 (ffap-gopher-at-point): Remove unused var `name'.
5103
5104 Get rid of the ELCFILES abomination.
5105 * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
5106 (compile-elcfiles): New phony target.
5107 (compile-main): Compute ELCFILES dynamically.
5108 (compile-clean): New target to remove left-over elc files.
5109 (compile, all): Use it.
5110
5111 2009-12-09 Kenichi Handa <handa@etlken>
5112
5113 * international/mule-diag.el: Require help-mode instead of help-fns.
5114
5115 2009-12-09 Kenichi Handa <handa@m17n.org>
5116
5117 * international/mule-cmds.el (ucs-names): Supply sufficiently
5118 fine ranges instead of pre-calculating accurate ranges.
5119 Iterate with bigger gc-cons-threshold.
5120
5121 2009-12-08 Dan Nicolaescu <dann@ics.uci.edu>
5122
5123 Add support for stashing a snapshot of the current tree.
5124 * vc-git.el (vc-git-stash-snapshot): New function.
5125 (vc-git-stash-map, vc-git-extra-menu-map): Add a mapping for it.
5126
5127 2009-12-08 Jose E. Marchesi <jemarch@gnu.org>
5128
5129 * play/gomoku.el (gomoku-mode-map): Remap `move-(beginning|end)-of-line'
5130 instead of `(beginning|end)-of-line'.
5131
5132 2009-12-08 Glenn Morris <rgm@gnu.org>
5133
5134 * vc-mtn.el (vc-mtn-print-log): Fix typo in previous.
5135
5136 * Makefile.in (ELCFILES): Regenerate.
5137
5138 2009-12-07 Juri Linkov <juri@jurta.org>
5139
5140 Don't lazy-highlight the comint output in history Isearch mode.
5141
5142 * comint.el (comint-history-isearch-search): Instead of
5143 `comint-line-beginning-position', use `comint-after-pmark-p'
5144 to check if point if before the process mark, and go to
5145 `process-mark' in this case.
5146
5147 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
5148
5149 * textmodes/tex-mode.el (latex-complete)
5150 (latex-indent-or-complete): Remove.
5151 (latex-mode): Set completion-at-point-functions instead.
5152
5153 Provide a standard completion command and hook it into TAB.
5154 * minibuffer.el (completion-at-point-functions): New var.
5155 (completion-at-point): New command.
5156 * indent.el (indent-for-tab-command): Handle the `complete' behavior.
5157 * progmodes/python.el (python-mode-map): Use completion-at-point.
5158 (python-completion-at-point): Rename from python-partial-symbol and
5159 adjust for use in completion-at-point-functions.
5160 (python-mode): Setup completion-at-point for Python completion.
5161 * emacs-lisp/lisp.el (lisp-completion-at-point): New function
5162 extracted from lisp-complete-symbol.
5163 (lisp-complete-symbol): Use it.
5164 * emacs-lisp/lisp-mode.el (emacs-lisp-mode): Use define-derived-mode,
5165 setup completion-at-point for Elisp completion.
5166 (emacs-lisp-mode-map, lisp-interaction-mode-map):
5167 Use completion-at-point.
5168 * ielm.el (ielm-map): Use completion-at-point.
5169 (inferior-emacs-lisp-mode): Setup completion-at-point-functions.
5170 * progmodes/sym-comp.el: Move to...
5171 * obsolete/sym-comp.el: Move from progmodes.
5172
5173 2009-12-07 Eli Zaretskii <eliz@gnu.org>
5174
5175 Prevent save-buffer in Rmail buffers from using the coding-system
5176 of the current message, and from clobbering the encoding mnemonics
5177 in the mode line (Bug#4623).
5178
5179 * mail/rmail.el (rmail-swap-buffers): Swap encoding and modified
5180 flag, too.
5181 (rmail-message-encoding): New variable.
5182 (rmail-write-region-annotate): Record the encoding of the current
5183 message in rmail-message-encoding.
5184 (rmail-after-save-hook): New function, restores the encoding of
5185 the current message after the message collection is saved.
5186
5187 2009-12-07 Juri Linkov <juri@jurta.org>
5188
5189 * progmodes/grep.el (grep-read-files): Use `completing-read'
5190 instead of `read-string'. Set its `collection' arg to
5191 `read-file-name-internal'. (Bug#4301)
5192
5193 2009-12-07 Juri Linkov <juri@jurta.org>
5194
5195 Correctly restore original Isearch point. (Bug#4994)
5196
5197 * isearch.el (isearch-mode): Move `isearch-push-state' after
5198 `(run-hooks 'isearch-mode-hook)'.
5199 (isearch-cancel): When `isearch-push-state-function' is defined,
5200 let-bind `isearch-cmds' to the first state (the last element of
5201 `isearch-cmds') and call `isearch-top-state' (it calls pop-state
5202 function and restores the original point). Otherwise, move point
5203 to `isearch-opoint'.
5204
5205 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
5206
5207 * international/mule-cmds.el (ucs-names): Weed out at compile-time the
5208 chars that don't have names, so the table can be built much faster at
5209 run-time.
5210
5211 2009-12-07 Chong Yidong <cyd@stupidchicken.com>
5212
5213 * vc-bzr.el (vc-bzr-annotate-command): More elegant form for last
5214 change. Suggested by David Kastrup.
5215
5216 * simple.el (compose-mail): Check for incompatibilities and warn.
5217 (compose-mail-user-agent-warnings): New option.
5218
5219 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
5220
5221 Support showing a single log entry from vc-annotate.
5222 * vc.el (print-log): Add a new argument: START-REVISION.
5223 (vc-print-log-internal): Add a new optional argument and
5224 pass it to the backend.
5225 (vc-print-log, vc-print-root-log): Adjust callers.
5226 * vc-annotate.el (vc-annotate-show-log-revision-at-line): If a
5227 buffer already displays the requested log entry, use it.
5228 Otherwise display only the log entry in question.
5229 * vc-svn.el (vc-svn-print-log):
5230 * vc-mtn.el (vc-mtn-print-log):
5231 * vc-hg.el (vc-hg-state):
5232 * vc-git.el (vc-git-print-log): Add support for new argument START-REVISION.
5233 (vc-git-show-log-entry): Return t on success.
5234 * vc-bzr.el (vc-bzr-print-log): Add support new argument START-REVISION.
5235 (vc-bzr-show-log-entry): Return t on success.
5236 * vc-rcs.el (vc-rcs-print-log):
5237 * vc-sccs.el (vc-sccs-print-log):
5238 * vc-cvs.el (vc-cvs-print-log): Add new argument, ignore it.
5239
5240 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
5241
5242 * ediff-mult.el (ediff-setup-meta-map, ediff-prepare-meta-buffer):
5243 Add menus to the meta mode. (Bug#5043)
5244
5245 2009-12-07 Michael Kifer <kifer@cs.stonybrook.edu>
5246
5247 * ediff-init.el (ediff-event-key): Use event-to-character instead of
5248 event-key.
5249
5250 * ediff.el (ediff-buffers-internal): Add unwind-protect.
5251
5252 2009-12-07 Michael Albinus <michael.albinus@gmx.de>
5253
5254 Handle prompt rules of ksh in OpenBSD 4.5. Reported by Raphaël
5255 Berbain <raphael.berbain@gmail.com>.
5256
5257 * net/tramp.el (tramp-end-of-output): Move up. Use `#' and `$'
5258 characters.
5259 (tramp-initial-end-of-output): New defconst.
5260 (tramp-methods, tramp-find-shell)
5261 (tramp-open-connection-setup-interactive-shell)
5262 (tramp-maybe-open-connection): Use it.
5263 (tramp-shell-prompt-pattern, tramp-wait-for-output): Handle
5264 existence of `#' and `$'.
5265
5266 * net/tramp-fish.el (tramp-fish-maybe-open-connection): Use
5267 `tramp-initial-end-of-output'.
5268
5269 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
5270
5271 Get the background mode from the terminal for xterm, and set
5272 faces accordingly.
5273 * term/xterm.el (xterm-set-background-mode): New function.
5274 (terminal-init-xterm): Use it in case xterm supports background
5275 color queries. Recompute faces after getting the background
5276 color.
5277
5278 2009-12-07 Ulrich Mueller <ulm@gentoo.org>
5279
5280 * emacs-lisp/bytecomp.el (byte-compile-insert-header): Put the version
5281 number comment back on its own line, for easier parsing.
5282
5283 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
5284
5285 Make it work for non-file buffers (bug#5102).
5286 * doc-view.el (doc-view-current-cache-dir):
5287 Use doc-view-buffer-file-name rather than buffer-file-name.
5288 (doc-view-mode): Use buffer-name when buffer-file-name is nil.
5289
5290 2009-12-06 Óscar Fuentes <ofv@wanadoo.es>
5291
5292 * vc-bzr.el (vc-bzr-annotate-command): Handle the case where the
5293 author field is too short.
5294
5295 2009-12-06 Dan Nicolaescu <dann@ics.uci.edu>
5296
5297 * vc-git.el (vc-git-print-log): Handle a limit argument.
5298 Display the short log in graph form and with labels.
5299 (vc-git-log-view-mode): Handle labels.
5300
5301 Make vc-revert change VC state from 'added to 'unregistered.
5302 * vc-git.el (vc-git-revert): Call git reset first.
5303
5304 2009-12-06 Ulf Jasper <ulf.jasper@web.de>
5305
5306 * net/newst-backend.el, net/newst-plainview.el:
5307 * net/newst-reader.el, net/newst-ticker.el:
5308 * net/newst-treeview.el, net/newsticker.el:
5309 Require/provide newst-... (instead of newsticker-...). (Bug#5096)
5310
5311 2009-12-06 Chong Yidong <cyd@stupidchicken.com>
5312
5313 * log-view.el (log-view-mode-map): Bind "=" to log-view-diff too.
5314
5315 * vc-bzr.el (vc-bzr-annotate-command): Show author in annotation.
5316 Handle empty author field (Bug#4144). Suggested by Óscar Fuentes.
5317 (vc-bzr-annotate-time, vc-bzr-annotate-extract-revision-at-line):
5318 Update annotation regexp.
5319
5320 * simple.el (beginning-of-visual-line): Constrain to field
5321 boundaries (Bug#5106).
5322
5323 2009-12-06 Ulf Jasper <ulf.jasper@web.de>
5324
5325 * xml.el (xml-substitute-numeric-entities): Move
5326 newsticker--decode-numeric-entities in newst-backend.el to
5327 xml-substitute-numeric-entities in xml.el. (Bug#5008)
5328 * net/newst-backend.el (newsticker--parse-generic-feed)
5329 (newsticker--parse-generic-items)
5330 (newsticker--decode-numeric-entities): Move
5331 newsticker--decode-numeric-entities in newst-backend.el to
5332 xml-substitute-numeric-entities in xml.el. (Bug#5008)
5333
5334 2009-12-06 Daniel Colascione <dan.colascione@gmail.com>
5335
5336 * progmodes/js.el (js--js-not): Add null to the list of values.
5337
5338 2009-12-06 Chong Yidong <cyd@stupidchicken.com>
5339
5340 * ansi-color.el (ansi-color-for-comint-mode): Add :version keyword.
5341
5342 2009-12-06 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
5343
5344 * textmodes/bibtex.el (bibtex-enclosing-field): Exclude entry
5345 delimiter if it is at the end of the current line.
5346 (bibtex-generate-url-list): Fix docstring.
5347
5348 2009-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
5349
5350 * minibuffer.el (minibuffer-complete-and-exit): Don't replace the
5351 minibuffer's content with itself.
5352 Fold the confirm-after-completion case into the `confirm' case.
5353 (completion-pcm-word-delimiters): Add : and / to the delimiters.
5354
5355 2009-12-06 Kevin Ryde <user42@zip.com.au>
5356
5357 * ffap.el (ffap-rfc-path): Make this a defcustom since
5358 `ffap-rfc-directories' is also a defcustom. (Bug#4514.)
5359
5360 * info-look.el: Add setup for apropos-mode to use emacs-lisp-mode
5361 manuals, similar to existing setup for help-mode. (Bug#3913.)
5362
5363 2009-12-05 Juri Linkov <juri@jurta.org>
5364
5365 Save and restore dired buffer's point positions too. (Bug#4880)
5366
5367 * dired.el (dired-save-positions): Return in the first element
5368 buffer's position in format (BUFFER DIRED-FILENAME BUFFER-POINT).
5369 Doc fix.
5370 (dired-restore-positions): First restore buffer's position.
5371 While restoring window's positions, check if window still displays
5372 the original buffer.
5373
5374 2009-12-05 Chong Yidong <cyd@stupidchicken.com>
5375
5376 * bindings.el (complete-symbol): Call semantic-ia-complete-symbol
5377 if possible.
5378
5379 * cedet/semantic/ia.el (semantic-ia-complete-symbol):
5380 Make argument optional.
5381
5382 * shell.el (shell): Require ansi-color (Bug#5113).
5383
5384 * ansi-color.el (ansi-color-for-comint-mode): Default to t.
5385
5386 * hl-line.el (global-hl-line-highlight): Minor doc fix (Bug#4925).
5387
5388 2009-12-05 Alan Mackenzie <acm@muc.de>
5389
5390 * progmodes/cc-mode.el (c-before-hack-hook)
5391 (c-postprocess-file-styles): Revert change 2009-07-18T21:03:43Z!acm@muc.de to permit
5392 `c-file-style' to work again. This reversion restores the current
5393 software to its state in Emacs 23.1. (Bug#4146)
5394
5395 2009-12-05 Kevin Ryde <user42@zip.com.au>
5396
5397 * textmodes/sgml-mode.el (sgml-lexical-context): Recognise
5398 comment-start-skip to comment-end-skip as comment (Bug#4781).
5399
5400 2009-12-05 Juri Linkov <juri@jurta.org>
5401
5402 * info.el (Info-find-node-2): Set `Info-current-subfile' to nil
5403 for virtual nodes. (Bug#4147)
5404 (Info-find-node-2): Set `Info-current-node-virtual' to nil
5405 when moving from a virtual node.
5406 (Info-mode-menu): Add `Info-virtual-index' to the menu.
5407 (Info-mode): Add `Info-virtual-index' to the docstring.
5408
5409 2009-12-05 Eric Ludlam <zappo@gnu.org>
5410
5411 * cedet/semantic/bovine/c.el (semantic-c-describe-environment):
5412 Describe project macro symbols.
5413
5414 * cedet/semantic/complete.el (semantic-complete-do-completion):
5415 Don't call semantic-collector-current-exact-match.
5416
5417 * cedet/ede.el (ede-apply-preprocessor-map): Accept lists of
5418 ede-objects as targets.
5419
5420 * cedet/ede/pmake.el (ede-proj-makefile-insert-variables): Output
5421 a target's object list even if compiler vars are already in the
5422 Makefile.
5423
5424 * cedet/ede/emacs.el (ede-preprocessor-map): Add config.h to the
5425 list of headers producing necessary macros.
5426
5427 2009-12-05 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
5428
5429 * textmodes/bibtex.el (bibtex-map-entries): Use marker to keep
5430 track of the buffer position of the end of a BibTeX entry as this
5431 position may change during reformatting.
5432 (bibtex-format-entry): Remove whitespace before processing
5433 numerical fields so that we recognize the latter properly.
5434 (bibtex-reformat): Do not use push which changes the global value
5435 of bibtex-entry-format.
5436 (bibtex-field-braces-alist, bibtex-field-strings-alist)
5437 (bibtex-field-re-init): Replace only space characters by regexp
5438 for whitespace.
5439 (bibtex-generate-url-list, bibtex-cite-matcher-alist): Fix docstring.
5440 (bibtex-initialize): Also update bibtex-strings.
5441 (bibtex-kill-field): Preserve white space at end of entry.
5442 (bibtex-kill-entry, bibtex-yank-pop, bibtex-insert-kill):
5443 Update bibtex-reference-keys.
5444
5445 2009-12-05 Stefan Monnier <monnier@iro.umontreal.ca>
5446
5447 * minibuffer.el (completion-pcm--merge-try): Also consider placing
5448 point after a star, if that's the only place where modifications can
5449 make progress.
5450
5451 2009-12-05 Dan Nicolaescu <dann@ics.uci.edu>
5452
5453 * vc-dir.el (vc-dir): Use the correct markup for showing keymaps
5454 in docstrings.
5455
5456 2009-12-04 Juri Linkov <juri@jurta.org>
5457
5458 * proced.el (proced): Call `(proced-update t)' to update process
5459 information instead of only running proced-post-display-hook.
5460 (proced-send-signal): Add a leading space to the buffer name
5461 " *Marked Processes*" to make this buffer ephemeral.
5462
5463 2009-12-04 Juri Linkov <juri@jurta.org>
5464
5465 * dired.el (dired-auto-revert-buffer): New defcustom.
5466 (dired-internal-noselect): Use it.
5467
5468 2009-12-04 Juri Linkov <juri@jurta.org>
5469
5470 Change roles of modes and functions in image-mode.el (Bug#5062).
5471
5472 * image-mode.el: Replace `image-mode-maybe' with `image-mode'
5473 in `auto-mode-alist'.
5474 (image-mode-previous-major-mode): New variable.
5475 (image-minor-mode-map): Rename from `image-mode-text-map'.
5476 (image-mode): Move graceful error-handling code from
5477 `image-minor-mode' to here. On errors call `image-mode-as-text'.
5478 (image-minor-mode): Remove all image-handling code.
5479 Replace `image-mode-text-map' with `image-minor-mode-map'.
5480 Check for `image-type' in mode-line format string.
5481 (image-mode-maybe): Make obsolete with an alias to `image-mode'.
5482 (image-mode-as-text): New function with most code from
5483 `image-mode-maybe'.
5484 (image-toggle-display-text): Move code that removes image
5485 properties from `image-toggle-display' to here.
5486 (image-toggle-display-image): New function with code that adds
5487 image properties copied from `image-toggle-display'.
5488 (image-toggle-display): Remove most code with leaving only code
5489 that toggles between `image-mode-as-text' and `image-mode'.
5490
5491 2009-12-04 Ulf Jasper <ulf.jasper@web.de>
5492
5493 * net/newst-treeview.el
5494 (newsticker--treeview-list-highlight-start): Restored call to
5495 save-excursion: Selected item was stuck.
5496 (newsticker--treeview-list-select): New.
5497 (newsticker--treeview-item-show-text)
5498 (newsticker--treeview-item-show)
5499 (newsticker--treeview-item-update): Use new
5500 newsticker-treeview-item-mode.
5501 (newsticker-treeview-update): Keep current item.
5502 (newsticker-treeview-next-new-or-immortal-item): Doc change.
5503 (newsticker--treeview-first-feed): Doc change.
5504 (newsticker-treeview-list-menu)
5505 (newsticker-treeview-item-menu): Added menu entries.
5506 (newsticker-treeview-item-mode): New.
5507
5508 * net/newst-backend.el (newsticker-customize): Delete other
5509 windows.
5510
5511 2009-12-04 Sam Steingold <sds@gnu.org>
5512
5513 * log-view.el (log-view-mode-map): "q" calls quit-window,
5514 like in all the other non-self-insert buffers.
5515
5516 2009-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
5517
5518 Minor cleanup.
5519 * term.el (term-send-raw, term-send-raw-meta): Use read-key-sequence's
5520 key decoding rather than do it manually via last-input-event +
5521 ascii-character.
5522 (term-exec): Use delete-and-extract-region.
5523 (term-handle-ansi-terminal-messages): Remove unused var `end'.
5524 (term-process-pager): Remove unused var `i'.
5525 (term-dynamic-simple-complete): Make obsolete.
5526 (serial-update-config-menu): Remove unused vars `y' and `str'.
5527 (term-update-mode-line): Remove unused var `temp'.
5528
5529 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
5530
5531 Limit the number of log entries displayed by default.
5532 * vc.el (vc-print-log-internal): Fix check for limit-unsupported.
5533 (vc-print-log, vc-print-root-log): Use vc-log-show-limit when not
5534 using a prefix argument.
5535
5536 2009-12-03 Glenn Morris <rgm@gnu.org>
5537
5538 * progmodes/idlwave.el (class): Restore still useful declaration.
5539
5540 2009-12-03 Alan Mackenzie <acm@muc.de>
5541
5542 Enhance `c-parse-state' to run efficiently in "brace deserts".
5543
5544 * progmodes/cc-mode.el (c-basic-common-init):
5545 Call c-state-cache-init.
5546 (c-neutralize-syntax-in-and-mark-CPP): Rename from
5547 c-extend-and-neutralize-syntax-in-CPP. Mark each CPP construct by
5548 placing `category' properties value 'c-cpp-delimiter at its boundaries.
5549
5550 * progmodes/cc-langs.el (c-before-font-lock-function):
5551 c-extend-and-neutralize-syntax-in-CPP has been renamed
5552 c-neutralize-syntax-in-and-mark-CPP.
5553
5554 * progmodes/cc-fonts.el (c-cpp-matchers): Mark template brackets
5555 with `category' properties now, not `syntax-table' ones.
5556
5557 * progmodes/cc-engine.el (c-syntactic-end-of-macro): A new
5558 enhanced (but slower) version of c-end-of-macro that won't land
5559 inside a literal or on another awkward character.
5560 (c-state-cache-too-far, c-state-cache-start)
5561 (c-state-nonlit-pos-interval, c-state-nonlit-pos-cache)
5562 (c-state-nonlit-pos-cache-limit, c-state-point-min)
5563 (c-state-point-min-lit-type, c-state-point-min-lit-start)
5564 (c-state-min-scan-pos, c-state-brace-pair-desert)
5565 (c-state-old-cpp-beg, c-state-old-cpp-end): New constants and
5566 buffer local variables.
5567 (c-state-literal-at, c-state-lit-beg)
5568 (c-state-cache-non-literal-place, c-state-get-min-scan-pos)
5569 (c-state-mark-point-min-literal, c-state-cache-top-lparen)
5570 (c-state-cache-top-paren, c-state-cache-after-top-paren)
5571 (c-get-cache-scan-pos, c-get-fallback-scan-pos)
5572 (c-state-balance-parens-backwards, c-parse-state-get-strategy)
5573 (c-renarrow-state-cache)
5574 (c-append-lower-brace-pair-to-state-cache)
5575 (c-state-push-any-brace-pair, c-append-to-state-cache)
5576 (c-remove-stale-state-cache)
5577 (c-remove-stale-state-cache-backwards, c-state-cache-init)
5578 (c-invalidate-state-cache-1, c-parse-state-1)
5579 (c-invalidate-state-cache): New defuns/defmacros/defsubsts.
5580 (c-parse-state): Enhance and refactor.
5581 (c-debug-parse-state): Amend to deal with all the new variables.
5582
5583 * progmodes/cc-defs.el (c-<-as-paren-syntax, c-mark-<-as-paren)
5584 (c->-as-paren-syntax, c-mark->-as-paren, c-unmark-<->-as-paren):
5585 modify to use category text properties rather than syntax-table ones.
5586 (c-suppress-<->-as-parens, c-restore-<->-as-parens): New defsubsts
5587 to switch off/on the syntactic paren property of C++ template
5588 delimiters using the category property.
5589 (c-with-<->-as-parens-suppressed): Macro to invoke code with
5590 template delims suppressed.
5591 (c-cpp-delimiter, c-set-cpp-delimiters, c-clear-cpp-delimiters):
5592 New constant/macros which apply category properties to the start
5593 and end of preprocessor constructs.
5594 (c-comment-out-cpps, c-uncomment-out-cpps): Defsubsts which
5595 "comment out" the syntactic value of characters in preprocessor
5596 constructs.
5597 (c-with-cpps-commented-out)
5598 (c-with-all-but-one-cpps-commented-out): Macros to invoke code
5599 with characters in all or all but one preprocessor constructs
5600 "commented out".
5601
5602 2009-12-03 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
5603
5604 * proced.el (proced-filter-alist): Use regexp-quote.
5605
5606 2009-12-03 Michael Albinus <michael.albinus@gmx.de>
5607
5608 Cleanup.
5609 * eshell/em-unix.el (top): Require 'esh-opt and 'pcomplete.
5610 (eshell/su, eshell/sudo): Require 'tramp. Fix problems reading
5611 arguments. Expand `default-directory'.
5612
5613 * net/tramp.el (tramp-handle-file-remote-p): Expand FILENAME for
5614 the benefit of returning an expanded localname.
5615 (tramp-tramp-file-p): Handle the case NAME is not a string.
5616
5617 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
5618
5619 Add support for bzr shelve/unshelve.
5620 * vc-bzr.el (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
5621 (vc-bzr-extra-menu-map): New variables.
5622 (vc-bzr-extra-menu, vc-bzr-extra-status-menu, vc-bzr-shelve)
5623 (vc-bzr-shelve-apply, vc-bzr-shelve-list)
5624 (vc-bzr-shelve-get-at-point, vc-bzr-shelve-delete-at-point)
5625 (vc-bzr-shelve-apply-at-point, vc-bzr-shelve-menu): New functions.
5626 (vc-bzr-dir-extra-headers): Display shelves.
5627
5628 * vc-bzr.el (vc-bzr-print-log): Deal with nil arguments better.
5629
5630 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
5631
5632 * textmodes/bibtex.el (bibtex-complete-internal):
5633 Use completion-in-region.
5634 (bibtex-text-in-field-bounds): Remove unused var `opoint'.
5635
5636 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
5637
5638 Support applying stashes. Improve UI.
5639 * vc-git.el (vc-git-dir-extra-headers): Add tooltips.
5640 (vc-git-stash-apply, vc-git-stash-pop)
5641 (vc-git-stash-apply-at-point, vc-git-stash-pop-at-point)
5642 (vc-git-stash-menu): New functions.
5643 (vc-git-stash-menu-map): New variable.
5644 (vc-git-stash-map): Add bindings to popup a menu and to apply stashes.
5645
5646 2009-12-03 Glenn Morris <rgm@gnu.org>
5647
5648 * vc.el (log-view-vc-backend, log-view-vc-fileset): Declare.
5649 (vc-print-log-internal): Fix previous change.
5650 (vc-revert): Correct pluralization.
5651
5652 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
5653
5654 * progmodes/make-mode.el (makefile-special-targets-list): No need for
5655 it to be an alist any more.
5656 (makefile-complete): Use completion-in-region.
5657
5658 * progmodes/octave-mod.el (octave-complete-symbol):
5659 Use completion-in-region.
5660
5661 Misc cleanup.
5662 * progmodes/idlwave.el (idlwave-comment-hook): Simplify with `or'.
5663 (idlwave-code-abbrev, idlwave-display-user-catalog-widget)
5664 (idlwave-complete-class): Don't quote lambda.
5665 (idlwave-find-symbol-syntax-table, idlwave-mode-syntax-table)
5666 (idlwave-mode-map): Move initialization into declaration.
5667 (idlwave-action-and-binding): Use backquotes.
5668 (idlwave-in-quote, idlwave-reset-sintern, idlwave-complete-in-buffer):
5669 Simplify.
5670 (idlwave-is-pointer-dereference): Remove unused var `pos'.
5671 (idlwave-xml-create-rinfo-list): Remove unused var `entry'.
5672 (idlwave-convert-xml-clean-sysvar-aliases): Remove unused vars `new',
5673 `parts', and `all-parts'.
5674 (idlwave-xml-create-sysvar-alist): Remove unused var `fields'.
5675 (idlwave-convert-xml-system-routine-info): Remove unused string
5676 `version-string'.
5677 (idlwave-display-user-catalog-widget): Use dolist.
5678 (idlwave-scanning-lib): Declare dynamically-scoped var.
5679 (idlwave-scan-library-catalogs): Remove unused var `flags'.
5680 (completion-highlight-first-word-only): Declare to silence bytecomp.
5681 (idlwave-popup-select): Tighten scope of `resp'.
5682 (idlwave-find-struct-tag): Remove unused var `beg'.
5683 (idlwave-after-load-rinfo-hook): Declare.
5684 (idlwave-sintern-class-info): Remove unused var `taglist'.
5685 (idlwave-find-class-definition): Remove unused var `list'.
5686 (idlwave-complete-sysvar-tag-help): Remove unused var `main-base'.
5687 (idlwave-what-module-find-class): Remove unused var `classes'.
5688
5689 2009-12-03 Juanma Barranquero <lekktu@gmail.com>
5690
5691 * progmodes/pascal.el: Require CL when compiling (for lexical-let).
5692
5693 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
5694
5695 * hippie-exp.el (try-expand-dabbrev-visible): Preserve point in the
5696 buffers visited. Remove redundant current-buffer-saving.
5697
5698 2009-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
5699
5700 Use completion-in-buffer and remove uses of dynamic scoping.
5701 * progmodes/pascal.el (pascal-str, pascal-all, pascal-pred)
5702 (pascal-buffer-to-use, pascal-flag): Don't declare.
5703 (pascal-func-completion, pascal-type-completion, pascal-var-completion)
5704 (pascal-get-completion-decl, pascal-keyword-completion):
5705 Add `pascal-str' argument, save-excursion,
5706 return the found completions, and don't filter with pascal-pred.
5707 (pascal-completion-cache): New var.
5708 (pascal-completion): Don't switch buffer any more (it was never
5709 necessary). Don't save-excursion any more (it's done by the called
5710 subroutines). Use a cache to avoid redundant computations.
5711 Use complete-with-action rather than pascal-completion-response and
5712 let it apply the predicate as well.
5713 (pascal-complete-word): Use completion-in-buffer when
5714 pascal-toggle-completions is nil.
5715 (pascal-show-completions): Don't bind pascal-buffer-to-use since it's
5716 not used any more.
5717 (pascal-comp-defun): Don't change buffer any more.
5718 Use complete-with-action rather than pascal-completion-response and
5719 let it apply the predicate as well.
5720 (pascal-goto-defun): Change buffer before calling pascal-comp-defun
5721 when neded.
5722
5723 2009-12-02 Kenichi Handa <handa@m17n.org>
5724
5725 * language/indian.el: Include ZWJ and ZWNJ in the patterns to
5726 shape for all Indic scripts.
5727
5728 2009-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
5729
5730 Use completion-in-buffer.
5731 * wid-edit.el (widget-field-text-end): New function.
5732 (widget-field-value-get): Use it.
5733 (widget-string-complete, widget-file-complete)
5734 (widget-color-complete): Use it and completion-in-region.
5735 (widget-complete): Don't narrow the buffer.
5736
5737 2009-12-02 Glenn Morris <rgm@gnu.org>
5738
5739 * mail/rmail.el (rmail-pop-to-buffer): New function. (Bug#2282)
5740 (rmail-select-summary): Use rmail-pop-to-buffer.
5741 * mail/rmailsum.el: Replace all pop-to-buffer calls with
5742 rmail-pop-to-buffer, to prevent horizontal splits.
5743
5744 * calendar/diary-lib.el (diary-list-entries): Replace superfluous
5745 save-excursion with save-current-buffer.
5746 Widen before searching. (Bug#5093)
5747 (diary-list-sexp-entries): Remove superfluous save-excursion.
5748
5749 2009-12-02 Michael Welsh Duggan <mwd@cert.org>
5750
5751 * woman.el (woman-make-bufname): Handle man-pages with "." in the
5752 name. (Bug#5038)
5753
5754 2009-12-02 Andreas Politz <politza@fh-trier.de> (tiny change)
5755
5756 * ido.el (ido-file-internal): Handle filenames at point that do
5757 not have a directory part. (Bug#5049)
5758
5759 2009-12-02 Juanma Barranquero <lekktu@gmail.com>
5760
5761 * mpc.el (mpc-intersection, mpc-host, mpc-songs-playlist)
5762 (mpc-songs-jump-to, mpc-resume): Doc fixes.
5763
5764 2009-12-01 Rob Riepel <riepel@networking.Stanford.EDU>
5765
5766 * emulation/tpu-extras.el (tpu-cursor-free-mode): Emit message.
5767 (tpu-set-cursor-free, tpu-set-cursor-bound): Don't emit a message
5768 any more.
5769
5770 2009-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
5771
5772 * comint.el (comint-insert-input): Ignore clicks to the right of
5773 the field. Reported by Bob Nnamtrop <bobnnamtrop@gmail.com>.
5774
5775 * vc.el (vc-print-log-internal): Don't wait for the process to
5776 terminate before setting up the major mode.
5777
5778 * pcmpl-unix.el (pcomplete/cd): Complete more than one argument, just
5779 in case.
5780
5781 * pcomplete.el (pcomplete-std-complete): Don't try to complete past
5782 the last element.
5783
5784 * simple.el (normal-erase-is-backspace-mode): Fix thinko in message.
5785
5786 2009-12-01 Glenn Morris <rgm@gnu.org>
5787
5788 * window.el (window--display-buffer-2): Fix previous changes.
5789
5790 2009-12-01 Chong Yidong <cyd@stupidchicken.com>
5791
5792 * mail/sendmail.el (mail-setup-hook, mail-send-hook): Doc fixes.
5793
5794 2009-12-01 Glenn Morris <rgm@gnu.org>
5795
5796 * Makefile.in (ELCFILES): Add mpc.elc.
5797
5798 2009-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
5799
5800 * mpc.el: New file.
5801
5802 2009-12-01 Glenn Morris <rgm@gnu.org>
5803
5804 * window.el (window-to-use): Define for compiler.
5805
5806 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Make message
5807 consistent with others (no final period).
5808
5809 * mail/rmailmm.el (rmail-mime-handle): Doc fix.
5810 (rmail-mime-show): Downcase the encoding. (Bug#5070)
5811
5812 2009-12-01 Dan Nicolaescu <dann@ics.uci.edu>
5813
5814 Make vc-print-log buttons work.
5815 * log-view.el (log-view-mode-map): Inherit from widget-keymap.
5816
5817 2009-11-30 Ryan C. Thompson <rct@thompsonclan.org> (tiny change)
5818
5819 * savehist.el (savehist-autosave-interval): Allow setting to nil
5820 through customize. (Bug#5056)
5821
5822 2009-11-30 Juanma Barranquero <lekktu@gmail.com>
5823
5824 Fix references to jit-lock properties.
5825 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
5826 Refer to jit-lock-defer-multiline, not jit-lock-multiline.
5827 (perl-font-lock-special-syntactic-constructs):
5828 Quote jit-lock-defer-multiline property.
5829
5830 2009-11-30 Dan Nicolaescu <dann@ics.uci.edu>
5831
5832 * vc-git.el (vc-git-registered): Call vc-git-root only once.
5833
5834 2009-11-30 Juri Linkov <juri@jurta.org>
5835
5836 * misearch.el (multi-isearch-search-fun): Always provide a non-nil
5837 value `buffer' of `multi-isearch-next-buffer-current-function'.
5838 Use `(current-buffer)' when `buffer' is nil.
5839 (multi-isearch-next-buffer-from-list): Don't fallback to
5840 `(current-buffer)' when `buffer' is nil. (Bug#4947)
5841
5842 2009-11-30 Juri Linkov <juri@jurta.org>
5843
5844 * misearch.el (multi-isearch-read-buffers): Move canonicalization
5845 of buffers with `get-buffer' to `multi-isearch-buffers'.
5846 (multi-isearch-buffers, multi-isearch-buffers-regexp):
5847 Canonicalize BUFFERS with `get-buffer'. Doc fix.
5848 (multi-isearch-files, multi-isearch-files-regexp): Canonicalize
5849 FILES with `expand-file-name' converting relative file names
5850 to absolute. Doc fix. (Bug#4727)
5851
5852 2009-11-30 Juri Linkov <juri@jurta.org>
5853
5854 * misearch.el (multi-isearch-read-buffers)
5855 (multi-isearch-read-matching-buffers): New functions.
5856 (multi-isearch-buffers, multi-isearch-buffers-regexp):
5857 Use them in the `interactive' spec. Doc fix.
5858 (multi-isearch-read-files, multi-isearch-read-matching-files):
5859 New functions.
5860 (multi-isearch-files, multi-isearch-files-regexp):
5861 Use them in the `interactive' spec. Doc fix. (Bug#4725)
5862
5863 2009-11-30 Juri Linkov <juri@jurta.org>
5864
5865 * doc-view.el (doc-view-continuous):
5866 Rename from `doc-view-continuous-mode'.
5867 (doc-view-menu): Move "Toggle display" to the top.
5868 Add submenu "Continuous" with radio buttons "Off"/"On"
5869 and "Save as Default".
5870 (doc-view-scroll-up-or-next-page)
5871 (doc-view-scroll-down-or-previous-page)
5872 (doc-view-next-line-or-next-page)
5873 (doc-view-previous-line-or-previous-page): Rename
5874 `doc-view-continuous-mode' to `doc-view-continuous'. (Bug#4896)
5875
5876 2009-11-30 Juri Linkov <juri@jurta.org>
5877
5878 * comint.el (comint-mode-map): Rebind `M-r' from
5879 `comint-previous-matching-input' to
5880 `comint-history-isearch-backward-regexp'.
5881 Unbind `M-s' to allow global key binding `M-s'.
5882 Add menu items for `comint-history-isearch-backward' and
5883 `comint-history-isearch-backward-regexp'. (Bug#3746)
5884
5885 2009-11-30 Juri Linkov <juri@jurta.org>
5886
5887 * replace.el (perform-replace): Let-bind recenter-last-op to nil.
5888 For def=recenter, replace `recenter' with `recenter-top-bottom'
5889 that is called with `this-command' and `last-command' let-bound
5890 to `recenter-top-bottom'. When the last `def' was not `recenter',
5891 set `recenter-last-op' to nil. (Bug#4981)
5892
5893 2009-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
5894
5895 Minor cleanup and simplification.
5896 * filecache.el (file-cache-add-directory)
5897 (file-cache-add-directory-recursively)
5898 (file-cache-add-from-file-cache-buffer)
5899 (file-cache-delete-file-regexp, file-cache-delete-directory)
5900 (file-cache-files-matching-internal, file-cache-display): Use dolist.
5901 (file-cache-temp-minibuffer-message): Delete function.
5902 (file-cache-minibuffer-complete): Use minibuffer-message instead.
5903
5904 * progmodes/perl-mode.el (perl-font-lock-special-syntactic-constructs):
5905 Don't signal an error when bumping into EOB in tr, s, or y.
5906
5907 2009-11-29 Juri Linkov <juri@jurta.org>
5908
5909 * startup.el (fancy-about-text): Fix wording of Guided Tour.
5910 (Bug#4960)
5911
5912 * descr-text.el (describe-char-unidata-list): Use lowercase name
5913 for "Unicode name" like in other tags.
5914
5915 2009-11-29 Juri Linkov <juri@jurta.org>
5916
5917 * ediff-util.el (ediff-minibuffer-with-setup-hook):
5918 New compatibility macro.
5919 (ediff-read-file-name): Use it instead of `minibuffer-with-setup-hook'.
5920
5921 2009-11-29 Juri Linkov <juri@jurta.org>
5922
5923 Add defcustom to define the cycling order of `recenter-top-bottom'.
5924 (Bug#4981)
5925
5926 * window.el (recenter-last-op): Doc fix.
5927 (recenter-positions): New defcustom.
5928 (recenter-top-bottom): Rewrite to use `recenter-positions'.
5929 (move-to-window-line-top-bottom): Rewrite to use `recenter-positions'.
5930
5931 2009-11-29 Michael Albinus <michael.albinus@gmx.de>
5932
5933 Improve integration of Tramp and ange-ftp in eshell.
5934
5935 * eshell/em-unix.el (eshell/whoami): Make it a defun but a defalias.
5936 (eshell/su): Flatten args. Apply better args parsing. Use "cd".
5937 (eshell/sudo): Flatten args. Let-bind `default-directory'.
5938
5939 * eshell/esh-util.el (top): Require also Tramp when compiling.
5940 (eshell-directory-files-and-attributes): Check for FTP remote
5941 connection.
5942 (eshell-parse-ange-ls): Let-bind `ange-ftp-name-format',
5943 `ange-ftp-ftp-name-arg', `ange-ftp-ftp-name-res'.
5944 (eshell-file-attributes): Handle ".". Return `entry'.
5945
5946 * net/ange-ftp.el (ange-ftp-parse-filename): Use `save-match-data'.
5947 (ange-ftp-directory-files-and-attributes)
5948 (ange-ftp-real-directory-files-and-attributes): New defuns.
5949
5950 * net/tramp.el (tramp-maybe-open-connection): Open the remote
5951 shell with "exec" when possible. This prevents trailing prompts
5952 in `start-file-process'.
5953
5954 2009-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
5955
5956 Try and remove assumptions about point-min==1.
5957 * nxml/rng-valid.el (rng-validate-mode): Don't hardcode point-min==1.
5958 (rng-compute-mode-line-string): Show the validation percentage in
5959 terms of the narrowed text, not the widened text.
5960 (rng-do-some-validation): Don't catch internal errors when debugging.
5961 (rng-first-error): Simplify.
5962 (rng-after-change-function): Remove work around. AFAIK the bug has
5963 been fixed a while ago.
5964
5965 * image-mode.el (image-minor-mode): Exit more gracefully when the image
5966 cannot be displayed (e.g. when doing C-x C-f some-new-file.svg RET).
5967
5968 * man.el (Man-completion-table): Make it easier to enter "<sec> <name>".
5969
5970 * eshell/em-prompt.el (eshell-prompt-function): Abbreviate pwd, since
5971 `cd' doesn't always do it for us (bug#5067).
5972
5973 * pcomplete.el (pcomplete-entries): Revert change installed mistakenly
5974 on 2009-10-25 as part of some other change (bug#5067).
5975
5976 2009-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
5977
5978 * emacs-lisp/bytecomp.el (byte-compile-warning-types): New type
5979 `suspicious'.
5980 (byte-compile-warnings): Use byte-compile-warning-types.
5981 (byte-compile-save-excursion): Warn about use of set-buffer right
5982 after save-excursion.
5983
5984 * progmodes/gud.el (gud-basic-call): Don't only save the buffer but
5985 the excursion as well.
5986
5987 2009-11-27 Michael Albinus <michael.albinus@gmx.de>
5988
5989 * eshell/em-unix.el (eshell/su, eshell/sudo): New defuns,
5990 providing a Tramp related implementation of "su" and "sudo".
5991 (eshell-unix-initialize): Add "su" and "sudo".
5992
5993 2009-11-27 Daiki Ueno <ueno@unixuser.org>
5994
5995 * net/socks.el (socks-send-command): Convert binary request to
5996 unibyte before sending. This fixes mishandling of some port
5997 numbers such as 129.
5998
5999 2009-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
6000
6001 * help.el (describe-bindings-internal): Remove `interactive'.
6002
6003 * man.el (Man-completion-table): Trim a terminating "(".
6004 Remove the space between name page a section.
6005 Add the command's description on the `help-echo' property.
6006 Remove `process-connection-type' binding since it's unused by
6007 call-process.
6008 Provide completion for the "<section> <name>" format as well.
6009 (Man-default-man-entry): Remove spurious var shadowing the argument.
6010
6011 2009-11-26 Kevin Ryde <user42@zip.com.au>
6012
6013 * log-view.el: Add "Keywords: tools", since its other keywords
6014 aren't in finder-known-keywords, and following vc.el.
6015
6016 * sha1.el (sha1-string-external): default-directory "/" in case
6017 otherwise non-existent. process-connection-type pipe for touch of
6018 efficiency recommended by elisp manual. (An aside in Bug#3911.)
6019
6020 2009-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
6021
6022 Misc coding convention cleanups.
6023 * htmlfontify.el (hfy-init-kludge-hook): Rename from
6024 hfy-init-kludge-hooks.
6025 (hfy-etags-cmd, hfy-flatten-style, hfy-invisible-name, hfy-face-at)
6026 (hfy-fontify-buffer, hfy-prepare-index-i, hfy-subtract-maps)
6027 (hfy-save-kill-buffers, htmlfontify-copy-and-link-dir): Use dolist
6028 and push.
6029 (hfy-slant, hfy-weight): Use tables rather than code.
6030 (hfy-box-to-border-assoc, hfy-box-to-style, hfy-decor)
6031 (hfy-face-to-style-i, hfy-fontify-buffer): Use `case'.
6032 (hfy-face-attr-for-class): Initialize `face-spec' directly.
6033 (hfy-face-to-css): Remove `nconc' with single arg.
6034 (hfy-p-to-face-lennart): Use `or'.
6035 (hfy-face-at): Hoist common code. Remove spurious quotes in `case'.
6036 (hfy-overlay-props-at, hfy-mark-tag-hrefs): Eta-reduce.
6037 (hfy-compile-stylesheet, hfy-merge-adjacent-spans)
6038 (hfy-compile-face-map, hfy-parse-tags-buffer): Use push.
6039 (hfy-force-fontification): Use run-hooks.
6040
6041 2009-11-26 Vivek Dasmohapatra <vivek@etla.org>
6042
6043 Various minor fixes.
6044 * htmlfontify.el (hfy-default-header): Add toggle_invis since
6045 Javascript belongs in the header, not the body.
6046 (hfy-javascript): Remove.
6047 (hfy-fontify-buffer): Don't insert it any more.
6048 (hfy-face-at): Handle (face0 face1 face2) style face properties.
6049 Fix bug in invis handling when there were no invis props in a chunk.
6050
6051 2009-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
6052
6053 * vc-bzr.el (vc-bzr-annotate-command): Make operation asynchronous.
6054
6055 2009-11-26 Dan Nicolaescu <dann@ics.uci.edu>
6056
6057 * finder.el (finder-mode-map): Add a menu.
6058
6059 2009-11-26 Michael McNamara <mac@mail.brushroad.com>
6060
6061 * progmodes/verilog-mode.el (verilog-at-struct-p): Support "signed" and
6062 "unsigned" structs.
6063
6064 (verilog-leap-to-head, verilog-backward-token): Handle "disable
6065 fork" statement better.
6066
6067 2009-11-26 Wilson Snyder <wsnyder@wsnyder.org>
6068
6069 * progmodes/verilog-mode.el (verilog-auto-insert-lisp)
6070 (verilog-delete-auto, verilog-delete-empty-auto-pair)
6071 (verilog-library-filenames): Fix AUTOINSERTLISP to support insert-file.
6072 Reported by Clay Douglass.
6073
6074 (verilog-auto-inst, verilog-auto-star-safe)
6075 (verilog-delete-auto-star-implicit, verilog-read-sub-decls):
6076 Fix removing "// Interfaces" when saving .* expansions. Reported by
6077 Pierre-David Pfister.
6078
6079 2009-11-26 Glenn Morris <rgm@gnu.org>
6080
6081 * eshell/em-dirs.el (eshell/cd): Don't throw to a tag outside
6082 the scope.
6083
6084 2009-11-25 Johan Bockgård <bojohan@gnu.org>
6085
6086 * vc-annotate.el (vc-annotate-revision-previous-to-line):
6087 Really use previous revision.
6088
6089 2009-11-25 Kevin Ryde <user42@zip.com.au>
6090
6091 * man.el (Man-completion-table): default-directory "/" in case
6092 doesn't otherwise exist. process-environment COLUMNS=999 so as
6093 not to truncate long names. process-connection-type pipe to avoid
6094 any chance of hitting the pseudo-tty TIOCGWINSZ.
6095 (man): completion-ignore-case t for friendliness and since man
6096 itself is case-insensitive on the command line.
6097 Further to Bug#3717.
6098
6099 * arc-mode.el: Add "Keywords: files", so the details in its
6100 commentary can be reached from finder-by-keyword.
6101 * textmodes/dns-mode.el: Add "Keywords: comm". It's only an
6102 editing mode, but it's comms related and sgml-mode.el has "comm"
6103 on that basis too.
6104 * textmodes/bibtex-style.el: Add "Keywords: tex".
6105 * international/isearch-x.el, international/ja-dic-cnv.el:
6106 * international/ja-dic-utl.el, international/kkc.el:
6107 Add "Keywords: i18n", so they can be reached from finder-by-keyword.
6108
6109 2009-11-25 Juri Linkov <juri@jurta.org>
6110
6111 * man.el (Man-completion-table): Modify regexp to include
6112 section names to completion strings. (Bug#3717)
6113
6114 2009-11-25 Juri Linkov <juri@jurta.org>
6115
6116 Search recursively in gzipped files. (Bug#4982)
6117
6118 * progmodes/grep.el (grep-highlight-matches): Add new options
6119 `always' and `auto'. Doc fix.
6120 (grep-process-setup): Check `grep-highlight-matches' for
6121 `auto-detect' to determine the need to compute grep defaults.
6122 Move Windows/DOS specific --colors settings handling
6123 to `grep-compute-defaults'. Check `grep-highlight-matches'
6124 to get the value of "--color=".
6125 (grep-compute-defaults): Compute `grep-highlight-matches' when it
6126 has the value `auto-detect'. Move Windows/DOS specific settings
6127 from `grep-process-setup'.
6128 (zrgrep): New command with alias `rzgrep'.
6129
6130 2009-11-25 Juri Linkov <juri@jurta.org>
6131
6132 * doc-view.el (doc-view-mode): Set buffer-local `view-read-only'
6133 to nil instead of switching off view-mode. (Bug#4896)
6134
6135 2009-11-25 Juri Linkov <juri@jurta.org>
6136
6137 Mouse-wheel scrolling for DocView Continuous mode. (Bug#4896)
6138
6139 * mwheel.el (mwheel-scroll-up-function)
6140 (mwheel-scroll-down-function): New defvars.
6141 (mwheel-scroll): Funcall `mwheel-scroll-up-function' instead of
6142 `scroll-up', and `mwheel-scroll-down-function' instead of
6143 `scroll-down'.
6144
6145 * doc-view.el (doc-view-scroll-up-or-next-page)
6146 (doc-view-scroll-down-or-previous-page): Add optional ARG.
6147 Use this ARG in the call to image-scroll-up/image-scroll-down.
6148 Change `interactive' spec to "P". Goto next/previous page only
6149 when `doc-view-continuous-mode' is non-nil or ARG is nil (for the
6150 SPC/DEL case). Doc fix.
6151 (doc-view-next-line-or-next-page)
6152 (doc-view-previous-line-or-previous-page): Rename arg to ARG
6153 for consistency.
6154 (doc-view-mode): Set buffer-local `mwheel-scroll-up-function' to
6155 `doc-view-scroll-up-or-next-page', and buffer-local
6156 `mwheel-scroll-down-function' to
6157 `doc-view-scroll-down-or-previous-page'.
6158
6159 2009-11-25 Juri Linkov <juri@jurta.org>
6160
6161 Provide additional default values (directories at other Dired
6162 windows) via M-n in the minibuffer of some Dired commands.
6163
6164 * dired-aux.el (dired-diff, dired-compare-directories)
6165 (dired-do-create-files): Use `dired-dwim-target-defaults' to set
6166 `minibuffer-default' in `minibuffer-with-setup-hook'.
6167 (dired-dwim-target-directory): Find a window that displays Dired
6168 buffer instead of failing when the next window is not Dired.
6169 Use `get-window-with-predicate' to find for the next Dired window.
6170 (dired-dwim-target-defaults): New function.
6171
6172 * ediff-util.el (ediff-read-file-name):
6173 Use `dired-dwim-target-defaults' to set `minibuffer-default'
6174 in `minibuffer-with-setup-hook'.
6175
6176 2009-11-25 Juri Linkov <juri@jurta.org>
6177
6178 Provide additional default values (file name at point or at the
6179 current Dired line) via M-n for file reading minibuffers. (Bug#5010)
6180
6181 * minibuffer.el (read-file-name-defaults): New function.
6182 (read-file-name): Reset `minibuffer-default' to nil when
6183 it duplicates initial input `insdef'.
6184 Bind `minibuffer-default-add-function' to lambda that
6185 calls `read-file-name-defaults' in `minibuffer-selected-window'.
6186 (minibuffer-insert-file-name-at-point): New command.
6187
6188 * files.el (file-name-at-point-functions): New defcustom.
6189 (find-file-default): Remove defvar.
6190 (find-file-read-args): Don't use `find-file-default'.
6191 Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
6192 to `read-file-name'.
6193 (find-file-literally): Use `read-file-name' with
6194 `confirm-nonexistent-file-or-buffer'.
6195
6196 * ffap.el (ffap-guess-file-name-at-point): New autoloaded function.
6197
6198 * dired.el (dired-read-dir-and-switches):
6199 Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
6200 to `read-file-name'.
6201 (dired-file-name-at-point): New function.
6202 (dired-mode): Add hook `dired-file-name-at-point' to
6203 `file-name-at-point-functions'.
6204
6205 2009-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
6206
6207 Really make the *Completions* window soft-dedicated (bug#5030).
6208 * window.el (window--display-buffer-2): Add `dedicated' argument.
6209 (display-buffer): Pass it when needed so the dedicated flag is set
6210 after calling set-window-buffer, which would otherwise reset it.
6211
6212 2009-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
6213
6214 * progmodes/meta-mode.el (meta-complete-symbol):
6215 * progmodes/etags.el (complete-tag):
6216 * mail/mailabbrev.el (mail-abbrev-complete-alias):
6217 Use completion-in-region.
6218
6219 * dabbrev.el (dabbrev--minibuffer-origin): Use minibuffer-selected-window.
6220 (dabbrev-completion): Use completion-in-region.
6221 (dabbrev--abbrev-at-point): Simplify regexp.
6222
6223 * abbrev.el (abbrev--before-point): Use word-motion functions
6224 if :regexp is not specified (bug#5031).
6225
6226 * subr.el (string-prefix-p): New function.
6227
6228 * man.el (Man-completion-cache): New var.
6229 (Man-completion-table): Use it.
6230
6231 * vc.el (vc-print-log-internal): Make `limit' optional for better
6232 compatibility (e.g. with vc-annotate.el).
6233
6234 2009-11-24 Kevin Ryde <user42@zip.com.au>
6235
6236 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp):
6237 Build value with regexp-opt instead of explicit joining loop. (Bug#4927)
6238
6239 * emacs-lisp/elint.el (elint-add-required-env): Better error message
6240 when .el source file not found or other error.
6241
6242 2009-11-24 Markus Triska <markus.triska@gmx.at>
6243
6244 * linum.el (linum-update-window): Ignore intangible (bug#4996).
6245
6246 2009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
6247
6248 Handle the [back] button properly (bug#4979).
6249 * descr-text.el (describe-text-properties): Add a `buffer' argument.
6250 Use help-setup-xref, help-buffer, and with-help-window.
6251 (describe-char): Add `buffer' argument.
6252 Pass proper command to help-setup-xref. Don't meddle with
6253 help-xref-stack-item directly.
6254 (describe-text-category): Use with-help-window and help-buffer.
6255
6256 * emacs-lisp/shadow.el (list-load-path-shadows): Setup a major mode
6257 for the displayed buffer (bug#4887).
6258
6259 * man.el (Man-completion-table): New function.
6260 (man): Use it.
6261
6262 2009-11-24 David Reitter <david.reitter@gmail.com>
6263
6264 * vc-git.el (vc-git-registered): Use checkout directory (where
6265 .git is) rather than the file's directory and a relative path spec
6266 to work around a bug in git.
6267
6268 2009-11-24 Michael Albinus <michael.albinus@gmx.de>
6269
6270 Improve handling of processes on remote hosts.
6271
6272 * eshell/esh-util.el (eshell-path-env): New defvar.
6273 (eshell-parse-colon-path): New defun.
6274 (eshell-file-attributes): Use `eshell-parse-colon-path'.
6275
6276 * eshell/esh-ext.el (eshell-search-path):
6277 Use `eshell-parse-colon-path'.
6278 (eshell-remote-command): Remove argument HANDLER.
6279 (eshell-external-command): Check for FTP remote connection.
6280
6281 * eshell/esh-proc.el (eshell-gather-process-output):
6282 Use `file-truename', in order to start also symlinked files.
6283 Apply `start-file-process' instead of `start-process'.
6284 Shorten `command' to the local file name part.
6285
6286 * eshell/em-cmpl.el (eshell-complete-commands-list):
6287 Use `eshell-parse-colon-path'.
6288
6289 * eshell/em-unix.el (eshell/du): Check for FTP remote connection.
6290
6291 * net/tramp.el (tramp-eshell-directory-change): New defun. Add it
6292 to `eshell-directory-change-hook'.
6293
6294 2009-11-24 Tassilo Horn <tassilo@member.fsf.org>
6295
6296 * doc-view.el (doc-view-mode): Switch off view-mode explicitly,
6297 because it could be enabled automatically if view-read-only is non-nil.
6298
6299 2009-11-24 Michael Kifer <kifer@cs.stonybrook.edu>
6300
6301 * ediff-vers.el (ediff-rcs-get-output-buffer): Revert the change
6302 made on 2009-11-22.
6303
6304 2009-11-24 Glenn Morris <rgm@gnu.org>
6305
6306 * bookmark.el (bookmark-bmenu-hide-filenames): Remove assignment to
6307 deleted variable bookmark-bmenu-bookmark-column.
6308
6309 * cedet/semantic/idle.el (global-semantic-idle-scheduler-mode):
6310 Move after definition of global-semantic-idle-tag-highlight-mode.
6311
6312 2009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
6313
6314 * bookmark.el (bookmark-bmenu-search): Clear echo area when exiting.
6315
6316 2009-11-23 Ken Brown <kbrown@cornell.edu> (tiny change)
6317
6318 * net/browse-url.el (browse-url-filename-alist): On Windows, add
6319 two slashes to the "file:" prefix.
6320 (browse-url-file-url): De-munge Cygwin filenames before passing
6321 them to Windows browser.
6322 (browse-url-default-windows-browser): Use call-process.
6323
6324 2009-11-23 Juri Linkov <juri@jurta.org>
6325
6326 Implement DocView Continuous mode. (Bug#4896)
6327 * doc-view.el (doc-view-continuous-mode): New defcustom.
6328 (doc-view-mode-map): Bind C-n/<down> to
6329 `doc-view-next-line-or-next-page', C-p/<up> to
6330 `doc-view-previous-line-or-previous-page'.
6331 (doc-view-next-line-or-next-page)
6332 (doc-view-previous-line-or-previous-page): New commands.
6333
6334 2009-11-23 Juri Linkov <juri@jurta.org>
6335
6336 Implement Isearch in comint input history. (Bug#3746)
6337 * comint.el (comint-mode): Add `comint-history-isearch-setup' to
6338 `isearch-mode-hook'.
6339 (comint-history-isearch): New defcustom.
6340 (comint-history-isearch-backward)
6341 (comint-history-isearch-backward-regexp): New commands.
6342 (comint-history-isearch-message-overlay): New buffer-local variable.
6343 (comint-history-isearch-setup, comint-history-isearch-end)
6344 (comint-goto-input, comint-history-isearch-search)
6345 (comint-history-isearch-message, comint-history-isearch-wrap)
6346 (comint-history-isearch-push-state)
6347 (comint-history-isearch-pop-state): New functions.
6348
6349 2009-11-23 Michael Albinus <michael.albinus@gmx.de>
6350
6351 * net/tramp.el (tramp-shell-prompt-pattern): Use \r for carriage
6352 return.
6353 (tramp-handle-make-symbolic-link)
6354 (tramp-handle-dired-compress-file, tramp-handle-expand-file-name):
6355 Quote file names.
6356 (tramp-send-command-and-check): New argument DONT-SUPPRESS-ERR.
6357 (tramp-handle-process-file): Use it.
6358
6359 2009-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
6360
6361 * window.el (move-to-window-line-last-op): Remove.
6362 (move-to-window-line-top-bottom): Reuse recenter-last-op instead.
6363
6364 2009-11-23 Deniz Dogan <deniz.a.m.dogan@gmail.com> (tiny change)
6365
6366 Make M-r mirror the new cycling behavior of C-l.
6367 * window.el (move-to-window-line-last-op): New var.
6368 (move-to-window-line-top-bottom): New command.
6369 (global-map): Bind M-r move-to-window-line-top-bottom.
6370
6371 2009-11-23 Sven Joachim <svenjoac@gmx.de>
6372
6373 * dired-x.el (dired-guess-shell-alist-default):
6374 Support xz format. (Bug#4953)
6375
6376 2009-11-22 Chong Yidong <cyd@stupidchicken.com>
6377
6378 * cedet/srecode/map.el (srecode-get-maps):
6379 * cedet/semantic/wisent/wisent.el (wisent-parse-toggle-verbose-flag):
6380 * cedet/semantic/wisent/comp.el (wisent-toggle-verbose-flag):
6381 * cedet/semantic/decorate/mode.el (semantic-decoration-mode)
6382 (semantic-toggle-decoration-style):
6383 * cedet/semantic/decorate/include.el
6384 (semantic-decoration-include-describe)
6385 (semantic-decoration-unknown-include-describe)
6386 (semantic-decoration-unparsed-include-describe)
6387 (semantic-decoration-all-include-summary):
6388 * cedet/semantic/bovine/c.el (semantic-c-debug-mode-init):
6389 * cedet/semantic/analyze/complete.el
6390 (semantic-analyze-possible-completions):
6391 * cedet/semantic/util-modes.el (semantic-highlight-edits-mode)
6392 (semantic-show-unmatched-syntax-mode)
6393 (semantic-show-parser-state-mode, semantic-stickyfunc-mode)
6394 (semantic-highlight-func-mode):
6395 * cedet/semantic/util.el (semantic-describe-buffer):
6396 * cedet/semantic/symref.el (semantic-symref-find-references-by-name)
6397 (semantic-symref-find-tags-by-name)
6398 (semantic-symref-find-tags-by-regexp)
6399 (semantic-symref-find-tags-by-completion)
6400 (semantic-symref-find-file-references-by-name)
6401 (semantic-symref-find-text):
6402 * cedet/semantic/senator.el (senator-copy-tag, senator-kill-tag)
6403 (senator-yank-tag):
6404 * cedet/semantic/scope.el (semantic-calculate-scope):
6405 * cedet/semantic/mru-bookmark.el (semantic-mru-bookmark-mode):
6406 * cedet/semantic/idle.el (semantic-idle-scheduler-mode)
6407 (define-semantic-idle-service):
6408 * cedet/semantic/complete.el (semantic-complete-analyze-inline)
6409 (semantic-complete-analyze-inline-idle):
6410 * cedet/semantic/analyze.el (semantic-analyze-current-context):
6411 * cedet/mode-local.el (describe-mode-local-bindings)
6412 (describe-mode-local-bindings-in-mode):
6413 * cedet/ede/make.el (ede-make-check-version):
6414 * cedet/ede/locate.el (ede-enable-locate-on-project):
6415 * cedet/cedet-idutils.el (cedet-idutils-expand-filename)
6416 (cedet-idutils-version-check):
6417 * cedet/cedet-global.el (cedet-gnu-global-expand-filename)
6418 (cedet-gnu-global-version-check):
6419 * cedet/cedet-cscope.el (cedet-cscope-expand-filename)
6420 (cedet-cscope-version-check): Use called-interactively-p instead
6421 of interactive-p.
6422
6423 * cedet/semantic/ia.el (semantic-ia-completion-format-tag-function):
6424 Use semantic-format-tag-prototype.
6425
6426 2009-11-22 Michael Kifer <kifer@cs.stonybrook.edu>
6427
6428 * emulation/viper-cmd.el: Use viper-last-command-char instead of
6429 last-command-char/last-command-event.
6430 (viper-prefix-arg-value): Do correct conversion of event-char for
6431 XEmacs.
6432
6433 * emulation/viper-util.el, emulation/viper.el:
6434 Use viper-last-command-char instead of
6435 last-command-char/last-command-event.
6436
6437 * ediff-init.el, ediff-mult.el, ediff-util.el:
6438 Replace last-command-char and last-command-event
6439 with (ediff-last-command-char) everywhere.
6440
6441 * ediff-vers.el (ediff-rcs-get-output-buffer): Make sure the buffer is
6442 created in fundamental mode.
6443
6444 * ediff.el (ediff-version): Revert the change of interactive-p to
6445 called-interactively-p.
6446
6447 2009-11-22 Tassilo Horn <tassilo@member.fsf.org>
6448
6449 * progmodes/subword.el (subword-mode-map): Fix subword-mode-map
6450 generation from word-movement command names.
6451
6452 2009-11-21 Chong Yidong <cyd@stupidchicken.com>
6453
6454 * cedet/semantic/complete.el (semantic-complete-read-tag-engine)
6455 (semantic-complete-jump-local, semantic-complete-jump):
6456 Improve prompt string.
6457
6458 2009-11-21 Jan Djärv <jan.h.d@swipnet.se>
6459
6460 * cus-start.el (all): Add native condition for font-use-system-font.
6461
6462 2009-11-21 Nathaniel Flath <flat0103@gmail.com>
6463
6464 * progmodes/cc-menus.el (cc-imenu-java-generic-expression):
6465 Correct the patch from 2009-11-18. (Bug#3910)
6466
6467 2009-11-21 Tassilo Horn <tassilo@member.fsf.org>
6468
6469 * progmodes/subword.el: Rename from lisp/subword.el.
6470
6471 * subword.el: Rename to progmodes/subword.el.
6472
6473 * Makefile.in (ELCFILES): Adapt to subword.el move.
6474
6475 2009-11-21 Thierry Volpiatto <thierry.volpiatto@gmail.com>
6476 Stefan Monnier <monnier@iro.umontreal.ca>
6477
6478 * bookmark.el (bookmark-bmenu-bookmark-column): Remove var.
6479 (bookmark-bmenu-list): Save name on `bookmark-name-prop' text-prop.
6480 (bookmark-bmenu-show-filenames): Use push.
6481 (bookmark-bmenu-hide-filenames): Use local var instead of
6482 bookmark-bmenu-bookmark-column. Use pop. Don't save window-excursion.
6483 (bookmark-bmenu-bookmark): Use the new `bookmark-name-prop' text-prop.
6484 (bookmark-bmenu-execute-deletions): Don't bother adding/removing the
6485 filenames now that the bookmark names are always available.
6486
6487 2009-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
6488
6489 * bookmark.el (bookmark-search-prompt, bookmark-search-timer): Remove.
6490 (bookmark-search-pattern): Move and leave unbound.
6491 (bookmark-bmenu-mode-map): Change binding.
6492 (bookmark-read-search-input): Simplify.
6493 Don't use text-char-description. Don't error on non-char events.
6494 (bookmark-filtered-alist-by-regexp-only): Remove by folding into the
6495 only caller (i.e. bookmark-bmenu-filter-alist-by-regexp).
6496 (bookmark-bmenu-search): Don't check we're in a bookmark-list buffer.
6497 Use a local var for the timer.
6498 (bookmark-bmenu-cancel-search): Remove by folding into the only caller
6499 (i.e. bookmark-bmenu-search).
6500
6501 2009-11-21 Glenn Morris <rgm@gnu.org>
6502
6503 * mail/rmailmm.el (rmail-mime): Decode in fundamental-mode. (Bug#4993)
6504
6505 2009-11-20 Ken Brown <kbrown@cornell.edu> (tiny change)
6506
6507 * net/browse-url.el (browse-url-default-windows-browser):
6508 Use cygstart for cygwin.
6509
6510 2009-11-20 Karl Fogel <karl.fogel@red-bean.com>
6511
6512 * bookmark.el: Formatting and doc fixes only:
6513 (bookmark-search-delay): Shorten doc string to fit in 80 columns.
6514 (bookmark-bmenu-search): Wrap to fit within 80 columns.
6515 Minor grammar and punctuation fixes in doc string.
6516 (bookmark-read-search-input): Adjust to fit within 80 columns.
6517
6518 2009-11-20 Tassilo Horn <tassilo@member.fsf.org>
6519
6520 * progmodes/cc-cmds.el (c-forward-into-nomenclature)
6521 (c-backward-into-nomenclature): Adapt to subword renaming.
6522
6523 * subword.el (subword-forward, subword-backward, subword-mark)
6524 (subword-kill, subword-backward-kill, subword-transpose)
6525 (subword-downcase, subword-upcase, subword-capitalize)
6526 (subword-forward-internal, subword-backward-internal):
6527 Rename from forward-subword, backward-subword, mark-subword,
6528 kill-subword, backward-kill-subword, transpose-subwords,
6529 downcase-subword, upcase-subword, capitalize-subword,
6530 forward-subword-internal, backward-subword-internal.
6531
6532 2009-11-20 Thierry Volpiatto <thierry.volpiatto@gmail.com>
6533
6534 * bookmark.el (bookmark-search-delay, bookmark-search-prompt):
6535 New options.
6536 (bookmark-search-pattern, bookmark-search-timer, bookmark-quit-flag):
6537 New vars.
6538 (bookmark-read-search-input, bookmark-filtered-alist-by-regexp-only)
6539 (bookmark-bmenu-filter-alist-by-regexp)
6540 (bookmark-bmenu-goto-bookmark, bookmark-bmenu-cancel-search): New funs.
6541 (bookmark-bmenu-search): New command.
6542 (bookmark-bmenu-mode-map): Bind it.
6543
6544 2009-11-20 Chong Yidong <cyd@stupidchicken.com>
6545
6546 * cedet/semantic/complete.el (semantic-complete-inline-map): Doc fix.
6547
6548 * cedet/semantic/idle.el (define-semantic-idle-service)
6549 (semantic-idle-summary-mode, semantic-idle-completions): Doc fix.
6550
6551 2009-11-20 Tassilo Horn <tassilo@member.fsf.org>
6552
6553 * progmodes/cc-cmds.el: declare-functioned forward-subword and
6554 backward-subword to quit the byte-compiler.
6555
6556 * makefile.w32-in: Don't refer cc-subword.elc but subword.elc.
6557
6558 * Makefile.in: Don't refer cc-subword.elc but subword.elc.
6559
6560 * progmodes/cc-cmds.el (c-update-modeline)
6561 (c-forward-into-nomenclature, c-backward-into-nomenclature):
6562 Refer to subword.el functions instead of cc-subword.el.
6563
6564 * progmodes/cc-mode.el (subword-mode, c-mode-base-map): Refer to
6565 subword.el functions instead of cc-subword.el.
6566
6567 * progmodes/cc-subword.el: Rename to subword.el.
6568 * subword.el: Rename from progmodes/cc-subword.el.
6569 (subword-mode-map): Rename from c-subword-mode-map.
6570 (subword-mode): Rename from c-subword-mode.
6571 (global-subword-mode): New global minor mode.
6572 (forward-subword): Rename from c-forward-subword.
6573 (backward-subword): Rename from c-backward-subword.
6574 (mark-subword): Rename from c-mark-subword.
6575 (kill-subword): Rename from c-kill-subword.
6576 (backward-kill-subword): Rename from c-backward-kill-subword.
6577 (transpose-subwords): Rename from c-tranpose-subword.
6578 (downcase-subword): Rename from c-downcase-subword.
6579 (capitalize-subword): Rename from c-capitalize-subword.
6580 (forward-subword-internal): Rename from c-forward-subword-internal.
6581 (backward-subword-internal): Rename from c-backward-subword-internal.
6582
6583 2009-11-20 Dan Nicolaescu <dann@ics.uci.edu>
6584
6585 * vc.el (vc-deduce-fileset): Allow non-state changing operations
6586 from a dired buffer.
6587 (vc-dired-deduce-fileset): New function.
6588 (vc-root-diff, vc-print-root-log): Use it.
6589
6590 * vc-annotate.el (vc-annotate-show-log-revision-at-line): Pass a
6591 nil LIMIT argument to vc-print-log-internal.
6592
6593 2009-11-20 Glenn Morris <rgm@gnu.org>
6594
6595 * Makefile.in (ELCFILES): Regenerate.
6596
6597 2009-11-20 Chong Yidong <cyd@stupidchicken.com>
6598
6599 * cedet/cedet.el (cedet-menu-map): Re-order menu items.
6600
6601 * cedet/semantic.el: Enable idle-mode menu items only if
6602 global-semantic-idle-scheduler-mode is enabled.
6603 (semantic-default-submodes): Doc fix.
6604
6605 * cedet/semantic/idle.el (global-semantic-idle-scheduler-mode):
6606 When turning off, disable other idle modes.
6607
6608 2009-11-20 Jay Belanger <jay.p.belanger@gmail.com>
6609
6610 * calc/calc.el (calc-set-mode-line):
6611 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
6612 (math-format-number): Rename `math-format-complement-signed' to
6613 `math-format-twos-complement'.
6614
6615 * calc/calc-bin.el (math-format-twos-complement): Rename from
6616 math-format-complement-signed.
6617 (calc-radix): Rename `calc-complement-signed-mode' to
6618 `calc-twos-complement-mode'.
6619 (calc-octal-radix, calc-hex-radix): Add an argument for
6620 two's complement.
6621
6622 * calc/calc-embed.el (calc-embedded-mode-vars):
6623 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
6624
6625 * calc/calc-ext.el (calc-init-extensions):
6626 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
6627 (math-format-number-fancy): Let `calc-twos-complement-mode' be nil.
6628
6629 * calc/calc-units.el (math-build-units-table-buffer):
6630 Let `calc-twos-complement-mode' be nil.
6631
6632 * calc/calc-menu.el (calc-modes-menu): Clean up two's complement
6633 entries.
6634
6635 * calc/calc-vec.el (calcFunc-vunpack):
6636 * calc/calc-aent.el (calc-do-calc-eval):
6637 * calc/calc-forms.el (math-format-date):
6638 * calc/calc-graph.el (calc-graph-plot):
6639 * calc/calc-math.el (math-use-emacs-fn):
6640 * calc/calccomp.el (math-compose-expr):
6641 Let `calc-twos-complement-mode' be nil.
6642
6643 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
6644
6645 * abbrev.el (abbrev-with-wrapper-hook): (re)move...
6646 * simple.el (with-wrapper-hook): ...to here. Add argument `args'.
6647 * minibuffer.el (completion-in-region-functions): New hook.
6648 (completion-in-region): New function.
6649 * emacs-lisp/lisp.el (lisp-complete-symbol):
6650 * pcomplete.el (pcomplete-std-complete): Use it.
6651
6652 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
6653
6654 * textmodes/tex-mode.el (latex-complete-bibtex-cache)
6655 (latex-complete-alist): New vars.
6656 (latex-string-prefix-p, latex-complete-bibtex-keys)
6657 (latex-complete-envnames, latex-complete-refkeys)
6658 (latex-complete-data): New functions.
6659 (latex-complete, latex-indent-or-complete): New commands.
6660
6661 * window.el (display-buffer-mark-dedicated): New var.
6662 (display-buffer): Obey it.
6663 * minibuffer.el (minibuffer-completion-help): Use it.
6664
6665 * progmodes/sym-comp.el (symbol-complete): Use completion-in-region.
6666
6667 * filecache.el (file-cache-add-file): Use push and cons.
6668 (file-cache-delete-file-regexp): Use push.
6669 (file-cache-complete): Use completion-in-region.
6670
6671 * simple.el (with-wrapper-hook): Fix thinko.
6672
6673 * hfy-cmap.el (hfy-rgb-file): Use locate-file.
6674 (htmlfontify-load-rgb-file): Remove unnused var `ff'.
6675 Use with-current-buffer and string-to-number.
6676 (hfy-fallback-colour-values): Use assoc-string.
6677 * htmlfontify.el (hfy-face-to-css): Remove unused var `style'.
6678 (hfy-face-at): Remove unused var `found-face'.
6679 (hfy-compile-stylesheet): Remove unused var `css'.
6680 (hfy-fontify-buffer): Remove unused vars `in-style', `invis-button',
6681 and `orig-buffer'.
6682 (hfy-buffer, hfy-copy-and-fontify-file, hfy-parse-tags-buffer):
6683 Use with-current-buffer.
6684 (hfy-text-p): Use expand-file-name and fewer setq.
6685
6686 2009-11-19 Vivek Dasmohapatra <vivek@etla.org>
6687
6688 * htmlfontify.el, hfy-cmap.el: New files.
6689
6690 2009-11-19 Juri Linkov <juri@jurta.org>
6691
6692 * minibuffer.el (completions-format): New defcustom.
6693 (completion--insert-strings): Implement vertical format.
6694
6695 * simple.el (switch-to-completions): Move point to the first
6696 completion when point was at the beginning of the buffer.
6697
6698 2009-11-19 Juri Linkov <juri@jurta.org>
6699
6700 * find-dired.el (find-name-arg): Remove autoload. (Bug#4387)
6701
6702 * progmodes/grep.el (rgrep): Require `find-dired' for `find-name-arg'.
6703
6704 2009-11-19 Chong Yidong <cyd@stupidchicken.com>
6705
6706 * mail/sendmail.el (mail-yank-prefix): Change default to "> ".
6707 (mail-signature): Change default to t.
6708 (mail-from-style): Deprecate `system-default' value.
6709 (mail-insert-from-field): For default value of mail-from-style,
6710 default to `angles' unless `angles' needs quoting and `parens'
6711 does not.
6712 (mail-citation-prefix-regexp): Use citation regexp from
6713 message-mode.
6714
6715 2009-11-19 Michael Albinus <michael.albinus@gmx.de>
6716
6717 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
6718 Set variables for computing the prompt for reading password.
6719
6720 2009-11-19 Glenn Morris <rgm@gnu.org>
6721
6722 * dired-aux.el (dired-compress-file-suffixes): Add ".xz". (Bug#4953)
6723
6724 * textmodes/flyspell.el (sgml-lexical-context): Declare.
6725
6726 * net/newst-treeview.el (newsticker-treeview-treewindow-width)
6727 (newsticker-treeview-listwindow-height): Fix custom type.
6728
6729 2009-11-19 Kenichi Handa <handa@m17n.org>
6730
6731 * descr-text.el (describe-char-padded-string): Compose with TAB
6732 only if there's a font for CH.
6733 (describe-char): Fix the condition for detecting a trivial composition.
6734
6735 2009-11-18 Nathaniel Flath <flat0103@gmail.com>
6736
6737 * progmodes/cc-menus.el (cc-imenu-java-generic-expression): A new,
6738 more accurate version of the regexp. (Bug#3910)
6739
6740 2009-11-18 Bernhard Herzog <bernhard.herzog@intevation.de> (tiny change)
6741
6742 * vc-hg.el (vc-hg-diff): Fix last patch: do not change directory.
6743
6744 2009-11-18 Juanma Barranquero <lekktu@gmail.com>
6745
6746 * font-setting.el (font-use-system-font): Declare for byte-compiler.
6747 (font-setting-change-default-font): Fix typo in docstring.
6748
6749 2009-11-18 Alan Mackenzie <acm@muc.de>
6750
6751 * progmodes/cc-defs.el (c-version): Bump to 5.31.8.
6752
6753 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
6754
6755 * font-setting.el (font-use-system-font): Move ...
6756
6757 * cus-start.el (all): ... to here.
6758
6759 2009-11-17 Michael Albinus <michael.albinus@gmx.de>
6760
6761 * net/tramp.el (tramp-advice-file-expand-wildcards): Simplify.
6762 Don't set `ad-return-value' if `ad-do-it' doesn't.
6763
6764 * net/tramp-gvfs.el (tramp-gvfs-handle-write-region): Set file
6765 modification time.
6766
6767 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
6768
6769 * menu-bar.el: Put "Use system font" in Option-menu.
6770 (menu-bar-options-save): Add font-use-system-font.
6771
6772 * loadup.el: If feature system-font-setting or font-render-setting is
6773 there, load font-setting.
6774
6775 * Makefile.in (ELCFILES): Add font-settings.el.
6776 * font-setting.el: New file.
6777
6778 2009-11-17 Glenn Morris <rgm@gnu.org>
6779
6780 * vc-svn.el (vc-svn-print-log): Fix typo in previous.
6781
6782 * net/newst-treeview.el (newsticker--treeview-list-update-faces):
6783 Preserve point in the list buffer. (Bug#4939)
6784 Use point-at-eol.
6785 (newsticker--treeview-list-update-highlight)
6786 (newsticker--treeview-tree-update-highlight): Use point-at-bol/eol.
6787
6788 2009-11-16 Jay Belanger <jay.p.belanger@gmail.com>
6789
6790 * calc/calc-bin.el (math-symclip, calcFunc-symclip, calc-symclip):
6791 Remove.
6792
6793 * calc/calc-ext.el (calc-init-extensions): Remove references to
6794 symclip.
6795
6796 * calc/calc-menu.el (calc-arithmetic-menu): Remove `calc-symclip'.
6797
6798 * calc/calc-map.el (calc-get-operator, calc-b-oper-keys):
6799 * calc/calc-help.el (calc-b-prefix-help): Remove references to
6800 `calc-symclip'.
6801
6802 2009-11-16 Kevin Ryde <user42@zip.com.au>
6803
6804 * textmodes/flyspell.el (sgml-mode-flyspell-verify):
6805 Use `sgml-lexical-context' instead of own parse for tag (Bug#4511).
6806
6807 * emacs-lisp/lisp-mnt.el (lm-keywords): Allow multi-line keywords.
6808 (lm-keywords-list): Allow comma-only separator like "foo,bar".
6809 Ignore trailing spaces by omit-nulls to split-string (fixing
6810 regression from Emacs 21 due to the incompatible split-string
6811 change). (Bug #4928.)
6812
6813 2009-11-16 Dan Nicolaescu <dann@ics.uci.edu>
6814
6815 * vc.el (vc-log-show-limit): Default to 2000.
6816 (vc-print-log-internal): Insert buttons to request more entries
6817 when limiting the output.
6818
6819 * vc-sccs.el (vc-sccs-print-log):
6820 * vc-rcs.el (vc-rcs-print-log):
6821 * vc-cvs.el (vc-cvs-print-log):
6822 * vc-git.el (vc-git-print-log): Return 'limit-unsupported when
6823 LIMIT is non-nil.
6824
6825 2009-11-16 Michael Albinus <michael.albinus@gmx.de>
6826
6827 * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error): Raise only an
6828 error when `tramp-gvfs-dbus-event-vector' is set.
6829 (tramp-gvfs-maybe-open-connection): Loop over `read-event'.
6830
6831 2009-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
6832
6833 * vc-rcs.el (vc-rcs-consult-headers): Add missing save-excursion.
6834
6835 2009-11-16 Michael Albinus <michael.albinus@gmx.de>
6836
6837 * net/dbus.el (dbus-unregister-service): New defun.
6838 (dbus-register-property): Register the handlers of
6839 "org.freedesktop.DBus.Properties" for SERVICE.
6840 (dbus-property-handler): Fix docstring.
6841
6842 2009-11-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6843
6844 * emacs-lisp/bytecomp.el (byte-compile-output-file-form):
6845 Quote doc string reference in defvaralias as it is not in special form.
6846 (byte-compile-output-docform): Doc fix.
6847
6848 2009-11-16 Jay Belanger <jay.p.belanger@gmail.com>
6849
6850 * calc/calc.el (math-2-word-size, math-half-2-word-size)
6851 (calc-complement-signed-mode): New variables.
6852 (calc-set-mode-line): Add indicator for twos-complements.
6853 (math-format-number): Format twos-complement notation.
6854
6855 * calc/calc-bin.el (calc-word-size): Reset the variables
6856 `math-2-word-size' and `math-half-2-word-size'.
6857 (math-format-complement-signed, math-symclip, calcFunc-symclip)
6858 (calc-symclip): New functions.
6859
6860 * calc/calc-aent.el (math-read-token): Read complement signed numbers.
6861
6862 * calc/calc-embed.el (calc-embedded-mode-vars):
6863 Add `calc-complement-signed-mode' to the list of modes.
6864
6865 * calc/calc-map.el (calc-get-operator): Add `calc-symclip'.
6866 (calc-b-oper-keys): Add `calc-symclip' to list.
6867
6868 * calc/calc-ext.el (math-read-number-fancy): Read complement
6869 signed numbers.
6870 (calc-init-extensions): Add binding for `calc-symclip'.
6871 Add autoload for `calcFunc-symclip' and `calc-symclip'.
6872
6873 * calc/calc-menu.el (calc-arithmetic-menu): Add item for
6874 `calc-symclip'.
6875 (calc-modes-menu): Add item for twos complement mode.
6876
6877 * calc/calc-help.el (calc-b-prefix-help): Add help for `calc-symclip'.
6878
6879 2009-11-15 Chong Yidong <cyd@stupidchicken.com>
6880
6881 * register.el (jump-to-register, insert-register): Handle Semantic
6882 tags. From commented-out advice in semantic/senator.el.
6883
6884 2009-11-15 Dan Nicolaescu <dann@ics.uci.edu>
6885
6886 * vc.el (vc-log-show-limit): New variable.
6887 (vc-print-log, vc-print-root-log): Add new argument LIMIT. Set it
6888 when using a prefix argument.
6889 (vc-print-log-internal): Add new argument LIMIT.
6890
6891 * vc-svn.el (vc-svn-print-log):
6892 * vc-mtn.el (vc-mtn-print-log):
6893 * vc-hg.el (vc-hg-print-log):
6894 * vc-bzr.el (vc-bzr-print-log): Add new optional argument LIMIT,
6895 pass it to the log command when set. Make the BUFFER argument
6896 non-optional.
6897
6898 * vc-sccs.el (vc-sccs-print-log):
6899 * vc-rcs.el (vc-rcs-print-log):
6900 * vc-git.el (vc-git-print-log):
6901 * vc-cvs.el (vc-cvs-print-log): Add new optional argument LIMIT,
6902 ignore it. Make the BUFFER argument non-optional
6903
6904 * bindings.el (mode-line-buffer-identification): Do not purecopy.
6905
6906 2009-11-15 Chong Yidong <cyd@stupidchicken.com>
6907
6908 * dired.el (dired-mode-map): Move encryption items to "Operate"
6909 menu (Bug#4703).
6910
6911 * strokes.el (strokes-update-window-configuration): Make strokes
6912 buffer current before erasing (Bug#4906).
6913
6914 * cedet/semantic/idle.el (semantic-idle-summary-mode)
6915 (semantic-idle-summary-mode): Define using define-minor-mode
6916 instead of define-semantic-idle-service.
6917 (semantic-idle-summary-mode): New function.
6918 (semantic-idle-summary-mode-setup): Use pre-command-hook to ensure
6919 that mouse motion does not reset the echo area.
6920
6921 2009-11-15 Juri Linkov <juri@jurta.org>
6922
6923 * simple.el (set-mark-default-inactive): Add :type, :group
6924 and :version. (Bug#4876)
6925
6926 2009-11-15 Michael Albinus <michael.albinus@gmx.de>
6927
6928 * arc-mode.el (archive-maybe-copy): Move creation of directory ...
6929 (archive-unique-fname): ... here. (Bug#4929)
6930
6931 2009-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
6932
6933 * help-mode.el (help-make-xrefs): Undo the last revert, and replace it
6934 with a real fix.
6935
6936 * novice.el (disabled-command-function): Add useful args.
6937 Setup the help buffer so that [back] works.
6938 Remove redundant call to help-mode.
6939 (disabled-command-function): Use `case'.
6940 (en/disable-command): New function extracted from enable-command.
6941 (enable-command, disable-command): Use it.
6942
6943 2009-11-14 Glenn Morris <rgm@gnu.org>
6944
6945 * menu-bar.el (menu-bar-tools-menu): Read and send mail entries are not
6946 constants. (Bug#4913)
6947
6948 * emacs-lisp/elint.el (elint-standard-variables): Doc fix.
6949
6950 2009-11-14 Shigeru Fukaya <shigeru.fukaya@gmail.com>
6951
6952 * emacs-lisp/elint.el (elint-standard-variables): Add some variables
6953 defined in C that have no doc-strings. (Bug#1063)
6954
6955 2009-11-14 Francis Wright <F.J.Wright@qmul.ac.uk>
6956
6957 * cus-edit.el (data, files):
6958 * ps-print.el (postscript): Doc fixes for custom groups. (Bug#3327)
6959
6960 2009-11-14 Chong Yidong <cyd@stupidchicken.com>
6961
6962 * simple.el (shell-command): Doc fix (Bug#4891).
6963
6964 * help-mode.el (help-make-xrefs): Revert 2009-11-13 change.
6965
6966 2009-11-14 Glenn Morris <rgm@gnu.org>
6967
6968 * emulation/viper.el (viper-set-hooks): Remove duplicate advice
6969 statements for vc-diff, emerge-quit, and rmail-cease-edit.
6970 If they are already loaded, eval-after-load will do the right thing.
6971
6972 * speedbar.el (top-level): Remove unnecessary load of ange-ftp when
6973 compiling.
6974
6975 * emacs-lisp/bytecomp.el (byte-compile-single-version): Remove, unused.
6976
6977 * simple.el (x-selection-owner-p): Declare.
6978 (read-mail-command): Use custom radio type rather than choice.
6979 (completion-no-auto-exit): Doc fix.
6980
6981 * custom.el (defgroup):
6982 * epg-config.el (epg): Doc fixes.
6983
6984 2009-11-14 Dan Nicolaescu <dann@ics.uci.edu>
6985
6986 * bindings.el (mode-line-buffer-identification): Purecopy only the string.
6987 * international/ccl.el (define-ccl-program): Do not purecopy the
6988 docstring, defconst does it anyway.
6989
6990 2009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
6991
6992 * add-log.el (add-change-log-entry): Avoid displaying the changelog
6993 a second time.
6994
6995 * x-dnd.el (x-dnd-maybe-call-test-function):
6996 * window.el (split-window-vertically):
6997 * whitespace.el (whitespace-help-on):
6998 * vc-rcs.el (vc-rcs-consult-headers):
6999 * userlock.el (ask-user-about-lock-help)
7000 (ask-user-about-supersession-help):
7001 * type-break.el (type-break-force-mode-line-update):
7002 * time-stamp.el (time-stamp-conv-warn):
7003 * terminal.el (te-set-output-log, te-more-break, te-filter)
7004 (te-sentinel, terminal-emulator):
7005 * term.el (make-term, term-exec, term-sentinel, term-read-input-ring)
7006 (term-write-input-ring, term-check-source, term-start-output-log):
7007 (term-display-buffer-line, term-dynamic-list-completions):
7008 (term-ansi-make-term, serial-term):
7009 * subr.el (selective-display):
7010 * strokes.el (strokes-xpm-to-compressed-string, strokes-decode-buffer)
7011 (strokes-encode-buffer, strokes-xpm-for-compressed-string):
7012 * speedbar.el (speedbar-buffers-tail-notes, speedbar-buffers-item-info)
7013 (speedbar-reconfigure-keymaps, speedbar-add-localized-speedbar-support)
7014 (speedbar-remove-localized-speedbar-support)
7015 (speedbar-set-mode-line-format, speedbar-create-tag-hierarchy)
7016 (speedbar-update-special-contents, speedbar-buffer-buttons-engine)
7017 (speedbar-buffers-line-directory):
7018 * simple.el (shell-command-on-region, append-to-buffer)
7019 (prepend-to-buffer):
7020 * shadowfile.el (shadow-save-todo-file):
7021 * scroll-bar.el (scroll-bar-set-window-start, scroll-bar-drag-1)
7022 (scroll-bar-maybe-set-window-start):
7023 * sb-image.el (speedbar-image-dump):
7024 * saveplace.el (save-place-alist-to-file, save-places-to-alist)
7025 (load-save-place-alist-from-file):
7026 * ps-samp.el (ps-print-message-from-summary):
7027 * ps-print.el (ps-flush-output, ps-insert-file, ps-get-boundingbox)
7028 (ps-background-image, ps-begin-job, ps-do-despool):
7029 * ps-bdf.el (bdf-find-file, bdf-read-font-info):
7030 * printing.el (pr-interface, pr-ps-file-print, pr-find-buffer-visiting)
7031 (pr-ps-message-from-summary, pr-lpr-message-from-summary):
7032 (pr-call-process, pr-file-list, pr-interface-save):
7033 * novice.el (disabled-command-function)
7034 (enable-command, disable-command):
7035 * mouse.el (mouse-buffer-menu-alist):
7036 * mouse-copy.el (mouse-kill-preserving-secondary):
7037 * macros.el (kbd-macro-query):
7038 * ledit.el (ledit-go-to-lisp, ledit-go-to-liszt):
7039 * informat.el (batch-info-validate):
7040 * ido.el (ido-copy-current-word, ido-initiate-auto-merge):
7041 * hippie-exp.el (try-expand-dabbrev-visible):
7042 * help-mode.el (help-make-xrefs):
7043 * help-fns.el (describe-variable):
7044 * generic-x.el (bat-generic-mode-run-as-comint):
7045 * finder.el (finder-mouse-select):
7046 * find-dired.el (find-dired-sentinel):
7047 * filesets.el (filesets-file-close):
7048 * files.el (list-directory):
7049 * faces.el (list-faces-display, describe-face):
7050 * facemenu.el (list-colors-display):
7051 * ezimage.el (ezimage-image-association-dump, ezimage-image-dump):
7052 * epg.el (epg--process-filter, epg-cancel):
7053 * epa.el (epa--marked-keys, epa--select-keys, epa-display-info)
7054 (epa--read-signature-type):
7055 * emerge.el (emerge-copy-as-kill-A, emerge-copy-as-kill-B)
7056 (emerge-file-names):
7057 * ehelp.el (electric-helpify):
7058 * ediff.el (ediff-regions-wordwise, ediff-regions-linewise):
7059 * ediff-vers.el (rcs-ediff-view-revision):
7060 * ediff-util.el (ediff-setup):
7061 * ediff-mult.el (ediff-append-custom-diff):
7062 * ediff-diff.el (ediff-exec-process, ediff-process-sentinel)
7063 (ediff-wordify):
7064 * echistory.el (Electric-command-history-redo-expression):
7065 * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
7066 * disp-table.el (describe-display-table):
7067 * dired.el (dired-find-buffer-nocreate):
7068 * dired-aux.el (dired-rename-subdir, dired-dwim-target-directory):
7069 * dabbrev.el (dabbrev--same-major-mode-p):
7070 * chistory.el (list-command-history):
7071 * apropos.el (apropos-documentation):
7072 * allout.el (allout-obtain-passphrase):
7073 (allout-copy-exposed-to-buffer):
7074 (allout-verify-passphrase): Use with-current-buffer.
7075
7076 2009-11-13 Glenn Morris <rgm@gnu.org>
7077
7078 * Makefile.in (ELCFILES): Regenerate.
7079
7080 2009-11-13 Michael Albinus <michael.albinus@gmx.de>
7081
7082 * net/dbus.el (dbus-registered-objects-table): Rename from
7083 `dbus-registered-functions-table', because it contains also properties.
7084 (dbus-unregister-object): Unregister also properties.
7085 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
7086 Use a timeout of 500 msec, in order to not block.
7087 (dbus-register-property, dbus-property-handler): New defuns.
7088
7089 2009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
7090
7091 * simple.el (minibuffer-default-add-completions): Drop deprecated
7092 4th arg.
7093
7094 2009-11-13 Tomas Abrahamsson <tab@lysator.liu.se>
7095
7096 * textmodes/artist.el (artist-mouse-choose-operation):
7097 Call `tmm-prompt' instead of `x-popup-menu' if we cannot popup
7098 menus. Bug noticed by Eli Zaretskii <eliz@gnu.org>.
7099 (artist-compute-up-event-key): New function.
7100 (artist-mouse-choose-operation, artist-down-mouse-1): Call it.
7101
7102 2009-11-13 Kenichi Handa <handa@m17n.org>
7103
7104 * language/japan-util.el: Make sure that the value of jisx0208
7105 property is jisx0208 character.
7106
7107 2009-11-13 Dan Nicolaescu <dann@ics.uci.edu>
7108
7109 * international/mule.el (auto-coding-regexp-alist): Only purecopy
7110 car or each item, not the whole list.
7111
7112 2009-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
7113
7114 * minibuffer.el (minibuffer-completion-help):
7115 Use minibuffer-hide-completions.
7116
7117 2009-11-12 Per Starbäck <per@starback.se> (tiny change)
7118
7119 * dired.el (dired-save-positions, dired-restore-positions): New funs.
7120 (dired-revert): Use them (bug#4880).
7121
7122 2009-11-12 Dan Nicolaescu <dann@ics.uci.edu>
7123
7124 * tooltip.el (tooltip-frame-parameters): Undo previous change.
7125
7126 2009-11-12 Juri Linkov <juri@jurta.org>
7127
7128 * ffap.el (ffap-alternate-file-other-window, ffap-literally):
7129 New functions.
7130 (find-file-literally-at-point): Alias of `ffap-literally'.
7131
7132 2009-11-12 Dan Nicolaescu <dann@ics.uci.edu>
7133
7134 * textmodes/ispell.el (ispell-skip-region-alist):
7135 * textmodes/css-mode.el (auto-mode-alist):
7136 * progmodes/compile.el (auto-mode-alist):
7137 * international/mule.el (ctext-non-standard-encodings-alist)
7138 (ctext-non-standard-encodings-regexp):
7139 * simple.el (shell-command-switch, text-read-only):
7140 * replace.el (occur-mode-map):
7141 * paths.el (rmail-file-name):
7142 * jka-cmpr-hook.el (jka-compr-build-file-regexp):
7143 * find-file.el (ff-special-constructs):
7144 * files.el (file-name-handler-alist):
7145 * composite.el: Purecopy strings.
7146
7147 * emacs-lisp/cl-macs.el (define-compiler-macro): Purecopy the file name.
7148
7149 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
7150
7151 * widget.el (define-widget): Purecopy the docstring.
7152 * international/mule-cmds.el (charset): Do not purecopy the
7153 docstring here, define-widget does it.
7154
7155 * textmodes/texinfo.el (texinfo-open-quote, texinfo-close-quote):
7156 * textmodes/bibtex-style.el (auto-mode-alist):
7157 * progmodes/inf-lisp.el (inferior-lisp-prompt):
7158 * progmodes/compile.el (compile-command):
7159 * language/korea-util.el (default-korean-keyboard):
7160 * international/mule-conf.el (file-coding-system-alist):
7161 * emacs-lisp/eldoc.el (eldoc-minor-mode-string):
7162 * tooltip.el (tooltip-frame-parameters):
7163 * newcomment.el (comment-end, comment-padding):
7164 * dired.el (dired-trivial-filenames):
7165 * comint.el (comint-file-name-prefix): Purecopy initial values.
7166
7167 2009-11-11 Michael Albinus <michael.albinus@gmx.de>
7168
7169 * net/tramp.el (tramp-advice-minibuffer-electric-separator)
7170 (tramp-advice-minibuffer-electric-tilde): Unload advices via
7171 `tramp-unload'.
7172 (tramp-advice-make-auto-save-file-name)
7173 (tramp-advice-file-expand-wildcards): Apply also `ad-activate'
7174 after removing the advice.
7175
7176 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
7177
7178 * progmodes/grep.el (grep-regexp-alist):
7179 * international/mule-cmds.el (iso-2022-control-alist):
7180 * emacs-lisp/timer.el (timer-duration-words):
7181 * subr.el (version-separator, version-regexp-alist):
7182 * minibuffer.el (completion-styles-alist):
7183 * faces.el (face-attribute-name-alist, list-faces-sample-text):
7184 Change defvars to defconsts.
7185
7186 * Makefile.in (ELCFILES): Add international/mule-conf.elc.
7187 * loadup.el ("international/mule-conf"): Load the byte compiled version.
7188 * international/mule-conf.el: Allow to be byte compiled.
7189
7190 * international/mule.el (define-charset): Purecopy props.
7191 (load-with-code-conversion): Purecopy doc string and file name.
7192 (put-charset-property): Purecopy strings.
7193 (auto-coding-alist, auto-coding-regexp-alist): Purecopy initial value.
7194
7195 * international/mule-cmds.el (register-input-method): Purecopy arguments.
7196 (define-char-code-property): Correctly purecopy the table.
7197
7198 * international/ccl.el (define-ccl-program): Purecopy the docstring.
7199
7200 * emacs-lisp/easy-mmode.el (define-minor-mode): Purecopy :lighter.
7201
7202 * subr.el (add-hook): Purecopy strings.
7203 (eval-after-load): Purecopy load-history-regexp and the form.
7204
7205 * custom.el (custom-declare-group): Purecopy load-file-name.
7206
7207 * subr.el (menu-bar-separator): New defconst.
7208 * net/eudc.el (eudc-tools-menu):
7209 * international/mule-cmds.el (set-coding-system-map)
7210 (mule-menu-keymap):
7211 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
7212 * vc-hooks.el (vc-menu-map):
7213 * replace.el (occur-mode-map):
7214 * menu-bar.el (menu-bar-file-menu, menu-bar-search-menu)
7215 (menu-bar-edit-menu, menu-bar-goto-menu)
7216 (menu-bar-custom-menu, menu-bar-showhide-menu)
7217 (menu-bar-options-menu, menu-bar-tools-menu)
7218 (menu-bar-encryption-decryption-menu, menu-bar-describe-menu)
7219 (menu-bar-search-documentation-menu, menu-bar-manuals-menu)
7220 (menu-bar-help-menu):
7221 * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu):
7222 * buff-menu.el (Buffer-menu-mode-map): Use menu-bar-separator.
7223
7224 * term/x-win.el (x-gtk-stock-map):
7225 * progmodes/vera-mode.el (auto-mode-alist):
7226 * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
7227 (inferior-lisp-program, inferior-lisp-load-command):
7228 * progmodes/hideshow.el (hs-special-modes-alist):
7229 * progmodes/gud.el (same-window-regexps):
7230 * progmodes/grep.el (grep-program, find-program, xargs-program):
7231 * net/telnet.el (same-window-regexps):
7232 * net/rlogin.el (same-window-regexps):
7233 * language/ethiopic.el (font-ccl-encoder-alist):
7234 * vc-sccs.el (vc-sccs-master-templates):
7235 * vc-rcs.el (vc-rcs-master-templates):
7236 * subr.el (cl-assertion-failed):
7237 * simple.el (next-error-overlay-arrow-position):
7238 * lpr.el (lpr-command):
7239 * locate.el (locate-ls-subdir-switches):
7240 * info.el (same-window-regexps, info)
7241 (Info-goto-emacs-command-node, Info-goto-emacs-key-command-node):
7242 * image-mode.el (image-mode, auto-mode-alist):
7243 * hippie-exp.el (hippie-expand-ignore-buffers):
7244 * format.el (format-alist):
7245 * find-dired.el (find-ls-subdir-switches, find-grep-options)
7246 (find-name-arg):
7247 * facemenu.el (facemenu-keybindings):
7248 * dired.el (dired-listing-switches, dired-chown-program):
7249 * diff.el (diff-switches, diff-command):
7250 * cus-edit.el (same-window-regexps):
7251 * bindings.el (mode-line-mule-info)
7252 (mode-line-buffer-identification): Purecopy strings.
7253
7254 2009-11-11 Juri Linkov <juri@jurta.org>
7255
7256 * simple.el (dired-get-filename) <declare-function>:
7257 Tell the byte-compiler about dired-get-filename.
7258 (shell-command): In Dired mode, get filename from the current line
7259 as the default value.
7260
7261 2009-11-10 Glenn Morris <rgm@gnu.org>
7262
7263 * dired.el, hi-lock.el, calendar/cal-menu.el, calendar/calendar.el:
7264 * calendar/holidays.el, progmodes/cperl-mode.el:
7265 Update x-popup-menu declarations.
7266
7267 * emacs-lisp/shadow.el (find-emacs-lisp-shadows)
7268 (list-load-path-shadows): Use dolist.
7269 (list-load-path-shadows): Use with-current-buffer.
7270
7271 2009-11-10 Juri Linkov <juri@jurta.org>
7272
7273 * minibuffer.el (read-file-name): Support a list of default values
7274 in `default-filename'. Use the first file name where only one
7275 element is required. Doc fix.
7276
7277 2009-11-09 Michael Albinus <michael.albinus@gmx.de>
7278
7279 * net/dbus.el (dbus-unregister-object): Release service, if no
7280 other method is registered for it.
7281
7282 2009-11-08 Markus Rost <rost@math.uni-bielefeld.de>
7283
7284 * bookmark.el (bookmark-completing-read): Sort bookmark names if
7285 bookmark-sort-flag is non-nil (Bug#4653).
7286
7287 2009-11-08 Chong Yidong <cyd@stupidchicken.com>
7288
7289 * cedet/semantic/ctxt.el (semantic-get-local-variables): Disable
7290 the progress reporter entirely.
7291
7292 * emulation/cua-base.el: Add CUA property to some CC mode commands
7293 (Bug#4100).
7294
7295 2009-11-08 Kevin Ryde <user42@zip.com.au>
7296
7297 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp): Match noun
7298 at end of sentence (Bug#4818).
7299
7300 2009-11-08 Jared Finder <jfinder@crypticstudios.com>
7301
7302 * progmodes/compile.el (compilation-error-regexp-alist-alist):
7303 Handle "see declaration of" MSFT statements (Bug#4100).
7304
7305 2009-11-08 Michael Albinus <michael.albinus@gmx.de>
7306
7307 * net/tramp.el (tramp-advice-make-auto-save-file-name)
7308 (tramp-advice-file-expand-wildcards): Unload via
7309 `ad-remove-advice'.
7310
7311 * net/trampver.el: Update release number.
7312
7313 2009-11-08 Kevin Ryde <user42@zip.com.au>
7314
7315 * net/tramp.el (tramp-advice-file-expand-wildcards): Don't rely on
7316 `ad-do-it'.
7317
7318 2009-11-08 Andr <m00naticus@gmail.com> (tiny change)
7319
7320 * net/tramp.el (tramp-handle-write-region): Copy but rename temp file,
7321 in order to keep context in SELinux.
7322
7323 2009-11-08 Chong Yidong <cyd@stupidchicken.com>
7324
7325 * dired-aux.el (dired-query): Place cursor in echo area and allow
7326 C-g.
7327
7328 * dired.el (dired-mode-map): Disable dired-maybe-insert-subdir
7329 menu item if not on a directory (Bug#4701).
7330
7331 2009-11-07 Michael Albinus <michael.albinus@gmx.de>
7332
7333 Sync with Tramp 2.1.17.
7334
7335 * net/tramp.el (tramp-handle-copy-directory): Don't use
7336 `file-remote-p' (due to compatibility).
7337
7338 * net/tramp-compat.el (tramp-compat-copy-directory)
7339 (tramp-compat-delete-directory): New defuns.
7340
7341 * net/tramp-fish.el (tramp-fish-handle-delete-directory):
7342 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory): Use
7343 `tramp-compat-delete-directory'.
7344
7345 * net/tramp-smb.el (tramp-smb-handle-copy-directory)
7346 (tramp-smb-handle-delete-directory): Use
7347 `tramp-compat-copy-directory' and `tramp-compat-delete-directory'.
7348
7349 * net/trampver.el: Update release number.
7350
7351 2009-11-07 Chong Yidong <cyd@stupidchicken.com>
7352
7353 * tar-mode.el (tar-copy): Call write-region on the right buffer
7354 (Bug#4857).
7355
7356 * mail/rmailsum.el (rmail-summary-rmail-update): Call linum-update
7357 by hand, if necessary (Bug#4878).
7358
7359 2009-11-06 Chong Yidong <cyd@stupidchicken.com>
7360
7361 * buff-menu.el (Buffer-menu-buffer+size): Use display property to
7362 align size column (Bug#4839).
7363
7364 * emacs-lisp/autoload.el (autoload-rubric): Always issue a provide
7365 statement.
7366
7367 2009-11-05 Dan Nicolaescu <dann@ics.uci.edu>
7368
7369 * progmodes/ld-script.el (auto-mode-alist):
7370 * vc-hooks.el (vc-directory-exclusion-list): Purecopy strings.
7371
7372 * cus-face.el (custom-declare-face): Purecopy face spec.
7373
7374 2009-11-06 Kenichi Handa <handa@m17n.org>
7375
7376 * international/uni-bidi.el: Re-generated.
7377 * international/uni-category.el: Re-generated.
7378 * international/uni-combining.el: Re-generated.
7379 * international/uni-mirrored.el: Re-generated.
7380
7381 2009-11-05 Dan Nicolaescu <dann@ics.uci.edu>
7382
7383 * textmodes/tex-mode.el (tex-alt-dvi-print-command)
7384 (tex-dvi-print-command, tex-bibtex-command, tex-start-commands)
7385 (tex-start-options, slitex-run-command, latex-run-command)
7386 (tex-run-command, tex-directory):
7387 * textmodes/ispell.el (ispell-html-skip-alists)
7388 (ispell-tex-skip-alists, ispell-tex-skip-alists):
7389 * textmodes/fill.el (adaptive-fill-first-line-regexp):
7390 (adaptive-fill-regexp):
7391 * textmodes/dns-mode.el (auto-mode-alist):
7392 * progmodes/python.el (interpreter-mode-alist):
7393 * progmodes/etags.el (tags-compression-info-list):
7394 * progmodes/etags.el (tags-file-name):
7395 * net/browse-url.el (browse-url-galeon-program)
7396 (browse-url-firefox-program):
7397 * mail/sendmail.el (mail-signature-file)
7398 (mail-citation-prefix-regexp):
7399 * international/mule-conf.el (eight-bit):
7400 * international/latexenc.el (latex-inputenc-coding-alist):
7401 * international/fontset.el (x-pixel-size-width-font-regexp):
7402 * emacs-lisp/warnings.el (warning-type-format):
7403 * emacs-lisp/trace.el (trace-buffer):
7404 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-map)
7405 (emacs-lisp-mode-map):
7406 * calendar/holidays.el (holiday-solar-holidays)
7407 (holiday-bahai-holidays, holiday-islamic-holidays)
7408 (holiday-christian-holidays, holiday-hebrew-holidays)
7409 (hebrew-holidays-4, hebrew-holidays-3, hebrew-holidays-2)
7410 (hebrew-holidays-1, holiday-oriental-holidays)
7411 (holiday-general-holidays):
7412 * x-dnd.el (x-dnd-known-types):
7413 * tool-bar.el (tool-bar):
7414 * startup.el (site-run-file):
7415 * shell.el (shell-dumb-shell-regexp):
7416 * rfn-eshadow.el (file-name-shadow-tty-properties)
7417 (file-name-shadow-properties):
7418 * paths.el (remote-shell-program, news-directory):
7419 * mouse.el ([C-down-mouse-3]):
7420 * menu-bar.el (menu-bar-tools-menu):
7421 * jka-cmpr-hook.el (jka-compr-load-suffixes)
7422 (jka-compr-mode-alist-additions, jka-compr-compression-info-list)
7423 (jka-compr-compression-info-list):
7424 * isearch.el (search-whitespace-regexp):
7425 * image-file.el (image-file-name-extensions):
7426 * find-dired.el (find-ls-option):
7427 * files.el (directory-listing-before-filename-regexp)
7428 (directory-free-space-args, insert-directory-program)
7429 (list-directory-brief-switches, magic-fallback-mode-alist)
7430 (magic-fallback-mode-alist, auto-mode-interpreter-regexp)
7431 (automount-dir-prefix):
7432 * faces.el (face-x-resources, x-font-regexp, x-font-regexp-head)
7433 (x-font-regexp-slant, x-font-regexp-weight, face-x-resources)
7434 (face-font-registry-alternatives, face-font-registry-alternatives)
7435 (face-font-family-alternatives):
7436 * facemenu.el (facemenu-add-new-face, facemenu-background-menu)
7437 (facemenu-foreground-menu, facemenu-face-menu):
7438 * epa-hook.el (epa-file-name-regexp):
7439 * dnd.el (dnd-protocol-alist):
7440 * textmodes/rst.el (auto-mode-alist):
7441 * button.el (default-button): Purecopy strings.
7442
7443 2009-11-06 Glenn Morris <rgm@gnu.org>
7444
7445 * Makefile.in (ELCFILES): Update.
7446
7447 2009-11-05 Stefan Monnier <monnier@iro.umontreal.ca>
7448
7449 * emacs-lisp/lucid.el: Move to obsolete/lucid.el.
7450 * emacs-lisp/levents.el: Move to obsolete/levents.el.
7451
7452 * nxml/xsd-regexp.el (xsdre-gen-categories):
7453 * nxml/xmltok.el (xmltok-parse-entity):
7454 * nxml/rng-parse.el (rng-parse-validate-file):
7455 * nxml/rng-maint.el (rng-format-manual)
7456 (rng-manual-output-force-new-line):
7457 * nxml/rng-loc.el (rng-save-schema-location-1):
7458 * nxml/rng-cmpct.el (rng-c-parse-file):
7459 * nxml/nxml-maint.el (nxml-insert-target-repertoire-glyph-set):
7460 * nxml/nxml-parse.el (nxml-parse-file): Use with-current-buffer.
7461
7462 2009-11-05 Wilson Snyder <wsnyder@wsnyder.org>
7463
7464 * progmodes/verilog-mode.el (verilog-getopt-file, verilog-set-define):
7465 Remove extra save-excursions and make-variable-buffer-local's.
7466 Suggested by Stefan Monnier.
7467
7468 (verilog-getopt-file, verilog-module-inside-filename-p)
7469 (verilog-set-define): Merge GNU 1.35 and repair changes from
7470 switching to using with-current-buffer.
7471
7472 (verilog-read-always-signals-recurse): Fix "a == 2'b00 ? b : c"
7473 being treated as a number and confusing AUTORESET.
7474 Reported by Dan Dever.
7475
7476 (verilog-auto-ignore-concat, verilog-read-sub-decls-expr):
7477 Add verilog-auto-ignore-concat to fix backward compatibility with
7478 older verilog-modes. Reported by Dan Katz.
7479
7480 (verilog-read-auto-template): Fix AUTO_TEMPLATEs with regexps
7481 containing closing anchors "...$".
7482
7483 (verilog-read-decls): Fix AUTOREG not detecting "assign {a,b}".
7484 Reported by Wade Smith.
7485
7486 (verilog-batch-execute-func): Comment on function usage.
7487
7488 2009-11-05 Michael McNamara <mac@mail.brushroad.com>
7489
7490 * progmodes/verilog-mode.el (verilog-label-re): Fix regular expression
7491 for labels.
7492
7493 (verilog-label-re, verilog-calc-1): Support proper indent of named
7494 asserts.
7495
7496 (verilog-backward-token, verilog-basic-complete-re)
7497 (verilog-beg-of-statement, verilog-indent-re): Support proper
7498 indent of the assert statement at the beginning of a block of text.
7499
7500 (verilog-beg-block-re, verilog-ovm-begin-re): Support the
7501 `ovm_object_param_utils_begin and `ovm_component_param_utils_begin
7502 tokens as begins.
7503
7504 2009-11-05 Glenn Morris <rgm@gnu.org>
7505
7506 * emacs-lisp/bytecomp.el (byte-compile-insert-header): Drop test for
7507 Emacs 19. (Bug#1531)
7508 (byte-compile-fix-header): Update for the above change.
7509 Drop test for epoch::version.
7510
7511 * emacs-lisp/autoload.el (autoload-rubric): Add optional feature arg.
7512 * cus-dep.el (custom-make-dependencies):
7513 * finder.el (finder-compile-keywords):
7514 Use autoload-rubric's feature argument.
7515
7516 * calendar/diary-lib.el (top-level): Make load behave more like require.
7517
7518 * vc-git.el (vc-git-stash-map): Move definition before use.
7519
7520 2009-11-04 Dan Nicolaescu <dann@ics.uci.edu>
7521
7522 * custom.el (custom-declare-group): Purecopy standard-value.
7523 (custom-declare-group): Purecopy custom-prefix.
7524
7525 * international/mule.el (load-with-code-conversion):
7526 Call do-after-load-evaluation unconditionally.
7527
7528 * emacs-lisp/bytecomp.el (byte-compile-output-file-form): Handle defvaralias.
7529
7530 2009-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
7531
7532 * descr-text.el: Require help-mode rather than help-fns (bug#4861).
7533
7534 2009-11-04 Glenn Morris <rgm@gnu.org>
7535
7536 * emacs-lisp/bytecomp.el (byte-compile-version-cond): Remove macro.
7537 (byte-compile-compatibility): Remove option.
7538 (byte-compile-close-variables, byte-compile-fix-header)
7539 (byte-compile-insert-header, byte-compile-output-docform)
7540 (byte-compile-file-form-defmumble, byte-compile-byte-code-maker)
7541 (byte-compile-lambda, byte-compile-form, byte-defop-compiler19)
7542 (byte-compile-list, byte-compile-concat, byte-compile-function-form)
7543 (byte-compile-insert, byte-compile-defun):
7544 Remove support for byte-compile-compatibility and Emacs 18. (Bug#4571)
7545 (byte-defop-compiler19): Remove.
7546 Without byte-compile-compatibility, the 'emacs19-opcode property is not
7547 used by anything. Replace all calls with byte-defop-compiler.
7548
7549 2009-11-04 Juri Linkov <juri@jurta.org>
7550
7551 * menu-bar.el (menu-bar-make-mm-toggle): Quote each element of `props'.
7552 (menu-bar-options-menu): Don't quote the `prop' arg of
7553 `menu-bar-make-mm-toggle'.
7554
7555 2009-11-04 Juanma Barranquero <lekktu@gmail.com>
7556
7557 * calendar/calendar.el (cal-loaddefs):
7558 * calendar/diary-lib.el (diary-loaddefs):
7559 * calendar/holidays.el (hol-loaddefs):
7560 * eshell/esh-module.el (esh-groups): Load rather than require.
7561
7562 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
7563
7564 * calendar/todo-mode.el (todo-add-category): Don't hardcode
7565 point-min==1.
7566 (todo-top-priorities): Only display-buffer when called interactively.
7567 (todo-item-start): Don't save excursion point.
7568 (todo-item-end): Be slightly more careful. Add `include-sep' arg.
7569 (todo-insert-item-here, todo-file-item, todo-remove-item):
7570 Adjust uses of todo-item-start and todo-item-end.
7571
7572 * emacs-lisp/autoload.el (generated-autoload-feature): Remove.
7573 (autoload-rubric): Don't use any more.
7574 * cedet/semantic/fw.el (semantic/loaddefs):
7575 * cedet/srecode.el (srecode/loaddefs):
7576 * cedet/ede.el (ede/loaddefs): Load rather than require.
7577 * cedet/ede/cpp-root.el:
7578 * cedet/ede/emacs.el:
7579 * cedet/ede/files.el:
7580 * cedet/ede/linux.el:
7581 * cedet/ede/locate.el:
7582 * cedet/ede/make.el:
7583 * cedet/ede/shell.el:
7584 * cedet/ede/speedbar.el:
7585 * cedet/ede/system.el:
7586 * cedet/ede/util.el:
7587 * cedet/semantic/analyze.el:
7588 * cedet/semantic/bovine.el:
7589 * cedet/semantic/complete.el:
7590 * cedet/semantic/ctxt.el:
7591 * cedet/semantic/db-file.el:
7592 * cedet/semantic/db-find.el:
7593 * cedet/semantic/db-global.el:
7594 * cedet/semantic/db-mode.el:
7595 * cedet/semantic/db-typecache.el:
7596 * cedet/semantic/db.el:
7597 * cedet/semantic/debug.el:
7598 * cedet/semantic/dep.el:
7599 * cedet/semantic/doc.el:
7600 * cedet/semantic/edit.el:
7601 * cedet/semantic/find.el:
7602 * cedet/semantic/format.el:
7603 * cedet/semantic/html.el:
7604 * cedet/semantic/ia-sb.el:
7605 * cedet/semantic/ia.el:
7606 * cedet/semantic/idle.el:
7607 * cedet/semantic/lex-spp.el:
7608 * cedet/semantic/lex.el:
7609 * cedet/semantic/mru-bookmark.el:
7610 * cedet/semantic/scope.el:
7611 * cedet/semantic/senator.el:
7612 * cedet/semantic/sort.el:
7613 * cedet/semantic/symref.el:
7614 * cedet/semantic/tag-file.el:
7615 * cedet/semantic/tag-ls.el:
7616 * cedet/semantic/tag-write.el:
7617 * cedet/semantic/tag.el:
7618 * cedet/semantic/util-modes.el:
7619 * cedet/semantic/analyze/complete.el:
7620 * cedet/semantic/analyze/refs.el:
7621 * cedet/semantic/bovine/c.el:
7622 * cedet/semantic/bovine/gcc.el:
7623 * cedet/semantic/bovine/make.el:
7624 * cedet/semantic/bovine/scm.el:
7625 * cedet/semantic/decorate/include.el:
7626 * cedet/semantic/decorate/mode.el:
7627 * cedet/semantic/symref/cscope.el:
7628 * cedet/semantic/symref/global.el:
7629 * cedet/semantic/symref/grep.el:
7630 * cedet/semantic/symref/idutils.el:
7631 * cedet/semantic/symref/list.el:
7632 * cedet/semantic/wisent/java-tags.el:
7633 * cedet/semantic/wisent/javascript.el:
7634 * cedet/srecode/compile.el:
7635 * cedet/srecode/cpp.el:
7636 * cedet/srecode/document.el:
7637 * cedet/srecode/el.el:
7638 * cedet/srecode/expandproto.el:
7639 * cedet/srecode/getset.el:
7640 * cedet/srecode/insert.el:
7641 * cedet/srecode/java.el:
7642 * cedet/srecode/map.el:
7643 * cedet/srecode/mode.el:
7644 * cedet/srecode/template.el:
7645 * cedet/srecode/texi.el: Remove the file-local setting of
7646 generated-autoload-feature.
7647
7648 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Use dolist,
7649 and only put a prop if it is non-nil.
7650
7651 2009-11-03 Juri Linkov <juri@jurta.org>
7652
7653 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle)
7654 (menu-bar-options-menu): Fix list quoting (Bug#4429).
7655
7656 * buff-menu.el (Buffer-menu-mode-map): Add hyphen between "Buffer"
7657 and "Menu" to make top-level menu item visually one unit (like
7658 it's done for "Lisp-Interaction", "Emacs-Lisp" and other
7659 multi-word menu items). Fix :help string for quit-window.
7660
7661 2009-11-03 Glenn Morris <rgm@gnu.org>
7662
7663 * cedet/mode-local.el (with-mode-local): Doc fix.
7664
7665 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar)
7666 (byte-compile-file-form-define-abbrev-table)
7667 (byte-compile-file-form-custom-declare-variable)
7668 (byte-compile-variable-ref, byte-compile-defvar):
7669 Whether or not a warning is enabled should only affect whether we issue
7670 the warning, not whether or not we collect the relevant data.
7671 Eg warnings can be turned on and off throughout the course of a file.
7672
7673 * eshell/esh-mode.el (ansi-color-apply-on-region): Autoload it...
7674 (eshell-handle-ansi-color): ... Rather than requiring ansi-color.
7675
7676 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
7677
7678 * term/ns-win.el (ns-scroll-bar-move, ns-face-at-pos):
7679 * play/mpuz.el (mpuz-create-buffer):
7680 * play/landmark.el (lm-prompt-for-move, lm-print-wts, lm-print-smell)
7681 (lm-print-y,s,noise, lm-print-w0, lm-init):
7682 * play/gomoku.el (gomoku-prompt-for-move):
7683 * play/fortune.el (fortune-in-buffer):
7684 * play/dissociate.el (dissociated-press):
7685 * play/decipher.el (decipher-adjacency-list, decipher-display-regexp)
7686 (decipher-analyze-buffer, decipher-stats-buffer, decipher-stats-buffer):
7687 * mail/supercite.el (sc-eref-show):
7688 * mail/smtpmail.el (smtpmail-send-it):
7689 * mail/rmailsum.el (rmail-summary-next-labeled-message)
7690 (rmail-summary-previous-labeled-message, rmail-summary-wipe)
7691 (rmail-summary-undelete-many, rmail-summary-rmail-update)
7692 (rmail-summary-goto-msg, rmail-summary-expunge)
7693 (rmail-summary-get-new-mail, rmail-summary-search-backward)
7694 (rmail-summary-add-label, rmail-summary-output-menu)
7695 (rmail-summary-output-body):
7696 * mail/rfc822.el (rfc822-addresses):
7697 * mail/reporter.el (reporter-dump-variable, reporter-dump-state):
7698 * mail/mailpost.el (post-mail-send-it):
7699 * mail/hashcash.el (hashcash-generate-payment):
7700 * mail/feedmail.el (feedmail-run-the-queue)
7701 (feedmail-queue-send-edit-prompt-help-first)
7702 (feedmail-send-it-immediately, feedmail-give-it-to-buffer-eater)
7703 (feedmail-deduce-address-list):
7704 * eshell/esh-ext.el (eshell-remote-command):
7705 * eshell/em-unix.el (eshell-occur-mode-mouse-goto):
7706 * emulation/viper-util.el (viper-glob-unix-files, viper-save-setting)
7707 (viper-wildcard-to-regexp, viper-glob-mswindows-files)
7708 (viper-save-string-in-file, viper-valid-marker):
7709 * emulation/viper-keym.el (viper-toggle-key):
7710 * emulation/viper-ex.el (ex-expand-filsyms, viper-get-ex-file)
7711 (ex-edit, ex-global, ex-mark, ex-next-related-buffer, ex-quit)
7712 (ex-get-inline-cmd-args, ex-tag, ex-command, ex-compile):
7713 * emulation/viper-cmd.el (viper-exec-form-in-vi)
7714 (viper-exec-form-in-emacs, viper-brac-function):
7715 * emulation/viper.el (viper-delocalize-var):
7716 * emulation/vip.el (vip-mode, vip-get-ex-token, vip-ex, vip-get-ex-pat)
7717 (vip-get-ex-command, vip-get-ex-opt-gc, vip-get-ex-buffer)
7718 (vip-get-ex-count, vip-get-ex-file, ex-edit, ex-global, ex-mark)
7719 (ex-map, ex-unmap, ex-quit, ex-read, ex-tag, ex-command):
7720 * emulation/vi.el (vi-switch-mode, vi-ex-cmd):
7721 * emulation/edt.el (edt-electric-helpify):
7722 * emulation/cua-rect.el (cua--rectangle-aux-replace):
7723 * emulation/cua-gmrk.el (cua--insert-at-global-mark)
7724 (cua--delete-at-global-mark, cua--copy-rectangle-to-global-mark)
7725 (cua-indent-to-global-mark-column):
7726 * calendar/diary-lib.el (calendar-mark-1):
7727 * calendar/cal-hebrew.el (calendar-hebrew-mark-date-pattern):
7728 Use with-current-buffer.
7729 * emulation/viper.el (viper-delocalize-var): Use dolist.
7730
7731 2009-11-03 Chong Yidong <cyd@stupidchicken.com>
7732
7733 * comint.el (comint-replace-by-expanded-history-before-point):
7734 Replace !! with the previous input string literally (Bug#1795).
7735
7736 2009-11-02 Jay Belanger <jay.p.belanger@gmail.com>
7737
7738 * calc/calc-forms.el (calc-date-notation): Allow a "blank string"
7739 to be made up of whitespace.
7740
7741 2009-11-02 Chong Yidong <cyd@stupidchicken.com>
7742
7743 * minibuffer.el (read-file-name): Don't use file dialogs for
7744 remote directories (Bug#99).
7745
7746 2009-11-01 Chong Yidong <cyd@stupidchicken.com>
7747
7748 * progmodes/sh-script.el (sh-font-lock-paren): Fix last change.
7749
7750 2009-11-01 Andreas Schwab <schwab@linux-m68k.org>
7751
7752 * view.el (view-mode-exit): If OLD-BUF is dead bury the buffer
7753 instead of deleting the window or frame.
7754
7755 2009-10-31 Chong Yidong <cyd@stupidchicken.com>
7756
7757 * textmodes/sgml-mode.el (sgml-mode-facemenu-add-face-function):
7758 Support face colors.
7759
7760 * textmodes/tex-mode.el (tex-facemenu-add-face-function):
7761 New function. Support face colors (Bug#1168).
7762 (tex-common-initialization): Use it.
7763
7764 * facemenu.el (facemenu-enable-faces-p): Enable facemenu if the
7765 mode allows it (Bug#1168).
7766
7767 2009-10-31 Juri Linkov <juri@jurta.org>
7768
7769 * facemenu.el (list-colors-display): Don't mark buffer as
7770 modified (Bug#3948).
7771
7772 2009-10-31 Chong Yidong <cyd@stupidchicken.com>
7773
7774 * international/mule-diag.el (list-character-sets-1): Minor
7775 message fix (Bug#3526).
7776
7777 * progmodes/etags.el (etags-list-tags, etags-tags-apropos): Fix
7778 face property (Bug#4834).
7779 (etags-list-tags, etags-tags-apropos-additional)
7780 (etags-tags-apropos, tags-select-tags-table): Add follow-link
7781 property.
7782
7783 * menu-bar.el (menu-bar-tools-menu): Add Semantic and EDE menu
7784 items.
7785
7786 * cedet/cedet.el (cedet-menu-map): Remove Semantic and EDE menu
7787 items.
7788
7789 * cedet/ede.el (ede-minor-mode):
7790 * cedet/semantic.el (semantic-mode): Toggle menu separators.
7791
7792 2009-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
7793
7794 * textmodes/two-column.el (2C-split):
7795 * textmodes/texnfo-upd.el (texinfo-multi-file-included-list):
7796 * textmodes/tex-mode.el (tex-set-buffer-directory):
7797 * textmodes/spell.el (spell-region, spell-string):
7798 * textmodes/reftex.el (reftex-erase-buffer):
7799 (reftex-get-file-buffer-force, reftex-kill-temporary-buffers):
7800 * textmodes/reftex-toc.el (reftex-toc-promote-action):
7801 * textmodes/reftex-sel.el (reftex-get-offset, reftex-insert-docstruct)
7802 (reftex-select-item):
7803 * textmodes/reftex-ref.el (reftex-label-info-update)
7804 (reftex-offer-label-menu):
7805 * textmodes/reftex-index.el (reftex-index-change-entry)
7806 (reftex-index-phrases-info):
7807 * textmodes/reftex-global.el (reftex-create-tags-file)
7808 (reftex-save-all-document-buffers, reftex-ensure-write-access):
7809 * textmodes/reftex-dcr.el (reftex-echo-ref, reftex-echo-cite)
7810 (reftex-view-crossref-from-bibtex):
7811 * textmodes/reftex-cite.el (reftex-bibtex-selection-callback)
7812 (reftex-extract-bib-entries-from-thebibliography)
7813 (reftex-all-used-citation-keys, reftex-create-bibtex-file):
7814 * textmodes/refbib.el (r2b-capitalize-title):
7815 (r2b-convert-buffer, r2b-help):
7816 * textmodes/page-ext.el (pages-directory)
7817 (pages-directory-goto-with-mouse):
7818 * textmodes/bibtex.el (bibtex-validate-globally):
7819 * textmodes/bib-mode.el (bib-capitalize-title):
7820 * textmodes/artist.el (artist-clear-buffer, artist-system):
7821 * progmodes/xscheme.el (global-set-scheme-interaction-buffer):
7822 (local-set-scheme-interaction-buffer, xscheme-process-filter)
7823 (verify-xscheme-buffer, xscheme-enter-interaction-mode)
7824 (xscheme-enter-debugger-mode, xscheme-debugger-mode-p)
7825 (xscheme-send-control-g-interrupt, xscheme-start-process)
7826 (xscheme-process-sentinel, xscheme-cd):
7827 * progmodes/verilog-mode.el (verilog-read-always-signals)
7828 (verilog-set-define, verilog-getopt-file)
7829 (verilog-module-inside-filename-p):
7830 * progmodes/sh-script.el:
7831 * progmodes/python.el (python-pdbtrack-get-source-buffer)
7832 (python-pdbtrack-grub-for-buffer, python-execute-file):
7833 * progmodes/octave-inf.el (inferior-octave):
7834 * progmodes/idlwave.el (idlwave-scan-user-lib-files)
7835 (idlwave-shell-compile-helper-routines, idlwave-set-local)
7836 (idlwave-display-completion-list-xemacs, idlwave-list-abbrevs)
7837 (idlwave-display-completion-list-emacs, idlwave-list-load-path-shadows)
7838 (idlwave-completion-fontify-classes, idlwave-display-calling-sequence):
7839 * progmodes/idlw-shell.el (idlwave-shell-examine-display-clear)
7840 (idlwave-shell-filter, idlwave-shell-examine-highlight)
7841 (idlwave-shell-sentinel, idlwave-shell-filter-directory)
7842 (idlwave-shell-display-line, idlwave-shell-set-bp-in-module)
7843 (idlwave-shell-examine-display, idlwave-shell-run-region)
7844 (idlwave-shell-filter-bp, idlwave-shell-save-and-action)
7845 (idlwave-shell-sources-filter, idlwave-shell-goto-next-error):
7846 * progmodes/idlw-help.el (idlwave-help-get-special-help)
7847 (idlwave-help-get-help-buffer):
7848 * progmodes/gud.el (gud-basic-call, gud-find-class)
7849 (gud-tooltip-activate-mouse-motions-if-enabled):
7850 * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
7851 * progmodes/ebrowse.el (ebrowse-member-table, ebrowse-save-tree-as)
7852 (ebrowse-view-exit-fn, ebrowse-tags-list-members-in-file)
7853 (ebrowse-tags-next-file):
7854 * progmodes/ebnf2ps.el (ebnf-generate-eps, ebnf-generate-eps)
7855 (ebnf-eps-production-list, ebnf-begin-file, ebnf-log)
7856 (ebnf-eps-finish-and-write):
7857 * progmodes/cpp.el (cpp-edit-save):
7858 * progmodes/cperl-mode.el (cperl-pod-to-manpage):
7859 * progmodes/cc-defs.el (c-emacs-features):
7860 * progmodes/antlr-mode.el (antlr-invalidate-context-cache)
7861 (antlr-directory-dependencies):
7862 * progmodes/ada-xref.el (ada-gnat-parse-gpr, ada-get-ali-file-name)
7863 (ada-run-application, ada-find-in-src-path, ada-goto-parent)
7864 (ada-find-any-references, ada-make-filename-from-adaname)
7865 (ada-make-body-gnatstub):
7866 * obsolete/rnews.el (news-list-news-groups):
7867 * obsolete/resume.el (resume-suspend-hook, resume-write-buffer-to-file):
7868 * obsolete/iso-acc.el (iso-acc-minibuf-setup):
7869 * net/rcirc.el (rcirc-debug):
7870 * net/newst-treeview.el (newsticker--treeview-list-add-item)
7871 (newsticker--treeview-list-clear, newsticker-treeview-browse-url)
7872 (newsticker--treeview-list-update-faces, newsticker-treeview-save)
7873 (newsticker--treeview-item-show-text, newsticker--treeview-item-show)
7874 (newsticker--treeview-tree-update-tag, newsticker--treeview-buffer-init)
7875 (newsticker-treeview-show-item, newsticker--treeview-unfold-node)
7876 (newsticker--treeview-list-clear-highlight)
7877 (newsticker--treeview-list-update-highlight)
7878 (newsticker--treeview-list-highlight-start)
7879 (newsticker--treeview-tree-update-highlight)
7880 (newsticker--treeview-get-selected-item)
7881 (newsticker-treeview-mark-list-items-old)
7882 (newsticker--treeview-set-current-node):
7883 * net/newst-plainview.el (newsticker--buffer-set-uptodate):
7884 * net/newst-backend.el (newsticker--get-news-by-funcall)
7885 (newsticker--get-news-by-wget, newsticker--image-get)
7886 (newsticker--image-sentinel):
7887 * net/mairix.el (mairix-rmail-fetch-field, mairix-gnus-fetch-field):
7888 * net/eudcb-ph.el (eudc-ph-do-request, eudc-ph-open-session):
7889 (eudc-ph-close-session):
7890 * net/eudc.el (eudc-save-options):
7891 * language/thai-word.el (thai-update-word-table):
7892 * language/japan-util.el (japanese-string-conversion):
7893 * international/titdic-cnv.el (tsang-quick-converter)
7894 (ziranma-converter, ctlau-converter):
7895 * international/mule-cmds.el (describe-language-environment):
7896 * international/ja-dic-cnv.el (skkdic-convert-okuri-ari)
7897 (skkdic-convert-postfix, skkdic-convert-prefix):
7898 (skkdic-convert-okuri-nasi, skkdic-convert):
7899 * emacs-lisp/re-builder.el (reb-update-overlays):
7900 * emacs-lisp/pp.el (pp-to-string, pp-display-expression):
7901 * emacs-lisp/gulp.el (gulp-send-requests):
7902 * emacs-lisp/find-gc.el (trace-call-tree):
7903 * emacs-lisp/eieio-opt.el (eieio-browse, eieio-describe-class)
7904 (eieio-describe-generic):
7905 * emacs-lisp/eieio-base.el (eieio-persistent-read):
7906 * emacs-lisp/edebug.el (edebug-outside-excursion):
7907 * emacs-lisp/debug.el (debugger-make-xrefs):
7908 * emacs-lisp/cust-print.el (custom-prin1-to-string):
7909 * emacs-lisp/chart.el (chart-new-buffer):
7910 * emacs-lisp/authors.el (authors-scan-el, authors-scan-change-log):
7911 Use with-current-buffer.
7912 * textmodes/artist.el (artist-system): Don't call
7913 copy-sequence on a fresh string.
7914 * progmodes/idlw-shell.el (easymenu setup): Use dolist.
7915
7916 2009-10-31 Stephen Berman <stephen.berman@gmx.net>
7917
7918 * calendar/todo-mode.el (todo-edit-item): Signal an error if there
7919 is no item to edit. (Bug#4820)
7920 (todo-top-priorities): Restore point and restore narrowing in Todo
7921 buffer. (Bug#4820)
7922
7923 2009-10-31 Glenn Morris <rgm@gnu.org>
7924
7925 * net/ange-ftp.el (top-level): Don't require dired when compiling.
7926 (comint-last-output-start, comint-last-input-start)
7927 (comint-last-input-end): Don't defvar when compiling.
7928 (ange-ftp-process-file): Use bound-and-true-p.
7929
7930 * pcmpl-rpm.el (top-level): Move provide statement to end.
7931 (pcmpl-rpm): Remove unused custom group.
7932
7933 * pcmpl-gnu.el (tar-parse-info, tar-header-name): Declare for compiler.
7934
7935 * mail/emacsbug.el (report-emacs-bug): Request `emacs -Q' recipes.
7936
7937 * emacs-lisp/bytecomp.el (byte-compile-warning-types)
7938 (byte-compile-warnings): Add `constants' as an option.
7939 (byte-compile-callargs-warn, byte-compile-arglist-warn)
7940 (display-call-tree): Update for byte-compile-fdefinition possibly
7941 returning `(macro lambda ...)'. (Bug#4778)
7942 (byte-compile-variable-ref, byte-compile-setq-default):
7943 Respect `constants' member of byte-compile-warnings.
7944
7945 * cedet/semantic/tag.el (semantic--tag-link-list-to-buffer):
7946 Use mapc rather than mapcar because the return value is never used.
7947
7948 * cedet/srecode/template.el, cedet/semantic/wisent/javascript.el:
7949 * cedet/semantic/wisent/java-tags.el, cedet/semantic/texi.el:
7950 * cedet/semantic/html.el:
7951 Suppress harmless warnings about setting up semantic-imenu (not
7952 part of Emacs) variables.
7953
7954 2009-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
7955
7956 * vc-bzr.el (vc-bzr-revision-keywords): New var.
7957 (vc-bzr-revision-completion-table): Use it to fix completion of "s:"
7958 to "submit:".
7959
7960 * cedet/srecode/srt-mode.el (semantic-analyze-possible-completions):
7961 * cedet/semantic/symref/list.el (semantic-symref-rb-toggle-expand-tag):
7962 * cedet/semantic/symref/grep.el (semantic-symref-perform-search):
7963 * cedet/semantic/bovine/gcc.el (semantic-gcc-query):
7964 * cedet/semantic/bovine/c.el (semantic-c-parse-lexical-token):
7965 * cedet/semantic/analyze/debug.el (semantic-analyzer-debug-add-buttons)
7966 (semantic-analyzer-debug-global-symbol)
7967 (semantic-analyzer-debug-missing-innertype)
7968 (semantic-analyzer-debug-insert-include-summary):
7969 * cedet/semantic/util.el (semantic-file-tag-table):
7970 (semantic-describe-buffer-var-helper, semantic-something-to-tag-table)
7971 (semantic-recursive-find-nonterminal-by-name):
7972 * cedet/semantic/tag-ls.el (semantic-tag-calculate-parent-default):
7973 * cedet/semantic/tag-file.el (semantic-prototype-file):
7974 * cedet/semantic/symref.el (semantic-symref-parse-tool-output):
7975 * cedet/semantic/sb.el (semantic-sb-fetch-tag-table):
7976 * cedet/semantic/lex-spp.el (semantic-lex-spp-lex-text-string):
7977 * cedet/semantic/idle.el (semantic-idle-work-for-one-buffer):
7978 (semantic-idle-summary-maybe-highlight):
7979 * cedet/semantic/ia-sb.el (semantic-ia-speedbar)
7980 (semantic-ia-sb-tag-info):
7981 * cedet/semantic/grammar.el (semantic-analyze-possible-completions):
7982 * cedet/semantic/find.el (semantic-brute-find-tag-by-position):
7983 * cedet/semantic/ede-grammar.el (project-compile-target):
7984 (ede-proj-makefile-insert-variables):
7985 * cedet/semantic/debug.el (semantic-debug-set-parser-location):
7986 (semantic-debug-set-source-location, semantic-debug-interface-layout)
7987 (semantic-debug-mode, semantic-debug):
7988 * cedet/semantic/db.el (semanticdb-needs-refresh-p):
7989 * cedet/semantic/db-typecache.el (semanticdb-typecache-refresh-for-buffer):
7990 * cedet/semantic/db-javascript.el (semanticdb-equivalent-mode):
7991 * cedet/semantic/db-find.el (semanticdb-find-log-new-search)
7992 (semanticdb-find-translate-path-includes--internal)
7993 (semanticdb-reset-log, semanticdb-find-log-activity):
7994 * cedet/semantic/db-file.el (object-write):
7995 * cedet/semantic/db-el.el (semanticdb-equivalent-mode):
7996 * cedet/semantic/db-ebrowse.el (semanticdb-ebrowse-C-file-p)
7997 (semanticdb-create-ebrowse-database):
7998 * cedet/semantic/db-debug.el (semanticdb-table-sanity-check):
7999 * cedet/semantic/complete.el (semantic-displayor-focus-request)
8000 (semantic-collector-calculate-completions-raw)
8001 (semantic-complete-read-tag-analyzer):
8002 * cedet/semantic/analyze.el (semantic-analyze-pulse):
8003 * cedet/ede/util.el (ede-update-version-in-source):
8004 * cedet/ede/proj.el (project-delete-target):
8005 * cedet/ede/proj-elisp.el (ede-update-version-in-source)
8006 (ede-proj-flush-autoconf):
8007 * cedet/ede/pconf.el (ede-proj-configure-synchronize)
8008 (ede-proj-configure-synchronize):
8009 * cedet/ede/locate.el (ede-locate-file-in-project-impl):
8010 * cedet/ede/linux.el (ede-linux-version):
8011 * cedet/ede/emacs.el (ede-emacs-version):
8012 * cedet/ede/dired.el (ede-dired-add-to-target):
8013 * cedet/ede.el (ede-buffer-header-file, ede-find-target)
8014 (ede-buffer-documentation-files, ede-project-buffers, ede-set)
8015 (ede-target-buffers, ede-buffers, ede-make-project-local-variable):
8016 * cedet/cedet-idutils.el (cedet-idutils-fnid-call):
8017 (cedet-idutils-lid-call, cedet-idutils-expand-filename)
8018 (cedet-idutils-version-check):
8019 * cedet/cedet-global.el (cedet-gnu-global-call):
8020 (cedet-gnu-global-expand-filename, cedet-gnu-global-root)
8021 (cedet-gnu-global-version-check, cedet-gnu-global-scan-hits):
8022 * cedet/cedet-cscope.el (cedet-cscope-call)
8023 (cedet-cscope-expand-filename, cedet-cscope-version-check):
8024 Use with-current-buffer.
8025 * cedet/ede.el (ede-make-project-local-variable)
8026 (ede-set-project-variables, ede-set): Use dolist.
8027
8028 2009-10-30 Dan Nicolaescu <dann@ics.uci.edu>
8029
8030 * textmodes/ispell.el (ispell-skip-region-alist):
8031 * international/mule-conf.el (eight-bit):
8032 * international/fontset.el (font-encoding-alist):
8033 * startup.el (pure-space-overflow-message):
8034 * simple.el (overwrite-mode-textual, overwrite-mode-binary):
8035 * paths.el (gnus-nntp-service, rmail-spool-directory)
8036 (term-file-prefix):
8037 * files.el (save-some-buffers-action-alist):
8038 * cmuscheme.el (same-window-buffer-names):
8039 * ielm.el (same-window-buffer-names):
8040 * shell.el (same-window-buffer-names):
8041 * mail/sendmail.el (same-window-buffer-names):
8042 * progmodes/inf-lisp.el (same-window-buffer-names):
8043 * bindings.el (mode-line-client)
8044 (mode-line-column-line-number-mode-map):
8045 * language/tibetan.el (tibetan-precomposition-rule-regexp)
8046 (tibetan-precomposed-regexp): Purecopy string arguments.
8047
8048 2009-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
8049
8050 * calc/calc.el (calc, calc-refresh, calc-trail-buffer, calc-record)
8051 (calcDigit-nondigit):
8052 * calc/calc-yank.el (calc-copy-to-buffer):
8053 * calc/calc-units.el (calc-invalidate-units-table):
8054 * calc/calc-trail.el (calc-trail-yank):
8055 * calc/calc-store.el (calc-insert-variables):
8056 * calc/calc-rewr.el (math-rewrite, math-rewrite-phase):
8057 * calc/calc-prog.el (calc-read-parse-table):
8058 * calc/calc-keypd.el (calc-do-keypad, calc-keypad-right-click):
8059 * calc/calc-help.el (calc-describe-bindings, calc-describe-key):
8060 * calc/calc-graph.el (calc-graph-delete, calc-graph-add-curve)
8061 (calc-graph-juggle, calc-graph-count-curves, calc-graph-plot)
8062 (calc-graph-plot, calc-graph-format-data, calc-graph-set-styles)
8063 (calc-graph-name, calc-graph-find-command, calc-graph-view)
8064 (calc-graph-view, calc-gnuplot-command, calc-graph-init):
8065 * calc/calc-ext.el (calc-realign):
8066 * calc/calc-embed.el (calc-do-embedded, calc-do-embedded)
8067 (calc-embedded-finish-edit, calc-embedded-make-info)
8068 (calc-embedded-finish-command, calc-embedded-stack-change):
8069 * calc/calc-aent.el (calcAlg-enter): Use with-current-buffer.
8070
8071 * cedet/mode-local.el (make-obsolete-overload): Add `when' argument.
8072 (overload-docstring-extension): Use that info.
8073 * cedet/semantic/fw.el (semantic-alias-obsolete): Pass the `when' info.
8074 * cedet/semantic/idle.el (semantic-eldoc-current-symbol-info):
8075 * cedet/semantic/tag-ls.el (semantic-nonterminal-protection)
8076 (semantic-nonterminal-abstract, semantic-nonterminal-leaf)
8077 (semantic-nonterminal-full-name): Add the new `when' info.
8078 * cedet/semantic/decorate/mode.el (semantic/decorate): Require CL for
8079 `assert'.
8080
8081 * pcomplete.el (pcomplete-comint-setup): If there's a choice, replace
8082 shell-dynamic-complete-filename in preference to
8083 comint-dynamic-complete-filename.
8084
8085 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
8086 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
8087 Don't consider whether the display supports colors.
8088 (bookmark-import-new-list): Use dolist.
8089 (bookmark-bmenu-mode-map): Move initialization into declaration.
8090 (bookmark-bmenu-list): Use dolist, simplify.
8091 (bookmark-show-all-annotations): Use save-selected-window and dolist.
8092 (menu-bar-final-items): Use push.
8093
8094 2009-10-28 Bernhard Herzog <bernhard.herzog@intevation.de> (tiny change)
8095
8096 * vc-hg.el (vc-hg-state, vc-hg-working-revision): Use process-file so
8097 it works on remote files.
8098 (vc-hg-diff): Don't pass any `--cwd' argument.
8099
8100 2009-10-27 Kevin Ryde <user42@zip.com.au>
8101
8102 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
8103 Use help-xref-info-regexp and help-xref-url-regexp to identify links.
8104 (Further to Bug#3921).
8105
8106 2009-10-27 Michael Albinus <michael.albinus@gmx.de>
8107
8108 * net/tramp-imap.el (top): Add `X-Size' to `imap-hash-headers'.
8109 (tramp-imap-do-copy-or-rename-file): Don't use the inode, when
8110 calling `tramp-imap-put-file'. Add file size to the call.
8111 (tramp-imap-get-file-entries): Compute also user name, file size,
8112 and date.
8113 (tramp-imap-handle-insert-directory): Insert uid and gid.
8114 (tramp-imap-handle-file-attributes): Transform uid and gid
8115 according to `id-format'.
8116 (tramp-imap-put-file): New optional parameter SIZE. Encode file
8117 size in header X-Size.
8118
8119 2009-10-26 Juanma Barranquero <lekktu@gmail.com>
8120
8121 * simple.el (transpose-subr): Give clearer error when the mark
8122 is not set. (Bug#4807)
8123
8124 2009-10-26 Michael Albinus <michael.albinus@gmx.de>
8125
8126 * net/tramp.el (tramp-perl-file-truename): New defconst.
8127 Perl code contributed by yary <not.com@gmail.com> (tiny change).
8128 (tramp-handle-file-truename, tramp-get-remote-perl): Use it.
8129 Check also for "perl-file-spec" and "perl-cwd-realpath" properties.
8130 (tramp-handle-write-region): In case of APPEND, reuse the tmpfile name.
8131
8132 * net/tramp-imap.el (tramp-imap-file-name-handler-alist):
8133 Ignore `dired-call-process'.
8134 (tramp-imap-make-iht): Use `user' and `ssl' with `imap-hash-make'.
8135
8136 2009-10-26 Julian Scheid <julians37@gmail.com>
8137
8138 * net/tramp.el (tramp-perl-file-name-all-completions): New defconst.
8139 (tramp-get-remote-readlink): New defun.
8140 (tramp-handle-file-truename): Use it.
8141 (tramp-handle-file-exists-p): Check file-attributes cache, assume
8142 file exists if cache value present.
8143 (tramp-check-cached-permissions): New defun.
8144 (tramp-handle-file-readable-p): Use it.
8145 (tramp-handle-file-writable-p): Likewise.
8146 (tramp-handle-file-executable-p): Likewise.
8147 (tramp-handle-file-name-all-completions): Try using Perl to get
8148 partial completions. When perl not available, combine `cd' and
8149 `ls' into single remote operation and use shell expansion to get
8150 partial remote directory contents. Set `file-exists-p' cache for
8151 directory and any files returned by ls. Change cache handling to
8152 support partial directory contents. Use error message emitted by
8153 remote `cd' or Perl code for local tramp-error.
8154 (tramp-do-copy-or-rename-file-directly): Avoid separate
8155 tramp-send-command-and-check call.
8156 (tramp-handle-process-file): Merge three remote ops into one.
8157 Do not flush all caches when `process-file-side-effects' is set.
8158 (tramp-handle-write-region): Avoid tramp-set-file-uid-gid if
8159 file-attributes shows uid/gid to be set already.
8160
8161 2009-10-26 Dan Nicolaescu <dann@ics.uci.edu>
8162
8163 * textmodes/tex-mode.el (tex-dvi-view-command)
8164 (tex-show-queue-command, tex-open-quote):
8165 * progmodes/ruby-mode.el (auto-mode-alist)
8166 (interpreter-mode-alist): Purecopy strings.
8167
8168 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Purecopy item names.
8169
8170 * emacs-lisp/derived.el (define-derived-mode): Purecopy the doc
8171 string for the hook, keymap and abbrev table.
8172
8173 * emacs-lisp/byte-run.el (make-obsolete): Purecopy the current name.
8174
8175 * x-dnd.el (x-dnd-xdnd-to-action):
8176 * startup.el (fancy-startup-text, fancy-about-text): Change to
8177 defconst from defvar.
8178
8179 * ps-print.el (ps-page-dimensions-database): Purecopy initial value.
8180
8181 * mouse.el (mouse-buffer-menu-mode-groups, x-fixed-font-alist):
8182 Purecopy initialization strings.
8183
8184 * mail/sendmail.el (mail-header-separator)
8185 (mail-personal-alias-file):
8186 * mail/rmail.el (rmail-default-dont-reply-to-names)
8187 (rmail-ignored-headers, rmail-retry-ignored-headers)
8188 (rmail-highlighted-headers, rmail-secondary-file-directory)
8189 (rmail-secondary-file-regexp):
8190 * files.el (null-device, file-name-invalid-regexp)
8191 (locate-dominating-stop-dir-regexp)
8192 (inhibit-first-line-modes-regexps): Purecopy initialization strings.
8193 (interpreter-mode-alist): Use mapcar instead of mapc.
8194
8195 * buff-menu.el (Buffer-menu-mode-map): Purecopy name.
8196
8197 * bindings.el (mode-line-major-mode-keymap): Purecopy name.
8198 (completion-ignored-extensions):
8199 (debug-ignored-errors): Purecopy strings.
8200
8201 2009-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
8202
8203 * pcomplete.el (pcomplete-std-complete): Obey pcomplete-use-paring.
8204 (pcomplete, pcomplete-parse-buffer-arguments, pcomplete-opt)
8205 (pcomplete--here): Use push.
8206
8207 * subr.el (all-completions): Declare the 4th arg obsolete.
8208
8209 2009-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
8210
8211 * pcomplete.el (pcomplete-unquote-argument-function): New var.
8212 (pcomplete-unquote-argument): New function.
8213 (pcomplete--common-suffix): Always pay attention to case.
8214 (pcomplete--table-subvert): Quote and unquote the text.
8215 (pcomplete--common-quoted-suffix): New function.
8216 (pcomplete-std-complete): Use it and pcomplete-begin.
8217
8218 * bookmark.el (bookmark-bmenu-list): Don't use switch-to-buffer if
8219 we're inside a dedicated or minibuffer window.
8220
8221 2009-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
8222
8223 * cedet/semantic/fw.el (semantic-alias-obsolete)
8224 (semantic-varalias-obsolete): Make the `when' arg mandatory.
8225 (define-mode-overload-implementation):
8226 * cedet/semantic/decorate/mode.el (semantic-decorate-pending-decoration-hooks):
8227 * cedet/semantic/wisent.el (wisent-lex-make-token-table):
8228 * cedet/semantic/util.el (semantic-file-token-stream)
8229 (semantic-something-to-stream):
8230 * cedet/semantic/tag.el (semantic-tag-make-assoc-list)
8231 (semantic-expand-nonterminal):
8232 * cedet/semantic/tag-file.el (semantic-find-nonterminal)
8233 (semantic-find-dependency, semantic-find-nonterminal)
8234 (semantic-find-dependency):
8235 * cedet/semantic/lex.el (semantic-flex-start, semantic-flex-end)
8236 (semantic-flex-text, semantic-flex-make-keyword-table)
8237 (semantic-flex-keyword-p, semantic-flex-keyword-put)
8238 (semantic-flex-keyword-get, semantic-flex-map-keywords)
8239 (semantic-flex-keywords, semantic-flex-buffer, semantic-flex-list):
8240 * cedet/semantic/java.el (semantic-java-prototype-nonterminal):
8241 * cedet/semantic/idle.el (semantic-before-idle-scheduler-reparse-hooks)
8242 (semantic-after-idle-scheduler-reparse-hooks):
8243 * cedet/semantic/edit.el (semantic-edits-incremental-reparse-failed-hooks):
8244 * cedet/semantic/db-mode.el (semanticdb-mode-hooks):
8245 * cedet/semantic.el (semantic-toplevel-bovine-table)
8246 (semantic-toplevel-bovine-cache)
8247 (semantic-before-toplevel-bovination-hook, semantic-init-hooks)
8248 (semantic-init-mode-hooks, semantic-init-db-hooks)
8249 (semantic-bovination-working-type): Provide the `when' arg.
8250
8251 2009-10-24 Karl Fogel <kfogel@red-bean.com>
8252
8253 * bookmark.el: Update documentation, especially documentation
8254 of `bookmark-alist' and of the bookmark file format.
8255 Patch by Drew Adams, with minor tweaks from me. (Bug#4195)
8256
8257 2009-10-24 Chong Yidong <cyd@stupidchicken.com>
8258
8259 * mail/emacsbug.el (report-emacs-bug): Clarify that the
8260 keybindings apply to the mail buffer (Bug#4003). Shrink help
8261 window to buffer.
8262
8263 * whitespace.el (whitespace-mode, whitespace-newline-mode)
8264 (global-whitespace-mode, global-whitespace-newline-mode)
8265 (whitespace-toggle-options, global-whitespace-toggle-options):
8266 Doc fix (Bug#3660).
8267
8268 * nxml/nxml-mode.el (nxml-balanced-close-start-tag): Use the value
8269 of xmltok-start before the end tag was inserted (Bug#2840).
8270
8271 * progmodes/sh-script.el (sh-font-lock-paren): Handle case
8272 patterns that are preceded by an open-paren (Bug#1320).
8273
8274 2009-10-24 Sven Joachim <svenjoac@gmx.de>
8275
8276 * files.el (delete-directory): Delete symlinks to directories with
8277 delete-file (Bug#4739).
8278
8279 2009-10-24 Chong Yidong <cyd@stupidchicken.com>
8280
8281 * cedet/semantic/util.el (semantic-recursive-find-nonterminal-by-name):
8282 * cedet/semantic/tag.el (semantic-token-type-parent): Add WHEN
8283 argument to make-obsolete.
8284
8285 * cedet/semantic/fw.el (semantic-alias-obsolete)
8286 (semantic-varalias-obsolete): Add optional WHEN argument.
8287
8288 2009-10-24 Dan Nicolaescu <dann@ics.uci.edu>
8289
8290 * vc.el (vc-backend-for-registration): Rename from
8291 vc-get-backend-for-registration. Update callers.
8292
8293 * international/mule-cmds.el (set-language-info-alist):
8294 Purecopy lang-env.
8295 (leim-list-header, leim-list-entry-regexp): Change defvars to defconst.
8296 (charset): Purecopy the name.
8297 (define-char-code-property): Purecopy string arguments.
8298
8299 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
8300 Purecopy string arguments.
8301
8302 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
8303 * ediff-hook.el (menu-bar-ediff-menu):
8304 * buff-menu.el (Buffer-menu-mode-map): Purecopy names and tooltips.
8305 * bookmark.el (menu-bar-bookmark-map): Add :help and purecopy the name.
8306
8307 2009-10-24 Glenn Morris <rgm@gnu.org>
8308
8309 * comint.el (comint-dynamic-list-completions):
8310 * term.el (term-dynamic-list-completions): Use choose-completion rather
8311 than obsolete alias mouse-choose-completion.
8312
8313 * filecache.el (file-cache-completions-keymap): Bind mouse-2 to
8314 file-cache-choose-completion.
8315 (file-cache-choose-completion): Handle an optional event argument.
8316 (file-cache-mouse-choose-completion): Make it an obsolete alias.
8317
8318 * progmodes/octave-mod.el (octave-complete-symbol):
8319 Use choose-completion if mouse-choose-completion is ever removed.
8320
8321 * textmodes/sgml-mode.el (sgml-looking-back-at): Move definition before
8322 use.
8323
8324 * emacs-lisp/checkdoc.el (generate-autoload-cookie): Define for
8325 compiler.
8326
8327 * vc-hooks.el (vc-responsible-backend): Fix declaration.
8328
8329 2009-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
8330
8331 * minibuffer.el (completion--embedded-envvar-table): Fix last change.
8332 Ignore `pred' now that we receive one.
8333 Handle test-completion specially.
8334
8335 2009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
8336
8337 * vc.el (vc-responsible-backend): Throw an error if not backend is
8338 found. Remove the REGISTER argument. Move the code dealing with
8339 REGISTER ...
8340 (vc-get-backend-for-registration): ... here. New function.
8341 (vc-deduce-fileset): Call vc-get-backend-for-registration instead
8342 of vc-responsible-backend, pass the file name instead of the
8343 directory name.
8344
8345 2009-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
8346
8347 * pcomplete.el (pcomplete-common-suffix, pcomplete-table-subvert):
8348 New funs.
8349 (pcomplete-std-complete): Use them. Obey pcomplete-termination-string.
8350 (pcomplete-comint-setup): Don't modify a global var via
8351 accidental side-effects.
8352 (pcomplete-shell-setup): Adjust call accordingly.
8353 (pcomplete-parse-comint-arguments): Use push.
8354
8355 2009-10-23 Chong Yidong <cyd@stupidchicken.com>
8356
8357 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
8358 Allow uncapitalized info node names (Bug#3921).
8359
8360 * mail/emacsbug.el (report-emacs-bug): Tweak the sentence pointing
8361 to the DEBUG file (Bug#3781).
8362
8363 2009-10-23 Jari Aalto <jari.aalto@cante.net>
8364
8365 * textmodes/ispell.el (ispell-dictionary-base-alist): Add finnish
8366 dictionary entry (Bug#4579).
8367
8368 2009-10-23 Michael Albinus <michael.albinus@gmx.de>
8369
8370 * net/tramp.el (top): Remove `tramp-rfn-eshadow-update-overlay'
8371 from `rfn-eshadow-update-overlay-hook' when unloading.
8372 (tramp-methods): Add `tramp-copy-keep-tmpfile' for "rsync" and
8373 "rsyncc". Adjust doc string.
8374 (tramp-temp-buffer-file-name): New buffer-local defvar.
8375 (tramp-handle-insert-file-contents, tramp-handle-write-region):
8376 Keep temporary file when indicated by method ("rsync" and
8377 "rsyncc").
8378 (tramp-handle-write-region): Handle APPEND.
8379 (tramp-delete-temp-file-function): New defun. Added to
8380 `kill-buffer-hook'.
8381
8382 2009-10-23 Juanma Barranquero <lekktu@gmail.com>
8383
8384 * menu-bar.el (cua-enable-cua-keys): Declare for the byte-compiler.
8385
8386 2009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
8387
8388 * term/tty-colors.el (msdos-color-values): Remove declaration, unused.
8389 (color-name-rgb-alist, tty-standard-colors)
8390 (tty-color-mode-alist): Change to defconst.
8391
8392 * simple.el (mark-inactive): Purecopy message.
8393
8394 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle): Fix macro.
8395 (global-map, yank-menu):
8396 * textmodes/ispell.el (ispell-menu-map):
8397 * net/eudc.el (eudc-tools-menu):
8398 * international/mule-cmds.el (describe-language-environment-map)
8399 (setup-language-environment-map, set-coding-system-map)
8400 (mule-menu-keymap):
8401 * vc-hooks.el (vc-menu-entry, vc-menu-map):
8402 * replace.el (occur-mode-map):
8403 * pcvs-defs.el (cvs-global-menu): Purecopy names and tooltips.
8404
8405 2009-10-23 Jay Belanger <jay.p.belanger@gmail.com>
8406
8407 * calc/calc.el (math-read-number, math-read-number-simple): Use
8408 `save-match-data'.
8409
8410 2009-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
8411
8412 * simple.el (normal-erase-is-backspace-mode): Use input-decode-map
8413 rather than fiddling with global-map bindings, since it should only
8414 affect per-terminal settings.
8415 See http://bugs.gentoo.org/show_bug.cgi?id=289709.
8416
8417 * minibuffer.el (completion-table-with-terminator): Allow to specify
8418 the terminator-regexp.
8419
8420 * simple.el (switch-to-completions): Look for *Completions* in other
8421 frames as well.
8422
8423 * pcomplete.el: Allow the use of completion-tables.
8424 (pcomplete-std-complete): New command.
8425 (pcomplete-dirs-or-entries): Use a single call to pcomplete-entries.
8426 (pcomplete--here): Use a function for `form' rather than an expression,
8427 so it can be byte-compiled.
8428 (pcomplete-here, pcomplete-here*): Adjust accordingly.
8429 Add edebug declaration.
8430 (pcomplete-show-completions): Remove unused var `curbuf'.
8431 (pcomplete-do-complete, pcomplete-stub):
8432 Don't assume `completions' is a list of strings any more.
8433
8434 2009-10-22 Juanma Barranquero <lekktu@gmail.com>
8435
8436 * find-dired.el (find-name-arg): Fix typo in docstring.
8437
8438 2009-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
8439
8440 * pcmpl-linux.el (pcomplete/kill): Don't abuse pcomplete-entries.
8441 (pcmpl-linux-fs-types): Same, and update to new modules layout.
8442
8443 * pcmpl-gnu.el (pcmpl-gnu-makefile-names): Use a single call to
8444 pcomplete-entries.
8445
8446 * comint.el (comint-read-input-ring, comint-write-input-ring)
8447 (comint-substitute-in-file-name)
8448 (comint-dynamic-complete-as-filename)
8449 (comint-dynamic-simple-complete)
8450 (comint-dynamic-list-filename-completions)
8451 (comint-dynamic-list-completions)
8452 (comint-redirect-results-list-from-process): Minor simplifications.
8453
8454 2009-10-21 Kevin Ryde <user42@zip.com.au>
8455
8456 * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
8457 When inserting ";;; Code" put it before any ";;;###autoload" cookie on
8458 the first form. And insert a blank line after ";;; Code" since
8459 that's usual style. (Bug#4612)
8460
8461 * net/dns.el: Add "Keywords: comm", as per net/net-utils.el.
8462
8463 2009-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
8464
8465 * minibuffer.el (completion-table-with-terminator): Properly implement
8466 boundaries, in case `terminator' appears in the suffix.
8467 (completion--embedded-envvar-table): Don't return boundaries if
8468 there's no valid completion. Simplify.
8469 (completion-file-name-table): New completion table extracted from
8470 completion--file-name-table.
8471 (completion--file-name-table): Use it.
8472 (read-file-name-predicate): Declare obsolete.
8473 (read-file-name): Use the pred arg i.s.o read-file-name-predicate.
8474 * vc-bzr.el (vc-bzr-revision-completion-table): Use the new
8475 completion-file-name-table, and use the `pred' argument.
8476 * files.el (locate-file-completion-table): Use the `pred' arg rather
8477 than read-file-name-predicate.
8478 (abbreviate-file-name): Use \` rather than ^ for BOS.
8479
8480 2009-10-21 Dan Nicolaescu <dann@ics.uci.edu>
8481
8482 * vc.el (vc-deduce-fileset): Undo previous change, do not tell
8483 vc-responsible-backend to register, it causes problems.
8484
8485 2009-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
8486
8487 * help-fns.el: Don't require help-mode (to avoid bootstrap issues).
8488
8489 2009-10-21 Eric Ludlam <zappo@gnu.org>
8490
8491 * cedet/semantic/bovine/c.el (semantic-c-debug-mode-init)
8492 (semantic-c-debug-mode-init-pch): New functions.
8493 (semantic-c-debug-mode-init-last-mode): New var.
8494 (semantic-c-parse-lexical-token): Use them.
8495
8496 * cedet/semantic/lex-spp.el (semantic-lex-spp-anlyzer-do-replace):
8497 When extracting the argument list, limit only by point-max.
8498
8499 2009-10-21 Michael Albinus <michael.albinus@gmx.de>
8500
8501 * net/tramp-smb.el (tramp-smb-get-stat-capability): New defun.
8502 (tramp-smb-handle-file-attributes): Use it.
8503 (tramp-smb-do-file-attributes-with-stat): Don't raise an error.
8504 (tramp-smb-handle-insert-directory): Use `mapc' rather than
8505 `mapcar'. Use `tramp-smb-get-stat-capability'.
8506 Add `dired-filename' text properties.
8507 (tramp-smb-get-cifs-capabilities): Apply `save-match-data'.
8508 (tramp-smb-maybe-open-connection): Simplify check for smbclient
8509 version.
8510
8511 2009-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
8512
8513 * subr.el (read-key-delay): Reduce to 0.01.
8514 (read-key): Use read-key-sequence-vector to avoid turning M-t into 244
8515 (bug#4751).
8516
8517 2009-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
8518
8519 * bindings.el (function-key-map): Map C-@ to C-SPC if C-@ is unbound.
8520
8521 * info.el (Info-complete-menu-item): Handle `boundaries' explicitly.
8522 (Info-menu): Remove unused vars `last' and `completions'.
8523 (Info-index-nodes): Remove unused var `node'.
8524
8525 * info.el (Info-complete-menu-item): Use complete-with-action.
8526
8527 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
8528
8529 Make vc-annotate work through copies and renames.
8530 * vc-annotate.el (vc-annotate-extract-revision-at-line):
8531 Return the file name too.
8532 (vc-annotate-revision-at-line)
8533 (vc-annotate-find-revision-at-line)
8534 (vc-annotate-revision-previous-to-line)
8535 (vc-annotate-show-log-revision-at-line): Update to get the file
8536 name from vc-annotate-extract-revision-at-line.
8537 (vc-annotate-show-diff-revision-at-line-internal): Change the
8538 argument to mean whether to show a file diff or not. Get the file
8539 name from vc-annotate-extract-revision-at-line.
8540 (vc-annotate-show-diff-revision-at-line):
8541 Update vc-annotate-show-diff-revision-at-line call.
8542 (vc-annotate-warp-revision): Add an optional file argument.
8543
8544 * vc-git.el (vc-git-annotate-command): Pass -C -C to the blame command.
8545 (vc-git-annotate-extract-revision-at-line): Also return the file
8546 name if found.
8547
8548 * vc-hg.el (vc-hg-annotate-command): Pass --follow to the annotate
8549 command. Remove unused code.
8550 (vc-hg-annotate-re): Update to match --follow output.
8551 (vc-hg-annotate-extract-revision-at-line): Also return the file
8552 name if found.
8553
8554 * vc.el: Update annotate-extract-revision-at-line documentation.
8555
8556 2009-10-18 Kevin Ryde <user42@zip.com.au>
8557
8558 * ibuffer.el (ibuffer-confirm-operation-on): Correction to error
8559 re-throw, `err' is a pair not a list so can't use apply (Bug#4740).
8560
8561 * net/browse-url.el (browse-url): Identify alist with "consp and
8562 not functionp" and let all other things go down the `apply' leg,
8563 as suggested by Stefan. (Further to bug#4531.)
8564
8565 2009-10-18 Chong Yidong <cyd@stupidchicken.com>
8566
8567 * minibuffer.el (read-file-name): Check for repeat before putting
8568 a default argument in file-name-history (Bug#4657).
8569
8570 * emacs-lisp/lisp-mode.el (preceding-sexp): Recognize hash table
8571 read syntax (Bug#4737).
8572
8573 * textmodes/sgml-mode.el (sgml-delete-tag): Use sgml-looking-back-at.
8574
8575 2009-10-18 Aaron S. Hawley <aaron.s.hawley@gmail.com>
8576
8577 * textmodes/sgml-mode.el (sgml-tag-help): Prompt user for tag.
8578 (html-tag-alist, html-tag-help): Add descriptions for undocumented
8579 entries and make note of obsolete tags.
8580
8581 2009-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
8582
8583 * net/ange-ftp.el (ange-ftp-file-size): Use unwind-protect.
8584
8585 2009-10-18 Glenn Morris <rgm@gnu.org>
8586
8587 * Makefile.in (compile-last): Ensure GREP_OPTIONS is null before calling
8588 grep, so that binary files (eg international/uni-bidi.el) can match.
8589 Remove test for "UnicodeData" files, since it is hopefully unnecessary
8590 now, and in any case the file header format has changed.
8591
8592 2009-10-17 Glenn Morris <rgm@gnu.org>
8593
8594 * textmodes/flyspell.el (flyspell-large-region, flyspell-word)
8595 (flyspell-get-word, flyspell-large-region)
8596 (flyspell-auto-correct-previous-word): Doc/error message fixes.
8597
8598 2009-10-17 Chong Yidong <cyd@stupidchicken.com>
8599
8600 * Makefile.in (ELCFILES): Add ede/shell.
8601
8602 2009-10-17 Dan Nicolaescu <dann@ics.uci.edu>
8603
8604 * term/common-win.el (x-colors): Purecopy it.
8605
8606 2009-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
8607
8608 * tar-mode.el (tar-data-swapped-p): Make the assertion a bit more
8609 permissive for when the buffer is empty.
8610 (tar-header-block-tokenize): Decode the username and groupname.
8611 (tar-chown-entry, tar-chgrp-entry): Encode the names (bug#4730).
8612
8613 2009-10-17 Chong Yidong <cyd@stupidchicken.com>
8614
8615 * cedet/srecode/srt.el:
8616 * cedet/srecode/compile.el:
8617 * cedet/semantic/mru-bookmark.el:
8618 * cedet/semantic/debug.el:
8619 * cedet/semantic/complete.el:
8620 * cedet/semantic/analyze.el: Require CL when compiling.
8621
8622 2009-10-17 Eric Ludlam <zappo@gnu.org>
8623
8624 * cedet/semantic/scope.el
8625 (semantic-analyze-scoped-inherited-tag-map): Wrap calculation of
8626 tmpscope so that the regular scope will continue to work.
8627
8628 * cedet/semantic/idle.el (semantic-idle-tag-highlight):
8629 Use semantic-idle-summary-highlight-face as the highlighting.
8630
8631 * emacs-lisp/eieio-base.el (eieio-persistent-save): If buffer
8632 contains multibyte characters, choose first applicable coding
8633 system automatically.
8634
8635 * cedet/ede/project-am.el (project-run-target): New method.
8636 (project-run-target): New method.
8637
8638 * cedet/ede.el (ede-target): Add run target menu item.
8639 (ede-project, ede-minor-keymap): Add ede-run-target binding.
8640 (ede-run-target): New function.
8641 (ede-target::project-run-target): New method.
8642
8643 * cedet/ede/proj.el (project-run-target): New method.
8644
8645 * cedet/ede/proj-shared.el (ede-gcc-libtool-shared-compiler)
8646 (ede-g++-libtool-shared-compiler): Remove SHELL. Remove COMMANDS.
8647 Add :rules.
8648 (ede-proj-target-makefile-shared-object): Only libtool compilers
8649 now available. Add linkers for libtool.
8650 (ede-cc-linker-libtool, ede-g++-linker-libtool): New.
8651 (ede-proj-makefile-target-name): Always use .la extension.
8652
8653 * cedet/ede/proj-prog.el (project-run-target): New method.
8654
8655 * cedet/ede/proj-obj.el (ede-cc-linker): Rename from ede-gcc-linker.
8656 (ede-g++-linker): Change Change link lines.
8657
8658 * cedet/ede/pmake.el (ede-pmake-insert-variable-shared):
8659 When searching for old variables, go to the end of the buffer and
8660 search backward from there.
8661 (ede-proj-makefile-automake-insert-subdirs)
8662 (ede-proj-makefile-automake-insert-extradist): New methods.
8663 (ede-proj-makefile-create): Use them.
8664
8665 * cedet/ede/pconf.el (ede-proj-configure-test-required-file):
8666 Force FILE to expand to the current target. Use file-exists-p to
8667 check that it exists.
8668
8669 * cedet/ede/linux.el (ede-linux-version): Don't call "head".
8670 (ede-linux-load): Wrap dir in file-name-as-directory.
8671 Set :version slot.
8672
8673 * cedet/ede/files.el (ede-get-locator-object): When enabling
8674 locate, do so on "top".
8675
8676 * cedet/ede/emacs.el (ede-emacs-file-existing): Wrap "dir" in
8677 file-name-as-directory during compare.
8678 (ede-emacs-version): Return Emacs/XEmacs differentiator.
8679 Get version number from different places. Don't call egrep.
8680 (ede-emacs-load): Set :version slot. Call file-name-as-directory
8681 to set the directory.
8682
8683 * cedet/ede/shell.el: New file.
8684
8685 * cedet/inversion.el (inversion-decoders): Allow for stray . in
8686 alpha/beta variants.
8687
8688 2009-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
8689
8690 * international/mule-cmds.el (select-safe-coding-system): If the file
8691 has a coding cookie, use it regardless of any other setting (bug#4712).
8692
8693 2009-10-17 Glenn Morris <rgm@gnu.org>
8694
8695 * cedet/semantic/grammar.el (semantic-grammar--lex-delim-spec):
8696 All errors should have messages.
8697
8698 * foldout.el (foldout-mouse-swallow-events):
8699 * gs.el (gs-load-image): Replace obsolete forms of sit-for, sleep-for.
8700
8701 * dired.el (dired-ls-F-marks-symlinks, dired-keep-marker-rename)
8702 (dired-keep-marker-copy, dired-keep-marker-hardlink)
8703 (dired-keep-marker-symlink, dired-dwim-target)
8704 (dired-copy-preserve-time): Do not autoload these defcustoms.
8705
8706 * mail/rmail.el (rmail-write-region-annotate): Prevent viewing different
8707 messages from messing up the file coding. (Bug#4623)
8708
8709 2009-10-17 Jari Aalto <jari.aalto@cante.net>
8710
8711 * textmodes/ispell.el (ispell-get-decoded-string): Give an error
8712 if no match is found for the current dictionary. (Bug#4578)
8713
8714 * textmodes/flyspell.el (flyspell-get-word): Make `following' argument
8715 optional, since that is how it is documented, and this is often called
8716 with a nil argument. (Bug#4577)
8717 (flyspell-external-point-words, flyspell-auto-correct-word)
8718 (flyspell-correct-word-before-point, flyspell-word-search-forward)
8719 (flyspell-word-search-backward): Remove nil argument in calls to
8720 flyspell-get-word, since it is not needed now.
8721
8722 2009-10-17 Ulrich Mueller <ulm@gentoo.org>
8723
8724 * play/doctor.el (doctor-adverbp): Exclude some nouns. (Bug#4565)
8725
8726 2009-10-16 Glenn Morris <rgm@gnu.org>
8727
8728 * net/rcirc.el (rcirc-authenticate): Simplify previous change.
8729
8730 2009-10-16 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
8731
8732 * net/ange-ftp.el (ange-ftp-send-cmd): Handle `size' like `mdtm'.
8733 (ange-ftp-file-size): New function.
8734 (ange-ftp-file-attributes): Use it.
8735
8736 2009-10-16 Michael Albinus <michael.albinus@gmx.de>
8737
8738 * net/tramp-smb.el (tramp-smb-version): New defvar.
8739 (tramp-smb-maybe-open-connection): Use it, in order to avoid
8740 repeated checks.
8741
8742 2009-10-16 Glenn Morris <rgm@gnu.org>
8743
8744 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Doc fix.
8745 Maybe copy some custom properties from old to new name. (Bug#4706)
8746
8747 2009-10-16 Juanma Barranquero <lekktu@gmail.com>
8748
8749 * subr.el (error, sit-for, start-process-shell-command)
8750 (start-file-process-shell-command): Set the calling convention
8751 after the function definition.
8752
8753 2009-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
8754
8755 * subr.el (error, sit-for, start-process-shell-command)
8756 (start-file-process-shell-command): Use the new
8757 set-advertised-calling-convention feature.
8758
8759 2009-10-16 Taichi Kawabata <kawabata.taichi@gmail.com>
8760
8761 * international/ucs-normalize.el (ucs-normalize-version):
8762 Change to 1.2.
8763 (check-range): Adjust for Unicode 5.2.
8764
8765 2009-10-15 Juri Linkov <juri@jurta.org>
8766
8767 * menu-bar.el (menu-bar-file-menu): Convert `separator-exit'
8768 to the `menu-item' format.
8769
8770 2009-10-15 Michael Albinus <michael.albinus@gmx.de>
8771
8772 * net/tramp.el (tramp-replace-environment-variables): Do not fail
8773 if the environment variable does not exist.
8774
8775 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
8776 (tramp-smb-get-share, tramp-smb-get-localname): Use only VEC as
8777 parameter.
8778 (tramp-smb-handle-add-name-to-file)
8779 (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
8780 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
8781 (tramp-smb-handle-file-attributes)
8782 (tramp-smb-do-file-attributes-with-stat)
8783 (tramp-smb-handle-file-local-copy)
8784 (tramp-smb-handle-insert-directory)
8785 (tramp-smb-handle-make-directory)
8786 (tramp-smb-handle-make-directory-internal)
8787 (tramp-smb-handle-make-symbolic-link)
8788 (tramp-smb-handle-rename-file, tramp-smb-handle-set-file-modes)
8789 (tramp-smb-handle-write-region, tramp-smb-get-file-entries)
8790 (tramp-smb-maybe-open-connection): Apply the changed parameters.
8791 (tramp-smb-read-file-entry): Read Disk names in compressed format.
8792 Handle long file names.
8793 (tramp-smb-get-cifs-capabilities): Check, whether the connection
8794 process is running.
8795 (tramp-smb-maybe-open-connection): Trace "smbclient -V" command.
8796 Read share names with "-g" option.
8797
8798 2009-10-15 Ryan Yeske <rcyeske@gmail.com>
8799
8800 * net/rcirc.el (rcirc-view-log-file): New command.
8801 (rcirc-track-minor-mode-map): Remove C-c ` binding.
8802 (rcirc-authenticate, rcirc-authinfo): Allow nickserv-nick to be
8803 specified.
8804
8805 2009-10-15 Glenn Morris <rgm@gnu.org>
8806
8807 * w32-fns.el (w32-batch-update-autoloads): Take autoload-make-program
8808 from the second command-line argument.
8809 * makefile.w32-in (autoloads, $(lisp)/calendar/cal-loaddefs.el)
8810 ($(lisp)/calendar/diary-loaddefs.el, $(lisp)/calendar/hol-loaddefs.el)
8811 ($(lisp)/mh-e/mh-loaddefs.el): Pass $(MAKE) as second argument to
8812 w32-batch-update-autoloads.
8813 * emacs-lisp/autoload.el (autoload-make-program): New variable.
8814 (batch-update-autoloads): Handle autoload-excludes on windows-nt.
8815
8816 * mail/rmailedit.el (rmail-cease-edit): Give an error if the end of
8817 the headers cannot be located. Simplify, subtracting superflous
8818 save-excursions.
8819
8820 2009-10-15 Stefan Monnier <monnier@iro.umontreal.ca>
8821
8822 Replace completion-base-size by completion-base-position to fix bugs
8823 such as (bug#4699).
8824 * simple.el (completion-base-position): New var.
8825 (completion-base-size): Mark as obsolete.
8826 (choose-completion): Make it work for mouse events as well.
8827 Pass the new base-position to choose-completion-string.
8828 (choose-completion-guess-base-position): New function, extracted from
8829 choose-completion-delete-max-match.
8830 (choose-completion-delete-max-match): Use it. Make obsolete.
8831 (choose-completion-string): Use the new base-position info.
8832 (completion-root-regexp): Delete.
8833 (completion-setup-function): Preserve completion-base-position.
8834 Eliminate obsolete base-size manipulation.
8835 * minibuffer.el (display-completion-list): Don't mess with base-size.
8836 (minibuffer-completion-help): Set completion-base-position instead.
8837 * mouse.el (mouse-choose-completion): Redefine as a mere alias to
8838 choose-completion.
8839 * textmodes/bibtex.el (bibtex-complete):
8840 * emacs-lisp/crm.el (crm--choose-completion-string):
8841 Adjust to new calling convention.
8842 * complete.el (partial-completion-mode): Use minibufferp to avoid
8843 bumping into incompatible change to choose-completion-string-functions.
8844 * ido.el (ido-choose-completion-string): Make its calling convention
8845 more permissive.
8846 * comint.el (comint-dynamic-list-input-ring-select): Remove obsolete
8847 base-size manipulation.
8848 (comint-dynamic-list-input-ring): Use dotimes and push.
8849 * iswitchb.el (iswitchb-completion-help): Remove dead-code call to
8850 fundamental-mode. Use `or'.
8851
8852 2009-10-14 Juri Linkov <juri@jurta.org>
8853
8854 * misearch.el (multi-isearch-next-buffer-from-list)
8855 (multi-isearch-next-file-buffer-from-list): Doc fix. (Bug#4723)
8856
8857 2009-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
8858
8859 * Makefile.in (compile-onefile): Load `bytecomp' rather than
8860 `bytecomp.el'.
8861
8862 * minibuffer.el (completion-pcm--merge-completions): Make sure the
8863 string we return is all made up of text from the completions rather
8864 than part from the completions and part from the input (bug#4219).
8865
8866 * ido.el (ido-everywhere): Use define-minor-mode.
8867
8868 * buff-menu.el (list-buffers, ctl-x-map):
8869 Mark the entry points with ;;;###autoload cookies.
8870
8871 2009-10-14 Dan Nicolaescu <dann@ics.uci.edu>
8872
8873 * vc-git.el (vc-git-dir-extra-headers): Set the branch name
8874 correctly in the detached head case.
8875 (vc-git-print-log): Remove unused binding.
8876
8877 * vc.el (vc-responsible-backend): When a directory is passed for
8878 for registration create a VC repository if no backend is
8879 responsible for the directory argument.
8880 (vc-deduce-fileset): Tell vc-responsible-backend to register.
8881
8882 * vc.el: Move comments about RCS and SCCS ...
8883 * vc-rcs.el:
8884 * vc-sccs.el: ... here, respectively.
8885
8886 2009-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
8887
8888 * minibuffer.el (completion--file-name-table): Return nil if there's
8889 no file completion, even if substitute-in-file-name changed
8890 the string (bug#4708).
8891
8892 2009-10-13 Juri Linkov <juri@jurta.org>
8893
8894 * files-x.el (read-file-local-variable-value): Don't filter out
8895 minor modes from mode name completion (bug#4664).
8896
8897 2009-10-13 Juanma Barranquero <lekktu@gmail.com>
8898
8899 * international/mule-cmds.el (ucs-names): Remove exclusion of
8900 "Enclosed Ideographic Supplement" range (U+1F200..U+1F2FF).
8901
8902 2009-10-13 Kenichi Handa <handa@m17n.org>
8903
8904 * international/uni-name.el: Regenerated.
8905
8906 2009-10-13 Juanma Barranquero <lekktu@gmail.com>
8907
8908 * bs.el (bs-mode): Fix last change. (`revert-buffer-function'
8909 should be automatically buffer-local, but isn't.)
8910
8911 2009-10-12 Sam Steingold <sds@gnu.org>
8912
8913 * progmodes/compile.el (compilation-next-error-function): Fix the
8914 timestamps if the buffer has been visited before.
8915 (compilation-mode-font-lock-keywords): Do not prepend "^ *" to
8916 non-anchored patterns, like the perl one (bug#3928).
8917
8918 2009-10-12 Glenn Morris <rgm@gnu.org>
8919
8920 * net/tramp-smb.el (tramp-smb-do-file-attributes-with-stat):
8921 Let-bind `size'.
8922
8923 2009-10-12 Juanma Barranquero <lekktu@gmail.com>
8924
8925 * proced.el (proced-unload-function): New function.
8926
8927 * bs.el (bs-mode): Set `revert-buffer-function' to `bs-refresh'.
8928 (bs-refresh): Add IGNORED arg for `revert-buffer' compatibility.
8929 Doc fix.
8930
8931 * menu-bar.el (menu-bar-file-menu): Fix format of `separator-exit' item.
8932
8933 2009-10-11 Juri Linkov <juri@jurta.org>
8934
8935 * files-x.el (read-file-local-variable-value):
8936 Provide default value only for bound variables (bug#4664).
8937
8938 2009-10-11 Michael Albinus <michael.albinus@gmx.de>
8939
8940 * net/tramp.el (tramp-local-host-p): Function shall return nil for
8941 connection methods like smb.
8942
8943 * net/tramp-cache.el (tramp-flush-connection-property): The hash
8944 can be empty.
8945
8946 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
8947 (tramp-smb-file-name-handler-alist): Add handlers for
8948 `add-name-to-file', `make-symbolic-link'.
8949 (tramp-smb-handle-add-name-to-file)
8950 (tramp-smb-do-file-attributes-with-stat)
8951 (tramp-smb-handle-make-symbolic-link)
8952 (tramp-smb-get-cifs-capabilities): New defuns.
8953 (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
8954 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
8955 (tramp-smb-handle-file-local-copy)
8956 (tramp-smb-handle-make-directory-internal)
8957 (tramp-smb-handle-rename-file, tramp-smb-handle-write-region):
8958 The file name syntax depends on cifs capabilities.
8959 (tramp-smb-handle-file-attributes):
8960 Call `tramp-smb-do-file-attributes-with-stat' if possible.
8961 (tramp-smb-handle-insert-directory): Use posix attributes if possible.
8962 (tramp-smb-handle-set-file-modes): It is applicable for posix only.
8963
8964 2009-10-11 Chong Yidong <cyd@stupidchicken.com>
8965
8966 * emacs-lisp/eieio.el: Avoid requiring cl at runtime.
8967 (eieio-defclass): Apply deftype handler and setf-method properties
8968 directly.
8969 (eieio-add-new-slot): Avoid union function from cl library.
8970 (eieio--typep): New function.
8971 (eieio-perform-slot-validation): Use it.
8972
8973 2009-10-10 Karl Fogel <kfogel@red-bean.com>
8974
8975 * bookmark.el (bookmark-yank-word, bookmark-insert-current-bookmark):
8976 Update documentation to refer to the variables documented in r1.135.
8977 (Bug#4188)
8978
8979 2009-10-10 Karl Fogel <kfogel@red-bean.com>
8980
8981 * bookmark.el (Info-suffix-list): Remove this unused variable.
8982 (bookmark-current-point): Remove this obsolete variable.
8983 (bookmark-set, bookmark-rename, bookmark-send-edited-annotation):
8984 Adjust for removal of bookmark-current-point.
8985
8986 (bookmarks-already-loaded, bookmark-current-buffer)
8987 (bookmark-yank-point): Document. (Bug#4188)
8988
8989 2009-10-10 Glenn Morris <rgm@gnu.org>
8990
8991 * frame.el (frame-height): Doc fix.
8992
8993 * calendar/calendar.el (calendar-split-width-threshold): New option.
8994 (calendar-basic-setup): Use calendar-split-width-threshold.
8995
8996 2009-10-10 Sascha Wilde <wilde@sha-bang.de>
8997
8998 * cedet/ede/proj-shared.el (ede-proj-makefile-target-name):
8999 Use .la for Automake.
9000
9001 2009-10-09 Chong Yidong <cyd@stupidchicken.com>
9002
9003 * cedet/ede/pconf.el (ede-proj-configure-synchronize):
9004 Use "autoreconf -i". Suggested by Andreas Schwab.
9005
9006 2009-10-09 Juanma Barranquero <lekktu@gmail.com>
9007
9008 * international/mule-cmds.el (ucs-names): Exclude new "Enclosed
9009 Ideographic Supplement" range (U+1F200..U+1F2FF).
9010
9011 2009-10-09 Karl Fogel <kfogel@red-bean.com>
9012
9013 * bookmark.el (bookmark-bmenu-rename): Don't call bookmark-bmenu-list,
9014 since the list will have been rebuilt anyway. (Bug#4349)
9015
9016 2009-10-09 Karl Fogel <kfogel@red-bean.com>
9017
9018 * bookmark.el (bookmark-delete): Don't let batch arg prevent saving.
9019 (bookmark-bmenu-execute-deletions): Don't save here, as
9020 bookmark-delete will now do so if necessary.
9021 Suggested by Thierry Volpiatto <thierry.volpiatto {_AT_} gmail.com>.
9022 (Bug#4348)
9023
9024 2009-10-09 Glenn Morris <rgm@gnu.org>
9025
9026 * mail/emacsbug.el (report-emacs-bug): Also print `features'.
9027
9028 2009-10-09 Karl Fogel <kfogel@red-bean.com>
9029
9030 * bookmark.el (bookmark-jump): Add new `display-func' parameter.
9031 (bookmark-jump-other-window): Just invoke bookmark-jump with new
9032 argument now, so the two function's behaviors will match. (Bug#3645)
9033
9034 2009-10-08 Chong Yidong <cyd@stupidchicken.com>
9035
9036 * cedet/ede/proj.el (project-make-dist, project-compile-project):
9037 Fix filename test.
9038 (ede-proj-dist-makefile): Use expand-file-name instead of concat
9039 to expand file names.
9040
9041 2009-10-08 Michael Albinus <michael.albinus@gmx.de>
9042
9043 * net/tramp.el (tramp-file-name-real-user, tramp-file-name-domain)
9044 (tramp-file-name-real-host, tramp-file-name-port):
9045 Apply `save-match-data'.
9046
9047 * net/tramp-smb.el (tramp-smb-handle-copy-directory): Handle the
9048 case both directories are remote.
9049 (tramp-smb-handle-expand-file-name): Implement "~" expansion.
9050 (tramp-smb-maybe-open-connection): Flush the cache only if necessary.
9051
9052 2009-10-08 Chong Yidong <cyd@stupidchicken.com>
9053
9054 * cedet/ede/proj-obj.el (ede-gcc-linker): New var.
9055 (ede-proj-target-makefile-objectcode): Use it.
9056
9057 * cedet/ede/source.el (ede-want-any-source-files-p)
9058 (ede-want-any-auxiliary-files-p, ede-want-any-files-p):
9059 Return search result. This error was introduced while merging.
9060
9061 2009-10-07 Juanma Barranquero <lekktu@gmail.com>
9062
9063 * makefile.w32-in (WINS_UPDATES): Fix typo in previous change.
9064
9065 2009-10-07 Glenn Morris <rgm@gnu.org>
9066
9067 * emacs-lisp/autoload.el (batch-update-autoloads): Remove useless use
9068 of concat.
9069
9070 2009-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
9071
9072 * files-x.el (read-file-local-variable): Include some
9073 non-user-variables in the completion table (bug#4664).
9074
9075 2009-10-07 Michael Albinus <michael.albinus@gmx.de>
9076
9077 * net/tramp-cache.el (tramp-flush-connection-property): Add trace
9078 message.
9079
9080 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
9081 (tramp-smb-file-name-handler-alist): Add handler for
9082 `copy-directory', `expand-file-name', `set-file-modes'.
9083 (tramp-smb-handle-copy-directory)
9084 (tramp-smb-handle-expand-file-name)
9085 (tramp-smb-handle-set-file-modes): New defuns.
9086 (tramp-smb-handle-copy-file): Handle KEEP-DATE.
9087 (tramp-smb-handle-file-attributes): Simplify check for retrieving
9088 entry.
9089 (tramp-smb-handle-insert-directory): Don't flush the cache.
9090 (tramp-smb-maybe-open-connection): Check for samba client and
9091 server versions.
9092
9093 2009-10-07 Eli Zaretskii <eliz@gnu.org>
9094
9095 * emacs-lisp/autoload.el (batch-update-autoloads): Fix last change
9096 to not error out of search for "^lisp=" fails.
9097
9098 2009-10-07 Juanma Barranquero <lekktu@gmail.com>
9099
9100 * makefile.w32-in (WINS_UPDATES): New macro.
9101 (custom-deps, finder-data, autoloads): Use it.
9102
9103 2009-10-07 Glenn Morris <rgm@gnu.org>
9104
9105 * Makefile.in (autoloads): Revert previous change.
9106 * emacs-lisp/autoload.el (batch-update-autoloads): Rather than having
9107 the list of preloaded files passed on the command-line, get
9108 it from src/Makefile.
9109
9110 * calendar/calendar.el (calendar-basic-setup): In the wide frame case,
9111 show the original buffer rather than a random one.
9112
9113 2009-10-07 Markus Rost <rost@math.uni-bielefeld.de>
9114
9115 * help.el (describe-no-warranty): Place point in a slightly better
9116 position in the GPLv3 text.
9117
9118 2009-10-06 Sam Steingold <sds@gnu.org>
9119
9120 * net/tramp-compat.el (tramp-compat-process-running-p): Check that
9121 the comm attribute is present before calling regexp-quote.
9122
9123 2009-10-06 Juanma Barranquero <lekktu@gmail.com>
9124
9125 * play/animate.el (animate-string): For good effect, make sure
9126 `indent-tabs-mode' and `show-trailing-whitespace' are nil.
9127
9128 * play/animate.el (animate-sequence, animate-birthday-present):
9129 * misc.el (butterfly): Don't set `indent-tabs-mode'.
9130
9131 2009-10-06 Glenn Morris <rgm@gnu.org>
9132
9133 * emacs-lisp/byte-run.el (define-obsolete-face-alias): Doc fix.
9134
9135 * emacs-lisp/autoload.el (autoload-excludes): New variable.
9136 (autoload-generate-file-autoloads): Skip files in autoload-excludes.
9137 (batch-update-autoloads): Process a string value of autoload-excludes,
9138 set during the build process.
9139 * Makefile.in (autoloads): Skip preloaded files. (Bug#4446)
9140
9141 * net/tramp.el (tramp-handle-start-file-process): Move tramp-error call
9142 inside with-parsed... macro so that `v' is defined.
9143
9144 * progmodes/f90.el (f90-end-of-block, f90-beginning-of-block):
9145 * progmodes/fortran.el (fortran-end-of-block)
9146 (fortran-beginning-of-block):
9147 Also push mark in the macro case.
9148
9149 * emerge.el (emerge-show-file-name):
9150 * calc/calc.el (calc-quit):
9151 * calc/calc-misc.el (calc-big-or-small):
9152 * calc/calc-graph.el (calc-graph-view):
9153 * calc/calc-ext.el (calc-reset):
9154 * calendar/calendar.el (calendar-basic-setup):
9155 Use window-full-height-p.
9156
9157 * mail/rmailedit.el (rmail-cease-edit): If there is a Content-Type
9158 header we don't understand, don't insert another. (Bug#4624)
9159 If changing mime charset, insert the new one in the right place.
9160
9161 2009-10-06 Matthew Junker <matthew.junker@sbcglobal.net> (tiny change)
9162
9163 * calendar/cal-tex.el (cal-tex-cursor-month-landscape)
9164 (cal-tex-cursor-month): Correctly increment the end date for diary and
9165 holiday listing. (Bug#4626)
9166
9167 2009-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
9168
9169 * help-fns.el (describe-function-1): Don't burp if the function is not
9170 a symbol.
9171
9172 2009-10-05 Juanma Barranquero <lekktu@gmail.com>
9173
9174 * emacs-lisp/chart.el (chart-face-pixmap-list, chart-new-buffer, chart)
9175 (chart-axis-range, chart-axis-names, chart-sequece, chart-bar)
9176 (chart-draw, chart-axis-draw, chart-sort, chart-sort-matchlist)
9177 (chart-draw-line, chart-bar-quickie): Fix typos in docstrings.
9178
9179 * emacs-lisp/eieio.el (generic-p, eieiomt-next, eieio-generic-form)
9180 (eieio-default-superclass): Reflow docstrings.
9181 (this, class-option-assoc, defclass, eieio-class-un-autoload)
9182 (eieio-unbind-method-implementations, defmethod)
9183 (eieio-validate-slot-value, eieio-validate-class-slot-value)
9184 (oref-default, eieio-oref-default, eieio-oset, eieio-oset-default)
9185 (with-slots, eieio-add-new-slot, object-assoc, object-remove-from-list)
9186 (eieio-slot-originating-class-p, eieio-slot-name-index)
9187 (eieio-pre-method-execution-hooks, eieio-initarg-to-attribute)
9188 (constructor, initialize-instance, no-next-method, object-print)
9189 (object-write, eieio-override-prin1, eieio-edebug-prin1-to-string):
9190 Fix typos in docstrings.
9191 (eieio-defclass, eieio-perform-slot-validation-for-default, defgeneric)
9192 (child-of-class-p, object-slots, slot-boundp, slot-exists-p)
9193 (next-method-p): Doc fixes.
9194 (eieio-add-new-slot, call-next-method, eieiomt-add, change-class):
9195 Fix typos in error messages.
9196 (eieio-defmethod): Fix typo in description of generic method.
9197
9198 * emacs-lisp/eieio-base.el (eieio-instance-inheritor, slot-unbound)
9199 (eieio-persistent-save-interactive, slot-missing):
9200 Fix typos in docstrings.
9201 (eieio-instance-inheritor-slot-boundp): Doc fix.
9202
9203 * emacs-lisp/eieio-comp.el (byte-compile-file-form-defmethod)
9204 (byte-compile-defmethod-param-convert): Fix typos in docstrings.
9205
9206 * emacs-lisp/eieio-custom.el (eieio-done-customizing)
9207 (eieio-custom-object-apply-reset):
9208 Fix typos in docstrings and error messages.
9209
9210 * emacs-lisp/eieio-datadebug.el (data-debug-show):
9211 Fix typo in docstring.
9212
9213 * emacs-lisp/eieio-opt.el (top): Fix typo in error message.
9214 (eieio-browse-tree): Doc fix.
9215 (eieio-all-generic-functions, eieio-class-speedbar): Reflow docstrings.
9216 (eieio-help-mode-augmentation-maybee, eieio-class-speedbar-make-map):
9217 Fix typos in docstrings.
9218
9219 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-file-button): Doc fix.
9220 (eieio-speedbar-key-map, eieio-speedbar-create-engine)
9221 (eieio-speedbar-buttons, eieio-speedbar, eieio-speedbar-object-children)
9222 (eieio-speedbar-make-tag-line, eieio-speedbar-object-expand):
9223 Reflow docstrings.
9224
9225 2009-10-05 Dan Nicolaescu <dann@ics.uci.edu>
9226
9227 * vc-hg.el (log-view-vc-backend): Declare for compiler.
9228 (vc-hg-outgoing-mode, vc-hg-incoming-mode):
9229 Set log-view-vc-backend so that diff can work.
9230
9231 * log-view.el (log-view-diff): Use vc-diff-internal instead of
9232 vc-version-diff.
9233 (vc-diff-internal): Autoload this instead of vc-version-diff.
9234
9235 2009-10-05 Eli Zaretskii <eliz@gnu.org>
9236
9237 * simple.el (eval-expression): Doc fix.
9238
9239 * progmodes/cwarn.el (cwarn-mode): Doc fix.
9240
9241 2009-10-05 Michael Albinus <michael.albinus@gmx.de>
9242
9243 * files.el (directory-files-no-dot-files-regexp): New defconst.
9244 (delete-directory): Use it.
9245 (copy-directory): Use it. Remove parameter PRESERVE-UID-GID.
9246
9247 * net/tramp.el (tramp-verbose): Fix docstring.
9248 (tramp-methods): Add recursive option to `tramp-copy-args'.
9249 Add `tramp-copy-recursive'. Valid for "rcp", "scp", "scp1", "scp2",
9250 "scp1_old", "scp2_old", "rsync", "rsyncc".
9251 (tramp-default-method): Check also for `auth-source-user-or-password'.
9252 (tramp-file-name-handler-alist, tramp-file-name-for-operation):
9253 Add handler for `copy-directory'.
9254 (tramp-handle-copy-directory): New defun.
9255 (tramp-do-copy-or-rename-file-out-of-band): Handle directory case.
9256 (tramp-handle-start-file-process): Raise an error when PROGRAM is nil.
9257 Optimize sent command.
9258
9259 2009-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
9260
9261 * calendar/diary-lib.el (diary-show-all-entries): Re-fit the calendar
9262 window if necessary.
9263
9264 * calendar/calendar.el (calendar-basic-setup): Don't call
9265 switch-to-buffer in a dedicated window.
9266
9267 2009-10-05 Karl Fogel <kfogel@red-bean.com>
9268
9269 * bookmark.el (bookmark-handle-bookmark): If bookmark has no file,
9270 don't do anything related to relocating, just return nil.
9271 (bookmark-error-no-filename): New error.
9272 (bookmark-default-handler): Signal `bookmark-error-no-filename' if
9273 bookmark has no file. Don't even attempt to handle things that
9274 are not files; the whole point of custom handlers is to keep that
9275 knowledge elsewhere anyway. Tighten some comments.
9276 (bookmark-file-or-variation-thereof): Remove now-unused function.
9277 (bookmark-location): Doc string fix.
9278 (Bug#4250)
9279
9280 2009-10-04 Karl Fogel <kfogel@red-bean.com>
9281
9282 * bookmark.el (bookmark-handle-bookmark): When relocating a bookmark,
9283 don't use a file dialog, because they usually don't know how to read
9284 a directory target from the user. (Bug#4230)
9285 Also, make sure the prompt can display directories as well as files.
9286
9287 2009-10-04 Karl Fogel <kfogel@red-bean.com>
9288
9289 * bookmark.el (bookmark-set, bookmark-buffer-name):
9290 Improve doc strings. (Bug#1193)
9291
9292 2009-10-04 Karl Fogel <kfogel@red-bean.com>
9293
9294 * bookmark.el (bookmark-get-bookmark, bookmark-get-bookmark-record)
9295 (bookmark-set-name, bookmark-prop-get, bookmark-prop-set)
9296 (bookmark-get-annotation, bookmark-set-annotation)
9297 (bookmark-get-filename, bookmark-set-filename, bookmark-get-position)
9298 (bookmark-set-position, bookmark-get-front-context-string)
9299 (bookmark-set-front-context-string, bookmark-get-rear-context-string)
9300 (bookmark-set-rear-context-string, bookmark-location, bookmark-jump)
9301 (bookmark-jump-other-window, bookmark-handle-bookmark)
9302 (bookmark-relocate, bookmark-insert-location, bookmark-rename)
9303 (bookmark-insert, bookmark-delete, bookmark-time-to-save-p)
9304 (bookmark-edit-annotation-mode, bookmark-edit-annotation):
9305 Improve doc strings to say whether bookmark can be a string or
9306 a record or both, and make other consistency and clarity fixes.
9307 (bookmark-get-handler, bookmark--jump-via, bookmark-write-file)
9308 (bookmark-default-annotation-text, bookmark-yank-word)
9309 (bookmark-maybe-load-default-file, bookmark-maybe-sort-alist)
9310 (bookmark-import-new-list, bookmark-maybe-rename)
9311 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
9312 (bookmark-bmenu-bookmark): Give these doc strings.
9313 (bookmark-bmenu-check-position): Give this a doc string, but also
9314 add a FIXME comment about how the function may be pointless.
9315 (bookmark-default-handler): Rework doc string and change a
9316 parameter name, to clarify that this takes a bookmark record
9317 not a bookmark name.
9318 (bookmark-set): Change a parameter name to indicate its meaning,
9319 and improve the doc string a bit.
9320 (Bug#4188)
9321
9322 2009-10-04 Karl Fogel <kfogel@red-bean.com>
9323
9324 * bookmark.el (bookmark-alist): Document the new `handler' element
9325 in the param alist.
9326 (bookmark-make-record-function): Adjust documentation for above.
9327 (Bug#4193)
9328
9329 2009-10-04 Karl Fogel <kfogel@red-bean.com>
9330
9331 * info.el (Info-bookmark-make-record): Document this function.
9332 (Info-bookmark-jump): Document with a doc string, not just a comment.
9333 (Bug#4203)
9334
9335 2009-10-04 Chong Yidong <cyd@stupidchicken.com>
9336
9337 * cedet/semantic.el (semantic-new-buffer-setup-functions): New option.
9338 (semantic-new-buffer-fcn): Call parser setup functions here.
9339 (semantic-mode): Don't call parser setup functions here, it's done
9340 in semantic-new-buffer-fcn now.
9341 (semantic-mode): Parse all existing buffers when enabled.
9342
9343 * cedet/srecode/compile.el (srecode-compile-file):
9344 Call semantic-new-buffer-fcn if the buffer has not been parsed.
9345
9346 2009-10-04 Chong Yidong <cyd@stupidchicken.com>
9347
9348 * cedet/ede/pmake.el (ede-pmake-insert-variable-once): Delete.
9349
9350 * cedet/ede/proj-comp.el: Don't require ede/pmake at toplevel.
9351 (proj-comp-insert-variable-once): New macro, renamed from
9352 ede-pmake-insert-variable-once in ede/pmake.edl.
9353 (ede-proj-makefile-insert-variables): Use it.
9354
9355 2009-10-04 Michael Albinus <michael.albinus@gmx.de>
9356
9357 * files.el (copy-directory): New defun.
9358
9359 * dired-aux.el (dired-copy-file-recursive): Use it.
9360
9361 2009-10-04 Juanma Barranquero <lekktu@gmail.com>
9362
9363 * cedet/ede/makefile-edit.el (makefile-beginning-of-command)
9364 (makefile-end-of-command):
9365 * cedet/srecode/srt-mode.el (semantic-beginning-of-context)
9366 (semantic-end-of-context): Fix previous change. Doc fixes.
9367
9368 2009-10-04 Juanma Barranquero <lekktu@gmail.com>
9369
9370 * files-x.el (modify-dir-local-variable)
9371 (copy-dir-locals-to-file-locals-prop-line):
9372 * cedet/ede/makefile-edit.el (makefile-beginning-of-command)
9373 (makefile-end-of-command):
9374 * cedet/semantic/lex.el (semantic-lex-token):
9375 * cedet/semantic/analyze/fcn.el
9376 (semantic-analyze-dereference-metatype-1):
9377 * cedet/semantic/bovine/c.el (semantic-lex-cpp-define)
9378 (semantic-lex-cpp-undef):
9379 * cedet/semantic/wisent/wisent.el (wisent-skip-block):
9380 * cedet/srecode/srt-mode.el (semantic-beginning-of-context)
9381 (semantic-end-of-context): Fix typos in docstrings.
9382
9383 * recentf.el (recentf-unload-function): New function.
9384
9385 2009-10-04 Chong Yidong <cyd@stupidchicken.com>
9386
9387 * cedet/ede.el (ede-project-placeholder-cache-file):
9388 * cedet/semantic/db-file.el (semanticdb-default-save-directory):
9389 * cedet/srecode/map.el (srecode-map-save-file):
9390 Use locate-user-emacs-file. Suggested by Juanma Barranquero.
9391
9392 2009-10-04 Glenn Morris <rgm@gnu.org>
9393
9394 * window.el (window-full-height-p): Add doc string.
9395
9396 2009-10-04 Martin Rudalics <rudalics@gmx.at>
9397
9398 * window.el (window-full-height-p): New function. (Bug#4543)
9399
9400 2009-10-03 Chong Yidong <cyd@stupidchicken.com>
9401
9402 * cedet/srecode/insert.el: Require srecode/args.
9403
9404 * cedet/srecode/args.el: Require srecode/dictionary instead of
9405 srecode/insert.
9406
9407 * cedet/srecode/srt-mode.el (srecode-template-mode): Doc fix.
9408
9409 * files.el (auto-mode-alist): Add .srt and Project.ede.
9410
9411 * cedet/semantic.el (semantic-mode):
9412 Handle srecode-template-mode-hook as well.
9413 (semantic-mode): Use js-mode-hook for Javascript hook.
9414
9415 * cedet/srecode/template.el: Remove hook variable.
9416
9417 * cedet/ede/proj-comp.el: Require ede/pmake when compiling.
9418
9419 * cedet/ede.el (ede-target-forms-menu): Don't enable if no
9420 projects exist.
9421 (ede-project-placeholder-cache-file): Default to a file in
9422 user-emacs-directory.
9423
9424 * cedet/srecode/map.el (srecode-map-base-template-dir): Look for
9425 templates in data-directory.
9426 (srecode-map-save-file): Default to a file in user-emacs-directory.
9427
9428 * cedet/ede/srecode.el (ede-srecode-setup): Use default templates
9429 directory.
9430
9431 2009-09-30 Eric Ludlam <zappo@gnu.org>
9432
9433 * cedet/semantic/util-modes.el (semantic-highlight-func-mode):
9434 Doc fix.
9435
9436 * cedet/ede/proj-comp.el (ede-proj-makefile-insert-variables):
9437 Only insert each variable once.
9438
9439 * cedet/ede/pmake.el (ede-pmake-insert-variable-once): New macro.
9440 (ede-pmake-insert-variable-shared): Use it.
9441
9442 * cedet/ede/cpp-root.el (ede-preprocessor-map): Do not deref table
9443 for lexical table iff table is nil.
9444
9445 2009-10-03 Dan Nicolaescu <dann@ics.uci.edu>
9446
9447 * vc.el: Remove commented out code.
9448 (vc-derived-from-dir-mode): Remove, unused.
9449 (vc-version-diff, vc-diff): Consistently pass t to vc-deduce-fileset.
9450
9451 2009-10-03 Michael Albinus <michael.albinus@gmx.de>
9452
9453 * net/tramp-ftp.el (tramp-ftp-file-name-handler):
9454 Disable `file-name-handler-alist' when loading 'ange-ftp. Otherwise,
9455 there could be recursive loading when `default-directory' is a
9456 remote file name. (Bug#4614)
9457
9458 2009-10-03 Glenn Morris <rgm@gnu.org>
9459
9460 * calendar/calendar.el (calendar-basic-setup): Handle the case where
9461 the frame is wide.
9462 (calendar-generate-window): Test for shrinkability rather than width.
9463
9464 * cedet/semantic/db-find.el (data-debug-insert-tag-list): Comment out
9465 declaration, currently false.
9466
9467 * mail/rmail.el (rmail-generate-viewer-buffer): Be more careful about
9468 reusing existing buffers, in case we happen to visit two files with the
9469 same basename. (Bug#4593)
9470
9471 2009-10-02 Eli Zaretskii <eliz@gnu.org>
9472
9473 * makefile.w32-in (update-subdirs-CMD): Add cedet to $(WINS_SUBDIR).
9474 (WINS_CEDET_SUBDIRS): List of subdirectories of cedet.
9475 (bootstrap-clean-CMD, bootstrap-clean-SH): Remove *.elc files in
9476 subdirs of cedet as well.
9477 (AUTOGENEL): Add loaddefs.el files in cedet subdirectories.
9478
9479 2009-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
9480
9481 * emacs-lisp/eldoc.el (eldoc-get-fnsym-args-string):
9482 Obey advertised-signature-table.
9483
9484 * help-fns.el (help-function-arglist): Don't check
9485 advertised-signature-table.
9486 (describe-function-1): Do it here instead so it also applies to subrs.
9487
9488 2009-10-02 Michael Albinus <michael.albinus@gmx.de>
9489
9490 * simple.el (start-file-process): Say in the doc-string, that file
9491 handlers might not support pty association, if PROGRAM is nil.
9492
9493 * net/ange-ftp.el (ange-ftp-generate-passwd-key): Check, whether
9494 HOST and USER are strings. They are nil, when there are
9495 incomplete entries in ~/.netrc, for example.
9496 (ange-ftp-delete-directory): Implement RECURSIVE case. Change to
9497 root directory ("device busy" error otherwise).
9498
9499 * net/tramp-smb.el (tramp-smb-handle-make-directory-internal):
9500 Flush file properties of created directory.
9501
9502 2009-10-02 Eli Zaretskii <eliz@gnu.org>
9503
9504 * makefile.w32-in (WINS_BASIC): Remove cedet.
9505 (WINS_CEDET): Add cedet.
9506 (update-subdirs-SH): Use $(WINS_SUBDIR), not $(WINS).
9507
9508 2009-10-02 Kevin Ryde <user42@zip.com.au>
9509
9510 * net/browse-url.el (browse-url): Pass any symbol in
9511 browse-url-browser-function to `apply', since if you've mistakenly put
9512 an unbound symbol then the error is clearer. (Bug#4531)
9513
9514 2009-10-02 Juanma Barranquero <lekktu@gmail.com>
9515
9516 * allout.el (allout-init, allout-back-to-current-heading)
9517 (allout-beginning-of-current-entry, allout-ascend-to-depth)
9518 (allout-ascend, allout-up-current-level, allout-end-of-level)
9519 (allout-previous-visible-heading, allout-forward-current-level)
9520 (allout-backward-current-level, allout-show-children):
9521 * apropos.el (apropos-describe-plist):
9522 * bookmark.el (bookmark-maybe-historicize-string, bookmark-bmenu-list):
9523 * comint.el (comint-strip-ctrl-m, comint-goto-process-mark):
9524 * completion.el (add-completion, add-permanent-completion):
9525 * descr-text.el (describe-text-category, describe-char):
9526 * desktop.el (desktop-lazy-abort):
9527 * dired-x.el (dired-omit-expunge, dired-x-bind-find-file):
9528 * dired.el (dired-build-subdir-alist):
9529 * ediff.el (ediff-version):
9530 * elide-head.el (elide-head, elide-head-show):
9531 * emerge.el (emerge-version):
9532 * env.el (getenv):
9533 * face-remap.el (variable-pitch-mode):
9534 * faces.el (describe-face):
9535 * ffap.el (ffap-next-url, find-file-at-point, ffap-at-mouse)
9536 (dired-at-point):
9537 * files.el (find-file-existing, auto-save-mode):
9538 * font-lock.el (font-lock-fontify-buffer):
9539 * help-fns.el (describe-function, describe-variable)
9540 (describe-syntax, describe-categories):
9541 * help.el (view-lossage, describe-bindings, describe-key)
9542 (describe-mode):
9543 * hexl.el (hexl-current-address):
9544 * hi-lock.el (hi-lock-mode, hi-lock-find-patterns):
9545 * info.el (Info-goto-emacs-key-command-node):
9546 * log-edit.el (log-edit-insert-cvs-template)
9547 (log-edit-insert-cvs-rcstemplate):
9548 * menu-bar.el (menu-bar-mode):
9549 * mouse.el (mouse-appearance-menu):
9550 * newcomment.el (comment-indent-new-line):
9551 * pgg.el (pgg-save-coding-system, pgg-encrypt-region)
9552 (pgg-encrypt-symmetric-region, pgg-encrypt-symmetric)
9553 (pgg-encrypt, pgg-decrypt-region, pgg-decrypt)
9554 (pgg-sign-region, pgg-sign, pgg-verify-region, pgg-verify):
9555 * recentf.el (recentf-mode):
9556 * savehist.el (savehist-mode, savehist-save):
9557 * shadowfile.el (shadow-copy-files):
9558 * simple.el (kill-ring-save, next-line, previous-line)
9559 (normal-erase-is-backspace-mode):
9560 * strokes.el (strokes-update-window-configuration)
9561 (strokes-load-user-strokes, strokes-prompt-user-save-strokes)
9562 (strokes-xpm-for-stroke):
9563 * time.el (emacs-uptime, emacs-init-time):
9564 * tutorial.el (tutorial--describe-nonstandard-key)
9565 (tutorial--detailed-help):
9566 * type-break.el (type-break-mode)
9567 (type-break-mode-line-message-mode, type-break-query-mode)
9568 (type-break-guesstimate-keystroke-threshold):
9569 * vc.el (vc-version-diff, vc-diff, vc-root-diff):
9570 * version.el (emacs-version):
9571 * vt-control.el (vt-keypad-on, vt-keypad-off, vt-numlock):
9572 * winner.el (winner-mode):
9573 * calendar/timeclock.el (timeclock-in, timeclock-out)
9574 (timeclock-status-string, timeclock-change)
9575 (timeclock-workday-remaining-string)
9576 (timeclock-workday-elapsed-string)
9577 (timeclock-when-to-leave-string):
9578 * calendar/todo-mode.el (todo-add-category):
9579 * emacs-lisp/advice.el (ad-enable-regexp, ad-disable-regexp):
9580 * emacs-lisp/autoload.el (update-file-autoloads):
9581 * emacs-lisp/checkdoc.el (checkdoc-current-buffer)
9582 (checkdoc-start, checkdoc-continue, checkdoc-rogue-spaces)
9583 (checkdoc-message-text, checkdoc-defun):
9584 * emacs-lisp/debug.el (debugger-list-functions):
9585 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
9586 * emacs-lisp/eieio-opt.el (eieio-describe-class)
9587 (eieio-describe-generic):
9588 * emacs-lisp/lisp-mnt.el (lm-synopsis):
9589 * emacs-lisp/shadow.el (list-load-path-shadows):
9590 * emulation/cua-base.el (cua-mode):
9591 * emulation/edt.el (edt-set-scroll-margins):
9592 * emulation/tpu-edt.el (tpu-toggle-newline-and-indent)
9593 (tpu-toggle-regexp, tpu-toggle-search-direction)
9594 (tpu-toggle-rectangle, tpu-toggle-control-keys):
9595 * emulation/tpu-extras.el (tpu-set-scroll-margins):
9596 * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
9597 (viper-set-parsing-style-toggling-macro)
9598 (viper-set-emacs-state-searchstyle-macros):
9599 * emulation/viper.el (viper-set-hooks):
9600 * eshell/esh-mode.el (eshell-truncate-buffer):
9601 * international/mule-cmds.el (prefer-coding-system)
9602 (describe-input-method, describe-language-environment):
9603 * international/mule-diag.el (list-character-sets)
9604 (describe-character-set, describe-coding-system)
9605 (describe-fontset, list-fontsets, list-input-methods):
9606 * mail/sendmail.el (mail-signature):
9607 * net/ange-ftp.el (ange-ftp-copy-file):
9608 * net/browse-url.el (browse-url):
9609 * net/eudc.el (eudc-set-server, eudc-get-attribute-list):
9610 * net/quickurl.el (quickurl-add-url):
9611 * net/rcirc.el (names, topic):
9612 * net/xesam.el (xesam-mode):
9613 * play/5x5.el (5x5-new-game):
9614 * play/yow.el (apropos-zippy):
9615 * progmodes/ada-mode.el (ada-mode-version):
9616 * progmodes/f90.el (f90-beginning-of-subprogram, f90-end-of-subprogram)
9617 (f90-end-of-block)
9618 (f90-beginning-of-block):
9619 * progmodes/fortran.el (fortran-end-of-block)
9620 (fortran-beginning-of-block):
9621 * progmodes/js.el (js-syntactic-context, js-gc, js-eval):
9622 * progmodes/python.el (python-describe-symbol, python-shell):
9623 * term/ns-win.el (ns-print-buffer):
9624 * textmodes/bibtex.el (bibtex-end-of-entry, bibtex-url):
9625 * textmodes/flyspell.el (flyspell-mode-on):
9626 * textmodes/page-ext.el (set-page-delimiter, pages-directory)
9627 (pages-directory-for-addresses):
9628 * textmodes/table.el (table-recognize-cell)
9629 (table-query-dimension, table-generate-source)
9630 (table-insert-sequence, table--warn-incompatibility):
9631 * textmodes/tex-mode.el (tex-validate-buffer):
9632 * textmodes/texinfmt.el (texinfmt-version)
9633 (texinfo-format-buffer):
9634 Use `called-interactively-p' instead of `interactive-p'.
9635
9636 2009-10-02 Juanma Barranquero <lekktu@gmail.com>
9637
9638 * image-mode.el (image-toggle-display):
9639 * emacs-lisp/elp.el (elp-instrument-function):
9640 * emacs-lisp/advice.el (ad-make-advised-definition):
9641 * emacs-lisp/easy-mmode.el (define-minor-mode):
9642 * net/browse-url.el (browse-url-maybe-new-window):
9643 * progmodes/sh-script.el (sh-learn-buffer-indent):
9644 Pass new argument 'any to `called-interactively-p'.
9645
9646 2009-10-01 Juanma Barranquero <lekktu@gmail.com>
9647
9648 * international/uni-bidi.el:
9649 * international/uni-category.el:
9650 * international/uni-combining.el:
9651 * international/uni-comment.el:
9652 * international/uni-decimal.el:
9653 * international/uni-decomposition.el:
9654 * international/uni-digit.el:
9655 * international/uni-lowercase.el:
9656 * international/uni-mirrored.el:
9657 * international/uni-name.el:
9658 * international/uni-numeric.el:
9659 * international/uni-old-name.el:
9660 * international/uni-titlecase.el:
9661 * international/uni-uppercase.el:
9662 Regenerate from Unicode 5.2.0 data.
9663
9664 2009-10-01 Glenn Morris <rgm@gnu.org>
9665
9666 * Makefile.in (ELCFILES): Regenerate.
9667
9668 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
9669
9670 * subr.el (interactive-p): Mark obsolete.
9671 (called-interactively-p): Make the optional-ness of `kind' obsolete.
9672 * emacs-lisp/bytecomp.el (byte-compile-fdefinition): Make it obey
9673 advertised-signature-table for subroutines as well.
9674
9675 * emacs-lisp/byte-run.el (advertised-signature-table): New var.
9676 (set-advertised-calling-convention): New function.
9677 (make-obsolete, define-obsolete-function-alias)
9678 (make-obsolete-variable, define-obsolete-variable-alias):
9679 Make the optional-ness of `when' obsolete.
9680 (define-obsolete-face-alias): Make `when' non-optional.
9681 * help-fns.el (help-function-arglist):
9682 * emacs-lisp/bytecomp.el (byte-compile-fdefinition):
9683 Use advertised-signature-table.
9684
9685 2009-10-01 Michael Albinus <michael.albinus@gmx.de>
9686
9687 * files.el (delete-directory): New defun. The original function
9688 in fileio.c has been renamed to `delete-directory-internal'.
9689
9690 * dired.el (dired-delete-file): Call `delete-directory' with
9691 RECURSIVE parameter.
9692
9693 * net/ange-ftp.el (ange-ftp-delete-directory): Add optional
9694 parameter RECURSIVE. Implementation is missing.
9695
9696 * net/tramp.el (tramp-handle-make-directory): Flush upper
9697 directory's file properties.
9698 (tramp-handle-delete-directory): Handle optional parameter RECURSIVE.
9699 (tramp-handle-dired-recursive-delete-directory): Flush directory
9700 properties after the remove command only.
9701
9702 * net/tramp-fish.el (tramp-fish-handle-delete-directory):
9703 Handle optional parameter RECURSIVE.
9704
9705 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory):
9706 Handle optional parameter RECURSIVE.
9707
9708 * net/tramp-smb.el (tramp-smb-errors): Add error message for
9709 connection timeout.
9710 (tramp-smb-handle-delete-directory): Handle optional parameter
9711 RECURSIVE.
9712
9713 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
9714
9715 * emacs-lisp/bytecomp.el (byte-compile-defmacro-declaration): New fun.
9716 (byte-compile-file-form-defmumble, byte-compile-defmacro): Use it.
9717 (byte-compile-defmacro): Use backquotes.
9718
9719 * files.el (cd-absolute): Don't abbreviate-file-name (bug#4599).
9720
9721 * vc-dispatcher.el (vc-resynch-window): Don't revert a buffer which
9722 has no associated file.
9723 (vc-resynch-buffer): Use vc-dir-buffers.
9724
9725 2009-10-01 Glenn Morris <rgm@gnu.org>
9726
9727 * emacs-lisp/chart.el (chart-zap-chars, chart-bar-quickie)
9728 (chart-file-count):
9729 * emacs-lisp/eieio-comp.el (byte-compile-defmethod-param-convert):
9730 * emacs-lisp/eieio-datadebug.el (data-debug-insert-object-button):
9731 * emacs-lisp/eieio-opt.el (eieio-describe-class):
9732 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-create):
9733 * emacs-lisp/eieio.el (defclass, eieio-defclass-autoload)
9734 (eieio-copy-parents-into-subclass, make-instance, class-children)
9735 (eieio-generic-form):
9736 * cedet/cedet-files.el (cedet-directory-name-to-file-name):
9737 * cedet/cedet-idutils.el (cedet-idutils-search)
9738 (cedet-idutils-expand-filename, cedet-idutils-support-for-directory)
9739 (cedet-idutils-version-check):
9740 * cedet/cedet.el (cedet-version):
9741 * cedet/data-debug.el (data-debug-insert-overlay-button)
9742 (data-debug-insert-overlay-list-button)
9743 (data-debug-insert-buffer-button)
9744 (data-debug-insert-buffer-list-button)
9745 (data-debug-insert-process-button, data-debug-insert-ring-button)
9746 (data-debug-insert-widget, data-debug-insert-stuff-list-button)
9747 (data-debug-insert-stuff-vector-button)
9748 (data-debug-insert-symbol-button, data-debug-insert-string)
9749 (data-debug-insert-number, data-debug-insert-lambda-expression)
9750 (data-debug-insert-nil, data-debug-insert-simple-thing)
9751 (data-debug-insert-custom, data-debug-edebug-expr):
9752 * cedet/ede.el (ede-auto-add-method, ede-project-class-files)
9753 (global-ede-mode-map, ede-new, ede-debug-target)
9754 (ede-customize-current-target, ede-buffers, ede-map-buffers, ede-set):
9755 * cedet/semantic.el (semantic-minimum-working-buffer-size)
9756 (semantic-fetch-tags, semantic-submode-list)
9757 (semantic-default-submodes):
9758 * cedet/ede/source.el (ede-source-match):
9759 * cedet/ede/project-am.el (project-am-type-alist, project-add-file)
9760 (project-am-package-info):
9761 * cedet/ede/proj.el (ede-proj-target, project-new-target):
9762 * cedet/ede/proj-elisp.el (ede-proj-tweak-autoconf):
9763 * cedet/ede/proj-comp.el (ede-current-build-list):
9764 * cedet/ede/makefile-edit.el (makefile-move-to-macro):
9765 * cedet/ede/files.el (ede-toplevel-project-or-nil):
9766 * cedet/ede/cpp-root.el (initialize-instance):
9767 * cedet/ede/autoconf-edit.el (autoconf-find-last-macro)
9768 (autoconf-parameter-strip, autoconf-insert-new-macro):
9769 * cedet/semantic/wisent.el (wisent-lex-eoi):
9770 * cedet/semantic/util-modes.el (global-semantic-show-parser-state-mode)
9771 (semantic-show-parser-state-mode):
9772 * cedet/semantic/texi.el (semantic-texi-environment-regexp):
9773 * cedet/semantic/tag.el (semantic-tag-new-variable)
9774 (semantic-tag-class, semantic-tag-new-variable, semantic-tag-copy)
9775 (semantic--tag-deep-copy-attributes, semantic--tag-deep-copy-value)
9776 (semantic--tag-deep-copy-tag-list)
9777 (semantic-tag-components-with-overlays-default):
9778 * cedet/semantic/symref.el (semantic-symref-find-text):
9779 * cedet/semantic/senator.el (senator-yank-tag)
9780 (senator-transpose-tags-up):
9781 * cedet/semantic/scope.el (semantic-analyze-scoped-tags-default)
9782 (semantic-analyze-scoped-inherited-tags, semantic-scope-find):
9783 * cedet/semantic/sb.el (semantic-sb-autoexpand-length):
9784 * cedet/semantic/lex.el (semantic-lex-comment-regex)
9785 (semantic-lex-maximum-depth, define-lex, semantic-lex-token)
9786 (semantic-lex-unterminated-syntax-protection, define-lex-analyzer):
9787 * cedet/semantic/lex-spp.el
9788 (semantic-lex-spp-dynamic-macro-symbol-obarray-stack)
9789 (semantic-lex-spp-symbol, semantic-lex-spp-one-token-to-txt):
9790 * cedet/semantic/idle.el
9791 (semantic-idle-summary-current-symbol-info-brutish)
9792 (semantic-idle-summary-current-symbol-info-default):
9793 * cedet/semantic/grammar.el (semantic-grammar-recreate-package)
9794 (semantic--grammar-macro-compl-dict):
9795 * cedet/semantic/grammar-wy.el (semantic-grammar-wy--parse-table):
9796 * cedet/semantic/format.el (semantic-format-tag-custom-list)
9797 (semantic-format-tag-canonical-name-default):
9798 * cedet/semantic/find.el (semantic-find-tag-by-overlay-in-region)
9799 (semantic-find-tags-for-completion)
9800 (semantic-find-tags-by-scope-protection-default)
9801 (semantic-deep-find-tags-for-completion):
9802 * cedet/semantic/edit.el
9803 (semantic-edits-incremental-reparse-failed-hook)
9804 (semantic-edits-verbose-flag, semantic-edits-assert-valid-region)
9805 (semantic-edits-splice-remove, semantic-edits-splice-replace):
9806 * cedet/semantic/doc.el (semantic-documentation-comment-preceeding-tag):
9807 * cedet/semantic/dep.el (semantic-dependency-include-path):
9808 * cedet/semantic/db.el (semanticdb-default-find-index-class)
9809 (semanticdb-match-any-mode, semanticdb-with-match-any-mode)
9810 (semanticdb-project-roots):
9811 * cedet/semantic/db-find.el (semanticdb-implied-include-tags)
9812 (semanticdb-find-adebug-insert-scanned-tag-cons)
9813 (semanticdb-find-log-buffer-name, semanticdb-find-result-mapc)
9814 (semanticdb-brute-deep-find-tags-for-completion):
9815 * cedet/semantic/db-ebrowse.el (semanticdb-ebrowse-add-tree-to-table):
9816 * cedet/semantic/ctxt.el (semantic-beginning-of-context-default)
9817 (semantic-end-of-context-default)
9818 (semantic-ctxt-current-function-default)
9819 (semantic-ctxt-scoped-types-default):
9820 * cedet/semantic/complete.el (semantic-complete-read-tag-engine)
9821 (semantic-complete-inline-tag-engine)
9822 (semantic-complete-inline-custom-type)
9823 (semantic-complete-read-tag-analyzer):
9824 * cedet/semantic/chart.el (semantic-chart-tags-by-class)
9825 (semantic-chart-database-size):
9826 * cedet/semantic/analyze.el (semantic-analyze-current-symbol)
9827 (semantic-analyze-current-context):
9828 * cedet/semantic/symref/list.el (semantic-symref)
9829 (semantic-symref-hide-buffer, semantic-symref-symbol):
9830 * cedet/semantic/symref/grep.el (semantic-symref-grep-use-template):
9831 * cedet/semantic/symref/filter.el (semantic-symref-hits-in-region):
9832 * cedet/semantic/bovine/el.el (semantic-elisp-form-to-doc-string):
9833 * cedet/semantic/bovine/c.el (semantic-lex-c-preprocessor-symbol-map)
9834 (semantic-c-parse-token-hack-depth, semantic-c--template-name-1)
9835 (semantic-c-dereference-template):
9836 * cedet/semantic/analyze/refs.el (semantic--analyze-refs-full-lookup)
9837 (semantic--analyze-refs-full-lookup-with-parents)
9838 (semantic--analyze-refs-full-lookup-simple):
9839 * cedet/semantic/analyze/complete.el
9840 (semantic-analyze-possible-completions):
9841 * cedet/srecode/table.el (srecode-mode-table-new):
9842 * cedet/srecode/srt.el (srecode-read-variable-name):
9843 * cedet/srecode/srt-mode.el (srecode-macro-help, srecode-in-macro-p):
9844 * cedet/srecode/semantic.el (srecode-semantic-handle-:tag)
9845 (srecode-semantic-handle-:tagtype, srecode-semantic-insert-tag):
9846 * cedet/srecode/map.el (srecode-current-map):
9847 * cedet/srecode/insert.el (srecode-insert)
9848 (srecode-insert-variable-secondname-handler, srecode-insert-method)
9849 (srecode-template-inserter-point-override)
9850 (srecode-insert-include-lookup):
9851 * cedet/srecode/getset.el (srecode-auto-choose-class):
9852 * cedet/srecode/extract.el (srecode-inserter-extract):
9853 * cedet/srecode/document.el
9854 (srecode-document-autocomment-return-last-alist)
9855 (srecode-document-autocomment-param-type-alist)
9856 (srecode-document-insert-function-comment)
9857 (srecode-document-insert-variable-one-line-comment)
9858 (srecode-document-function-name-comment):
9859 * cedet/srecode/dictionary.el (srecode-create-dictionary)
9860 (srecode-compound-toString):
9861 * cedet/srecode/compile.el (srecode-flush-active-templates):
9862 * cedet/srecode/args.el (srecode-semantic-handle-:blank):
9863 Doc/message fixes.
9864
9865 * vc-cvs.el (vc-cvs-parse-entry): Be more careful with the
9866 match-data. (Bug#4555).
9867
9868 * cedet/semantic/bovine/gcc.el
9869 (semantic-c-reset-preprocessor-symbol-map): Fix declaration.
9870 (semantic-gcc-get-include-paths, semantic-gcc-setup-data): Doc fixes.
9871
9872 * emacs-lisp/check-declare.el (check-declare-scan): Read the declaration
9873 rather than parsing it as a regexp. This relaxes the layout
9874 requirements and makes errors easier to detect.
9875 (check-declare-verify): Check file is regular.
9876 (check-declare-directory): Doc fix.
9877 * subr.el (declare-function): Doc fix.
9878
9879 * ibuffer.el (ibuffer-format-qualifier):
9880 * isearch.el (hi-lock-regexp-okay):
9881 * calc/calc.el (math-zerop):
9882 * mail/uce.el (rmail-msgbeg, rmail-msgend):
9883 * term/w32-win.el (setup-default-fontset, set-fontset-font):
9884 Remove unused declarations.
9885
9886 2009-10-01 Juanma Barranquero <lekktu@gmail.com>
9887
9888 * cedet/semantic/wisent/javat-wy.el
9889 (wisent-java-tags-wy--keyword-table): Use \000 instead of literal ^@.
9890
9891 2009-09-30 Juanma Barranquero <lekktu@gmail.com>
9892
9893 * cedet/srecode/expandproto.el: Fix provide statement.
9894
9895 2009-09-30 Eric Ludlam <zappo@gnu.org>
9896
9897 * emacs-lisp/eieio.el (boolean-p): Delete.
9898
9899 2009-09-30 Sascha Wilde <wilde@sha-bang.de>
9900
9901 * cedet/ede/srecode.el: Fix provide statement.
9902
9903 2009-09-30 Glenn Morris <rgm@gnu.org>
9904
9905 * cedet/ede/proj.el (ede-proj-target-makefile-miscelaneous):
9906 * cedet/ede/proj-aux.el (ede-aux-source):
9907 * cedet/ede/proj-misc.el (ede-proj-target-makefile-miscelaneous)
9908 (ede-misc-source):
9909 * cedet/semantic/mru-bookmark.el (semantic-mrub-completing-read)
9910 (semantic-mrub-switch-tags): Fix doc typos.
9911
9912 * cedet/semantic/db-global.el (data-debug-new-buffer)
9913 (data-debug-insert-thing): Remove unneeded declarations (one broken).
9914 (semanticdb-enable-gnu-global-databases): Fix prompt typo.
9915
9916 * cedet/semantic/analyze/fcn.el (semantic-scope-find): Fix declaration.
9917
9918 * cedet/semantic/bovine/gcc.el (semantic-gcc-setup): Replace runtime
9919 use of CL function `remove-if-not'.
9920
9921 * emacs-lisp/authors.el (authors-ignored-files): Add "js2-mode.el".
9922
9923 * emacs-lisp/elint.el (elint-init-form): Report declarations where the
9924 filename is not a string.
9925
9926 2009-09-29 Chong Yidong <cyd@stupidchicken.com>
9927
9928 * files.el (safe-local-eval-forms): Fix typo.
9929
9930 2009-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
9931
9932 * vc-hooks.el (vc-dir-buffers): New var.
9933 (vc-state-refresh): New function.
9934 (vc-state): Use it.
9935 (vc-after-save): Always ask the backend to recompute the new state.
9936 Always call vc-dir if necessary, using vc-dir-buffers.
9937 * vc-dir.el (vc-dir-prepare-status-buffer, vc-dir-resynch-file):
9938 Use vc-dir-buffers.
9939 (vc-dir-mode): Use vc-dir-buffers rather than after-save-hook.
9940 (vc-dir-prepare-status-buffer, vc-dir-update)
9941 (vc-dir-resync-directory-files, vc-dir-resynch-file, vc-dir-mode):
9942 Don't call expand-file-name on default-directory.
9943
9944 2009-09-29 Juanma Barranquero <lekktu@gmail.com>
9945
9946 * speedbar.el (speedbar-item-delete):
9947 * calc/calc-prog.el (calc-kbd-if):
9948 * language/hanja-util.el (hanja-init-load): Fix typos in messages.
9949
9950 * epa.el (epa-key-list-mode-map):
9951 * hi-lock.el (hi-lock-menu): Fix typos in menus.
9952
9953 * progmodes/hideshow.el (hs-allow-nesting): Reflow docstring.
9954 (hs-show-hook): Fix typo in docstring.
9955
9956 2009-09-29 Glenn Morris <rgm@gnu.org>
9957
9958 * cedet/semantic/symref/idutils.el:
9959 * cedet/semantic/symref/list.el: Relicense under GPLv3+.
9960
9961 * cedet/ede/srecode.el (srecode-resolve-arguments): Fix declaration.
9962
9963 * cedet/semantic/complete.el (semantic-displayor-focus-abstract-child-p):
9964 * cedet/semantic/tag-file.el (semanticdb-table-child-p):
9965 * cedet/srecode/compile.el (srecode-template-inserter-newline-child-p):
9966 Mark declarations not understood by check-declare.
9967
9968 * emacs-lisp/check-declare.el (check-declare-locate): Remove pointless
9969 file-name-nondirectory call preventing location of cedet files.
9970 (check-declare-verify): Use literal search rather than re-search.
9971 Add basic defmethod and defclass, and define-overloadable-function.
9972
9973 * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
9974 Use tramp-compat-file-attributes rather than nonexistent
9975 tramp-compat-handle-file-attributes.
9976
9977 * Makefile.in (lisptagsfiles4): New.
9978 (AUTOGENEL): Add cedet loaddefs files.
9979 (TAGS, TAGS-LISP): Use $lisptagsfiles4.
9980 (update-elclist, compile-always, backup-compiled-files)
9981 (bootstrap-clean): Add yet another directory level.
9982 (update-elclist): Use LC_COLLATE rather than COLLATE.
9983 (ELCFILES): Update, via `make update-elclist'.
9984
9985 2009-09-29 Juanma Barranquero <lekktu@gmail.com>
9986
9987 * makefile.w32-in (WINS_CEDET, WINS_BASIC, WINS_SUBDIR): New macros.
9988 (WINS_ALMOST): Set from WINS_BASIC and WINS_CEDET.
9989 (update-subdirs-CMD): Use WINS_SUBDIR, not WINS_ALMOST.
9990
9991 2009-09-28 Andreas Schwab <schwab@linux-m68k.org>
9992
9993 * Makefile.in (lisptagsfiles3): Define.
9994 (TAGS, TAGS-LISP): Use it.
9995 (update-elclist): Add third directory level to look for elc files.
9996 (compile-always): Likewise.
9997 (backup-compiled-files): Likewise.
9998 (bootstrap-clean): Likewise.
9999 (ELCFILES): Update.
10000
10001 2009-09-28 Chong Yidong <cyd@stupidchicken.com>
10002
10003 * Makefile.in (ELCFILES): Add CEDET files.
10004
10005 2009-09-28 Eric Ludlam <zappo@gnu.org>
10006
10007 CEDET (development tools) package merged.
10008
10009 * cedet/*.el:
10010 * cedet/ede/*.el:
10011 * cedet/semantic/*.el:
10012 * cedet/srecode/*.el: New files.
10013
10014 2009-09-28 Michael Albinus <michael.albinus@gmx.de>
10015
10016 * Makefile.in (ELCFILES): Add net/tramp-imap.elc.
10017
10018 * net/tramp.el (top): Require tramp-imap.
10019
10020 * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
10021 Use `tramp-compat-handle-file-attributes'.
10022
10023 2009-09-28 Teodor Zlatanov <tzz@lifelogs.com>
10024
10025 * net/tramp-imap.el: New package.
10026
10027 2009-09-28 Eric Ludlam <zappo@gnu.org>
10028
10029 * emacs-lisp/chart.el:
10030 * emacs-lisp/eieio-base.el:
10031 * emacs-lisp/eieio-comp.el:
10032 * emacs-lisp/eieio-custom.el:
10033 * emacs-lisp/eieio-datadebug.el:
10034 * emacs-lisp/eieio-opt.el:
10035 * emacs-lisp/eieio-speedbar.el:
10036 * emacs-lisp/eieio.el: New files.
10037
10038 * cedet/cedet-cscope.el:
10039 * cedet/cedet-files.el:
10040 * cedet/cedet-global.el:
10041 * cedet/cedet-idutils.el:
10042 * cedet/data-debug.el:
10043 * cedet/inversion.el:
10044 * cedet/mode-local.el:
10045 * cedet/pulse.el: New files.
10046
10047 2009-09-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
10048
10049 * whitespace.el (whitespace-trailing-regexp)
10050 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
10051 Fix doc string.
10052
10053 2009-09-27 Chong Yidong <cyd@stupidchicken.com>
10054
10055 * menu-bar.el: Remove menu-bar-ediff-misc-menu from the Tools
10056 menu.
10057
10058 * ediff-hook.el: Move menu-bar-ediff-misc-menu into
10059 menu-bar-ediff-menu.
10060
10061 * emacs-lisp/lisp-mode.el: Add doc-string-elt property to
10062 define-overloadable-function.
10063
10064 * progmodes/autoconf.el: Provide autoconf as well, so that this
10065 file can be `require'd.
10066
10067 * emacs-lisp/cl-macs.el (deftype): Add to cl-loaddefs.
10068
10069 * emacs-lisp/autoload.el (generated-autoload-feature)
10070 (generated-autoload-load-name): New vars.
10071 (autoload-rubric, autoload-generate-file-autoloads): Use them.
10072 (make-autoload): Recognize define-overloadable-function and
10073 defclass forms (for EIEIO).
10074
10075 * Makefile.in (update-subdirs): Exclude cedet directory.
10076
10077 2009-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
10078
10079 * term/ns-win.el: Don't set the region face background. (Bug#4381)
10080
10081 * faces.el: Default light-background background for region face to
10082 ns_selection_color under NS.
10083
10084 2009-09-27 Teodor Zlatanov <tzz@lifelogs.com>
10085
10086 * net/imap-hash.el: New library, see NEWS.
10087
10088 * Makefile.in (ELCFILES): Add imap-hash.el.
10089
10090 2009-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
10091
10092 * help.el (help-for-help-internal): Don't purecopy the text (bug#4560).
10093 * isearch.el (isearch-help-for-help-internal): Purecopy the second arg.
10094 * help-macro.el (make-help-screen): Avoid using an ambiguous function
10095 definition where the docstring could be taken for the return value.
10096
10097 2009-09-26 Glenn Morris <rgm@gnu.org>
10098
10099 * mail/rmailmm.el (rmail-mime-show-images, rmail-mime-bulk-handler):
10100 Add option to only show images below a certain size.
10101 (rmail-mime-multipart-handler): Remove unnecessary save-match-data and
10102 save-excursion calls.
10103
10104 2009-09-26 Eli Zaretskii <eliz@gnu.org>
10105
10106 * makefile.w32-in (WINS_ALMOST): Add cedet (with its
10107 subdirectories) and eieio.
10108
10109 2009-09-26 Alan Mackenzie <acm@muc.de>
10110
10111 * progmodes/cc-engine.el (c-beginning-of-statement-1): Correct
10112 buggy bracketing. (Bug#4289)
10113
10114 * progmodes/cc-langs.el (c-nonlabel-token-key): Allow quoted
10115 character constants (as case labels). (Bug#4289)
10116
10117 2009-09-25 Juri Linkov <juri@jurta.org>
10118
10119 * files.el (safe-local-eval-forms): Allow time-stamp in
10120 before-save-hook (Bug#4554).
10121
10122 2009-09-25 Drew Adams <drew.adams@oracle.com>
10123
10124 * menu-bar.el (list-buffers-directory): Doc fix.
10125
10126 2009-09-25 Stefan Monnier <monnier@iro.umontreal.ca>
10127
10128 * log-edit.el (log-edit-changelog-entries): Avoid inf-loops.
10129 Try and avoid copying twice the same paragraph.
10130 (log-edit-changelog-paragraph, log-edit-changelog-subparagraph):
10131 Remove save-excursion.
10132 (log-edit-changelog-entry): Do it here instead.
10133
10134 2009-09-25 Juanma Barranquero <lekktu@gmail.com>
10135
10136 * bs.el (bs--get-file-name): Use `list-buffers-directory'
10137 when available, instead of hardcoding mode names. Doc fix.
10138
10139 * menu-bar.el (list-buffers-directory): Add docstring.
10140 Make automatically buffer-local.
10141
10142 * dired.el (dired-mode):
10143 * files.el (cd-absolute):
10144 * pcvs.el (cvs-temp-buffer):
10145 * pcvs-util.el (cvs-get-buffer-create):
10146 * shell.el (shell-mode):
10147 * vc-dir.el (vc-dir-mode):
10148 Don't make `list-buffers-directory' buffer local.
10149
10150 2009-09-25 Devon Sean McCullough <emacs-hacker@Jovi.Net>
10151
10152 * comint.el (comint-exec, comint-run, make-comint):
10153 Doc fixes (Bug#4542).
10154
10155 2009-09-25 Glenn Morris <rgm@gnu.org>
10156
10157 * mail/rmailmm.el (rmail-mime): New custom group.
10158 Move all defcustoms in this file into this group.
10159 (rmail-mime-media-type-handlers-alist): Revert previous change.
10160 (rmail-mime-show-images): New option.
10161 (rmail-mime-total-number-of-bulk-attachments): Remove variable and all
10162 references to it, since it wasn't actually used for anything.
10163 (rmail-mime-insert-image): New function.
10164 (rmail-mime-image): Use rmail-mime-insert-image.
10165 (rmail-mime-bulk-handler): Remove optional `image' argument, instead
10166 obey the value of `rmail-mime-show-images' option. Print the size of
10167 attachments.
10168
10169 2009-09-25 David Engster <deng@randomsample.de>
10170
10171 * progmodes/hideshow.el (hs-show-block): Run `hs-show-hook'. (Bug#4548)
10172
10173 2009-09-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
10174
10175 * whitespace.el: Does not highlight trailing spaces While point is
10176 at end of line. Does not highligt spaces at beginning of buffer
10177 while point is at beginning of buffer. Does not highlight spaces
10178 at end of buffer while point is at end of buffer. (Bug#4177)
10179 New version 12.0.
10180 (whitespace-display-mappings): Adjust initialization.
10181 (whitespace-point, whitespace-font-lock-refontify): New vars.
10182 (whitespace-color-on, whitespace-color-off): Adjust code.
10183 (whitespace-trailing-regexp, whitespace-empty-at-bob-regexp)
10184 (whitespace-empty-at-eob-regexp, whitespace-space-regexp)
10185 (whitespace-tab-regexp, whitespace-post-command-hook): New funs.
10186
10187 2009-09-24 Chong Yidong <cyd@stupidchicken.com>
10188
10189 * nxml/nxml-mode.el: Alias xml-mode to nxml-mode.
10190
10191 * textmodes/sgml-mode.el: Remove xml-mode alias.
10192
10193 * files.el (auto-mode-alist, conf-mode-maybe)
10194 (magic-fallback-mode-alist): Revert 2009-09-18 and 2009-09-21 changes.
10195
10196 2009-09-24 Alan Mackenzie <acm@muc.de>
10197
10198 * progmodes/cc-cmds.el (c-scan-conditionals): A new function like
10199 c-forward-conditionals, but it doesn't move point and doesn't set
10200 the mark.
10201 (c-up-conditional, c-up-conditional-with-else, c-down-conditional)
10202 (c-down-conditional-with-else, c-backward-conditional)
10203 (c-forward-conditional): Refactor to use c-scan-conditionals.
10204
10205 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
10206
10207 * help-fns.el (help-downcase-arguments): New option, defaulting to nil.
10208 (help-default-arg-highlight): Remove.
10209 (help-highlight-arg): New function.
10210 (help-do-arg-highlight): Use it.
10211 Suggested by Drew Adams <drew.adams@oracle.com>. (Bug#4510, bug#4520)
10212
10213 2009-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
10214
10215 * term.el (term-set-scroll-region, term-handle-ansi-escape):
10216 Undo last change, which didn't fix the problem and introduced others.
10217
10218 2009-09-24 Nick Roberts <nickrob@snap.net.nz>
10219
10220 * progmodes/gdb-mi.el: Don't require speedbar.
10221 (gdb-jsonify-buffer): Handle case where "=" is part of value string.
10222
10223 2009-09-24 Glenn Morris <rgm@gnu.org>
10224
10225 * calendar/diary-lib.el (diary-fancy-display): Always run the hook.
10226
10227 * term/ns-win.el (ns-reg-to-script): Define for compiler.
10228
10229 * mail/rmailmm.el (rmail-mime-multipart-handler): Accept the case where
10230 there is no newline after the final mime boundary. (Bug#4539)
10231 Move markers on insertion so that any buttons inserted don't end up in
10232 the next part of a multipart message.
10233 (rmail-mime-media-type-handlers-alist): Doc fix. Add image handler.
10234 (rmail-mime-bulk-handler): Optionally handle images.
10235 (rmail-mime-image): New button action.
10236 (rmail-mime-image-handler): New function.
10237 (rmail-mime-mode): New mode.
10238 (rmail-mime): Doc fix. Use rmail-mime-mode (for font-lock).
10239
10240 2009-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
10241
10242 * minibuffer.el (minibuffer-force-complete): Cycle the list, rather
10243 than just dropping elements from it (bug#4504).
10244
10245 * term.el (term-set-scroll-region): Don't move cursor any more.
10246 (term-handle-ansi-escape): Call term-goto here instead.
10247 Suggested by Ivan Kanis <apple@kanis.eu>.
10248
10249 * term.el: Require CL.
10250 (term-ansi-reset): New function.
10251 (term-mode, term-emulate-terminal, term-handle-colors-array): Use it.
10252 (term-handle-colors-array): Simplify.
10253
10254 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
10255
10256 * allout.el (allout-overlay-interior-modification-handler)
10257 (allout-obtain-passphrase):
10258 * epa-file.el (epa-file-write-region):
10259 * ps-print.el (ps-begin-job):
10260 * vc-hooks.el (vc-toggle-read-only):
10261 * vc-rcs.el (vc-rcs-rollback):
10262 * vc-sccs.el (vc-sccs-rollback):
10263 * vc.el (vc-deduce-fileset, vc-next-action, vc-register-with)
10264 (vc-version-diff, vc-revert, vc-rollback):
10265 * wdired.el (wdired-check-kill-buffer):
10266 * emacs-lisp/authors.el (authors):
10267 * net/socks.el (socks-open-connection):
10268 * net/zeroconf.el (zeroconf-service-add-hook):
10269 * obsolete/vc-mcvs.el (vc-mcvs-register):
10270 * progmodes/gdb-mi.el (def-gdb-thread-buffer-gud-command)
10271 (gdb-select-frame):
10272 * progmodes/grep.el (lgrep, rgrep):
10273 * progmodes/idlw-help.el (idlwave-help-check-locations)
10274 (idlwave-help-html-link, idlwave-help-assistant-open-link):
10275 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
10276 * textmodes/reftex-toc.el (reftex-toc-promote-prepare)
10277 (reftex-toc-rename-label): Fix typos in error messages.
10278
10279 * dired-aux.el (dired-do-shell-command): Reflow docstring.
10280 (dired-copy-how-to-fn): Doc fix.
10281 (dired-files-attributes, dired-read-shell-command):
10282 Fix typos in docstrings.
10283
10284 * dired-x.el (dired-enable-local-variables, dired-filename-at-point)
10285 (dired-x-find-file-other-window): Reflow docstrings.
10286 (dired-omit-marker-char, dired-read-shell-command)
10287 (dired-x-submit-report): Fix typos in docstrings.
10288
10289 * shell.el (shell-mode-hook):
10290 * view.el (View-scroll-line-forward):
10291 * progmodes/inf-lisp.el (inferior-lisp-mode-hook):
10292 Fix typos in docstrings.
10293
10294 * net/dig.el (dig-invoke): Fix typo in docstring.
10295 (query-dig): Reflow docstring.
10296
10297 * progmodes/idlwave.el (idlwave-create-user-catalog-file)
10298 (idlwave-quoted, idlwave-rinfo-max-source-lines): Doc fixes.
10299 (idlwave-abbrev-move, idlwave-auto-routine-info-updates)
10300 (idlwave-begin-block-reg, idlwave-begin-unit-reg)
10301 (idlwave-beginning-of-subprogram, idlwave-block-jump-out)
10302 (idlwave-block-match-regexp, idlwave-calculate-paren-indent)
10303 (idlwave-check-abbrev, idlwave-class-file-or-buffer)
10304 (idlwave-class-found-in, idlwave-complete, idlwave-complete-in-buffer)
10305 (idlwave-completion-map, idlwave-current-indent)
10306 (idlwave-custom-ampersand-surround, idlwave-customize)
10307 (idlwave-default-font-lock-items, idlwave-default-insert-timestamp)
10308 (idlwave-define-abbrev, idlwave-determine-class-special)
10309 (idlwave-do-action, idlwave-doc-header, idlwave-doc-modification)
10310 (idlwave-end-block-reg, idlwave-end-of-statement)
10311 (idlwave-end-of-statement0, idlwave-end-of-subprogram)
10312 (idlwave-end-unit-reg, idlwave-entry-find-keyword)
10313 (idlwave-explicit-class-listed, idlwave-file-header)
10314 (idlwave-fill-paragraph, idlwave-find-class-definition)
10315 (idlwave-fix-keywords, idlwave-hang-indent-regexp, idlwave-hard-tab)
10316 (idlwave-idlwave_routine_info-compiled, idlwave-in-comment)
10317 (idlwave-in-quote, idlwave-indent-action-table)
10318 (idlwave-indent-expand-table, idlwave-indent-line)
10319 (idlwave-indent-subprogram, idlwave-indent-to-open-paren)
10320 (idlwave-is-comment-line, idlwave-is-comment-or-empty-line)
10321 (idlwave-is-continuation-line, idlwave-is-pointer-dereference)
10322 (idlwave-kill-autoloaded-buffers, idlwave-lib-p, idlwave-look-at)
10323 (idlwave-make-tags, idlwave-mode, idlwave-mode-abbrev-table)
10324 (idlwave-mouse-active-rinfo, idlwave-newline, idlwave-no-change-comment)
10325 (idlwave-outlawed-buffers, idlwave-popup-select)
10326 (idlwave-previous-statement, idlwave-rescan-catalog-directories)
10327 (idlwave-routine-entry-compare, idlwave-routine-info.pro)
10328 (idlwave-scan-all-buffers-for-routine-info, idlwave-scan-class-info)
10329 (idlwave-shell-automatic-start, idlwave-shell-explicit-file-name)
10330 (idlwave-show-begin, idlwave-split-line, idlwave-split-link-target)
10331 (idlwave-statement-type, idlwave-struct-skip)
10332 (idlwave-substitute-link-target, idlwave-toggle-comment-region)
10333 (idlwave-update-current-buffer-info, idlwave-use-library-catalogs)
10334 (idlwave-what-module-find-class): Fix typos in docstrings.
10335 (idlwave-all-method-classes, idlwave-calc-hanging-indent)
10336 (idlwave-calculate-cont-indent, idlwave-expand-equal)
10337 (idlwave-find-module, idlwave-find-structure-definition)
10338 (idlwave-init-rinfo-when-idle-after, idlwave-insert-source-location)
10339 (idlwave-list-load-path-shadows, idlwave-next-statement)
10340 (idlwave-routine-entry-compare-twins, idlwave-routine-info)
10341 (idlwave-routines, idlwave-sintern-rinfo-list, idlwave-statement-match)
10342 (idlwave-template): Reflow docstrings.
10343
10344 * progmodes/idlw-shell.el (idlwave-shell-syntax-error): Doc fix.
10345 (idlwave-shell-batch-command, idlwave-shell-bp-alist)
10346 (idlwave-shell-bp-get, idlwave-shell-bp-overlays)
10347 (idlwave-shell-bp-query, idlwave-shell-break-here, idlwave-shell-buffer)
10348 (idlwave-shell-display-line, idlwave-shell-display-wframe)
10349 (idlwave-shell-electric-debug-mode, idlwave-shell-examine-select)
10350 (idlwave-shell-file-name-chars, idlwave-shell-filter-bp)
10351 (idlwave-shell-goto-frame, idlwave-shell-halt-messages-re)
10352 (idlwave-shell-highlighting-and-faces, idlwave-shell-idl-wframe)
10353 (idlwave-shell-mode-hook, idlwave-shell-mode-line-info)
10354 (idlwave-shell-mode-map, idlwave-shell-module-source-filter)
10355 (idlwave-shell-mouse-help, idlwave-shell-mouse-print)
10356 (idlwave-shell-pc-frame, idlwave-shell-pending-commands)
10357 (idlwave-shell-print, idlwave-shell-quit, idlwave-shell-redisplay)
10358 (idlwave-shell-scan-for-state, idlwave-shell-send-command)
10359 (idlwave-shell-sentinel-hook, idlwave-shell-separate-examine-output)
10360 (idlwave-shell-shell-command, idlwave-shell-sources-alist)
10361 (idlwave-shell-sources-bp, idlwave-shell-sources-filter)
10362 (idlwave-shell-step, idlwave-shell-use-breakpoint-glyph)
10363 (idlwave-toolbar-add-everywhere, idlwave-toolbar-toggle):
10364 Fix typos in docstrings.
10365 (idlwave-shell-bp, idlwave-shell-clear-current-bp)
10366 (idlwave-shell-hide-output, idlwave-shell-mode)
10367 (idlwave-shell-run-region, idlwave-shell-set-bp-in-module):
10368 Reflow docstrings.
10369
10370 * textmodes/bibtex.el (bibtex-sort-entry-class): Fix group name.
10371
10372 2009-09-24 Ivan Kanis <apple@kanis.eu>
10373
10374 * term.el (term-bold-attribute): New var.
10375 (term-handle-colors-array): Use it.
10376
10377 2009-09-23 Nick Roberts <nickrob@snap.net.nz>
10378
10379 * progmodes/gdb-mi.el (gdb-version): New variable.
10380 (gdb-non-stop-handler): Set gdb-version.
10381 (gdb-gud-context-command, gdb-current-context-command, gdb-stopped):
10382 Condition "--thread" option on gdb-version.
10383 (gdb-invalidate-threads): Remove unused argument.
10384
10385 2009-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
10386
10387 * textmodes/flyspell.el (sgml-mode-flyspell-verify): Pass limit args
10388 to looking-back to avoid ridiculous slow down in large files (bug#4511).
10389
10390 2009-09-23 Glenn Morris <rgm@gnu.org>
10391
10392 * mail/rmail.el (rmail-reply): Don't try to add a References header when
10393 replying to mail without References or Message-Id. (Bug#4525)
10394
10395 2009-09-23 Adrian Robert <Adrian.B.Robert@gmail.com>
10396
10397 * term/ns-win.el (ns-reg-to-script): New variable.
10398
10399 2009-09-23 Daiki Ueno <ueno@unixuser.org>
10400
10401 * epg.el (epg-wait-for-status): Preserve existing 'error results.
10402
10403 2009-09-22 Sam Steingold <sds@gnu.org>
10404
10405 * vc-hg.el (vc-hg-print-log): Fix shortlog arg passing.
10406 (vc-hg-outgoing, vc-hg-incoming): Bump okstatus in `vc-hg-command'
10407 to 1 because hg returns status 1 when nothing is found.
10408 Bind `vc-short-log' for the sake of `vc-hg-log-view-mode'.
10409
10410 2009-09-22 Stefan Monnier <monnier@iro.umontreal.ca>
10411
10412 * textmodes/fill.el: Convert to utf-8 encoding.
10413 (fill-french-nobreak-p): Remove redundant » and « inherited from our
10414 pre-unicode days.
10415
10416 * add-log.el (change-log-fill-forward-paragraph): New function.
10417 (change-log-mode): Use it so fill-region DTRT.
10418 Set fill-indent-according-to-mode here rather than in
10419 change-log-fill-paragraph.
10420 (change-log-fill-paragraph): Remove.
10421
10422 2009-09-22 Juanma Barranquero <lekktu@gmail.com>
10423
10424 * info.el (Info-try-follow-nearest-node): Use the URL extracted by
10425 `Info-get-token', instead of `browse-url-url-at-point'. (Bug#4508)
10426
10427 2009-09-22 Glenn Morris <rgm@gnu.org>
10428
10429 * calendar/calendar.el (calendar-mode-map): Make mouse-1 and 3 clicks on
10430 the scroll-bar scroll the calendar window rather than the buffer.
10431
10432 * calendar/cal-menu.el (cal-menu-scroll-menu): Add a sub-section with
10433 commands that move point (as opposed to scrolling).
10434
10435 * emulation/tpu-edt.el (tpu-copy-keyfile): Fix condition-case handler.
10436
10437 * emacs-lisp/elint.el (elint): New custom group.
10438 (elint-log-buffer): Make it a defcustom.
10439 (elint-scan-preloaded, elint-ignored-warnings)
10440 (elint-directory-skip-re): New options.
10441 (elint-builtin-variables): Doc fix.
10442 (elint-preloaded-env): New variable.
10443 (elint-unknown-builtin-args): Add an entry for encode-time.
10444 (elint-extra-errors): Make it a variable rather than a constant.
10445 (elint-preloaded-skip-re): New constant.
10446 (elint-directory): Skip files matching elint-directory-skip-re.
10447 (elint-features): New variable, local to linted buffers.
10448 (elint-update-env): Initialize elint-features. Possibly add
10449 elint-preloaded-env to the buffer's environment.
10450 (elint-get-top-forms): Bind elint-current-pos, for log messages.
10451 Skip quoted forms.
10452 (elint-init-form): New function, extracted from elint-init-env.
10453 Make non-list forms a warning rather than an error.
10454 Add the mode-map for define-derived-mode. Handle define-minor-mode,
10455 easy-menu-define, put that adds an error-condition, and provide.
10456 When requiring cl, also require cl-macs. Really require cl, to handle
10457 some cl macros. Store required libraries in the list elint-features,
10458 so as not to re-load them. Treat cc-require like require.
10459 (elint-init-env): Call elint-init-form to do the work.
10460 Handle eval-and-compile and such like.
10461 (elint-add-required-env): Do not clear messages.
10462 (elint-special-forms): Add handlers for function, defalias, if, when,
10463 unless, and, or.
10464 (elint-form): Add optional argument to ignore elint-special-forms,
10465 useful to prevent recursive calls from handlers. Doc fix.
10466 Respect elint-ignored-warnings.
10467 (elint-form): Respect elint-ignored-warnings.
10468 (elint-bound-variable, elint-bound-function): New variables.
10469 (elint-unbound-variable): Respect elint-bound-variable.
10470 (elint-get-args): Respect elint-bound-function.
10471 (elint-check-cond-form): Add some simple handling for (f)boundp and
10472 featurep tests.
10473 (elint-check-defalias-form): New handler.
10474 (elint-check-let-form): Make an empty let a warning rather than an
10475 error.
10476 (elint-check-setq-form): Make an empty setq a warning rather than an
10477 error. Respect elint-ignored-warnings.
10478 (elint-check-defvar-form): Accept null doc-strings.
10479 (elint-check-conditional-form): New handler. Does some simple-minded
10480 checking of featurep and (f)boundp tests.
10481 (elint-put-function-args): New function.
10482 (elint-initialize): Use elint-scan-doc-file rather than
10483 elint-find-builtin-variables. Use elint-put-function-args.
10484 Possibly scan preloaded-file-list.
10485 (elint-scan-doc-file): Rename from elint-find-builtin-variables and
10486 extend to handle functions as well.
10487
10488 2009-09-22 Lennart Borgman <lennart.borgman@gmail.com>
10489
10490 * linum.el (linum-delete-overlays, linum-update-window):
10491 Do not modify the right margin. (Bug#3971)
10492
10493 2009-09-21 Chong Yidong <cyd@stupidchicken.com>
10494
10495 * files.el (conf-mode-maybe, magic-fallback-mode-alist): Use
10496 nxml-mode instead of xml-mode.
10497
10498 2009-09-21 Kevin Ryde <user42@zip.com.au>
10499
10500 * net/dig.el: Add "Keywords: comm", as per net-utils.el. (Bug#4501)
10501
10502 2009-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
10503
10504 * net/dig.el (dig-mode): Use define-derived-mode.
10505
10506 2009-09-20 Dan Nicolaescu <dann@ics.uci.edu>
10507
10508 * vc-dispatcher.el (vc-do-command): Return the process object in
10509 the asynchronous case. Use when instead of if. Do not run
10510 vc-exec-after to display a message if not enabled. (Bug#4463)
10511
10512 * vc-git.el (vc-git-dir-extra-headers): Add keymap and mouse-face
10513 properties to the stash strings.
10514 (vc-git-stash-list): Return a list of strings.
10515 (vc-git-stash-get-at-point, vc-git-stash-delete-at-point)
10516 (vc-git-stash-show-at-point): New functions.
10517 (vc-git-stash-map): New keymap.
10518
10519 * register.el (ctl-x-r-map): Define the keys here instead of
10520 using autoload.
10521
10522 2009-09-20 Thierry Volpiatto <thierry.volpiatto@gmail.com> (tiny change)
10523
10524 * bookmark.el (bookmark-write-file): Avoid calling `pp' with large
10525 list, to workaround performance problem (bug#4485).
10526
10527 2009-09-20 Nick Roberts <nickrob@snap.net.nz>
10528
10529 * progmodes/gud.el (gud-sentinel): Revert indavertant change.
10530
10531 2009-09-20 Daiki Ueno <ueno@unixuser.org>
10532
10533 * epa-file.el (epa-file-cache-passphrase-for-symmetric-encryption):
10534 Document that this option is not recommended to use.
10535
10536 2009-09-19 Glenn Morris <rgm@gnu.org>
10537
10538 * calc/calc-graph.el (calc-graph-lookup): Avoid assignment to free
10539 variable `var'.
10540
10541 * calc/calc-alg.el (var):
10542 * calc/calcalg2.el (var): Define for compiler.
10543
10544 2009-09-19 Chong Yidong <cyd@stupidchicken.com>
10545
10546 * emacs-lisp/advice.el (ad-get-argument, ad-set-argument):
10547 Doc fix (Bug#3932).
10548
10549 * subr.el (baud-rate): Remove long-obsolete function (Bug#4372).
10550
10551 * time-stamp.el (time-stamp-month-dd-yyyy)
10552 (time-stamp-dd/mm/yyyy, time-stamp-mon-dd-yyyy)
10553 (time-stamp-dd-mon-yy, time-stamp-yy/mm/dd)
10554 (time-stamp-yyyy/mm/dd, time-stamp-yyyy-mm-dd)
10555 (time-stamp-yymmdd, time-stamp-hh:mm:ss, time-stamp-hhmm):
10556 Remove functions that have been obsolete since 1995 (Bug#4436).
10557
10558 * progmodes/sh-script.el (sh-learn-buffer-indent): Pop to the
10559 indent buffer only if called interactively (Bug#4452).
10560
10561 2009-09-19 Juanma Barranquero <lekktu@gmail.com>
10562 Eli Zaretskii <eliz@gnu.org>
10563
10564 This fixes bug#4197 (merged to bug#865, though not identical).
10565 * server.el (server-auth-dir): Add docstring note about FAT32.
10566 (server-ensure-safe-dir): Accept FAT32 directories as "safe",
10567 but warn against using them.
10568
10569 2009-09-19 Nick Roberts <nickrob@snap.net.nz>
10570
10571 * progmodes/gdb-mi.el (gdb-var-update-handler-1): Include case of
10572 older GDB where there is no has_more field.
10573
10574 2009-09-19 Glenn Morris <rgm@gnu.org>
10575
10576 * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
10577
10578 2009-09-18 Chong Yidong <cyd@stupidchicken.com>
10579
10580 * files.el (auto-mode-alist): Change default for XML files to nXML
10581 mode (Bug#4169).
10582
10583 2009-09-18 Juanma Barranquero <lekktu@gmail.com>
10584
10585 * server.el (server-ensure-safe-dir): Pass 'integer
10586 to `file-attributes', as suggested.
10587
10588 2009-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
10589
10590 * dired-aux.el (dired-query-alist): Remove spurious backslash.
10591 (dired-query): Use read-key.
10592
10593 2009-09-18 Adrian Robert <Adrian.B.Robert@gmail.com>
10594
10595 * cus-start.el (ns-use-qd-smoothing): Remove.
10596
10597 2009-09-18 Glenn Morris <rgm@gnu.org>
10598
10599 * allout.el (top-level): Remove unnecessary progn.
10600
10601 * progmodes/js.el (js-end-of-defun): Remove malformed and unneeded let.
10602
10603 * emacs-lisp/derived.el (define-derived-mode): Fix paren typo in
10604 definition of abbrev table.
10605
10606 * speedbar.el (speedbar-track-mouse):
10607 * net/eudc-bob.el (eudc-bob-pipe-object-to-external-program):
10608 * net/eudc.el (eudc-expand-inline):
10609 * net/newst-backend.el (newsticker--cache-read-feed):
10610 * nxml/nxml-outln.el (nxml-end-of-heading): Fix typos in
10611 condition-case handlers.
10612
10613 2009-09-18 Nick Roberts <nickrob@snap.net.nz>
10614
10615 * progmodes/gdb-mi.el (gdb-frame-address): New variable.
10616 (gdb-var-list): Add an element for has_more field.
10617 (gdb-non-stop-handler): Enable pretty printing for STL containers.
10618 (gdb-var-create-handler, gdb-var-list-children-handler-1)
10619 (gdb-var-update-handler-1): Parse output of dynamic variable
10620 objects (STL containers).
10621 (gdb-var-delete-1): Pass var1 as an explicit second argument.
10622 (gdb-get-field): Delete alias. Use bindat-get-field directly.
10623
10624 * progmodes/gud.el (gud-speedbar-item-info): Adjust for change to
10625 gdb-var-list.
10626 (gud-speedbar-buttons): Make node expandable if expression "has more"
10627 children.
10628
10629 2009-09-17 Juanma Barranquero <lekktu@gmail.com>
10630
10631 * startup.el (emacs-quick-startup): Remove variable and all uses.
10632 (command-line): Set `inhibit-x-resources' instead.
10633 (command-line-1): Use `inhibit-x-resources' instead.
10634
10635 2009-09-17 Chong Yidong <cyd@stupidchicken.com>
10636
10637 * subr.el: Fix last change to avoid using the `unless' macro,
10638 which breaks bootstrapping.
10639
10640 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
10641
10642 * subr.el (push, pop, dolist, dotimes, declare): Don't overwrite CL's
10643 extended definitions, in case we reload subr.el after having
10644 loaded CL.
10645 (eval-next-after-load): Mark as obsolete.
10646
10647 2009-09-17 Juri Linkov <juri@jurta.org>
10648
10649 * menu-bar.el (menu-bar-search-menu, menu-bar-edit-menu)
10650 (menu-bar-options-menu, menu-bar-showhide-fringe-menu)
10651 (menu-bar-showhide-menu, menu-bar-tools-menu)
10652 (menu-bar-describe-menu, menu-bar-help-menu)
10653 (minibuffer-local-completion-map, minibuffer-local-map):
10654 Fix list quoting.
10655
10656 2009-09-17 Glenn Morris <rgm@gnu.org>
10657
10658 * emacs-lisp/bytecomp.el (byte-compile-form): Always check the function
10659 arguments, whether or not it has a handler.
10660
10661 * ansi-color.el (ansi-color-get-face-1): Fix typo in handler.
10662
10663 * simple.el (hard-newline): Give it a doc-string.
10664
10665 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
10666 (lisp-mode-syntax-table): Give them doc-strings.
10667
10668 2009-09-17 Dan Nicolaescu <dann@ics.uci.edu>
10669
10670 * menu-bar.el (menu-bar-file-menu, menu-bar-file-menu)
10671 (menu-bar-i-search-menu, menu-bar-edit-menu, menu-bar-custom-menu)
10672 (menu-bar-options-menu, menu-bar-showhide-menu)
10673 (menu-bar-showhide-fringe-ind-menu, menu-bar-showhide-fringe-menu)
10674 (menu-bar-showhide-scroll-bar-menu, menu-bar-showhide-menu)
10675 (menu-bar-options-menu, menu-bar-line-wrapping-menu)
10676 (menu-bar-options-menu, menu-bar-tools-menu)
10677 (menu-bar-describe-menu, menu-bar-search-documentation-menu)
10678 (menu-bar-help-menu):
10679 (menu-bar-make-mm-toggle, menu-bar-make-toggle): Purecopy the
10680 string arguments.
10681
10682 * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu)
10683 (menu-bar-epatch-menu, menu-bar-ediff-misc-menu): Add purecopy
10684 calls for the menu names and :help.
10685
10686 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
10687
10688 * mouse.el (minor-mode-menu-from-indicator): Pay attention
10689 to :minor-mode-function (bug#4455).
10690
10691 2009-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
10692
10693 * startup.el (command-line): Initialize the window-system after
10694 processing the command-line.
10695
10696 * textmodes/page.el (what-page): Make sure we don't inf-loop if
10697 page-delimiter matches the empty string.
10698
10699 2009-09-16 Glenn Morris <rgm@gnu.org>
10700
10701 * emacs-lisp/bytecomp.el (byte-compile-not-obsolete-vars): Rename from
10702 byte-compile-not-obsolete-var. It's a list now.
10703 (byte-compile-not-obsolete-funcs): New variable.
10704 (byte-compile-warn-obsolete): Don't warn about functions if they are in
10705 byte-compile-not-obsolete-funcs.
10706 (byte-compile-variable-ref, byte-compile-defvar): Update for
10707 byte-compile-not-obsolete-vars name-change and list nature.
10708 (byte-compile-maybe-guarded): Suppress warnings about obsolete functions
10709 and variables behind (f)boundp tests.
10710 * net/tramp-compat.el (byte-compile-not-obsolete-vars): Set if bound.
10711
10712 2009-09-15 Dan Nicolaescu <dann@ics.uci.edu>
10713
10714 * vc-git.el (vc-git-log-view-mode): Undo inadvertent change.
10715
10716 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
10717
10718 * Makefile.in (compile-onefile): Use byte-compile-refresh-preloaded.
10719 * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded):
10720 Don't autoload.
10721
10722 2009-09-15 Stephen Eglen <stephen@gnu.org>
10723
10724 * iswitchb.el (iswitchb-read-buffer): When selecting a match from
10725 the virtual-buffers, use the name of the buffer specified by
10726 find-file-noselect, as the match may be a symlink. (This was a
10727 problem if the target and the symlink had different names.)
10728
10729 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
10730
10731 * custom.el (custom-initialize-default, custom-initialize-set): CSE.
10732
10733 * desktop.el (desktop-path): Check user-emacs-directory.
10734
10735 * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded): New function.
10736
10737 * loadup.el: Use after-load-functions to GC after loading each file.
10738 Remove the explicit GC calls that used to be sprinkled around.
10739
10740 * subr.el (after-load-functions): New hook.
10741 (do-after-load-evaluation): Run it. Use string-match-p to detect
10742 `obsolete' packages, rather than painfully extracting the relevant
10743 directory name.
10744
10745 2009-09-15 Glenn Morris <rgm@gnu.org>
10746
10747 * apropos.el (apropos-documentation-check-doc-file): Avoid assignment to
10748 free variable `doc'.
10749
10750 * dired.el (dired-mode-map): Add menu entry for async shell command.
10751
10752 * help-fns.el (find-lisp-object-file-name): When looking for autoloaded
10753 variables, also consider the .elc files, since the .el files are
10754 normally gzipped (subsequent code locates the .el.gz from the .elc).
10755
10756 * calc/calc-prog.el (arglist): Define for compiler.
10757
10758 * calendar/diary-lib.el (diary-display-function): Change the default to
10759 fancy display.
10760 (body): Define for compiler.
10761
10762 * emacs-lisp/bytecomp.el (byte-compile-keep-pending)
10763 (byte-compile-file-form, byte-compile-lambda)
10764 (byte-compile-top-level-body, byte-compile-form)
10765 (byte-compile-variable-ref, byte-compile-setq)
10766 (byte-compile-setq-default, byte-compile-body)
10767 (byte-compile-body-do-effect, byte-compile-and, byte-compile-or)
10768 (batch-byte-compile): Give some more local variables with common names
10769 a "bytecomp-" prefix to avoid masking warnings about free variables.
10770
10771 * startup.el (command-line-1): Give local variables with common names a
10772 distinguishing prefix, so as not to hide free variable warnings during
10773 bootstrap.
10774
10775 * mail/rmailmm.el (rmail-mime-save): If file exists, don't try to be
10776 clever and add a suffix to make a unique name, just let the user decide
10777 whether or not to overwrite it. If the input is a directory, write the
10778 default filename to that directory. (Bug#4388)
10779 (rmail-mime-bulk-handler): Ensure the save button's 'directory property
10780 is a filename-as-a-directory.
10781
10782 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
10783
10784 * textmodes/page.el (what-page): Don't move to beginning of line.
10785 See <87tyz5ajte.fsf@x2.delysid.org> in emacs-devel.
10786
10787 2009-09-15 Dan Nicolaescu <dann@ics.uci.edu>
10788
10789 * vc-git.el (vc-git-dir-extra-headers): Show the remote location.
10790
10791 2009-09-14 Dan Nicolaescu <dann@ics.uci.edu>
10792
10793 * bindings.el (mode-line-mode-menu): Add purecopy calls for :help.
10794 * help.el (help-for-help-internal): Add purecopy calls for text.
10795
10796 * vc.el (top): print-log method now takes an optional SHORTLOG
10797 argument. Add a new method: root.
10798 (vc-root-diff, vc-print-root-log): New functions.
10799 (vc-log-short-style): New variable.
10800 (vc-print-log-internal): Add support for showing short logs.
10801
10802 * vc-hooks.el (vc-prefix-map, vc-menu-map): Add bindings for
10803 vc-print-root-log and vc-print-root-diff.
10804
10805 * vc-bzr.el (vc-bzr-log-view-mode, vc-bzr-print-log):
10806 * vc-git.el (vc-git-print-log, vc-git-log-view-mode):
10807 * vc-hg.el (vc-hg-print-log, vc-hg-log-view-mode): Add support for
10808 short logs.
10809
10810 * vc-cvs.el (vc-cvs-print-log):
10811 * vc-mtn.el (vc-mtn-print-log):
10812 * vc-rcs.el (vc-rcs-print-log):
10813 * vc-sccs.el (vc-sccs-print-log):
10814 * vc-svn.el (vc-svn-print-log): Add an optional argument shortlog
10815 that is ignored for now.
10816
10817 * vc-mtn.el (vc-mtn-annotate-command):
10818 * vc-svn.el (vc-svn-annotate-command): Run asynchronously.
10819
10820 2009-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
10821
10822 * simple.el: Add mapping for backspace/delete/clear/tab/escape/return
10823 to function-key-map, and give them ascii-character property.
10824 * term/x-win.el (x-alternatives-map):
10825 * term/ns-win.el (ns-alternatives-map):
10826 * term/internal.el (msdos-key-remapping-map):
10827 * w32-fns.el (x-alternatives-map): Remove redundant mappings.
10828
10829 2009-09-14 Glenn Morris <rgm@gnu.org>
10830
10831 * emacs-lisp/elint.el (elint-add-required-env): Revert to not using
10832 temp-buffers (2009-09-12).
10833
10834 2009-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
10835
10836 * textmodes/ispell.el (ispell-command-loop): Improve last fix, using
10837 the new read-key function.
10838
10839 2009-09-13 Chong Yidong <cyd@stupidchicken.com>
10840
10841 * term/x-win.el (x-menu-bar-open): Only call accelerate-menu if it
10842 is defined (Bug#4405).
10843
10844 2009-09-13 Vincent Belaïche <vincent.belaiche@gmail.com>
10845
10846 * recentf.el (recentf-cleanup): Use a hash table to find
10847 duplicates (Bug#4407).
10848
10849 2009-09-13 Per Starbäck <per@starback.se> (tiny change)
10850
10851 * textmodes/ispell.el (ispell-command-loop): Convert keys such as
10852 kp-0 to ascii equivalents (Bug#4325).
10853
10854 2009-09-13 Chong Yidong <cyd@stupidchicken.com>
10855
10856 * progmodes/cperl-mode.el (cperl-init-faces): Revert last change.
10857
10858 * eshell/em-hist.el:
10859 * eshell/em-dirs.el (eshell-complete-user-reference):
10860 Declare pcomplete functions and variables to avoid compiler warnings.
10861
10862 2009-09-13 Leo <sdl.web@gmail.com> (tiny change)
10863
10864 * eshell/em-script.el (eshell-login-script, eshell-rc-script):
10865 * eshell/em-dirs.el (eshell-last-dir-ring-file-name):
10866 * eshell/em-alias.el (eshell-aliases-file):
10867 * eshell/em-hist.el (eshell-history-file-name):
10868 Use expand-file-name instead of concat to make file names (Bug#4308).
10869
10870 2009-09-13 Glenn Morris <rgm@gnu.org>
10871
10872 * ediff-merg.el (ediff-do-merge):
10873 * filesets.el (filesets-run-cmd):
10874 * emulation/ws-mode.el (ws-show-markers, ws-move-block, ws-delete-block)
10875 (ws-find-marker-0, ws-find-marker-1, ws-find-marker-2, ws-find-marker-3)
10876 (ws-find-marker-4, ws-find-marker-5, ws-find-marker-6, ws-find-marker-7)
10877 (ws-find-marker-8, ws-find-marker-9, ws-goto-block-begin)
10878 (ws-goto-block-end, ws-goto-last-cursorposition, ws-copy-block):
10879 Replace empty `let's with `progn'.
10880
10881 2009-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
10882
10883 * mail/sendmail.el (send-mail-function):
10884 * tooltip.el (tooltip-mode):
10885 * simple.el (transient-mark-mode):
10886 * rfn-eshadow.el (file-name-shadow-mode):
10887 * frame.el (blink-cursor-mode):
10888 * font-core.el (global-font-lock-mode):
10889 * files.el (temporary-file-directory)
10890 (small-temporary-file-directory, auto-save-file-name-transforms):
10891 * epa-hook.el (auto-encryption-mode):
10892 * composite.el (global-auto-composition-mode):
10893 Use custom-initialize-delay.
10894 * startup.el (command-line): Don't explicitly call
10895 custom-reevaluate-setting for all the above vars.
10896 * custom.el (custom-initialize-safe-set)
10897 (custom-initialize-safe-default): Delete.
10898
10899 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
10900
10901 * term/x-win.el (x-initialize-window-system):
10902 * term/w32-win.el (w32-initialize-window-system):
10903 * term/ns-win.el (ns-initialize-window-system): Don't call
10904 mouse-wheel-mode since it's enabled globally by default already.
10905
10906 * mwheel.el (mouse-wheel-mode): Make sure the new defvar doesn't
10907 actually define the variable, but only silences the byte-compiler.
10908 (mouse-wheel-change-button): Check whether mouse-wheel-mode is bound
10909 before looking it up.
10910 (mouse-wheel-scroll-amount): Also reset the bindings if this value
10911 is changed.
10912
10913 2009-09-12 Glenn Morris <rgm@gnu.org>
10914
10915 * emacs-lisp/elint.el (elint-file): Make max-lisp-eval-depth at least
10916 1000.
10917 (elint-add-required-env): Don't beep on error.
10918 (elint-forms): In case of error, return ENV unchanged.
10919 (elint-init-env): Skip non-list forms.
10920 (elint-log): Handle unknown file positions.
10921
10922 2009-09-12 Daiki Ueno <ueno@unixuser.org>
10923
10924 * epg.el (epg-make-context): Add autoload cookie.
10925 (epg-list-keys, epg-cancel, epg-start-decrypt, epg-decrypt-file)
10926 (epg-decrypt-string, epg-start-verify, epg-verify-file)
10927 (epg-verify-string, epg-start-sign, epg-sign-file)
10928 (epg-sign-string, epg-start-encrypt, epg-encrypt-file)
10929 (epg-encrypt-string, epg-start-export-keys)
10930 (epg-export-keys-to-file, epg-export-keys-to-string)
10931 (epg-start-import-keys, epg-import-keys-from-file)
10932 (epg-import-keys-from-string, epg-start-receive-keys)
10933 (epg-receive-keys, epg-import-keys-from-server)
10934 (epg-start-delete-keys, epg-delete-keys, epg-start-sign-keys)
10935 (epg-sign-keys, epg-start-generate-key)
10936 (epg-generate-key-from-file, epg-generate-key-from-string):
10937 Remove autoload cookie.
10938
10939 2009-09-12 Eli Zaretskii <eliz@gnu.org>
10940
10941 * dos-fns.el (dos-reevaluate-defcustoms): Comment out the
10942 reevaluation of trash-directory.
10943
10944 * mwheel.el: Fix last change.
10945 (mouse-wheel-mode): New defvar.
10946 (mouse-wheel-mode): Remove autoload cookie.
10947
10948 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
10949
10950 * mwheel.el (mwheel-installed-bindings): New var.
10951 (mouse-wheel-mode): Use it, so as to make sure we really remove all
10952 the bindings we set last time. Use custom-initialize-delay.
10953 * loadup.el: Load mwheel after term/*-win.el.
10954 * startup.el (command-line): Don't reevaluate mouse-wheel-down-event
10955 and mouse-wheel-up-event now that their first evaluation is done
10956 sufficiently late to be correct.
10957
10958 * startup.el (tutorial-directory): Make it a defcustom.
10959 Use custom-initialize-delay rather than eval-at-startup to set it.
10960 * image.el (image-load-path): Make it a defcustom.
10961 Use custom-initialize-delay rather than eval-at-startup to set it.
10962 * subr.el (eval-at-startup): Remove.
10963 * font-lock.el (lisp-font-lock-keywords-2): Remove eval-at-startup.
10964
10965 * subr.el (do-after-load-evaluation): Warn the user after loading an
10966 obsolete package.
10967
10968 2009-09-12 Glenn Morris <rgm@gnu.org>
10969
10970 * proced.el (proced-mark-alt): Remove alias.
10971 (proced-mode-map): Remove proced-mark-alt.
10972
10973 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries to
10974 Elint file and directory. Remove initialization entry.
10975
10976 * emacs-lisp/elint.el (elint-file, elint-directory): New autoloaded
10977 commands.
10978 (elint-current-buffer): Set mode-line-process.
10979 (elint-init-env): Handle define-derived-mode.
10980 Fix declare-function with unspecified arglist. Guard against odd
10981 defalias statements (eg iso-insert's 8859-1-map).
10982 (elint-add-required-env): Use a temp buffer.
10983 (elint-form): Just print the function/macro name, not the whole form.
10984 Return env unchanged if we fail to parse a macro.
10985 (elint-forms): Guard against parse errors.
10986 (elint-output): New function, to handle batch mode.
10987 (elint-log-message): Add optional argument. Use elint-output.
10988 (elint-set-mode-line): New function.
10989
10990 2009-09-12 Andreas Politz <politza@fh-trier.de> (tiny change)
10991
10992 * emacs-lisp/elp.el (elp-not-profilable): Add more
10993 functions (Bug#4233).
10994
10995 2009-09-12 Chong Yidong <cyd@stupidchicken.com>
10996
10997 * emulation/pc-select.el (scroll-down-mark, scroll-down-nomark)
10998 (scroll-up-mark, scroll-up-nomark): Doc fix (Bug#4190).
10999
11000 2009-09-11 Nick Roberts <nickrob@snap.net.nz>
11001
11002 * progmodes/gdb-mi.el (gdb-var-list-children-regexp): Delete.
11003 (gdb-var-list-children): Use json parsing.
11004
11005 2009-09-11 Daniel Colascione <dan.colascione@gmail.com>
11006
11007 * progmodes/js.el (js--proper-indentation): Handle the case where
11008 char-before is null. Reported by Deniz Dogan.
11009
11010 2009-09-11 Juanma Barranquero <lekktu@gmail.com>
11011
11012 * emacs-lisp/cl-macs.el (help-add-fundoc-usage): Declare.
11013
11014 2009-09-11 Daiki Ueno <ueno@unixuser.org>
11015
11016 * epg.el (epg-cipher-algorithm-alist): Add CAMELLIA.
11017 (epg-digest-algorithm-alist): Add SHA224.
11018 (epg-context-set-passphrase-callback)
11019 (epg-context-set-progress-callback): Add description about
11020 callback function.
11021
11022 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
11023
11024 * custom.el (custom-delayed-init-variables): New var.
11025 (custom-initialize-delay): New function.
11026 * startup.el (command-line): "Re"evaluate all vars in
11027 custom-delayed-init-variables. Don't reevaluate abbrev-file-name
11028 explicitly any more.
11029 * abbrev.el (abbrev-file-name): Use custom-initialize-delay
11030 to avoid creating a ~/.emacs.d at build-time (bug#4347).
11031
11032 * proced.el (proced-mode-map): Prefer "m" for proced-mark (bug#4362).
11033
11034 2009-09-11 Nick Roberts <nickrob@snap.net.nz>
11035
11036 * progmodes/gdb-mi.el (gdb-var-update-regexp): Delete.
11037 (gdb-var-update-handler): Use json parsing.
11038
11039 2009-09-11 Juanma Barranquero <lekktu@gmail.com>
11040
11041 * vc-annotate.el (vc-annotate): Use the main file's coding-system to
11042 decode annotated text, regardless of language environment. (Bug#2741)
11043
11044 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
11045
11046 * Makefile.in (autoloads): Make rmail.el writable as well.
11047
11048 2009-09-11 Glenn Morris <rgm@gnu.org>
11049
11050 * dired-aux.el, dired-x.el: Put autoloads in dired.el rather than
11051 loaddefs.el.
11052 * dired.el: Regenerate with extracted autoloads.
11053 * Makefile.in (autoloads): Make dired.el writable.
11054
11055 * ibuf-ext.el: Put autoloads in ibuffer.el rather than loaddefs.el.
11056 * ibuffer.el: Regenerate with extracted autoloads.
11057 * Makefile.in (autoloads): Make ibuffer.el writable.
11058
11059 * paths.el (prune-directory-list, gnus-nntp-service, rmail-file-name):
11060 * version.el (emacs-copyright, emacs-major-version)
11061 (emacs-minor-version): Reformat doc-strings for make-docfile.
11062
11063 * apropos.el (apropos-documentation-check-doc-file): Exclude unbound
11064 functions and variables, since they must be stuff specific to some other
11065 platform.
11066 (apropos-print): Make mouse-click message less specific about button.
11067
11068 * emacs-lisp/cl-macs.el (define-compiler-macro): Add a property
11069 that records where a macro was defined.
11070 * help-fns.el (describe-function-1): Mention if a function has a
11071 compiler-macro.
11072 * help-mode.el (help-function-cmacro): New button.
11073
11074 * locate.el (top-level): Always require dired.
11075 (locate-mode-map): Initialize inside the defvar.
11076
11077 * net/ange-ftp.el (dired-compress-file): Declare.
11078 (ange-ftp-dired-compress-file): Add doc string.
11079
11080 * term/ns-win.el (x-display-name, x-setup-function-keys):
11081 Unify doc-strings with X versions.
11082
11083 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
11084
11085 * emulation/crisp.el (crisp-mode-map): Move initialization
11086 into declaration.
11087 (crisp-mode): Use define-minor-mode.
11088
11089 * progmodes/xscheme.el (xscheme-evaluation-commands):
11090 Put a :advertised-binding property rather than using
11091 advertised-xscheme-send-previous-expression.
11092 (advertised-xscheme-send-previous-expression): Declare obsolete.
11093 * emulation/crisp.el (crisp-mode-map): Use `undo' rather than
11094 `advertised-undo'.
11095 (crisp-mode): Add corresponding bindings to
11096 undo's :advertised-binding instead.
11097 * dired.el (dired-mode-map): Put a :advertised-binding property rather
11098 than using dired-advertised-find-file.
11099 (dired-advertised-find-file):
11100 * simple.el (advertised-undo):
11101 * wid-edit.el (advertised-widget-backward): Declare obsolete.
11102 (widget-keymap): Put a :advertised-binding property rather
11103 than using advertised-widget-backward.
11104 * bindings.el (ctl-x-map): Put a :advertised-binding property rather
11105 than using advertised-undo.
11106 * tutorial.el (tutorial--default-keys): Adjust accordingly.
11107
11108 2009-09-10 Simon South <ssouth@slowcomputing.org>
11109
11110 * progmodes/delphi.el (delphi-tab): Indent region when Transient
11111 Mark mode is enabled and region is active; otherwise indent or
11112 insert TAB as usual.
11113 (delphi-mode): Update description of TAB-key binding.
11114
11115 2009-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
11116
11117 * subr.el (define-key-rebound-commands): Mark obsolete.
11118 * startup.el (precompute-menubar-bindings): Remove.
11119 (normal-top-level): Remove obsolete code that tried to precompute
11120 menubar bindings.
11121 * loadup.el (define-key-rebound-commands): Don't bother fiddling with
11122 define-key-rebound-commands and precompute-menubar-bindings.
11123
11124 2009-09-10 Teodor Zlatanov <tzz@lifelogs.com>
11125
11126 * net/imap.el (imap-interactive-login): Better messages.
11127 (imap-open): Fix bug with renamed buffer on reconnect.
11128 (imap-authenticate): Add buffer-local imap-last-authenticator variable
11129 for easier debugging and cleaner code. On successful (guessed based on
11130 server capabilities) secondary authentication, set imap-state
11131 correctly.
11132 (imap-last-authenticator): Define imap-last-authenticator as a variable
11133 to avoid warnings.
11134
11135 2009-09-10 Glenn Morris <rgm@gnu.org>
11136
11137 * pcvs.el (cvs-mode-find-file): Use forward-line rather than goto-line.
11138
11139 * emacs-lisp/bytecomp.el (byte-compile-function-environment): Doc fix.
11140 (byte-compile-file-form-autoload): Don't warn about unknown functions
11141 where the autoload statement comes after the use.
11142 (with-no-warnings): Give it a byte-hunk-handler like than of progn, so
11143 that any handlers inside the body (eg require) are in turn respected.
11144
11145 * emacs-lisp/byte-opt.el (degrees-to-radians): Mark as free from side
11146 effects.
11147
11148 * emacs-lisp/derived.el (define-derived-mode): Give the mode's map,
11149 and syntax and abbrev tables basic docs, if they don't have any.
11150
11151 * emacs-lisp/easy-mmode.el (easy-mmode-defmap): Add doc-string.
11152
11153 * international/mule-cmds.el (top-level): Require cl when compiling.
11154 (view-hello-file): Use default-value rather than
11155 default-enable-multibyte-characters.
11156
11157 * progmodes/fortran.el: Move all safe and risky properties into the
11158 defcustoms.
11159
11160 * mail/rmailedit.el, mail/rmailkwd.el, mail/rmailmm.el:
11161 * mail/rmailmsc.el, mail/rmailsort.el, mail/rmailsum.el:
11162 * mail/undigest.el:
11163 Put autoloads in rmail.el rather than loaddefs.el.
11164 * mail/rmail.el: Regenerate with extracted autoloads.
11165
11166 * mail/rmailsum.el (rmail-user-mail-address-regexp): Move to rmail.el.
11167 * mail/rmail.el (rmail-user-mail-address-regexp): Move from rmailsum.el.
11168
11169 2009-09-10 Nick Roberts <nickrob@snap.net.nz>
11170
11171 Reported in thread for Bug#4375.
11172 * progmodes/gud.el (gud-tooltip-print-command): Use MI command
11173 "-data-evaluate-expression" instead of print.
11174 * progmodes/gdb-mi.el (gdb-tooltip-print-1): Ditto.
11175 (gdb-tooltip-print): Parse output from above MI command.
11176 (gdb): Revert 2009-08-11 change. User should detach inferior
11177 manually.
11178
11179 Remove the word "separate" from IO functions as inferior
11180 output is now never displayed in the GUD buffer.
11181
11182 2009-09-10 Juanma Barranquero <lekktu@gmail.com>
11183
11184 * startup.el (command-line-normalize-file-name): On Windows and
11185 MS-DOS, also convert C:\/ and C:\\ (two backslashes) into C:/.
11186
11187 2009-09-10 Juri Linkov <juri@jurta.org>
11188
11189 * isearch.el (isearch-text-char-description): Propertize escape
11190 character sequences with the `escape-glyph' face. (Bug#4344)
11191
11192 * simple.el (shell-command): Set asynchronous process filter to
11193 `comint-output-filter'. (Bug#4343)
11194
11195 * progmodes/grep.el (grep-template): Add "<X>" to docstring.
11196 (grep-files-aliases): Add "all". Move "el" and "ch" to the top of
11197 the list. Move "asm" to the bottom.
11198 (grep-find-ignored-directories): Add `choice' with nil value
11199 to empty the list easily.
11200 (grep-find-ignored-files): New option.
11201 (grep-files-history): Set to nil by default instead of '("ch" "el").
11202 (grep-compute-defaults): Add "<X>" to `grep-template'.
11203 (grep-read-files): Bind new local variables `default-alias' and
11204 `default-extension'. Use a list of default values for the file prompt.
11205 (lgrep): Add `--exclude=' command line options composed from
11206 `grep-find-ignored-files'.
11207 (rgrep): Add `-name' command line options composed from
11208 `grep-find-ignored-files'. (Bug#4301)
11209
11210 2009-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
11211
11212 * diff-mode.el (diff-hunk-kill): Fix the search of the next hunk
11213 (bug#4368).
11214
11215 2009-09-09 Katsumi Yamaoka <yamaoka@jpl.org>
11216
11217 * calendar/time-date.el (autoload):
11218 Expand define-obsolete-function-alias into defalias and make-obsolete
11219 for old Emacsen that Gnus supports.
11220 (with-no-warnings): Define it for old Emacsen.
11221 (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
11222 is available.
11223 (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
11224 float-time is available; suppress compile warning for time-to-seconds.
11225
11226 2009-09-09 Teodor Zlatanov <tzz@lifelogs.com>
11227
11228 * net/imap.el (imap-message-map): Docstring fix.
11229
11230 2009-09-09 Glenn Morris <rgm@gnu.org>
11231
11232 * ffap.el (ffap-file-at-point): Handle absolute (non-remote) files with
11233 line numbers too. (Bug#4374)
11234
11235 2009-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
11236
11237 * smerge-mode.el (smerge-remove-props, smerge-refine):
11238 Use with-silent-modifications (bug#4342).
11239
11240 * subr.el (with-silent-modifications): New macro.
11241
11242 2009-09-07 Juanma Barranquero <lekktu@gmail.com>
11243
11244 * files.el (top-level): Require `cl' when compiling.
11245
11246 2009-09-07 Glenn Morris <rgm@gnu.org>
11247
11248 * files.el (auto-mode-alist): Use delphi-mode for .dpr files.
11249
11250 * proced.el (proced-mode-map): Bind "d" to proced-mark-alt.
11251 (proced-mark-alt): New alias, to control the advertised key. (Bug#4362)
11252
11253 2009-09-06 Nick Roberts <nickrob@snap.net.nz>
11254
11255 * vc-git.el (vc-git-annotate-command): Use separator to parse
11256 arguments correctly.
11257
11258 2009-09-06 Eli Zaretskii <eliz@gnu.org>
11259
11260 * proced.el (proced-mode): Doc fix.
11261
11262 2009-09-06 Julian Scheid <julians37@gmail.com> (tiny change)
11263
11264 * net/tramp.el (tramp-perl-file-attributes): Print "nil" when
11265 lstat fails.
11266 (tramp-do-file-attributes-with-ls): Check for file existence at
11267 remote end.
11268 (tramp-do-file-attributes-with-stat): Likewise.
11269 (tramp-convert-file-attributes): Return nil when attr is nil.
11270
11271 2009-09-05 Glenn Morris <rgm@gnu.org>
11272
11273 * calendar/diary-lib.el (diary-entry): Add help-echo and follow-link
11274 properties to this button.
11275 (diary-fancy-display): Don't extend the button to the final newline.
11276 (diary-fancy-display-mode): Continue to define "q" as a local key.
11277
11278 * calendar/cal-china.el (holiday-chinese): Make it slightly more
11279 efficient.
11280
11281 * font-lock.el (lisp-font-lock-keywords-2): Add letf.
11282
11283 * emacs-lisp/bytecomp.el (emacs-lisp-file-regexp): Doc fix.
11284 (byte-compile-dest-file-function): New option.
11285 (byte-compile-dest-file): Doc fix.
11286 Obey byte-compile-dest-file-function.
11287 (byte-compile-cl-file-p): New function.
11288 (byte-compile-eval): Only suppress noruntime warnings about cl functions
11289 if the cl-functions warning is enabled. Use byte-compile-cl-file-p.
11290 (byte-compile-eval): Check for non-nil byte-compile-cl-functions rather
11291 than for file being previously loaded.
11292 (byte-compile-find-cl-functions): Use byte-compile-cl-file-p.
11293 (byte-compile-file-form-require): Handle the case where requiring a file
11294 indirectly causes CL to be loaded.
11295
11296 2009-09-05 Karl Fogel <kfogel@red-bean.com>
11297
11298 * files.el (find-alternate-file): Run `kill-buffer-hook' manually
11299 before killing the old buffer, since by the time `kill-buffer' is
11300 run so many buffer variables have been set to nil that it may not
11301 behave as expected. (Bug#4061)
11302
11303 2009-09-05 Karl Fogel <kfogel@red-bean.com>
11304
11305 * files.el (find-alternate-file): If the old buffer is modified
11306 and visiting a file, behave similarly to `kill-buffer' when
11307 killing it, thus reverting to the pre-1.878 behavior; see
11308 http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00101.html
11309 for discussion. Also, consult `buffer-file-name' as a variable
11310 not as a function, for consistency with the rest of the code.
11311
11312 2009-09-04 Michael Albinus <michael.albinus@gmx.de>
11313
11314 * net/tramp.el (tramp-handle-insert-directory): Handle "--dired"
11315 also when adding a new directory.
11316
11317 * net/tramp-compat.el (tramp-compat-line-beginning-position): New
11318 defun.
11319
11320 2009-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
11321
11322 * files.el (locate-file-completion-table): Make it provide boundary
11323 information, so partial-completion works better.
11324
11325 2009-09-04 Leo <sdl.web@gmail.com> (tiny change)
11326
11327 * mail/footnote.el (Footnote-text-under-cursor):
11328 Check footnote-text-marker-alist before using it (bug#4324).
11329
11330 2009-09-04 Glenn Morris <rgm@gnu.org>
11331
11332 * play/5x5.el, play/decipher.el, play/gametree.el, play/handwrite.el:
11333 * play/hanoi.el, play/landmark.el, play/mpuz.el, play/pong.el:
11334 * play/solitaire.el, play/tetris.el:
11335 Remove leading * from defcustom and defface docs.
11336
11337 * calendar/diary-lib.el (diary-fancy-display): Only switch modes if
11338 necessary.
11339 (diary-fancy-overriding-map): New variable.
11340 (diary-fancy-display-mode): Set minor-mode-overriding-map-alist.
11341 Use view-mode.
11342
11343 * vc-rcs.el (vc-rcs-annotate-command): Use forward-line rather than
11344 goto-line.
11345
11346 2009-09-03 Glenn Morris <rgm@gnu.org>
11347
11348 * arc-mode.el (archive-mode):
11349 * dos-fns.el (set-default-process-coding-system):
11350 * man.el (Man-getpage-in-background):
11351 * menu-bar.el (menu-bar-describe-menu):
11352 * server.el (server-process-filter):
11353 * startup.el (command-line):
11354 * tar-mode.el (tar-header-block-tokenize, tar-extract):
11355 * w32-fns.el (set-default-process-coding-system):
11356 * x-dnd.el (x-dnd-handle-file-name):
11357 * international/mule-cmds.el (mule-menu-keymap)
11358 (set-default-coding-systems, language-info-alist, set-language-info)
11359 (set-language-environment, standard-display-european-internal)
11360 (set-locale-environment):
11361 * international/mule-diag.el (mule-diag):
11362 * mail/emacsbug.el (report-emacs-bug):
11363 * mail/rmail.el (rmail-mode):
11364 * mail/sendmail.el (mail-setup):
11365 Use default-value rather than default-enable-multibyte-characters.
11366
11367 * progmodes/f90.el: Move all safe properties into the defcustoms.
11368 (f90-get-correct-indent, f90-indent-region, f90-abbrev-start): Use memq.
11369
11370 * calendar/appt.el (appt-check):
11371 * calendar/diary-lib.el (diary-set-header, diary-live-p)
11372 (diary-check-diary-file, diary-list-entries)
11373 (diary-include-other-diary-files, diary-simple-display)
11374 (diary-fancy-display, diary-print-entries)
11375 (diary-mark-included-diary-files, diary-make-entry):
11376 Don't call substitute-in-file-name on diary-file.
11377
11378 2009-09-03 Eduard Wiebe <usenet@pusto.de>
11379 Stefan Monnier <monnier@iro.umontreal.ca>
11380
11381 * mail/footnote.el (footnote-prefix): Make it a defcustom.
11382 (footnote-mode-map): Move initialization into the declaration.
11383 (footnote-minor-mode-map): Define it rather than changing global-map.
11384 (footnote-mode): Use define-minor-mode.
11385
11386 2009-09-02 Michael Albinus <michael.albinus@gmx.de>
11387
11388 * net/tramp.el (tramp-handle-file-attributes-with-ls)
11389 (tramp-do-file-attributes-with-perl)
11390 (tramp-do-file-attributes-with-stat): Rename from
11391 `tramp-handle-file-attributes-with-*'.
11392 (tramp-handle-file-attributes): Use them.
11393 (tramp-do-directory-files-and-attributes-with-perl)
11394 (tramp-do-directory-files-and-attributes-with-stat): Rename from
11395 `tramp-handle-directory-files-and-attributes-with-*'.
11396 (tramp-handle-directory-files-and-attributes): Use them.
11397 (tramp-method-out-of-band-p): Additional parameter SIZE.
11398 (tramp-do-copy-or-rename-file, tramp-handle-file-local-copy)
11399 (tramp-handle-write-region): Use it.
11400 (tramp-handle-insert-directory): Use "?\ " for compatibility reasons.
11401 (tramp-handle-vc-registered): Check, whether the first run did
11402 return files to be tested.
11403 (tramp-advice-make-auto-save-file-name): Do not call directly
11404 `tramp-handle-make-auto-save-file-name', because this would bypass
11405 the locking mechanism.
11406
11407 * net/tramp-compat.el (top): Autoload used functions from tramp.el.
11408 (file-remote-p, process-file, start-file-process, set-file-times)
11409 (tramp-compat-file-attributes): Compatibility functions shall not
11410 call directly `tramp-handle-*', because this would bypass the
11411 locking mechanism.
11412 (tramp-compat-number-sequence): New defun.
11413
11414 2009-09-02 Glenn Morris <rgm@gnu.org>
11415
11416 * calendar/time-date.el (time-to-seconds): In Emacs, make it an obsolete
11417 alias for float-time.
11418 (time-to-number-of-days): In Emacs, use float-time.
11419 * net/newst-backend.el (time-add): Suppress warnings from compat
11420 function.
11421 * time.el (emacs-uptime, emacs-init-time):
11422 * net/rcirc.el (rcirc-keepalive, rcirc-handler-ctcp-KEEPALIVE):
11423 Use float-time rather than time-to-seconds.
11424
11425 * minibuffer.el (completion-initials-expand): Fix typo.
11426
11427 * faces.el (modeline, modeline-inactive, modeline-highlight)
11428 (modeline-buffer-id):
11429 * info.el (info-menu-5): Mark these face aliases as obsolete.
11430
11431 2009-09-01 Nick Roberts <nickrob@snap.net.nz>
11432
11433 * progmodes/gdb-mi.el (gdb-current-context-command): Move the
11434 space ...
11435 (gdb-gud-context-call): ... to here for pre GDB 7.0 when there is
11436 no "--thread" option.
11437 (gdb-stopped): Don't print "Switched to thread" message when it is
11438 unchanged.
11439
11440 2009-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
11441
11442 * minibuffer.el (completion-try-completion)
11443 (completion-all-completions): Remove ill-defined (and
11444 mistakenly installed and luckily never used nor documented)
11445 `completion-styles' property.
11446 (completion-initials-expand, completion-initials-all-completions)
11447 (completion-initials-try-completion): New functions.
11448 (completion-styles-alist): Add doc to each entry.
11449 Add new `initials' entry.
11450
11451 2009-09-01 Nick Roberts <nickrob@snap.net.nz>
11452
11453 * progmodes/gdb-mi.el (gdb-var-create-handler): Remove redundant
11454 MI command -var-evaluate-expression.
11455 (gdb-var-list-children-regexp): Update from regexp-1 in gdb-ui.el
11456 and tweak for case of string child.
11457 (gdb-var-list-children-handler): Update from handler-1 in gdb-ui.el.
11458
11459 2009-09-01 Glenn Morris <rgm@gnu.org>
11460
11461 * add-log.el (change-log-date-face, change-log-name-face)
11462 (change-log-email-face, change-log-file-face, change-log-list-face)
11463 (change-log-conditionals-face, change-log-function-face)
11464 (change-log-acknowledgement-face):
11465 * cus-edit.el (custom-invalid-face, custom-rogue-face)
11466 (custom-modified-face, custom-set-face, custom-changed-face)
11467 (custom-saved-face, custom-button-face, custom-button-pressed-face)
11468 (custom-documentation-face, custom-state-face, custom-comment-face)
11469 (custom-comment-tag-face, custom-variable-tag-face)
11470 (custom-variable-button-face, custom-face-tag-face)
11471 (custom-group-tag-face-1, custom-group-tag-face):
11472 * diff-mode.el (diff-header-face, diff-file-header-face)
11473 (diff-index-face, diff-hunk-header-face, diff-removed-face)
11474 (diff-added-face, diff-changed-face, diff-function-face)
11475 (diff-context-face, diff-nonexistent-face):
11476 * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
11477 * hilit-chg.el (highlight-changes-face, highlight-changes-delete-face):
11478 * info.el (Info-title-1-face, Info-title-2-face, Info-title-3-face)
11479 (Info-title-4-face):
11480 * isearch.el (isearch-lazy-highlight-face):
11481 * log-view.el (log-view-file-face, log-view-message-face):
11482 * paren.el (show-paren-match-face, show-paren-mismatch-face):
11483 * pcvs-info.el (cvs-header-face, cvs-filename-face, cvs-unknown-face)
11484 (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
11485 (cvs-msg-face):
11486 * smerge-mode.el (smerge-mine-face, smerge-other-face)
11487 (smerge-base-face, smerge-markers-face):
11488 * wid-edit.el (widget-documentation-face, widget-button-face)
11489 (widget-field-face, widget-single-line-field-face)
11490 (widget-inactive-face, widget-button-pressed-face):
11491 * woman.el (woman-italic-face, woman-bold-face, woman-unknown-face)
11492 (woman-addition-face):
11493 * eshell/em-ls.el (eshell-ls-directory-face, eshell-ls-symlink-face)
11494 (eshell-ls-executable-face, eshell-ls-readonly-face)
11495 (eshell-ls-unreadable-face, eshell-ls-special-face)
11496 (eshell-ls-missing-face, eshell-ls-archive-face)
11497 (eshell-ls-backup-face, eshell-ls-product-face)
11498 (eshell-ls-clutter-face):
11499 * eshell/em-prompt.el (eshell-prompt-face):
11500 * eshell/esh-test.el (eshell-test-ok-face, eshell-test-failed-face):
11501 * obsolete/old-whitespace.el (whitespace-highlight-face):
11502 * progmodes/antlr-mode.el (antlr-font-lock-default-face)
11503 (antlr-font-lock-keyword-face, antlr-font-lock-syntax-face)
11504 (antlr-font-lock-ruledef-face, antlr-font-lock-tokendef-face)
11505 (antlr-font-lock-ruleref-face, antlr-font-lock-tokenref-face)
11506 (antlr-font-lock-literal-face):
11507 * progmodes/ebrowse.el (ebrowse-tree-mark-face)
11508 (ebrowse-root-class-face, ebrowse-file-name-face)
11509 (ebrowse-default-face, ebrowse-member-attribute-face)
11510 (ebrowse-member-class-face, ebrowse-progress-face):
11511 * progmodes/make-mode.el (makefile-space-face):
11512 * progmodes/sh-script.el (sh-heredoc-face):
11513 * textmodes/flyspell.el (flyspell-incorrect-face)
11514 (flyspell-duplicate-face):
11515 * textmodes/tex-mode.el (tex-math-face, tex-verbatim-face):
11516 * textmodes/texinfo.el (texinfo-heading-face):
11517 Mark face aliases with "-face" suffix as obsolete.
11518
11519 * mail/feedmail.el (file-name-buffer-file-type-alist): Define for
11520 compiler.
11521
11522 * net/eudc-bob.el (eudc-bob-generic-menu, eudc-bob-image-menu)
11523 (eudc-bob-sound-menu): Use defvar rather than defconst, since
11524 easy-menu-define wants to modify these.
11525
11526 * net/net-utils.el (nslookup): Use make-comint rather than comint-run.
11527
11528 * net/browse-url.el (browse-url-file-url):
11529 * term/internal.el (dos-codepage-setup):
11530 Use default-value rather than default-enable-multibyte-characters.
11531
11532 * progmodes/etags.el (etags-goto-tag-location):
11533 * progmodes/flymake.el (flymake-highlight-line)
11534 (flymake-goto-file-and-line, flymake-goto-line):
11535 * progmodes/gdb-mi.el (gdb-mouse-until, gdb-mouse-jump)
11536 (gdb-goto-breakpoint):
11537 * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
11538 * progmodes/python.el (python-find-function)
11539 (python-pdbtrack-track-stack-file):
11540 * progmodes/verilog-mode.el (verilog-surelint-off):
11541 * term/ns-win.el (ns-open-file-select-line):
11542 * textmodes/bibtex.el (bibtex-validate, bibtex-validate-globally):
11543 Use forward-line rather than goto-line.
11544
11545 * textmodes/reftex-cite.el (reftex-offer-bib-menu):
11546 * textmodes/reftex-index.el (reftex-display-index):
11547 * textmodes/reftex-ref.el (reftex-offer-label-menu):
11548 * textmodes/reftex-toc.el (reftex-toc):
11549 Remove unnecessary bindings of default-major-mode (all are followed by
11550 major-mode check and possible mode switch).
11551
11552 2009-08-31 Nick Roberts <nickrob@snap.net.nz>
11553
11554 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
11555 Handle watchpoints (bug#4282).
11556 (def-gdb-thread-buffer-command): Enable thread to be selected by
11557 clicking without selecting threads buffer first.
11558 (gdb-current-context-command): Use selected frame so that "up",
11559 "down" etc work in the GUD buffer.
11560 (gdb-update): Find selected frame before rendering stack buffer.
11561 (gdb-frame-handler): Set gdb-frame-number for stack buffer.
11562
11563 2009-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
11564
11565 * progmodes/sym-comp.el (displayed-completions): Remove.
11566 (symbol-complete): Use minibuffer-complete.
11567
11568 2009-08-31 Glenn Morris <rgm@gnu.org>
11569
11570 * emacs-lisp/byte-run.el (define-obsolete-face-alias): New macro.
11571
11572 * apropos.el (apropos-symbols-internal):
11573 Handle (obsolete) face aliases.
11574
11575 * faces.el (describe-face): Adjust the output format to be more like
11576 describe-variable, and to mention (obsolete) face aliases.
11577 Adjust the whitespace so that help-setup-xref works.
11578
11579 * calendar/calendar.el (calendar-today-face, diary-face, holiday-face):
11580 * calendar/diary-lib.el (diary-button-face):
11581 Mark these face aliases as obsolete.
11582
11583 * calendar/calendar.el (calendar-today): Doc fix.
11584
11585 2009-08-31 Nick Roberts <nickrob@snap.net.nz>
11586
11587 * progmodes/gdb-mi.el (gdb-control-all-threads)
11588 (gdb-control-current-thread): Force tool bar update.
11589 (gdb-non-stop-handler): New function.
11590 (gdb-init-1): Use it to test if non-stop mode is supported.
11591 Remove unused gdbmi buffer type.
11592
11593 2009-08-30 Kevin Rodgers <kevin.d.rodgers@gmail.com>
11594
11595 * progmodes/grep.el (grep-read-files): Strip trailing <N> from
11596 buffer names not visiting a file (e.g. cloned buffers). (Bug#4210)
11597
11598 2009-08-30 Nick Roberts <nickrob@snap.net.nz>
11599
11600 * comint.el (comint-exec-1): Check command is non-null first.
11601 Part of gdb-mi.el change (2009-08-28).
11602
11603 2009-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
11604
11605 * emacs-lisp/lisp.el (lisp-complete-symbol): Use minibuffer-complete.
11606
11607 2009-08-30 Juanma Barranquero <lekktu@gmail.com>
11608
11609 * subr.el (do-after-load-evaluation): Fix last change: use `mapc'
11610 instead of `dolist' to avoid a recursive require when bootstrapping.
11611
11612 2009-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
11613
11614 * emacs-lisp/lisp.el (field-complete): Use minibuffer-complete.
11615
11616 * net/ldap.el (ldap-search-internal): Use with-current-buffer and push.
11617
11618 * net/imap.el (imap-send-command): Simplify.
11619 (imap-wait-for-tag): point-max -> buffer-size.
11620
11621 * net/ange-ftp.el (internal-ange-ftp-mode): Use define-derived-mode.
11622
11623 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't use symbol-value
11624 with constant argument.
11625
11626 * emacs-lisp/debug.el (debugger-setup-buffer): Make it multibyte.
11627
11628 * emacs-lisp/cl.el (cl-macro-environment): Don't define it here.
11629
11630 * emacs-lisp/checkdoc.el (checkdoc-force-history-flag):
11631 Change default, since most of our files don't have a history.
11632 (checkdoc-display-status-buffer): Don't use a hidden buffer to show to
11633 the user.
11634
11635 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
11636 Add comint-run.
11637
11638 * calc/calc.el: Improve commenting convention.
11639 (calc-digit-map, toplevel): Simplify.
11640
11641 * comint.el (comint-insert-input): Be careful to only set point if we
11642 don't delegate to some other command.
11643
11644 * proced.el (proced-signal-list): Make it an alist.
11645 (proced-grammar-alist): Capitalize names.
11646 (proced-send-signal): Use a non-hidden buffer (since it's displayed).
11647 Disable undo manually and make it read-only.
11648 Use completion-annotate-function.
11649
11650 * minibuffer.el (minibuffer-message): If the current buffer is not
11651 a minibuffer, insert the message in the echo area rather than at the
11652 end of the buffer.
11653 (completion-annotate-function): New variable.
11654 (minibuffer-completion-help): Use it.
11655 (completion--embedded-envvar-table): Environment vars are
11656 always case-sensitive.
11657
11658 2009-08-30 Glenn Morris <rgm@gnu.org>
11659
11660 * progmodes/fortran.el (fortran-start-prog-re): New constant, extracted
11661 from fortran-current-defun.
11662 (fortran-beginning-of-subprogram): Be more precise about finding the
11663 start, to avoid an infinite loop in end-of-defun. (Bug#4259)
11664 (fortran-end-of-subprogram): Simplify.
11665 (fortran-current-defun): Use fortran-start-prog-re.
11666
11667 2009-08-29 Juanma Barranquero <lekktu@gmail.com>
11668
11669 * subr.el (do-after-load-evaluation): Simplify.
11670
11671 2009-08-29 Dan Nicolaescu <dann@ics.uci.edu>
11672
11673 * vc.el (vc-print-log-internal): Move RCS/CVS specific code ...
11674
11675 * vc-rcs.el (vc-rcs-print-log-cleanup): ... here. New function.
11676 (vc-rcs-print-log): Use it.
11677
11678 * vc-cvs.el (vc-cvs-print-log): Use vc-rcs-print-log-cleanup.
11679
11680 2009-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
11681
11682 * paths.el (abbrev-file-name): Move to abbrev.el.
11683 * abbrev.el (abbrev-file-name): Move from paths.el.
11684 Obey user-emacs-directory.
11685 * calc/calc.el (calc-settings-file): Don't autoload and instead obey
11686 user-emacs-directory.
11687 * dos-fns.el (dos-reevaluate-defcustoms): Don't reevaluate
11688 abbrev-file-name and calc-settings-file any more.
11689 * startup.el (command-line): Recompute abbrev-file-name and
11690 abbreviated-home-dir.
11691 (normal-no-mouse-startup-screen): Improve the generic code and get rid
11692 of the special code for when C-h bindings haven't been changed.
11693 (display-startup-echo-area-message): Use with-current-buffer.
11694 (command-line-1): Use a list of strings, rather than a list of lists
11695 of strings for longopts.
11696
11697 * files.el (get-free-disk-space): Use / for default-directory.
11698
11699 * textmodes/ispell.el (ispell-accept-output, ispell-command-loop):
11700 Use with-current-buffer.
11701
11702 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p):
11703 Recognize immutable variables like most-positive-fixnum.
11704 (byte-compile-setq-default): Check and warn if trying to assign
11705 to an immutable variable, or a non-variable.
11706
11707 * progmodes/cc-vars.el (c-comment-continuation-stars):
11708 * progmodes/cc-engine.el (c-looking-at-bos):
11709 * progmodes/cc-cmds.el (c-toggle-auto-state)
11710 (c-forward-into-nomenclature, c-backward-into-nomenclature)
11711 (c-comment-line-break-function): Add version of obsolescence.
11712
11713 2009-08-28 Juri Linkov <juri@jurta.org>
11714
11715 * files.el (magic-fallback-mode-alist): Add ZIP magic number
11716 associated with `archive-mode'.
11717
11718 * image.el (image-type-header-regexps): Use only JPEG magic number
11719 to determine JPEG images, and don't use `image-jpeg-p' because
11720 Emacs can display non-JFIF non-Exif JPEG images.
11721
11722 2009-08-28 Juanma Barranquero <lekktu@gmail.com>
11723
11724 * arc-mode.el (archive-mode):
11725 * emacs-lisp/re-builder.el (re-builder-unload-function):
11726 Protect against the default value of `major-mode' being nil.
11727
11728 2009-08-28 Juanma Barranquero <lekktu@gmail.com>
11729
11730 * international/ucs-normalize.el (ucs-normalize-sort, quick-check-list):
11731 Fix typos in docstrings.
11732
11733 * progmodes/js.el (js--macro-decl-re): Doc fix.
11734 (js--plain-method-re, js--split-name): Refloc docstring.
11735 (js--class-styles, js--make-merged-item, js--splice-into-items):
11736 Fix typos in docstrings; reflow docstrings.
11737 (js--maybe-join, js--function-prologue-beginning, js--flush-caches)
11738 (js--variable-decl-matcher, js--inside-pitem-p)
11739 (js--parse-state-at-point, js--get-all-known-symbols)
11740 (js--symbol-history, js-find-symbol, js--js-references)
11741 (js--moz-interactor, js--js-encode-value, js--read-tab):
11742 Fix typos in docstrings.
11743
11744 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
11745
11746 * textmodes/reftex.el (reftex-get-file-buffer-force):
11747 * progmodes/verilog-mode.el (verilog-batch-execute-func):
11748 * emulation/viper.el (viper-go-away, viper-set-hooks):
11749 * emacs-lisp/re-builder.el (re-builder-unload-function):
11750 * emacs-lisp/bytecomp.el (byte-compile-file):
11751 * ses.el (ses-unload-function):
11752 * hexl.el (hexl-find-file):
11753 * files.el (normal-mode):
11754 * ehelp.el (with-electric-help):
11755 * autoinsert.el (auto-insert-alist):
11756 * arc-mode.el (archive-mode):
11757 Use (default-value 'major-mode) instead of default-major-mode.
11758
11759 * textmodes/ispell.el (ispell-check-version, ispell-send-string):
11760 * international/mule.el (load-with-code-conversion):
11761 * emacs-lisp/debug.el (debug):
11762 * ediff-vers.el (ediff-rcs-get-output-buffer):
11763 * dired.el (dired-internal-noselect): Don't let-bind
11764 default-major-mode around code that doesn't use it.
11765 E.g. buffer creation via get-buffer-create doesn't use it.
11766
11767 2009-08-28 Michael Albinus <michael.albinus@gmx.de>
11768
11769 * net/tramp.el (all): Replace "'(lambda" by "(lambda".
11770 (tramp-handle-file-local-copy): Unset `file-name-handler-alist'
11771 when writing the temp file. Otherwise, epa-file gets confused.
11772 (tramp-register-file-name-handlers): Make it a defun. Move also
11773 `epa-file-handler' to the front of `file-name-handler-alist'.
11774
11775 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
11776
11777 * net/tramp.el (tramp-shell-prompt-pattern): Allow a prompt to
11778 start right after a ^M.
11779 (tramp-root-regexp, tramp-completion-file-name-regexp-unified)
11780 (tramp-completion-file-name-regexp-separate)
11781 (tramp-completion-file-name-regexp-url): Use \\` and \\'.
11782 (tramp-handle-file-attributes, tramp-set-file-uid-gid):
11783 Don't modify last-coding-system-used by accident.
11784 (tramp-completion-file-name-handler): Apply the checks here,
11785 instead during registration.
11786 (tramp-register-file-name-handlers): Renamed from
11787 `tramp-register-file-name-handler'. Register both
11788 `tramp-file-name-handler' and `tramp-completion-file-name-handler'.
11789 (tramp-register-completion-file-name-handler): Remove. (Bug#4260)
11790
11791 2009-08-28 Nick Roberts <nickrob@snap.net.nz>
11792
11793 * progmodes/gdb-mi.el (gdb-use-separate-io-buffer):
11794 Remove variable ...
11795 (gdb-init-1, gdb-display-separate-io-buffer)
11796 (gdb-frame-separate-io-buffer, gdb-setup-windows): ... and
11797 references to it.
11798 (gdb-inferior-io-mode): Use make-comint-in-buffer.
11799 (gdb-inferior-filter): Use comint-output-filter to stop
11800 echoing and remove ^M characters.
11801
11802 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
11803
11804 * emulation/viper-init.el (viper-restore-cursor-type):
11805 * emulation/cua-base.el (cua--update-indications):
11806 Replace default-cursor-type with (default-value 'cursor-type).
11807
11808 * mail/sendmail.el (mail-recover-1):
11809 * international/mule-diag.el (describe-current-coding-system-briefly)
11810 (describe-current-coding-system):
11811 * international/mule-cmds.el (select-safe-coding-system)
11812 (select-message-coding-system)
11813 (set-language-environment-coding-systems, set-locale-environment):
11814 * hexl.el (hexl-insert-multibyte-char):
11815 * dos-w32.el (find-buffer-file-type-coding-system):
11816 * simple.el (what-cursor-position):
11817 Replace uses of default-buffer-file-coding-system
11818 with (default-value 'buffer-file-coding-system).
11819
11820 * emacs-lisp/edebug.el (edebug-display, edebug-outside-excursion):
11821 Replace uses of default-cursor-in-non-selected-windows
11822 with (default-value 'cursor-in-non-selected-windows).
11823 Use with-current-buffer.
11824
11825 * mail/feedmail.el: Use CL macros.
11826 (feedmail-run-the-queue, feedmail-send-it-immediately):
11827 * dos-w32.el (find-buffer-file-type): Replace uses of
11828 default-buffer-file-type with (default-value 'buffer-file-type).
11829
11830 2009-08-28 Glenn Morris <rgm@gnu.org>
11831
11832 * calendar/diary-lib.el (diary-list-entries, diary-goto-entry)
11833 (diary-show-all-entries, diary-mark-entries, diary-make-entry):
11834 Use default-value of major-mode rather than default-major-mode.
11835
11836 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
11837
11838 * Makefile.in (update-elcfiles): Report left over elc files.
11839
11840 * mail/mailalias.el (build-mail-aliases): Use with-temp-buffer,
11841 expand-file-name and with-current-buffer.
11842 (mail-get-names, mail-directory): Use with-current-buffer.
11843
11844 * vc.el (vc-read-revision): New function.
11845 (vc-version-diff, vc-merge): Use it.
11846
11847 2009-08-27 Sam Steingold <sds@gnu.org>
11848
11849 * simple.el (kill-do-not-save-duplicates): New user option.
11850 (kill-new): When it is non-nil, and the new string is the same as
11851 the latest kill, set replace to t to avoid duplicates in kill-ring.
11852
11853 2009-08-27 Julian Scheid <julians37@gmail.com> (tiny change)
11854
11855 * net/tramp.el (tramp-handle-process-file): Do not flush all
11856 caches when `process-file-side-effects' is set.
11857 (tramp-handle-vc-registered): Use `tramp-get-file-exists-command'
11858 instead of `tramp-find-file-exists-command'.
11859 Unset `process-file-side-effects'.
11860
11861 2009-08-27 Michael Albinus <michael.albinus@gmx.de>
11862
11863 * net/tramp.el (tramp-methods): New method "rsyncc".
11864 (top): Add completion function for "rsyncc".
11865 (tramp-message-show-message): New defvar.
11866 (tramp-message, tramp-error): Use it.
11867 (tramp-do-copy-or-rename-file-directly): Extend check for direct
11868 remote copying.
11869 (tramp-do-copy-or-rename-file-out-of-band): Handle new
11870 `tramp-methods' entry `copy-env' of "rsyncc".
11871 (tramp-vc-registered-read-file-names): New defconst.
11872 (tramp-vc-registered-file-names): New defvar.
11873 (tramp-handle-vc-registered): Implement optimization strategy.
11874 (tramp-run-real-handler): Add `tramp-vc-file-name-handler'.
11875 (tramp-vc-file-name-handler): New defun.
11876 (tramp-get-ls-command, tramp-get-test-command)
11877 (tramp-get-file-exists-command, tramp-get-remote-ln)
11878 (tramp-get-remote-perl, tramp-get-remote-stat)
11879 (tramp-get-remote-id): Remove superfluous `with-current-buffer'.
11880
11881 * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
11882 (tramp-cache-inhibit-cache): Extend doc string. It allows also
11883 timestamps.
11884 (tramp-get-file-property): Check for timestamps in
11885 `tramp-cache-inhibit-cache'.
11886 (tramp-set-file-property): Write timestamp.
11887
11888 2009-08-27 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
11889
11890 * language/japan-util.el (japanese-symbol-table): Add entries for
11891 cp932-2-byte.
11892
11893 * international/characters.el: Add category `j' to cp932-2-byte.
11894
11895 2009-08-27 Kenichi Handa <handa@m17n.org>
11896
11897 * international/fontset.el (build-default-fontset-data): New macro.
11898 (setup-default-fontset): Use build-default-fontset-data for CJK,
11899 tibetan, ethiopic, and ipa.
11900
11901 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
11902
11903 * cus-start.el (default-major-mode): Customize `major-mode' instead.
11904 (enable-multibyte-characters): Not customizable any more.
11905
11906 * subr.el (default-mode-line-format, default-header-line-format)
11907 (default-line-spacing, default-abbrev-mode, default-ctl-arrow)
11908 (default-direction-reversed, default-truncate-lines)
11909 (default-left-margin, default-tab-width, default-case-fold-search)
11910 (default-left-margin-width, default-right-margin-width)
11911 (default-left-fringe-width, default-right-fringe-width)
11912 (default-fringes-outside-margins, default-scroll-bar-width)
11913 (default-vertical-scroll-bar, default-indicate-empty-lines)
11914 (default-indicate-buffer-boundaries, default-fringe-indicator-alist)
11915 (default-fringe-cursor-alist, default-scroll-up-aggressively)
11916 (default-scroll-down-aggressively, default-fill-column)
11917 (default-cursor-type, default-buffer-file-type)
11918 (default-cursor-in-non-selected-windows)
11919 (default-buffer-file-coding-system, default-major-mode)
11920 (default-enable-multibyte-characters): Mark as obsolete.
11921
11922 2009-08-27 Dan Nicolaescu <dann@ics.uci.edu>
11923
11924 * vc-dir.el (vc-dir-update): Remove debug helper.
11925
11926 * vc-cvs.el (vc-cvs-update-changelog): Fix typo.
11927
11928 2009-08-26 Sam Steingold <sds@gnu.org>
11929
11930 * simple.el (save-interprogram-paste-before-kill): New user option.
11931 (kill-new): When `save-interprogram-paste-before-kill' is non-nil,
11932 save the interprogram-paste into kill-ring before overriding it
11933 with the Emacs kill.
11934
11935 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
11936
11937 * vc.el (vc-trunk-p): Rename to vc-rcs-trunk-p and move to vc-rcs.el.
11938 (vc-minor-part): Rename to vc-rcs-minor-part and move to vc-rcs.el.
11939 (vc-default-previous-revision): Rename to vc-rcs-previous-revision
11940 and move to vc-rcs.el.
11941 (vc-default-next-revision): Rename to vc-rcs-next-revision and
11942 move to vc-rcs.el.
11943 (vc-cvs-update-changelog): Move to vc-cvs.el, use vc-call-backend.
11944 (vc-rcs-update-changelog): Remove.
11945 (vc-update-changelog-rcs2log): Rename to vc-rcs-update-changelog
11946 and move to vc-rcs.el.
11947
11948 * vc-rcs.el (vc-rcs-latest-on-branch-p, vc-rcs-checkin)
11949 (vc-rcs-checkout, vc-rcs-rollback): Adjust for the vc-rcs-trunk-p
11950 renaming.
11951 (vc-rcs-trunk-p, vc-rcs-minor-part, vc-rcs-previous-revision)
11952 (vc-rcs-next-revision, vc-rcs-update-changelog): Move here from
11953 vc.el, renamed to be RCS specific.
11954
11955 * vc-cvs.el (vc-cvs-previous-revision, vc-cvs-next-revision):
11956 New functions.
11957 (vc-cvs-update-changelog): Move here from vc.el.
11958
11959 * vc-sccs.el (vc-sccs-previous-revision, vc-sccs-next-revision):
11960 New functions.
11961
11962 2009-08-26 Stefan Monnier <monnier@iro.umontreal.ca>
11963
11964 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix up last change.
11965
11966 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
11967
11968 * vc-git.el (vc-git-register): Use "git add" for directories.
11969 (vc-git-stash, vc-git-stash-show): New functions.
11970 (vc-git-extra-menu-map): Bind them.
11971
11972 * vc-dir.el (vc-dir-node-directory, vc-dir-update): Get the parent
11973 directory correctly in case the item is a directory itself.
11974
11975 * vc.el: Document the desired behavior for reverted files in the
11976 `added' state.
11977 (vc-default-prettify-state-info): Remove function, unused.
11978
11979 * vc-bzr.el (vc-bzr-prettify-state-info): Remove function, unused.
11980
11981 2009-08-26 Glenn Morris <rgm@gnu.org>
11982
11983 * bindings.el (standard-mode-line-format): Reposition dashes in
11984 which-func entry. (Bug#4217)
11985
11986 * files.el (enable-local-variables, enable-local-eval)
11987 (safe-local-variable-values, safe-local-eval-forms): Mark as risky in
11988 the defcustoms.
11989 (auto-mode-alist, ignored-local-variables)
11990 (save-some-buffers-action-alist): Move risky declarations to the
11991 definitions.
11992 (dabbrev-case-fold-search, dabbrev-case-replace, display-time-string)
11993 (font-lock-defaults, format-alist, imenu--index-alist)
11994 (imenu-generic-expression, input-method-alist, minor-mode-alist)
11995 (mode-line-buffer-identification, mode-line-client, mode-line-modes)
11996 (mode-line-modified, mode-line-mule-info, mode-line-position)
11997 (mode-line-process, mode-line-remote, outline-level)
11998 (parse-time-rules, rmail-output-file-alist)
11999 (special-display-buffer-names, vc-mode):
12000 Move risky declarations to the relevant files.
12001 * bindings.el (mode-line-client, mode-line-mule-info, mode-line-remote)
12002 (mode-line-modified, mode-line-process, mode-line-position)
12003 (mode-line-modes, mode-line-buffer-identification, minor-mode-alist)
12004 * font-core.el (font-lock-defaults):
12005 * format.el (format-alist):
12006 * vc-hooks.el (vc-mode):
12007 * window.el (special-display-buffer-names):
12008 * international/mule-cmds.el (input-method-alist):
12009 Define riskiness here (dumped file) rather than in files.el.
12010 * dabbrev.el (dabbrev-case-fold-search, dabbrev-case-replace):
12011 * imenu.el (imenu-generic-expression, imenu--index-alist):
12012 * outline.el (outline-level):
12013 * time.el (display-time-string):
12014 * calendar/parse-time.el (parse-time-rules):
12015 * mail/rmailout.el (rmail-output-file-alist):
12016 Autoload riskiness here, rather than placing in files.el.
12017
12018 2009-08-26 Andreas Schwab <schwab@linux-m68k.org>
12019
12020 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Signal overflow.
12021
12022 2009-08-25 Michael Albinus <michael.albinus@gmx.de>
12023
12024 * simple.el (process-file-side-effects): New defvar.
12025
12026 * dired-aux.el (dired-show-file-type):
12027 * vc.el (vc-diff-internal):
12028 * vc-arch.el (vc-arch-diff):
12029 * vc-bzr.el (vc-bzr-sha1, vc-bzr-revision-completion-table):
12030 * vc-cvs.el (vc-cvs-state, vc-cvs-diff, vc-cvs-revision-table):
12031 * vc-git.el (vc-git-registered, vc-git-working-revision)
12032 (vc-git-find-revision, vc-git-diff, vc-git-revision-table)
12033 (vc-git--empty-db-p):
12034 * vc-hooks.el (vc-user-login-name):
12035 * vc-svn.el (vc-svn-registered, vc-svn-state)
12036 (vc-svn-dir-extra-headers, vc-svn-find-revision):
12037 * progmodes/grep.el (grep-probe): Let-bind
12038 `process-file-side-effects' with nil.
12039
12040 * net/dbus.el (dbus-ping): Add optional parameter TIMEOUT.
12041
12042 * net/tramp-gvfs.el (top): Use timeout of 100 msec pinging GVFS
12043 daemon. Replace ping by checking for running service for bluez
12044 and zeroconf. (Bug#4239)
12045
12046 2009-08-25 Kevin Ryde <user42@zip.com.au>
12047
12048 * net/dig.el (dig): Add autoload cookie.
12049
12050 2009-08-25 Glenn Morris <rgm@gnu.org>
12051
12052 * emacs-lisp/bytecomp.el (byte-compile-eval): Fix test for cl in
12053 load-history for absolute file-names.
12054 (byte-compile-file-form-require): Warn about use of the cl package.
12055
12056 * format.el (format-alist): Doc fix.
12057
12058 * play/bubbles.el (top-level): Don't require cl at run-time.
12059
12060 * progmodes/verilog-mode.el (top-level): Don't require lucid (and hence
12061 run-time cl).
12062
12063 2009-08-24 Dmitry Dzhus <dima@sphinx.net.ru>
12064
12065 * progmodes/gdb-mi.el (gdb-mapcar*): Replacement for `mapcar*'
12066 from cl package.
12067 (gdb-table-add-row, gdb-table-string): Use `gdb-mapcar*'.
12068
12069 2009-08-24 Jay Belanger <jay.p.belanger@gmail.com>
12070
12071 * calc/calc-alg.el (math-trig-rewrite)
12072 (math-hyperbolic-trig-rewrite): New functions.
12073 (calc-simplify): Simplify trig functions when asked.
12074
12075 2009-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
12076
12077 * diff-mode.el (diff-find-source-location): Avoid goto-line.
12078
12079 2009-08-24 Kenichi Handa <handa@m17n.org>
12080
12081 * language/ind-util.el (mapthread): Delete it.
12082 (combinatorial): New function.
12083 (indian--puthash-cv): Use combinatorial instead of mapthread.
12084
12085 2009-08-22 Kevin Ryde <user42@zip.com.au>
12086
12087 * emacs-lisp/checkdoc.el (checkdoc-force-history-flag)
12088 (checkdoc-arguments-in-order-flag): Add safe-local-variable booleanp.
12089 (checkdoc-symbol-words): Add safe-local-variable for list of strings.
12090 Clarify docstring that the value is strings not symbols.
12091 (checkdoc-list-of-strings-p): New function.
12092
12093 2009-08-22 Glenn Morris <rgm@gnu.org>
12094
12095 * files.el (auto-mode-alist):
12096 * hippie-exp.el (he-concat-directory-file-name):
12097 * lpr.el (lpr-windows-system, printer-name):
12098 * ls-lisp.el (ls-lisp-emulation, ls-lisp-use-insert-directory-program):
12099 * ps-print.el (ps-windows-system):
12100 * startup.el (command-line):
12101 * emulation/viper-ex.el (viper-glob-function):
12102 * international/mule-cmds.el (set-language-environment-coding-systems):
12103 * net/ange-ftp.el (ange-ftp-write-region):
12104 * obsolete/fast-lock.el (fast-lock-cache-name):
12105 Remove code for defunct system-types emx, macos, mswindows, next-mach,
12106 unisoft-unix, vax-vms, win32, w32.
12107
12108 * calendar/diary-lib.el (diary-mark-entries-1): Only mark all days of a
12109 given name if the pattern is not more specific.
12110
12111 * calendar/lunar.el (lunar-phase-names): New option.
12112 (lunar-phase): Doc fix.
12113 (lunar-cycles-per-year): New constant.
12114 (lunar-index): New function.
12115 (lunar-phase-list, diary-lunar-phases): Use lunar-index.
12116 (lunar-phase-name): Use lunar-phase-names.
12117 (calendar-lunar-phases): Use format.
12118 (lunar-new-moon-on-or-after): Use lunar-cycles-per-year.
12119
12120 * progmodes/cperl-mode.el (cperl-imenu-name-and-position):
12121 Copy imenu-example--name-and-position function here for own use.
12122 (cperl-xsub-scan): Use cperl-imenu-name-and-position.
12123
12124 * bs.el (bs--redisplay):
12125 * cus-edit.el (custom-redraw):
12126 * ibuffer.el (ibuffer-bury-buffer):
12127 * server.el (server-goto-line-column):
12128 * startup.el (command-line-1):
12129 * strokes.el (strokes-xpm-for-stroke):
12130 * term.el (term-display-buffer-line):
12131 * view.el (View-goto-line):
12132 * calc/calc.el (calc-do, calc-trail-buffer):
12133 * play/gamegrid.el (gamegrid-add-score-insecure):
12134 * progmodes/ada-mode.el (ada-compile-goto-error):
12135 * progmodes/ada-xref.el (ada-xref-find-in-modified-ali):
12136 (ebrowse-select-1st-to-9nth):
12137 * progmodes/cperl-mode.el (cperl-time-fontification):
12138 * progmodes/ebrowse.el (ebrowse-toggle-file-name-display)
12139 * progmodes/gud.el (gud-display-line):
12140 (idlwave-shell-display-line):
12141 * progmodes/idlw-shell.el (idlwave-shell-goto-frame)
12142 * progmodes/make-mode.el (makefile-browser-toggle):
12143 (vhdl-speedbar-port-copy, vhdl-compose-components-package):
12144 * progmodes/vhdl-mode.el (vhdl-speedbar-find-file)
12145 * textmodes/picture.el (picture-draw-rectangle):
12146 * textmodes/reftex-index.el (reftex-index-goto-letter):
12147 (reftex-select-jump-to-previous):
12148 * textmodes/reftex-sel.el (reftex-find-start-point)
12149 * textmodes/reftex-toc.el (reftex-toc, reftex-toc-restore-region):
12150 (rst-straighten-deco-spacing, rst-section-tree, rst-toc):
12151 * textmodes/rst.el (rst-promote-region, rst-straighten-decorations)
12152 * textmodes/tex-mode.el (tex-compilation-parse-errors):
12153 * textmodes/two-column.el (2C-associated-buffer):
12154 Use forward-line rather than goto-line.
12155
12156 * emulation/vi.el (vi-goto-line): Don't warn about non-interactive
12157 goto-line.
12158
12159 * international/ucs-normalize.el (nfd, decomposition-translation-alist)
12160 (decomposition-char-recursively, alist-list-to-vector, quick-check-list)
12161 (quick-check-list-to-regexp): Declare.
12162
12163 * progmodes/make-mode.el (makefile-browser-insert-selection):
12164 Use goto-char rather than goto-line.
12165
12166 * progmodes/prolog.el (compilation-error-regexp-alist)
12167 (compilation-forget-errors): Declare.
12168
12169 2009-08-22 Juri Linkov <juri@jurta.org>
12170
12171 * progmodes/grep.el (lgrep, rgrep): At the beginning
12172 set `dir' to `default-directory' unless `dir' is a non-nil
12173 readable directory. (Bug#4052)
12174 (lgrep, rgrep): Change a weird way to report an error
12175 from using `read-string' to using `error'.
12176 Instead of using interactive arguments in the function body,
12177 add new argument `confirm'.
12178
12179 2009-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
12180
12181 * textmodes/remember.el (remember-buffer):
12182 * progmodes/cperl-mode.el (cperl-vc-header-alist):
12183 * calendar/icalendar.el (icalendar-convert-diary-to-ical)
12184 (icalendar-extract-ical-from-buffer):
12185 * net/newst-treeview.el (newsticker-groups-filename):
12186 * net/newst-backend.el (newsticker-cache-filename):
12187 * speedbar.el (speedbar-update-speed, speedbar-navigating-speed)
12188 (speedbar-ignored-path-expressions, speedbar-ignored-path-regexp)
12189 (speedbar-add-ignored-path-regexp, speedbar-line-path)
12190 (speedbar-buffers-line-path, speedbar-path-line)
12191 (speedbar-buffers-line-path):
12192 * epg.el (epg-passphrase-callback-function, epg-start-sign-keys)
12193 (epg-sign-keys):
12194 * epa.el (epa-display-verify-result):
12195 * progmodes/pascal.el (pascal-outline): Add version of obsolescence.
12196
12197 2009-08-21 Glenn Morris <rgm@gnu.org>
12198
12199 * progmodes/js.el (inferior-moz-process): Fix declaration.
12200
12201 * imenu.el (imenu-example--name-and-position): Fix obsolescence message.
12202
12203 * obsolete/rnewspost.el (news-mail-reply):
12204 Use goto-char rather than goto-line.
12205
12206 * term/ns-win.el (ns-open-file-select-line):
12207 Use line-beginning-position rather than goto-line.
12208
12209 * apropos.el (apropos-command):
12210 * ehelp.el (electric-helpify):
12211 * printing.el (pr-show-setup):
12212 * strokes.el (strokes-help):
12213 * tutorial.el (tutorial--describe-nonstandard-key)
12214 (tutorial--detailed-help):
12215 * woman.el (woman-mini-help, woman-display-extended-fonts):
12216 * calc/calc-help.el (calc-describe-key):
12217 * emulation/edt.el (edt-electric-helpify):
12218 * international/mule-diag.el (mule-diag):
12219 * play/yow.el (apropos-zippy):
12220 * progmodes/python.el (python-describe-symbol):
12221 * progmodes/vhdl-mode.el (vhdl-doc-variable, vhdl-doc-mode):
12222 * textmodes/table.el (*table--cell-describe-mode)
12223 (*table--cell-describe-bindings):
12224 Use help-print-return-message rather than the now obsolete alias.
12225
12226 * calendar/cal-move.el (calendar-cursor-to-nearest-date)
12227 (calendar-cursor-to-visible-date):
12228 * play/5x5.el (5x5-position-cursor):
12229 * play/decipher.el (decipher):
12230 * play/gomoku.el (gomoku-goto-xy):
12231 * play/landmark.el (lm-goto-xy):
12232 * play/mpuz.el (mpuz-paint-errors, mpuz-paint-statistics)
12233 (mpuz-paint-digit):
12234 Use forward-line, not goto-line.
12235
12236 * mail/rmail.el (rmail-obsolete): Delete custom group.
12237 (rmail-pop-password, rmail-pop-password-required): Make into aliases.
12238 (rmail-remote-password, rmail-remote-password-required):
12239 Remove unneeded :set-after and :set properties.
12240
12241 2009-08-21 Michael Albinus <michael.albinus@gmx.de>
12242
12243 * net/dbus.el (top): Initialize only when `dbusbind' is loaded.
12244
12245 2009-08-21 Dan Nicolaescu <dann@ics.uci.edu>
12246
12247 * loadup.el: Remove leftover macos code.
12248
12249 * vc-git.el (vc-git-annotate-command): Run asynchronously.
12250 Explicitly pass the date format to git blame so that user local
12251 so that the output format can be parsed.
12252
12253 2009-08-20 Michael Albinus <michael.albinus@gmx.de>
12254
12255 * net/dbus.el (top): Don't check for (getenv
12256 "DBUS_SESSION_BUS_ADDRESS"). It's done in dbusbind.c now.
12257
12258 2009-08-19 Magnus Henoch <magnus.henoch@gmail.com>
12259
12260 * log-edit.el (log-edit-strip-single-file-name): New var.
12261 (log-edit-insert-changelog): Use it. Bug#3571
12262
12263 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
12264
12265 * subr.el (read-passwd): Use read-key so keypad keys work as well.
12266 Bug#3287
12267
12268 * help.el (help-print-return-message): Rename from
12269 print-help-return-message.
12270
12271 * log-view.el (log-view-mode-map): Remove `q' binding, and unreliable
12272 cvs-mode-map parent hack.
12273 (log-view-mode): Derive from special-mode.
12274
12275 * linum.el (linum-mode): window-size-change-functions is redundant.
12276 Adapt to new window-configuration-change-hook behavior.
12277 (linum-after-size, linum-after-config): Remove.
12278
12279 * imenu.el (imenu-example--name-and-position)
12280 (imenu-example--lisp-extract-index-name)
12281 (imenu-example--create-lisp-index, imenu-example--create-c-index):
12282 Mark as obsolete.
12283
12284 * progmodes/prolog.el (inferior-prolog-error-regexp-alist): New var.
12285 (inferior-prolog-mode): Use it.
12286 (inferior-prolog-load-file): Reset list of errors.
12287
12288 2009-08-19 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
12289
12290 * language/tibetan.el ("Tibetan"): Fix sample-text entry.
12291
12292 * language/tai-viet.el ("TaiViet"): Fix sample-text entry.
12293
12294 2009-08-19 Michael Albinus <michael.albinus@gmx.de>
12295
12296 * net/dbus.el (top): Apply `dbus-init-bus' only if the session bus
12297 is running already.
12298
12299 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
12300
12301 * subr.el (listify-key-sequence-1): Use normal syntax since those
12302 integers are nowadays always represented by the same (positive) number
12303 on all platforms.
12304 (read-key-empty-map): New const.
12305 (read-key-delay): New var.
12306 (read-key): New function.
12307 (force-mode-line-update): Use with-current-buffer.
12308 (locate-user-emacs-file): Don't forget to abbreviate the file name.
12309 (start-process-shell-command, start-file-process-shell-command):
12310 Discourage the use of command-args.
12311
12312 2009-08-19 Glenn Morris <rgm@gnu.org>
12313
12314 * emacs-lisp/authors.el (authors-fixed-entries): Remove cvtmail.
12315
12316 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
12317
12318 * simple.el (choose-completion-string): Don't rely on
12319 minibuffer-completing-file-name and ad-hoc checks to decide whether
12320 to continue completion or not.
12321
12322 * minibuffer.el (minibuffer-hide-completions): New function.
12323 (completion--do-completion): Use it.
12324 (completions-annotations): New face.
12325 (completion--insert-strings): Use it.
12326 (completion-pcm--delim-wild-regex): Add docstring.
12327 (completion-pcm--string->pattern): Add support for 0-width delimiters
12328 in completion-pcm--delim-wild-regex.
12329
12330 2009-08-18 Stefan Monnier <monnier@iro.umontreal.ca>
12331
12332 * international/ucs-normalize.el (ucs-normalize-hfs-nfd-post-read-conversion):
12333 Remove unused var `buffer-modified-p'.
12334
12335 * minibuffer.el (completion--do-completion): Move point for the #b001
12336 case as well (bug#4176).
12337 (minibuffer-complete, minibuffer-complete-word): Don't move point.
12338
12339 2009-08-18 Michael Albinus <michael.albinus@gmx.de>
12340
12341 * net/dbus.el (dbus-init-bus): Declare. Apply it for the :system
12342 and :session buses.
12343
12344 2009-08-18 Kenichi Handa <handa@m17n.org>
12345
12346 * international/ucs-normalize.el (ucs-normalize-version):
12347 Change to 1.1.
12348 (ucs-normalize-hfs-nfd-pre-write-conversion): New function.
12349 (utf-8-hfs): Make it perform normalization on encoding too.
12350
12351 * textmodes/paragraphs.el: Change to utf-8. Adjust coding cookie.
12352 (sentence-end-without-space): Delete duplicated chars.
12353 (sentence-end-base): Likewise.
12354
12355 * textmodes/sgml-mode.el: Change to utf-8. Adjust coding cookie.
12356 (html-mode): Delete duplicated chars from sentence-end-base.
12357
12358 * textmodes/texinfo.el: Change to utf-8. Adjust coding cookie.
12359 (texinfo-mode): Delete duplicated chars from sentence-end-base.
12360
12361 2009-08-17 Chong Yidong <cyd@stupidchicken.com>
12362
12363 * files.el (hack-one-local-variable): If the mode function is for
12364 a minor mode, pass it an argument (Bug#4148).
12365
12366 2009-08-17 Michael Albinus <michael.albinus@gmx.de>
12367
12368 * net/tramp.el (tramp-register-completion-file-name-handler):
12369 Check also for (member 'partial-completion completion-styles).
12370
12371 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
12372
12373 * progmodes/cperl-mode.el (cperl-electric-paren): Don't expand
12374 abbrev (Bug#3943).
12375
12376 2009-08-16 Ilya Zakharevich <ilyaz@cpan.org>
12377
12378 * progmodes/cperl-mode.el: Merge upstream 6.2.
12379 (cperl-mode-syntax-table): Modify syntax entry for ["'`].
12380 (cperl-forward-re): Check cperl-brace-recursing.
12381 (cperl-highlight-charclass): New function.
12382 (cperl-find-pods-heres): Use it.
12383 (cperl-fill-paragraph): Synch to save-excursion placement used upstream.
12384 (cperl-beautify-regexp-piece): Fix column calculation.
12385 (cperl-make-regexp-x): Handle case where point is between "q" and "rs".
12386 (cperl-beautify-level): Don't process entire regexp.
12387 (cperl-build-manpage, cperl-perldoc): Bind Man-switches before
12388 calling man.
12389 (cperl-tips-faces, cperl-mode, cperl-electric-backspace): Doc fix.
12390 (cperl-init-faces): Build a list in the normal way.
12391
12392 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
12393
12394 * calendar/parse-time.el (parse-time-string-chars): Save match
12395 data.
12396
12397 2009-08-16 Stefan Monnier <monnier@iro.umontreal.ca>
12398
12399 * progmodes/sql.el (sql-product-alist): Add :name tag to entries.
12400 (sql-product): Use it.
12401 (sql-mode-menu): Auto-generate the menu based on sql-product-alist.
12402 (sql-set-product): Add completion.
12403 (sql-highlight-oracle-keywords, sql-highlight-postgres-keywords)
12404 (sql-highlight-linter-keywords, sql-highlight-ms-keywords)
12405 (sql-highlight-ansi-keywords, sql-highlight-sybase-keywords)
12406 (sql-highlight-informix-keywords, sql-highlight-interbase-keywords)
12407 (sql-highlight-ingres-keywords, sql-highlight-solid-keywords)
12408 (sql-highlight-mysql-keywords, sql-highlight-sqlite-keywords)
12409 (sql-highlight-db2-keywords): Remove.
12410 (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
12411 (sql-highlight-product): Use derived-mode-p.
12412 (sql-set-sqli-buffer): Use with-current-buffer.
12413 (sql-connect-informix, sql-connect-ingres, sql-connect-oracle):
12414 Simplify.
12415
12416 * emacs-lisp/lisp-mode.el (lisp-indent-region): Remove unused function.
12417
12418 * term.el: Fix commenting convention, turn comments into docstrings.
12419
12420 2009-08-16 E. Jay Berkenbilt <ejb@ql.org> (tiny change)
12421
12422 * whitespace.el (whitespace-style): Doc fix (Bug#3661).
12423
12424 2009-08-16 Jan Seeger <jan.seeger@thenybble.de> (tiny change)
12425
12426 * calendar/parse-time.el (parse-time-string-chars): Compute using
12427 character classes, to handle non-ascii characters (Bug#3190).
12428
12429 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
12430
12431 * progmodes/sh-script.el (sh-maybe-here-document): Avoid inserting
12432 another heredoc if the user adds another < (Bug#3226).
12433
12434 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
12435 Don't initialize based on window-system (Bug#4124).
12436
12437 * facemenu.el (facemenu-read-color): Use a completion function
12438 that accepts any defined color, such as RGB triplets (Bug#3677).
12439
12440 * files.el (get-free-disk-space): Change fallback default
12441 directory to /. Expand DIR argument before switching to fallback.
12442 Suggested by Kevin Ryde (Bug#2631, Bug#3911).
12443
12444 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
12445
12446 * files.el (load-library): Doc fix.
12447
12448 2009-08-15 Michael Kifer <kifer@cs.stonybrook.edu>
12449
12450 * emulation/viper-cmd.el (viper-insert-isearch-string): New function.
12451 (viper-if-string): Redefine C-s in the minibuffer to insert the last
12452 incremental search string.
12453
12454 * ediff-init.el (ediff-coding-system): Use escape-quoted in case of
12455 XEmacs.
12456
12457 * ediff-merg.el (ediff-merge-region-is-non-clash-to-skip)
12458 (ediff-merge-region-is-non-clash)
12459 (ediff-skip-merge-region-if-changed-from-default-p): Use defun.
12460 Also check if the job is really a merge job.
12461
12462 * ediff.el (ediff-current-file): New function.
12463
12464 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
12465
12466 * progmodes/js.el: Edit docstrings throughout to follow Emacs
12467 conventions.
12468 (js-insert-and-indent): Delete function.
12469 (js-mode-map): Don't bind keys to js-insert-and-indent.
12470 (js-beginning-of-defun): Rename from js--beginning-of-defun.
12471 (js-end-of-defun): Rename from js--end-of-defun.
12472 (js-auto-indent-flag): Delete variable.
12473
12474 2009-08-14 Chong Yidong <cyd@stupidchicken.com>
12475
12476 * progmodes/js.el: Remove proclaim statement.
12477 Defvar which-func-imenu-joiner-function to silence compiler.
12478
12479 * files.el (auto-mode-alist): Use js-mode for .js files.
12480
12481 * progmodes/js2-mode.el: Remove file.
12482
12483 * Makefile.in (ELCFILES): Add js.el, and remove js2-mode.el.
12484
12485 * speedbar.el (speedbar-supported-extension-expressions): Add .js.
12486
12487 * progmodes/hideshow.el (hs-special-modes-alist): Add js-mode entry.
12488
12489 2009-08-14 Daniel Colascione <dan.colascione@gmail.com>
12490 Karl Landstrom <karl.landstrom@brgeight.se>
12491
12492 * progmodes/js.el: New file.
12493
12494 2009-08-14 Mark A. Hershberger <mah@everybody.org>
12495
12496 * timezone.el (timezone-parse-date): Add ability to understand ISO
12497 basic format (minimal separators) dates in addition to the
12498 already-supported extended format dates.
12499
12500 2009-08-14 Eli Zaretskii <eliz@gnu.org>
12501
12502 * international/ucs-normalize.el: Add a `coding' file variable.
12503
12504 * Makefile.in (ELCFILES): Add international/ucs-normalize.elc.
12505
12506 2009-08-14 Sam Steingold <sds@gnu.org>
12507
12508 * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
12509
12510 2009-08-13 Chong Yidong <cyd@stupidchicken.com>
12511
12512 * faces.el (help-argument-name): Define it here instead of
12513 help-fns.el, because in daemon mode help-fns.el may be loaded when
12514 faces are still uninitialized (Bug#1078).
12515
12516 * help-fns.el (help-argument-name): Move defface to faces.el.
12517
12518 2009-08-13 Nick Roberts <nickrob@snap.net.nz>
12519
12520 * progmodes/gdb-mi.el (gdb-inferior-io-mode): Use start-process to
12521 create buffer with a pty but no process so that GDB can make the
12522 inferior the controlling process.
12523
12524 2009-08-13 Taichi Kawabata <kawabata.taichi@gmail.com>
12525
12526 * international/ucs-normalize.el: New file.
12527
12528 2009-08-13 Richard Stallman <rms@gnu.org>
12529
12530 * mail/rmail.el (rmail-get-attr-names):
12531 Accept an attribute header that is too short.
12532
12533 * mail/rmail.el (rmail-forget-messages):
12534 Ignore nil elt in rmail-message-vector. Use dotimes.
12535
12536 * progmodes/compile.el (compilation-goto-locus):
12537 Use next-error-move-function.
12538
12539 * simple.el (next-error-move-function): New variable.
12540
12541 2009-08-12 Juri Linkov <juri@jurta.org>
12542
12543 * progmodes/grep.el (lgrep): Ensure that `default-directory' is
12544 always non-nil. (Bug#4052)
12545
12546 * replace.el (read-regexp): Return empty string when
12547 `default-value' is nil.
12548 (keep-lines-read-args): Don't use empty string as the
12549 default value for `read-regexp'. (Bug#2495)
12550
12551 2009-08-12 Juri Linkov <juri@jurta.org>
12552
12553 * international/mule-cmds.el (ucs-insert): Change arguments
12554 from `arg' to `character', `count', `inherit' to be the same
12555 as in `insert-char'. Doc fix. (Bug#4039)
12556
12557 * international/mule-conf.el (utf-16be-with-signature): Doc fix.
12558
12559 2009-08-12 Juri Linkov <juri@jurta.org>
12560
12561 * files-x.el: New file.
12562
12563 * files.el: Move code that deals with adding/deleting
12564 file/directory-local variables to files-x.el.
12565
12566 * Makefile.in (ELCFILES): Add files-x.elc.
12567
12568 2009-08-11 Dmitry Dzhus <dima@sphinx.net.ru>
12569
12570 * progmodes/gdb-mi.el (gdb-line-posns): New helper which helps not
12571 to use `goto-line'.
12572 (gdb-place-breakpoints, gdb-get-location): Rewritten without
12573 `goto-line'.
12574 (gdb-invalidate-disassembly): Do not refresh upon receiving
12575 'update signal. Instead, update all disassembly buffers only after
12576 threads list.
12577 (gdb): Send -target-detach when buffer is killed (Bug#3794).
12578 (gdb-starting): Moved -data-list-register-names...
12579 (gdb-stopped): ...here so it's sent when first thread stops.
12580 (gdb-registers-handler-custom): Do nothing if register names are
12581 unknown yet.
12582
12583 * progmodes/gud.el (gud-stop-subjob): Rewritten without macros
12584 from `gdb-mi.el' to avoid extra tangling.
12585
12586 * progmodes/gdb-mi.el (gdb-gud-context-call): Reverting previous
12587 change which breaks `gud-def' definitions used in `gdb'.
12588 (gdb-update-gud-running): No extra fuss for updating frame number.
12589
12590 2009-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
12591
12592 * international/mule-cmds.el (mule-keymap, mule-menu-keymap)
12593 (describe-language-environment-map, setup-language-environment-map)
12594 (set-coding-system-map): Move initialization into declaration.
12595 (set-language-info-alist): Last arg to define-key-after can be skipped.
12596
12597 * international/quail.el (quail-completion-1): Simplify.
12598 (quail-define-rules): Use slightly more compact code.
12599 (quail-insert-decode-map): Propertize keys, compact columns.
12600
12601 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
12602 Add goto-line.
12603
12604 2009-08-10 Miles Bader <miles@gnu.org>
12605
12606 * progmodes/js2-mode.el (js2-warning, js2-error, js2-jsdoc-tag)
12607 (js2-jsdoc-type, js2-jsdoc-value, js2-function-param)
12608 (js2-instance-member, js2-private-member, js2-private-function-call)
12609 (js2-jsdoc-html-tag-name, js2-jsdoc-html-tag-delimiter)
12610 (js2-magic-paren, js2-external-variable):
12611 Remove "-face" suffix from face names.
12612 (js2-jsdoc-highlight-helper, js2-highlight-jsdoc)
12613 (js2-highlight-undeclared-vars, js2-peek-token)
12614 (js2-parse-function-params, js2-mode-show-errors)
12615 (js2-mode-show-warnings, js2-make-magic-delimiter)
12616 (js2-mode-highlight-magic-parens): Update to use new face names.
12617
12618 2009-08-09 Michael Albinus <michael.albinus@gmx.de>
12619
12620 * net/tramp.el (tramp-get-ls-command-with-dired): New defun.
12621 (tramp-handle-insert-directory): Handle "--dired". (Bug#4075)
12622
12623 2009-08-09 Chong Yidong <cyd@stupidchicken.com>
12624
12625 * subr.el: Provide hashtable-print-readable.
12626
12627 * progmodes/hideshow.el (hs-special-modes-alist): Don't use
12628 hs-c-like-adjust-block-beginning.
12629 (hs-hide-block-at-point): Stop hiding at the beginning of
12630 hs-block-end-regexp (Bug#700).
12631
12632 2009-08-09 Dmitry Dzhus <dima@sphinx.net.ru>
12633
12634 * progmodes/gdb-mi.el (gdb-gud-context-call): Does not need to be
12635 a macro.
12636 (gdb-registers-handler-custom): Do not fail when register names
12637 are unavailable.
12638
12639 2009-08-08 Dmitry Dzhus <dima@sphinx.net.ru>
12640
12641 * progmodes/gdb-mi.el (gdb-control-all-threads)
12642 (gdb-control-current-thread): Interactive setters for
12643 `gdb-gud-control-all-threads' to use in menu.
12644 (gdb-show-run-p): Show «Go» when process is not active.
12645 (gud-tool-bar-map): Add non-stop/A,T indicator. Uses
12646 gud/thread.xpm and gud/all.xpm.
12647
12648 2009-08-08 Yoni Rabkin <yoni@rabkins.net>
12649
12650 * net/net-utils.el (net-utils-font-lock-keywords): New var.
12651 (nslookup-font-lock-keywords): Make it a variable.
12652 (net-utils-mode): New mode for viewing diagnostic network output.
12653 (net-utils-remove-ctrl-m-filter): Set inhibit-read-only.
12654 (net-utils-run-simple): New function.
12655 (ifconfig, iwconfig, netstat, arp, route): Use it.
12656
12657 2009-08-08 Dmitry Dzhus <dima@sphinx.net.ru>
12658
12659 * progmodes/gdb-mi.el (gdb-read-memory-custom)
12660 (gdb-memory-set-address, def-gdb-set-positive-number)
12661 (def-gdb-memory-format, def-gdb-memory-unit): Update memory buffer
12662 after changing settings.
12663 (gdb-invalidate-disassembly): Update when first shown.
12664 (gdb-edit-locals-value): Fixed.
12665 (gdb-registers-handler-custom): Print registers in right order and
12666 allow changing register values (only for current thread yet).
12667 (gdb-breakpoints-mode-map): Don't assume threads buffer is present.
12668 (gdb-threads-mode-map): Don't assume breakpoints buffer is present.
12669 (gdb-disassembly-handler-custom, gdb-stack-list-frames-custom)
12670 (gdb-locals-handler-custom, gdb-registers-handler-custom): Thread
12671 info in mode name.
12672 (gdb-registers-mode-map): TAB to switch to locals.
12673
12674 2009-08-08 Eli Zaretskii <eliz@gnu.org>
12675
12676 * mail/rmail.el (rmail-add-mbox-headers)
12677 (rmail-set-message-counters-counter): Search for
12678 rmail-unix-mail-delimiter instead of just "From ". (Bug#4076)
12679
12680 2009-08-08 Glenn Morris <rgm@gnu.org>
12681
12682 * Makefile.in (ELCFILES): Update.
12683
12684 2009-08-07 Eli Zaretskii <eliz@gnu.org>
12685
12686 * mail/sendmail.el (mail-yank-original): Set
12687 buffer-file-coding-system from the one used by the message whose
12688 text is yanked.
12689
12690 * calc/calc-graph.el (calc-graph-plot): Set calc-graph-last-device
12691 to "windows" when "pgnuplot" is used.
12692 (calc-graph-command, calc-gnuplot-command, calc-graph-init): Don't
12693 call accept-process-output if "pgnuplot" is used.
12694 (calc-graph-init): Don't send -display and -geometry to
12695 "pgnuplot". If "pgnuplot" is used, glean gnuplot version by
12696 running "pgnuplot -V" with shell-command-to-string.
12697
12698 * calc/calc.el (calc-gnuplot-name) [windows-nt]: Use "pgnuplot" as
12699 the default.
12700
12701 2009-08-07 Eli Zaretskii <eliz@gnu.org>
12702
12703 * Makefile.in (ELCFILES): org/org-export-latex.elc renamed to
12704 org/org-latex.elc.
12705
12706 2009-08-07 Dan Nicolaescu <dann@ics.uci.edu>
12707
12708 * vc-dispatcher.el (vc-resynch-window): Update comment.
12709
12710 * term.el (term-handle-ansi-escape): Add comments with the
12711 terminfo capabilities implemented.
12712
12713 2009-08-06 Dmitry Dzhus <dima@sphinx.net.ru>
12714
12715 * progmodes/gdb-mi.el (gdb-var-create-regexp): Removed.
12716 (gdb-var-create-handler): Rewritten using JSON parser.
12717 (gdb-propertize-header): Moved earlier.
12718 (gdb-set-header): Removed to avoid duplication.
12719 (gdb-thread-list-handler-custom, gdb-invalidate-disassembly):
12720 Refresh disassembly buffers only after threads list have been
12721 update.
12722 (gdb-threads-header, gdb-registers-header): Per-buffer header line
12723 variables.
12724
12725 2009-08-04 Juri Linkov <juri@jurta.org>
12726
12727 * files.el: Commands to add/delete file/directory-local variables.
12728 (read-file-local-variable, read-file-local-variable-value)
12729 (read-file-local-variable-mode, modify-file-local-variable)
12730 (modify-file-local-variable-prop-line)
12731 (modify-dir-local-variable): New functions.
12732 (add-file-local-variable, delete-file-local-variable)
12733 (add-file-local-variable-prop-line, delete-file-local-variable-prop-line)
12734 (add-dir-local-variable, delete-dir-local-variable)
12735 (copy-file-locals-to-dir-locals, copy-dir-locals-to-file-locals)
12736 (copy-dir-locals-to-file-locals-prop-line): New commands.
12737
12738 2009-08-04 Chong Yidong <cyd@stupidchicken.com>
12739
12740 * abbrev.el (insert-abbrev-table-description): Prettify output.
12741 Suggested by Karl Chen.
12742
12743 2009-08-04 Dmitry Dzhus <dima@sphinx.net.ru>
12744
12745 * progmodes/gdb-mi.el (gdb-frame-number): Initialize with nil.
12746 (gdb-overlay-arrow-position): Rename to `gdb-disassembly-position'.
12747 (gdb-overlay-arrow-position, gdb-thread-position)
12748 (gdb-disassembly-position): Declare variables.
12749 (gdb-wait-for-pending): Function now.
12750 (gdb-add-subscriber, gdb-delete-subscriber, gdb-get-subscribers)
12751 (gdb-emit-signal, gdb-buf-publisher): Declare before first use so
12752 compilation goes smoothly.
12753 (gdb, gdb-non-stop, gdb-buffers): New customization groups.
12754 (gdb-non-stop-setting): New customization setting which replaces
12755 `gdb-non-stop' so changing it doesn't break active GDB session.
12756 (gdb-stack-buffer-locations, gdb-stack-buffer-addresses)
12757 (gdb-thread-buffer-verbose-names, gdb-thread-buffer-arguments)
12758 (gdb-thread-buffer-locations, gdb-thread-buffer-addresses)
12759 (gdb-show-threads-by-default): New customization options.
12760 (gdb-buffer-type, gdb-buffer-shows-main-thread-p): New helper
12761 routines.
12762 (gdb-get-buffer-create): Send buffers update signal when they are
12763 created.
12764 (gdb-invalidate-locals, gdb-invalidate-registers)
12765 (gdb-invalidate-breakpoints)
12766 (gdb-invalidate-threads, gdb-invalidate-disassembly)
12767 (gdb-invalidate-memory): Accept update signal.
12768 (gdb-current-context-command): Use --frame option.
12769 (gdb-update-gud-running, gdb-running, gdb-setq-thread-number):
12770 Implement `gdb-frame-number' selection logic.
12771 (gdb-show-run-p, gdb-show-stop-p): Helper functions which decide
12772 whether to show GUD toolbar buttons.
12773 (gdb-thread-exited): Unselect current thread when it exits.
12774 (gdb-stopped): Typo fixed (now really runs `gdb-stopped-hooks').
12775 (gdb-mark-line): Routine which sets overlay arrow or inverses
12776 video on fringeless displays.
12777 (gdb-table, gdb-table-add-row, gdb-table-string): Structure used
12778 to build aligned columns of data in GDB buffers and set text
12779 properties line-by-line.
12780 (gdb-invalidate-breakpoints)
12781 (gdb-breakpoints-list-handler-custom)
12782 (gdb-thread-list-handler-custom, gdb-disassembly-handler-custom)
12783 (gdb-stack-list-frames-custom, gdb-locals-handler-custom)
12784 (gdb-registers-handler-custom): Align data columns.
12785 (gdb-locals-handler-custom): Now prints data like in variable
12786 declarations.
12787 (gdb-jump-to, gdb-file-button, gdb-insert-file-location-button):
12788 Removed confusing buttons.
12789 (gdb-invalidate-threads): Append --frame.
12790 (gdb-threads-mode-map, gdb-breakpoints-mode-map): TAB to switch
12791 between breakpoints/threads buffers.
12792 (gdb-set-window-buffer): Now can ignore dedicated windows.
12793 (gdb-propertize-header): Use `gdb-set-window-buffer'.
12794 (def-gdb-thread-buffer-simple-command): Numerous typos fixed.
12795 (def-gdb-thread-buffer-gud-command): Replaces
12796 `def-gdb-thread-buffer-gdb-command' and uses standard GUD commands
12797 for fine thread control.
12798 (gdb-preempt-existing-or-display-buffer): New function used to
12799 display bound buffers without breaking window layout.
12800 (gdb-frame-location): Replaces `gdb-insert-frame-location'.
12801 (gdb-select-frame): New version of `gdb-frames-select' which now
12802 sets `gdb-frame-number' so commands may use --frame option instead
12803 of inner debugger state.
12804 (gdb-frame-handler): Do not set `gdb-frame-number'.
12805 (gdb-threads-mode-map): Select threads with mouse.
12806
12807 * progmodes/gud.el (gdb-gud-context-call): Declare function to
12808 avoid compilation warning.
12809 (gud-menu-map, gud-minor-mode-map): Use `gdb-show-run-p` and
12810 `gdb-show-stop-p`.
12811
12812 * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create):
12813 Argument `key' renamed to `buffer-type'.
12814 (gdb-current-context-buffer-name): Do not add thread info to
12815 buffer name when no thread is selected.
12816 (gdbmi-record-list, gdb-shell): Try to handle GDB `shell'
12817 command (bug 3794).
12818 (gdb-thread-selected): Handle `=thread-selected' notification.
12819 (gdb-wait-for-pending): New macro to deal with congestion problems.
12820 (gdb-breakpoints-list-handler-custom): Don't fail on pending
12821 breakpoints.
12822 (gdb-invalidate-disassembly): Use 'fullname instead of 'file.
12823 This fixes problem similar to one described in bug 3947.
12824 (gud-menu-map): More menu items.
12825 (gdb-init-1): Reset `gdb-thread-number' to nil.
12826
12827 * progmodes/gud.el (gud-stop-subjob, gud-menu-map): Respect GDB
12828 non-stop settings.
12829
12830 * progmodes/gdb-mi.el (gdb-thread-number): Initialize with nil.
12831 (gdb-current-context-command): Do not append --thread if
12832 `gdb-thread-number' is nil.
12833 (gdb-running-threads-count, gdb-stopped-threads-count): New
12834 variables.
12835 (gdb-non-stop, gdb-gud-control-all-threads, gdb-switch-reasons)
12836 (gdb-stopped-hooks, gdb-switch-when-another-stopped): New
12837 customization options.
12838 (gdb-gud-context-command, gdb-gud-context-call): New wrappers for
12839 GUD commands.
12840 (gdb): `gud-def' definitions changed to use `gdb-gud-context-call'.
12841 (gdb-init-1): Activate non-stop mode if `gdb-non-stop' is enabled.
12842 (gdb-setq-thread-number, gdb-update-gud-running): New functions to
12843 set `gdb-thread-number' and update `gud-running' properly.
12844 (gdb-running): Update threads list when new threads appear.
12845 (gdb-stopped): Support non-stop operation and new thread switching
12846 logic.
12847 (gdb-jsonify-buffer, gdb-json-read-buffer, gdb-json-string)
12848 (gdb-json-partial-output): New set of JSON routines.
12849 (def-gdb-auto-update-trigger): New `signal-list' optional
12850 argument.
12851 (gdb-thread-list-handler-custom): Update `gud-running',
12852 `gdb-stopped-threads-count' and `gdb-running-threads-count'.
12853 (def-gdb-thread-buffer-gdb-command, gdb-interrupt-thread)
12854 (gdb-continue-thread, gdb-step-thread): New commands for fine
12855 thread execution control.
12856 (gud-menu-map): New menu items to switch non-stop options.
12857 (gdb-reset): Cleanup `gdb-thread-position' overlay arrow marker.
12858 (gdb-send): Mimic RET properly (bug 3794).
12859
12860 * progmodes/gdb-mi.el (gdb-rules-name-maker)
12861 (gdb-rules-buffer-mode, gdb-rules-update-trigger): Accessors for
12862 gdb-buffer-rules.
12863 (def-gdb-auto-update-handler): New nopreserve optional argument.
12864 (gdb-stack-list-frames-custom): Print stack from top to bottom.
12865
12866 * progmodes/gdb-mi.el (gdb-pc-address): Removed unused variable.
12867 (gdb-threads-list, gdb-breakpoints-list): New assoc lists.
12868 (gdb-parent-mode): New mode to derive other GDB modes from.
12869 (gdb-display-disassembly-for-thread)
12870 (gdb-frame-disassembly-for-thread): New commands for threads
12871 buffer.
12872
12873 * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create)
12874 (gdb-init-1, gdb-bind-function-to-buffer, gdb-add-subscriber)
12875 (gdb-get-subscribers, gdb-emit-signal, gdb-buf-publisher)
12876 (gdb-update): We now store all GDB buffers in a list so that they
12877 can be updated by traversing a list instead of calling invalidate
12878 triggers explicitly.
12879 (def-gdb-trigger-and-handler): New macro to define trigger-handler
12880 pair for GDB buffer.
12881 (gdb-stack-buffer-name): Add thread information.
12882 (gdb-add-pending, gdb-pending-p, gdb-delete-pending): Macros to
12883 handle pending triggers.
12884 (gdb-threads-mode-map, def-gdb-thread-buffer-command)
12885 (def-gdb-thread-buffer-simple-command)
12886 (gdb-display-stack-for-thread, gdb-display-locals-for-thread)
12887 (gdb-display-registers-for-thread, gdb-frame-stack-for-thread)
12888 (gdb-frame-locals-for-thread, gdb-frame-registers-for-thread):
12889 New commands which show buffers bound to thread.
12890 (gdb-stack-list-locals-regexp): Removed unused regexp.
12891
12892 * progmodes/gdb-mi.el (gdb-breakpoints-buffer-name)
12893 (gdb-locals-buffer-name, gdb-registers-buffer-name)
12894 (gdb-memory-buffer-name, gdb-stack-buffer-name): Do not switch
12895 to (gud-comint-buffer) in *-buffer-name functions
12896 because (gdb-get-target-string) already does that.
12897 (gdb-locals-handler-custom, gdb-registers-handler-custom)
12898 (gdb-changed-registers-handler): Rewritten without regexps.
12899
12900 * progmodes/gdb-mi.el: Basic thread selection support.
12901 (gdb-thread-number): New variable.
12902 (gdb-current-context-command): New macro which adds --thread
12903 option to command.
12904 (gdb-threads-mode-map): Select thread with SPC.
12905 (gdb-thread-list-handler-custom): Mark current thread with overlay
12906 arrow. Synchronize GDB thread and Emacs thread.
12907 (gdb-select-thread): New command which selects current thread.
12908 (gdb-invalidate-frames, gdb-invalidate-locals)
12909 (gdb-invalidate-registers): Use --thread option.
12910
12911 2009-08-04 Michael Albinus <michael.albinus@gmx.de>
12912
12913 * net/tramp.el (top): Make check for tramp-gvfs loading more
12914 robust. (Bug#3977)
12915 (tramp-handle-insert-file-contents): `unwind-protect' must be
12916 inside `with-parsed-tramp-file-name'.
12917
12918 * net/tramp-gvfs.el (top): Remove superfluous message when loading
12919 fails.
12920
12921 2009-08-03 Nick Roberts <nickrob@snap.net.nz>
12922
12923 * progmodes/gud.el (jdb): Set gud-jdb-classpath-string to current
12924 directory if CLASSPATH is not set.
12925
12926 2009-08-03 Michael Albinus <michael.albinus@gmx.de>
12927
12928 * net/tramp.el (tramp-rfn-eshadow-update-overlay-regexp):
12929 New defconst.
12930 (tramp-rfn-eshadow-update-overlay): Use it. (Bug#4004)
12931
12932 2009-08-02 Kevin Ryde <user42@zip.com.au>
12933
12934 * net/newst-backend.el (newsticker--raw-url-list-defaults):
12935 Update freshmeat link. Delete newsforge.com as it seems gone.
12936
12937 2009-08-02 Chong Yidong <cyd@stupidchicken.com>
12938
12939 * select.el (x-set-selection): Doc fix (Bug#4021).
12940
12941 * w32-fns.el (x-set-selection): Doc fix (Bug#4021).
12942
12943 * help-fns.el (describe-variable): Treat list return values from
12944 dir-locals-find-file properly (Bug#4005).
12945
12946 2009-08-02 Julian Scheid <julians37@googlemail.com> (tiny change)
12947
12948 * net/tramp.el (tramp-debug-message): Print also microseconds.
12949
12950 2009-08-02 Michael Albinus <michael.albinus@gmx.de>
12951
12952 * net/tramp.el (tramp-handle-insert-file-contents): Optimize, when BEG
12953 or END is non-nil.
12954 (tramp-handle-vc-registered): Use `tramp-cache-inhibit-cache'.
12955 (tramp-get-debug-buffer): Change `outline-regexp' according to new
12956 format.
12957
12958 * net/tramp-cache.el (tramp-cache-inhibit-cache): New defvar.
12959 (tramp-get-file-property): Use it.
12960
12961 * autorevert.el (auto-revert-handler): Allow
12962 `auto-revert-tail-mode' for remote files.
12963
12964 2009-08-02 Jason Rumney <jasonr@gnu.org>
12965
12966 * minibuffer.el (read-file-name): Treat confirm options to
12967 MUSTMATCH as nil when invoking x-file-dialog. (Bug#3969)
12968
12969 2009-08-02 Chong Yidong <cyd@stupidchicken.com>
12970
12971 * font-lock.el (font-lock-string-face, font-lock-builtin-face)
12972 (font-lock-variable-name-face, font-lock-constant-face): Darken
12973 the colors for light backgrounds.
12974
12975 2009-08-01 Eli Zaretskii <eliz@gnu.org>
12976
12977 * mail/rmailsum.el (rmail-header-summary): Ignore letter-case of
12978 month names. (Bug#3987)
12979
12980 2009-07-31 Chong Yidong <cyd@stupidchicken.com>
12981
12982 * simple.el (line-move-finish): Pass whole number to
12983 line-move-to-column.
12984 (line-move-visual): Perform hscroll to the recorded position.
12985
12986 2009-07-30 Jay Belanger <jay.p.belanger@gmail.com>
12987
12988 * calc/calc-mode.el (calc-matrix-brackets): Remove "P" from prompt.
12989
12990 2009-07-29 Alan Mackenzie <acm@muc.de>
12991
12992 * progmodes/cc-defs.el (c-version): Bump to 5.31.7.
12993
12994 2009-07-29 Dmitry Dzhus <dima@sphinx.net.ru>
12995
12996 * progmodes/gdb-mi.el (gdb-goto-breakpoint)
12997 (gdb-place-breakpoints): Use full path when setting breakpoints.
12998
12999 2009-07-29 Jay Belanger <jay.p.belanger@gmail.com>
13000
13001 * calc/calc.el (calc-mode-map): Add keybinding for
13002 `calc-transpose-lines'.
13003
13004 2009-07-29 Vincent Belaïche <vincent.belaiche@gmail.com>
13005
13006 * calc/calc-misc.el (calc-transpose-lines): New function.
13007
13008 2009-07-28 Michael Albinus <michael.albinus@gmx.de>
13009
13010 * net/tramp.el (tramp-do-copy-or-rename-file): Add messages.
13011 Simplify check for out-of-band methods.
13012 (tramp-do-copy-or-rename-file-out-of-band): Allow both files to be
13013 remote. Remove messages which are in `tramp-do-copy-or-rename-file'.
13014
13015 2009-07-28 Dan Nicolaescu <dann@ics.uci.edu>
13016
13017 * vc-git.el (vc-git-checkin): Fix typo.
13018
13019 2009-07-28 Steve Yegge <steve.yegge@gmail.com>
13020
13021 * progmodes/js2-mode.el: New file.
13022
13023 2009-07-28 Nick Roberts <nickrob@snap.net.nz>
13024
13025 * progmodes/gud.el (jdb): Add gud-pstar to dump object information.
13026 (gud-menu-map): Adjust tooltip accordingly.
13027
13028 2009-07-27 Dan Nicolaescu <dann@ics.uci.edu>
13029
13030 * vc-bzr.el (vc-bzr-print-log): Pass multiple arguments to bzr log.
13031 (vc-bzr-log-view-mode): Adjust log-view-file-re.
13032
13033 * add-log.el (change-log-mode-map): Add a menu.
13034
13035 2009-07-27 Michael Albinus <michael.albinus@gmx.de>
13036
13037 * net/dbus.el (dbus-call-method-non-blocking): Handle the case the
13038 function returns nil.
13039 (dbus-handle-event): Handle special return value :ignore.
13040 Reported by Jan Moringen <jan.moringen@uni-bielefeld.de>.
13041
13042 2009-07-26 Chong Yidong <cyd@stupidchicken.com>
13043
13044 * view.el (view-mode-enable): Don't define Helper-return-blurb if
13045 it's not needed.
13046
13047 2009-07-25 Eli Zaretskii <eliz@gnu.org>
13048
13049 Fix Bug#3888:
13050
13051 * w32-vars.el (x-select-enable-clipboard): Doc fix.
13052
13053 * term/pc-win.el (x-display-name, x-colors)
13054 (x-select-enable-clipboard, x-select-text): Doc fix.
13055
13056 * term/common-win.el (x-display-name, x-colors): Doc fix.
13057
13058 * term/ns-win.el (x-select-text, x-setup-function-keys, x-colors)
13059 (xw-defined-colors): Doc fix.
13060
13061 * w32-fns.el (x-select-text, x-setup-function-keys)
13062 (x-get-selection, x-set-selection): Doc fix.
13063
13064 * term/x-win.el (x-select-text, x-setup-function-keys)
13065 (x-select-enable-clipboard, xw-defined-colors): Doc fix.
13066
13067 * select.el (x-set-selection): Doc fix.
13068
13069 2009-07-25 Michael Albinus <michael.albinus@gmx.de>
13070
13071 * net/zeroconf.el (zeroconf-init): Check for "GetVersionString"
13072 instead of "IsNSSSupportAvailable". Avahi ought to work also when
13073 "IsNSSSupportAvailable" method is not available. Reported by
13074 Steve Youngs <steve@sxemacs.org>.
13075
13076 2009-07-24 Kenichi Handa <handa@m17n.org>
13077
13078 * international/characters.el: Fix setting of category ?C, ?|, ?K,
13079 and ?H. Fix setting of case for Latin Extended and Greek Extended.
13080 (build-unicode-category-table): Fix range checks.
13081
13082 2009-07-24 Dan Nicolaescu <dann@ics.uci.edu>
13083
13084 * vc-dispatcher.el (vc-resynch-buffers-in-directory): Make sure
13085 the buffer we try to sync is current when calling
13086 vc-resynch-buffer.
13087
13088 * vc-dir.el (vc-dir-resynch-file): Make sure vc-dir-update does
13089 not show up to date files.
13090
13091 2009-07-24 Glenn Morris <rgm@gnu.org>
13092
13093 * emacs-lisp/elint.el (elint-current-buffer, elint-defun):
13094 Add autoload cookies. If necessary, initialize.
13095 (elint-log): Handle non-file buffers.
13096 (elint-initialize): Add optional argument to reinitialize.
13097 (elint-find-builtin-variables): Save excursion.
13098
13099 2009-07-23 Dan Nicolaescu <dann@ics.uci.edu>
13100
13101 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
13102 for Lint.
13103
13104 2009-07-22 Dan Nicolaescu <dann@ics.uci.edu>
13105
13106 * vc.el (vc-print-log-internal): New function, split out from ...
13107 (vc-print-log): ... here.
13108 (vc-dir-move-to-goal-column): Declare.
13109
13110 * vc-git.el (vc-git-add-signoff): New variable.
13111 (vc-git-checkin): Use it.
13112 (vc-git-toggle-signoff): New function.
13113 (vc-git-extra-menu-map): Bind it to menu.
13114 (vc-git--run-command-string): Accept a nil FILE argument.
13115 (vc-git-stash-list): New function.
13116 (vc-git-dir-extra-headers): Use it.
13117
13118 2009-07-23 Glenn Morris <rgm@gnu.org>
13119
13120 * help-fns.el (describe-variable): Describe ignored and risky local
13121 variables in a similar way to that in which we describe safe ones.
13122
13123 * emacs-lisp/bytecomp.el (byte-compile-from-buffer)
13124 (byte-compile-output-file-form, byte-compile-output-docform)
13125 (byte-compile-file-form-defmumble, byte-compile-output-as-comment):
13126 Give some more local variables with common names a "bytecomp-" prefix,
13127 so as not to shadow things during compilation.
13128 * emacs-lisp/cl-macs.el (load-time-value)
13129 * emacs-lisp/cl.el (cl-compiling-file): Update for the name-change
13130 `outbuffer' to `bytecomp-outbuffer'.
13131
13132 * emacs-lisp/elint.el (elint-standard-variables): Remove most members,
13133 since the next two variables cover them automatically now.
13134 (elint-builtin-variables, elint-autoloaded-variables): New.
13135 (elint-unknown-builtin-args): Remove all members, since they can be
13136 parsed automatically now.
13137 (elint-extra-errors): New.
13138 (elint-env-add-env, elint-env-add-macro): Use cadr.
13139 (elint-current-buffer): Use or. Change final message.
13140 (elint-get-top-forms): Use line-end-position.
13141 (elint-init-env): Use cadr. Handle autoload, declare-function,
13142 and defalias.
13143 (elint-add-required-env): Doc fix. Use or. Standardize error.
13144 (regexp-assoc): Remove unused function.
13145 (elint-top-form): Set elint-current-pos, to record the start of the
13146 top-level form, for compilation-mode.
13147 (elint-form): Trap errors in macro expansion. Use dolist.
13148 (elint-unbound-variable): Use elint-builtin-variables and
13149 elint-autoloaded-variables.
13150 (elint-get-args): Use cadr, or.
13151 (elint-check-cond-form): Use dolist, cadr.
13152 (elint-check-condition-case-form): Doc fix. Use cadr.
13153 Use elint-extra-errors.
13154 (elint-log): New function.
13155 (elint-error, elint-warning): Use elint-log for a bytecomp-style format.
13156 Distinguish errors and warnings.
13157 (elint-log-message): Use with-current-buffer. Inhibit read-only.
13158 Use a bytecomp-style format.
13159 (elint-clear-log): Preserve default-directory. Inhibit read-only.
13160 (elint-get-log-buffer): Use compilation mode. Disable undo.
13161 Don't truncate lines.
13162 (elint-initialize): Set builtin and autoloaded variable lists.
13163 Only process elint-unknown-builtin-args if non-nil.
13164 (elint-find-builtin-variables, elint-find-autoloaded-variables):
13165 New functions.
13166 (elint-find-builtin-args): Doc fix. Handle "BODY...)".
13167
13168 2009-07-22 Kevin Ryde <user42@zip.com.au>
13169
13170 * net/newst-backend.el (newsticker--parse-atom-1.0)
13171 (newsticker--parse-rss-0.91, newsticker--parse-rss-0.92)
13172 (newsticker--parse-rss-1.0):
13173 * progmodes/idlwave.el (idlwave-mode):
13174 * progmodes/idlw-shell.el (idlwave-shell-mode):
13175 * progmodes/vera-mode.el (vera-mode):
13176 * progmodes/verilog-mode.el (verilog-auto-inst, verilog-auto):
13177 * progmodes/vhdl-mode.el (vhdl-mode):
13178 * textmodes/table.el (table-generate-source)
13179 (table--warn-incompatibility):
13180 Hyperlink urls in docstrings with URL `...'.
13181
13182 2009-07-22 Glenn Morris <rgm@gnu.org>
13183
13184 * emacs-lisp/advice.el, emacs-lisp/checkdoc.el:
13185 * emacs-lisp/debug.el, emacs-lisp/elp.el, emacs-lisp/gulp.el:
13186 * emacs-lisp/lisp.el, emacs-lisp/pp.el, emacs-lisp/trace.el:
13187 Remove leading * from defcustom docs.
13188
13189 * simple.el (blink-matching-paren-distance): Bump to 100k. (Bug#3889)
13190
13191 * emacs-lisp/shadow.el (shadows-compare-text-p): Remove leading * from
13192 defcustom doc.
13193 (list-load-path-shadows): Optionally, just return shadows as a string.
13194
13195 * mail/emacsbug.el (report-emacs-bug): Include any load-path shadows.
13196
13197 2009-07-21 Chong Yidong <cyd@stupidchicken.com>
13198
13199 * mail/rmailedit.el (rmail-edit-mode): Use
13200 auto-save-include-big-deletions.
13201
13202 * mail/rmail.el (rmail-variables): Use
13203 auto-save-include-big-deletions.
13204
13205 * files.el (auto-save-mode): Revert 2009-07-21 and 2009-07-16
13206 changes.
13207
13208 2009-07-21 Jay Belanger <jay.p.belanger@gmail.com>
13209
13210 * calc/calc.el (calc-undo-length): New variable.
13211 (calc-quit): Truncate rather than eliminate `calc-undo-list'.
13212
13213 2009-07-21 Richard Stallman <rms@gnu.org>
13214
13215 * files.el (auto-save-mode): Handle buffer-save-size = -2
13216 for toggling mode.
13217
13218 2009-07-21 Glenn Morris <rgm@gnu.org>
13219
13220 * textmodes/ispell.el (ispell-looking-back): Update declaration.
13221
13222 * calendar/todo-mode.el (calendar-current-date): Update declaration.
13223
13224 * ps-print.el (ps-jitify, ps-lazify): Remove aliases only used to
13225 silence compiler. Instead...
13226 (jit-lock-fontify-now, lazy-lock-fontify-region): ...Declare.
13227 (ps-print-ensure-fontified): Update for above function name changes.
13228
13229 * printing.el (pr-mh-get-msg-num, pr-mh-show)
13230 (pr-mh-start-of-uncleaned-message): Remove aliases only used to
13231 silence compiler. Instead...
13232 (mh-get-msg-num, mh-show, mh-start-of-uncleaned-message): ...Declare.
13233 (mh-show-buffer): Only define for compiler.
13234 (pr-mh-current-message): Update for above function name changes.
13235
13236 * files.el (abort-if-file-too-large): Explicitly pass `filename'
13237 as an argument.
13238 (find-file-noselect, insert-file-1): Update for above change.
13239
13240 * mail/rmail.el (rmail-retry-ignored-headers): Bump :version.
13241
13242 * mail/mailclient.el (mailclient-send-it): Fix message.
13243
13244 * emacs-lisp/edebug.el (cl-debug-env): Only define for compiler.
13245 (edebug-eval): Check cl-debug-env is bound.
13246 (print-level, print-circle): Don't redefine built-in variables.
13247
13248 * emacs-lisp/cust-print.el: Remove leading * from defcustom docs.
13249 (custom-print-vectors): Remove old comments from doc.
13250
13251 * emerge.el (menu-bar-emerge-menu): Remove unused variable.
13252 (emerge-version): Make the variable an obsolete alias for the
13253 emacs-version variable. Make the function obsolete.
13254 (emerge-fast-keymap, emerge-edit-keymap): Make a separate menu for
13255 Emerge options, rather than merging in into the main Options menu.
13256 (emerge-options-menu): Adjust menu text. Use buttons for skip prefers
13257 and auto advance modes. Disable edit/fast items when not relevant.
13258
13259 2009-07-20 Dan Nicolaescu <dann@ics.uci.edu>
13260
13261 * term/vt420.el (terminal-init-vt420): Fix typo.
13262
13263 2009-07-20 Sam Steingold <sds@gnu.org>
13264
13265 * progmodes/ada-mode.el (compile-auto-highlight): Remove the
13266 variable (removed from compile.el on 2004-03-11).
13267
13268 2009-07-20 Chong Yidong <cyd@stupidchicken.com>
13269
13270 * files.el (hack-local-variables-filter): Fix last change.
13271
13272 2009-07-19 Juri Linkov <juri@jurta.org>
13273
13274 * files.el (ignored-local-variables): Add `dir-local-variables-alist'.
13275 (dir-local-variables-alist): New buffer-local variable.
13276 (hack-local-variables-filter): If variable is not dir-local,
13277 i.e. `dir-name' is nil, then remove it from `dir-local-variables-alist',
13278 because file-local overrides dir-local.
13279 (c-postprocess-file-styles) <declare-function>:
13280 Remove obsolete declaration.
13281 (hack-dir-local-variables): Add dir-local variable/value pair to
13282 `dir-local-variables-alist' and remove duplicates. Doc fix.
13283
13284 * help-fns.el (describe-variable): Add information about
13285 file-local and dir-local variables.
13286
13287 2009-07-19 Chong Yidong <cyd@stupidchicken.com>
13288
13289 * files.el (hack-local-variables-filter): Rewrite.
13290
13291 2009-07-19 Glenn Morris <rgm@gnu.org>
13292
13293 * progmodes/verilog-mode.el (verilog-error-regexp-add-xemacs):
13294 Silence compiler by only defining on XEmacs.
13295
13296 * international/mule.el (auto-coding-regexp-alist): Only match
13297 BABYL... at the start of buffer, not of lines. (Bug#3790)
13298
13299 * calendar/cal-menu.el (cal-menu-set-date-title): Handle calls from
13300 non-calendar buffers (Bug#3862). Restore "not on a date" message.
13301 (cal-menu-context-mouse-menu): Doc fix.
13302
13303 * desktop.el (desktop-buffers-not-to-save): Set :version tag.
13304
13305 * simple.el (mail-user-agent): Doc fix. Set :version tag.
13306
13307 2009-07-18 Juri Linkov <juri@jurta.org>
13308
13309 * info.el: Virtual Info keyword finder.
13310 (add-to-list) <Info-virtual-files>: Add "\\`\\*Finder.*\\*\\'".
13311 (Info-finder-file): New variable.
13312 (Info-finder-find-file): New function.
13313 (finder-known-keywords, finder-package-info)
13314 (find-library-name, lm-commentary): Use defvar and
13315 declare-function to silence compiler warnings.
13316 (Info-finder-find-node): New function.
13317 (info-finder): New command.
13318
13319 * subr.el (process-kill-buffer-query-function): New function.
13320 (add-hook)<kill-buffer-query-functions>: Add hook
13321 `process-kill-buffer-query-function'.
13322
13323 2009-07-18 Alan Mackenzie <acm@muc.de>
13324
13325 * progmodes/cc-mode.el (c-before-hack-hook)
13326 (c-postprocess-file-styles): Give invocation of `c-set-style'
13327 DONT-OVERRIDE parameter of t. Already set style variables will
13328 thus not be overridden by style settings given by `c-file-syle'.
13329
13330 * files.el (hack-local-variables-filter): Remove entries with
13331 duplicate keys from `file-local-variables-alist'.
13332
13333 2009-07-18 Eli Zaretskii <eliz@gnu.org>
13334
13335 * simple.el (deactivate-mark, activate-mark, set-mark): Don't call
13336 x-set-selection if display-selections-p returns nil for the
13337 current frame.
13338
13339 2009-07-18 Chong Yidong <cyd@stupidchicken.com>
13340
13341 * simple.el (region-active-p, use-region-p): Doc fix (Bug#3873).
13342
13343 2009-07-18 Eli Zaretskii <eliz@gnu.org>
13344
13345 * desktop.el (desktop-buffers-not-to-save): Default value is nil.
13346 Accept nil in addition to a regexp.
13347 (desktop-files-not-to-save): Add "(ftp)$" to the default regexp.
13348 Accept nil in addition to a regexp.
13349 (desktop-save-buffer-p): Don't use desktop-buffers-not-to-save for
13350 buffers that have an associated file. Handle nil values of
13351 desktop-buffers-not-to-save and desktop-files-not-to-save.
13352 (Bug#3833)
13353
13354 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
13355 (x-disown-selection-internal): New functions.
13356
13357 2009-07-18 Nick Roberts <nickrob@snap.net.nz>
13358
13359 * progmodes/gdb-mi.el (speedbar-frame): Declare to avoid compiler
13360 warning.
13361 (gdb-breakpoints-header): Move forward to avoid compiler warning.
13362 (gdb-make-header-line-mouse-map): Remove duplicate definition.
13363
13364 2009-07-18 David De La Harpe Golden <david@harpegolden.net>
13365
13366 * simple.el (set-mark): Revert last change.
13367
13368 2009-07-17 Tassilo Horn <tassilo@member.fsf.org>
13369
13370 * doc-view.el (doc-view-initiate-display): Add yes-or-no-p if
13371 rendering of pngs is not possible instead of messaging a long
13372 description.
13373
13374 2009-07-17 David De La Harpe Golden <david@harpegolden.net>
13375
13376 * w32-fns.el (x-selection-owner-p): New function.
13377
13378 * mouse.el (mouse-drag-track): Call deactivate-mark earlier.
13379 (mouse-yank-at-click, mouse-yank-primary): If
13380 select-active-regions is non-nil, deactivate the mark before
13381 insertion.
13382
13383 * simple.el (deactivate-mark, set-mark): Only save selection if we
13384 own it.
13385
13386 2009-07-17 Kenichi Handa <handa@m17n.org>
13387
13388 * case-table.el (describe-buffer-case-table): Fix for the case
13389 that KEY is a cons.
13390
13391 2009-07-16 Dan Nicolaescu <dann@ics.uci.edu>
13392
13393 * vc-rcs.el (vc-rcs-find-file-hook):
13394 * vc-sccs.el (vc-sccs-find-file-hook): Fix cut and paste error.
13395
13396 2009-07-16 Michael Albinus <michael.albinus@gmx.de>
13397
13398 * net/tramp.el (tramp-wait-for-output): Handle the case when
13399 commands do not return a newline but a null byte before the shell
13400 prompt. (Bug#3858)
13401
13402 2009-07-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13403
13404 * term/ns-win.el (ns-set-alpha): Don't declare.
13405 (ns-set-background-alpha): Remove function.
13406
13407 2009-07-16 Kevin Ryde <user42@zip.com.au>
13408
13409 * emacs-lisp/copyright.el (copyright-update): Save match-data across
13410 y-or-n-p, for safety.
13411
13412 2009-07-16 Richard Stallman <rms@gnu.org>
13413
13414 * files.el (auto-save-mode): If buffer-saved-size is -2,
13415 don't clobber it.
13416
13417 * mail/rmail.el (rmail-variables): Set buffer-saved-size to -2.
13418 (rmail-retry-ignored-headers): Add more uninteresting fields.
13419
13420 2009-07-15 Jari Aalto <jari.aalto@cante.net>
13421
13422 * net/rcirc.el (rcirc): Use history variables.
13423 (rcirc-server-name-history, rcirc-nick-name-history)
13424 (rcirc-server-port-history): New variables.
13425
13426 2009-07-15 Kenichi Handa <handa@m17n.org>
13427
13428 * international/mule-cmds.el (set-language-environment-charset):
13429 If coding-system-charset-list returns `iso-2022' or `emacs-mule',
13430 ignore them.
13431
13432 * language/misc-lang.el ("IPA"): Change coding systems to utf-8.
13433 Delete unibyte-display.
13434
13435 2009-07-15 Chong Yidong <cyd@stupidchicken.com>
13436
13437 * simple.el (kill-visual-line): Obey kill-whole-line (Bug#3695).
13438
13439 2009-07-15 Chong Yidong <cyd@stupidchicken.com>
13440
13441 * simple.el (deactivate-mark): Optional argument FORCE.
13442 (set-mark): Use deactivate-mark.
13443
13444 * info.el (Info-search): No need to check transient-mark-mode
13445 before calling deactivate-mark.
13446
13447 * select.el (x-set-selection): Doc fix.
13448 (x-valid-simple-selection-p): Allow buffer values.
13449 (xselect--selection-bounds): Handle buffer values. Suggested by
13450 David De La Harpe Golden.
13451
13452 * mouse.el (mouse-set-region, mouse-drag-track): Call
13453 copy-region-as-kill before setting the mark, to let
13454 select-active-regions work.
13455
13456 2009-07-15 David De La Harpe Golden <david@harpegolden.net>
13457
13458 * simple.el (deactivate-mark): If select-active-regions is
13459 non-nil, copy the selection data into a string.
13460 (activate-mark): If select-active-regions is non-nil, set the
13461 selection to the current buffer.
13462 (set-mark): Update selection if select-active-regions is non-nil.
13463
13464 * select.el (x-valid-simple-selection-p): Allow buffer values.
13465
13466 2009-07-14 Stefan Monnier <monnier@iro.umontreal.ca>
13467
13468 * simple.el (mail-user-agent): Default to the upwardly-UI-compatible
13469 and more featureful message-mode.
13470
13471 2009-07-14 Chong Yidong <cyd@stupidchicken.com>
13472
13473 * select.el (x-set-selection): Doc fix.
13474 (x-valid-simple-selection-p): Disallow selection data consisting
13475 of a list or cons of integers, since that is not used.
13476 (xselect--selection-bounds, xselect--int-to-cons): New functions.
13477 (xselect-convert-to-string, xselect-convert-to-length)
13478 (xselect-convert-to-filename, xselect-convert-to-charpos)
13479 (xselect-convert-to-lineno, xselect-convert-to-colno): Use them.
13480
13481 2009-07-14 Dmitry Dzhus <dima@sphinx.net.ru>
13482
13483 * progmodes/gdb-mi.el (json-partial-output): Fix broken GDB/MI
13484 output in -break-info command (Emacs bug #3794).
13485
13486 2009-07-14 Glenn Morris <rgm@gnu.org>
13487
13488 * emacs-lisp/edebug.el (edebug-setup-hook, edebug-all-forms)
13489 (edebug-eval-macro-args, edebug-save-displayed-buffer-points)
13490 (edebug-print-length, edebug-print-level, edebug-print-circle)
13491 (edebug-sit-for-seconds, edebug-view-outside)
13492 (edebug-bounce-point, edebug-set-global-break-condition)
13493 (edebug-Go-nonstop-mode, edebug-trace-mode)
13494 (edebug-Trace-fast-mode, edebug-continue-mode)
13495 (edebug-Continue-fast-mode, edebug-forward-sexp, edebug-help)
13496 (edebug-visit-eval-list): Doc fixes.
13497
13498 * subr.el (def-edebug-spec): Doc fix.
13499
13500 2009-07-14 Kenichi Handa <handa@m17n.org>
13501
13502 * international/characters.el: Fix setting of category ?C.
13503
13504 2009-07-13 Jan Djärv <jan.h.d@swipnet.se>
13505
13506 * term/ns-win.el (x-select-font): defalias x-select-font to
13507 ns-popup-font-panel instead of generate-fontset-menu.
13508
13509 2009-07-12 Eli Zaretskii <eliz@gnu.org>
13510
13511 * desktop.el (desktop-buffers-not-to-save): Remove ".log". (Bug#3833)
13512
13513 2009-07-12 Peter Jolly <peter@jollys.org> (tiny change)
13514
13515 * arc-mode.el (archive-find-type): Allow for a PK00 string before
13516 the PK\003\004 header (Bug#3770).
13517
13518 2009-07-12 Guanpeng Xu <herberteuler@hotmail.com>
13519
13520 * pcomplete.el (pcomplete-comint-setup): Check for
13521 shell-dynamic-complete-filename too.
13522
13523 2009-07-11 Chong Yidong <cyd@stupidchicken.com>
13524
13525 * simple.el (temporary-goal-column): Change the value for
13526 line-move-visual to a cons cell.
13527 (line-move-visual): Record or set the window hscroll, if
13528 necessary (Bug#3494).
13529 (line-move-1): Handle cons value of temporary-goal-column.
13530
13531 2009-07-11 Kenichi Handa <handa@m17n.org>
13532
13533 * international/mule-diag.el (describe-character-set): Don't show
13534 width.
13535
13536 2009-07-10 Sam Steingold <sds@gnu.org>
13537
13538 * progmodes/compile.el (compilation-mode-font-lock-keywords):
13539 Omake sometimes indents the errors it prints, so allow all
13540 regexps to start with spaces.
13541
13542 2009-07-10 Eli Zaretskii <eliz@gnu.org>
13543
13544 * cus-edit.el (customize-changed-options-previous-release):
13545 Bump value to 22.1. (Bug#3804)
13546
13547 2009-07-08 Sam Steingold <sds@gnu.org>
13548
13549 * progmodes/grep.el (rgrep): Allow grep-find-ignored-directories
13550 to be a cons cell (test . ignored-directory) to selectively ignore
13551 some directories depending on the location of the search.
13552
13553 2009-07-08 Michael Albinus <michael.albinus@gmx.de>
13554
13555 * net/tramp.el (tramp-set-file-uid-gid): Handle the case the
13556 remote user is root, on the local host.
13557 (tramp-local-host-p): Either the local user or the remote user
13558 must be root. (Bug#3771)
13559
13560 2009-07-08 Nick Roberts <nickrob@snap.net.nz>
13561
13562 * progmodes/gdb-mi.el (gdb): Remove description of
13563 gdb-use-separate-io-buffer.
13564 (menu): Don't allow toggling of or enable
13565 gdb-use-separate-io-buffer from menubar.
13566
13567 2009-07-08 E. Jay Berkenbilt <ejb@ql.org> (tiny change)
13568
13569 * mail/unrmail.el (unrmail): Make sure the message ends with two
13570 newlines (Bug#3769).
13571
13572 2009-07-08 Glenn Morris <rgm@gnu.org>
13573
13574 * calendar/calendar.el (calendar-current-date): Rework previous change.
13575
13576 2009-07-08 Ed Reingold <reingold@emr.cs.iit.edu>
13577
13578 * calendar/calendar.el (calendar-current-date):
13579 Add an optional argument giving an offset from today.
13580
13581 2009-07-08 Glenn Morris <rgm@gnu.org>
13582
13583 * tutorial.el (tutorial--describe-nonstandard-key):
13584 Adjust the message for when a key has been unbound.
13585 (help-with-tutorial): Hide the arch-tag.
13586
13587 2009-07-08 Kenichi Handa <handa@m17n.org>
13588
13589 * international/fontset.el (setup-default-fontset): For each
13590 script, append (not set) font-specs.
13591
13592 * language/japanese.el (japanese-shift-jis-2004): Fix typo in the
13593 docstring.
13594
13595 2009-07-08 Nick Roberts <nickrob@snap.net.nz>
13596
13597 * progmodes/gdb-mi.el (gdb-init-1): Move sending
13598 -data-list-register-names to ...
13599 (gdb-starting): ... here because GDB 7.0 requires execution to
13600 have started when using this MI command.
13601 (gdb-set-header): New function to distinguish select and
13602 unselected tabs in gdb buffers.
13603 (gdb-propertize-header): New macro that uses gdb-set-header.
13604 (gdb-breakpoints-header, gdb-locals-header): Use it.
13605 (gdb-disassembly-mode-map): Add keybinding to kill buffer.
13606
13607 2009-07-07 Chong Yidong <cyd@stupidchicken.com>
13608
13609 * Makefile.in (ELCFILES): Remove fadr.elc.
13610
13611 2009-07-07 Dmitry Dzhus <dima@sphinx.net.ru>
13612
13613 * progmodes/gdb-mi.el (gdb-init-1): Disassembly buffer mode name
13614 may contain frame information, so `string-match' should be used.
13615 (gdb-update): Disassembly is invalidated through
13616 `gdb-get-selected-frame'.
13617 (gdb-pad-string): New function to pad string with spaces.
13618 (gdb-invalidate-disassembly): Invalidate only if the buffer
13619 exists.
13620 (gdb-disassembly-handler-custom): Column alignment.
13621 (gdb-disassembly-place-breakpoints): Clear old breakpoints before
13622 placing new ones.
13623 (gdb-toggle-breakpoint, gdb-delete-breakpoint): Now work from the
13624 end of line, too.
13625 (gdb-frame-handler): Match convention to for disassembly buffer
13626 mode name.
13627 (gdb-stack-list-frames-handler): Rewritten without regexps.
13628 (gdb-breakpoints-list-handler-custom): y/n instead of on/off; do
13629 not highlight breakpoints without line information.
13630 (gdb-input): Add trailing newline to command.
13631
13632 * progmodes/gdb-mi.el (gdb-init-1): Set mode name for disassembly
13633 buffer properly.
13634 (gdb-breakpoints-list-handler-custom): Replacement for
13635 `gdb-break-list-handler'. Using real parser instead of regexps
13636 now.
13637 (gdb-place-breakpoints): Replacement for `gdb-break-list-custom'.
13638 Use `gdb-breakpoints-list' instead of parsing breakpoints buffer
13639 to place breakpoints.
13640 (def-gdb-memory-unit): A new macro to define gdb-memory-unit-..
13641 functions.
13642 (gdb-disassembly-handler-custom): Show overlay arrow.
13643 (gdb-disassembly-place-breakpoints): Show breakpoints in
13644 disassembly buffer.
13645 (gdb-toggle-breakpoint, gdb-delete-breakpoint)
13646 (gdb-goto-breakpoint): Using `gdb-breakpoint' text properties
13647 instead of parsing breakpoints buffer. Fixed old menu references
13648 in `gud-menu-map'.
13649
13650 * fadr.el: Remove.
13651
13652 * progmodes/gdb-mi.el: Port memory buffer from gdb-ui.el.
13653 (gdb-memory-address): New variable which holds top address of
13654 memory page shown in memory buffer.
13655 (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit): New
13656 customization variables.
13657 New functions:
13658 (gdb-display-memory-buffer, gdb-frame-memory-buffer): Functions to
13659 display the memory buffer.
13660 (gdb-memory-set-address, gdb-memory-set-repeat-count): Set memory
13661 buffer display parameters.
13662 (def-gdb-memory-format, gdb-memory-format-binary)
13663 (gdb-memory-format-octal, gdb-memory-format-unsigned)
13664 (gdb-memory-format-signed, gdb-memory-format-hexadecimal):
13665 Functions for setting memory buffer format.
13666 (gdb-memory-unit-word, gdb-memory-unit-halfword)
13667 (gdb-memory-unit-giant, gdb-memory-unit-byte): Functions to set
13668 unit size used in memory buffer.
13669 (gdb-memory-show-next-page, gdb-memory-show-previous-page): Switch
13670 to next/previous page of memory buffer.
13671 Now using (bindat-get-field) instead of fadr functions.
13672
13673 2009-07-07 Sam Steingold <sds@gnu.org>
13674
13675 * vc-cvs.el (vc-cvs-merge-news): Fix message parsing for
13676 non-top-level files.
13677
13678 2009-07-07 Kenichi Handa <handa@m17n.org>
13679
13680 * international/mule-cmds.el (reset-language-environment): Put
13681 the highset priority to the charset iso-8859-1.
13682
13683 2009-07-06 Chong Yidong <cyd@stupidchicken.com>
13684
13685 * progmodes/hideshow.el (hs-hide-block-at-point): Don't move point
13686 to the end of the line when locating the block (Bug#700).
13687
13688 2009-07-06 Michael Albinus <michael.albinus@gmx.de>
13689
13690 * net/tramp.el (tramp-handle-write-region): Flush file properties
13691 in case of short track.
13692
13693 2009-07-06 Michael McNamara <mac@mail.brushroad.com>
13694
13695 * progmodes/verilog-mode.el (verilog-error-regexp-emacs-alist):
13696 Coded custom representation of verilog error regular expressions
13697 to work with Emacs-22's new format.
13698 (verilog-error-regexp-xemacs-alist): Coded custom representation
13699 of verilog error regular expressions to work with XEmacs format.
13700 (verilog-error-regexp-add-xemacs): Hook routine to install verilog
13701 error recognition into XEmacs.
13702 (verilog-error-regexp-add-emacs): Hook routine to install verilog
13703 error recognition into Emacs-22.
13704
13705 2009-07-06 Chong Yidong <cyd@stupidchicken.com>
13706
13707 * woman.el: Remove stand-alone closing parentheses.
13708 (woman-file-name, woman2-format-paragraphs)
13709 (woman-leave-blank-lines): Code cleanup.
13710 (woman-use-own-frame): Change default to nil.
13711 (woman-italic, woman-bold, woman-unknown, woman-addition): Change
13712 defaults to inherit from default faces.
13713 (woman2-process-escapes): Consume the newline after a stand-alone
13714 filler character (Bug#3651).
13715
13716 2009-07-06 Glenn Morris <rgm@gnu.org>
13717
13718 * ffap.el (ffap-version): Make it an obsolete alias for emacs-version.
13719 (top-level): Move provide to the end.
13720 (ffap): Remove defunct URL from custom group.
13721
13722 * subr.el (eval-after-load): Doc fix.
13723
13724 2009-07-06 Vincent Belaïche <vincent.belaiche@gmail.com>
13725
13726 * calc/calc-embed.el (calc-embedded-make-info): Don't force when
13727 `calc-embedded-word' is called twice.
13728
13729 2009-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
13730
13731 * files.el (find-alternate-file-other-window, find-alternate-file):
13732 Obey confirm-nonexistent-file-or-buffer.
13733
13734 2009-07-05 Michael Albinus <michael.albinus@gmx.de>
13735
13736 * dired-aux.el (dired-show-file-type): Handle remote files.
13737
13738 2009-07-05 Jari Aalto <jari.aalto@cante.net>
13739
13740 * desktop.el (desktop-globals-to-save):
13741 Add file-name-history (Bug#2750).
13742
13743 2009-07-05 Chong Yidong <cyd@stupidchicken.com>
13744
13745 * add-log.el (add-log-current-defun-header-regexp): Doc fix (Bug#2217).
13746
13747 2009-07-04 Johan Bockgård <bojohan@gnu.org>
13748
13749 * eshell/esh-arg.el (eshell-parse-argument-hook): Put `number'
13750 property on entire argument since this is what eshell-lisp-command
13751 expects.
13752
13753 2009-07-03 Michael Albinus <michael.albinus@gmx.de>
13754
13755 * net/tramp-gvfs.el (tramp-gvfs-methods)
13756 (tramp-gvfs-zeroconf-domain)
13757 (tramp-bluez-discover-devices-timeout): Add version flag.
13758 (tramp-gvfs-handler-mounted-unmounted)
13759 (tramp-gvfs-connection-mounted-p): Polish handling of
13760 incompatibilities between GVFS 0.2 and 1.0.
13761
13762 2009-07-03 Jan Djärv <jan.h.d@swipnet.se>
13763
13764 * cus-start.el (all): Add make-pointer-invisible.
13765
13766 2009-07-03 Jay Belanger <jay.p.belanger@gmail.com>
13767
13768 * calc/calc-math.el (math-use-emacs-fn): Make sure that the number is
13769 formatted correctly.
13770
13771 2009-07-02 Juri Linkov <juri@jurta.org>
13772
13773 * info.el: Virtual Info files and nodes.
13774 (Info-virtual-files, Info-virtual-nodes): New variables.
13775 (Info-current-node-virtual): New variable.
13776 (Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
13777 New functions.
13778 (Info-file-supports-index-cookies): Use Info-virtual-file-p
13779 to check for a virtual file instead of checking a fixed list
13780 of node names.
13781 (Info-find-file): Use Info-virtual-fun and Info-virtual-call
13782 instead of ad-hoc processing of "dir" and (apropos history toc).
13783 (Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
13784 instead of ad-hoc processing of "dir" and (apropos history toc).
13785 Reread a file when moving from a virtual node.
13786 (add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
13787 (Info-directory-toc-nodes, Info-directory-find-file)
13788 (Info-directory-find-node): New functions.
13789 (add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
13790 (Info-history): Move part of code to
13791 `Info-history-find-node'.
13792 (Info-history-toc-nodes, Info-history-find-file)
13793 (Info-history-find-node): New functions.
13794 (add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
13795 (Info-toc): Move part of code to `Info-toc-find-node'.
13796 (Info-toc-find-node): New function.
13797 (Info-toc-insert): Rename from `Info-insert-toc'. Don't insert
13798 the current Info file name to references because now the node
13799 "*TOC*" belongs to the same Info manual.
13800 (Info-toc-build): Rename from `Info-build-toc'.
13801 (Info-toc-nodes): Rename input argument `file' to `filename'.
13802 Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
13803 instead of ad-hoc processing of ("dir" apropos history toc).
13804 (Info-index-nodes): Use Info-virtual-file-p
13805 to check for a virtual file instead of checking a fixed list
13806 of node names.
13807 (Info-index-node): Add check for `Info-current-node-virtual'.
13808 Raise `save-match-data' higher up the tree to contain
13809 `search-forward' too (bug fix).
13810 (add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
13811 (Info-virtual-index-nodes): New variable.
13812 (Info-virtual-index-find-node, Info-virtual-index): New functions.
13813 (add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
13814 (Info-apropos-file, Info-apropos-nodes): New variables.
13815 (Info-apropos-toc-nodes, Info-apropos-find-file)
13816 (Info-apropos-find-node, Info-apropos-matches): New functions.
13817 (info-apropos): Move part of code to `Info-apropos-find-node' and
13818 `Info-apropos-matches'.
13819 (Info-mode-map): Bind "I" to `Info-virtual-index'.
13820 (Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
13821 for a virtual file instead of checking a fixed list of node names.
13822
13823 * simple.el (async-shell-command): New command.
13824
13825 * bindings.el (esc-map): Bind "&" to `async-shell-command'.
13826
13827 * net/tramp-gvfs.el (tramp-gvfs-connection-mounted-p): Use `elt'
13828 instead of `mount-info'.
13829
13830 2009-07-02 Michael Albinus <michael.albinus@gmx.de>
13831
13832 * net/tramp-gvfs.el (tramp-gvfs-handler-mounted-unmounted)
13833 (tramp-gvfs-connection-mounted-p): Handle changed mount-info interface.
13834
13835 2009-07-02 Kenichi Handa <handa@m17n.org>
13836
13837 * international/mule.el (set-keyboard-coding-system): Force *-unix
13838 coding-system to avoid eol conversion.
13839
13840 2009-07-01 Michael Albinus <michael.albinus@gmx.de>
13841
13842 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
13843 Add handler for `process-file', `shell-command' and
13844 `start-file-process'.
13845 (tramp-gvfs-handle-shell-command)
13846 (tramp-gvfs-handle-start-file-process)
13847 (tramp-gvfs-handle-process-file): New defuns.
13848 (tramp-synce-list-devices): Simplify check for existence of property.
13849
13850 2009-07-01 Jan Djärv <jan.h.d@swipnet.se>
13851
13852 * startup.el (command-line-x-option-alist): Add -mm and --maximized.
13853
13854 2009-07-01 Eduard Wiebe <usenet@pusto.de> (tiny change)
13855
13856 * language/korean.el (set-language-info-alist): Add korean-cp949,
13857 cp949 to spec.
13858
13859 2009-07-01 Kenichi Handa <handa@m17n.org>
13860
13861 * Makefile.in (ELCFILES): Delete encoded-kb.elc.
13862
13863 * international/encoded-kb.el: Deleted.
13864
13865 * international/mule.el (set-keyboard-coding-system): Perform the
13866 necessary setup here instead of calling encoded-kbd-setup-display.
13867
13868 2009-07-01 Glenn Morris <rgm@gnu.org>
13869
13870 * progmodes/f90.el (f90-break-delimiters, f90-no-break-re): Doc fixes.
13871
13872 2009-07-01 Evangelos Evangelou <vangelis@email.unc.edu> (tiny change)
13873
13874 * progmodes/f90.el (f90-no-break-re): Add "(/" and "/)". (Bug#3730)
13875
13876 2009-06-30 Michael Albinus <michael.albinus@gmx.de>
13877
13878 * net/tramp.el (tramp-do-copy-or-rename-file-directly):
13879 Handle also the 'rename case, when setting file modes. (Bug#3712)
13880 (tramp-default-file-modes): Remove execute permissions.
13881
13882 * net/tramp-gvfs.el (tramp-gvfs-methods): Add "synce" method.
13883 (top): Add a default for "synce" in `tramp-default-user-alist'.
13884 Add completion function for "synce" method.
13885 (tramp-hal-service, tramp-hal-path-manager)
13886 (tramp-hal-interface-manager, tramp-hal-interface-device):
13887 New defconst.
13888 (tramp-gvfs-connection-mounted-p): Handle empty user name for synce.
13889 (tramp-synce-list-devices, tramp-synce-parse-device-names):
13890 New defuns.
13891
13892 * net/trampver.el: Update release number.
13893
13894 2009-06-30 Kenichi Handa <handa@m17n.org>
13895
13896 * international/fontset.el (setup-default-fontset): Add CJK fonts
13897 for symbols and the other miscellaneous characters.
13898
13899 * language/korea-util.el (setup-korean-environment-internal):
13900 Make char-width-table suitable for Korean environments.
13901 (exit-korean-environment): Cancel above.
13902
13903 * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
13904 ("Chinese-CNS", "Chinese-EUC-TW", "Chinese-GBK"): Add a
13905 setup-function to make char-width-table suitable for respective
13906 environments, and an exit-function to cancel that.
13907
13908 * language/japan-util.el (setup-japanese-environment-internal):
13909 Call use-cjk-char-width-table with arg `ja_JP'.
13910
13911 * international/characters.el (cjk-char-width-table): Delete it.
13912 (cjk-char-width-table-list): New variable.
13913 (use-cjk-char-width-table): New arg local-name.
13914 (use-default-char-width-table): Fix for the case that Emacs is
13915 already using the default char-width-table.
13916
13917 2009-06-29 Michael Albinus <michael.albinus@gmx.de>
13918
13919 * net/tramp.el (tramp-do-copy-or-rename-file-directly): Set file
13920 modes mandatory. (Bug#3712)
13921
13922 2009-06-29 Alan Mackenzie <acm@muc.de>
13923
13924 * progmodes/cc-cmds.el (c-mask-paragraph): Remove a spurious
13925 correction between the visible width of TABs and their number of bytes.
13926
13927 2009-06-29 Chong Yidong <cyd@stupidchicken.com>
13928
13929 * server.el (server-buffer-done): Prevent kill-buffer from
13930 prompting by clearing the buffer modification flag (Bug#3696).
13931
13932 2009-06-28 Michael McNamara <mac@mail.brushroad.com>
13933
13934 * progmodes/verilog-mode.el (verilog-beg-of-statement)
13935 (verilog-endcomment-reason-re): Support unique case and priority case.
13936 (verilog-basic-complete-re): Support localparam lineup.
13937 (verilog-beg-of-statement-1): Fix for robustness, unique case.
13938 (verilog-set-auto-endcomments): Fix for unique case, always_comb
13939 commenting.
13940 (verilog-leap-to-case-head): Now support *nested* unique &
13941 priority case statements.
13942 (verilog-auto-lineup): Make just declarations the default (as it
13943 had been).
13944 (verilog-leap-to-case-head): Support priority/unique case statements.
13945 (verilog-auto-lineup): Rework to give users radio buttons to
13946 select the various styles of automatic lineup.
13947 (verilog-error-regexp-alist): Rework to support the XEmacs style
13948 of error regular expressions from compilers, lint tools &
13949 simulators. Note that GNU Emacs has made it impossible for a mode
13950 to load such things.
13951 (electric-verilog-terminate-line, verilog-indent-declaration)
13952 (verilog-auto-wiure): Rework for radio button selection of
13953 auto-lineup selection of specification of auto lineup.
13954 (verilog-beg-of-statement-1): Redesign to support proper operation
13955 in additional code, based on testing with auto-lineup.
13956 (verilog-calculate-indent, assignments & declarations)
13957 (verilog-backward-token): Enhance to support auto-lineup of
13958 assignments & declarations.
13959 (verilog-in-directive-p, verilog-at-struct-p): New function for
13960 easy test of whether we are.
13961 (verilog-pretty-declarations, verilog-pretty-expr): Massive rework
13962 to support safe execution at almost anyline.
13963 (verilog-calc-1): Properly support indenting deep inside generate
13964 blocks.
13965 (verilog-init-font): Remove definition & use of verilog-init-font,
13966 as it is redundant with font-lock-defaults.
13967 (verilog-mode): Alter the definition of verilog-font-lock-defaults
13968 to avoid circular calls if syntax-ppss is a function (as is the
13969 case now in 22.x GNU Emacs) as that function would sometimes call
13970 itself, leading to (nearly) infinite recursion.
13971 (verilog-ovm-begin-re, verilog-ovm-end-re)
13972 (verilog-ovm-statement-re, verilog-leap-to-head)
13973 (verilog-backward-token): Add support for OVM macros. Some are
13974 complete statements, and others open and close scopes like begin
13975 and end.
13976 (verilog-defun-level-not-generate-re, verilog-defun-level-re)
13977 (verilog-defun-level-generate-only-re): Really fix the defun-list
13978 compilation issue.
13979 (verilog-calc-1, verilog-beg-of-statement): Enhance support for
13980 coverpoint, constraint and cross statements.
13981 (verilog-defun-level-list, verilog-generate-defun-level-list)
13982 (verilog-all-defun-level-list): Redo these specifications - it is
13983 too hard to support eval-when compile aggregation of lists also
13984 built at when-compile time.
13985 (verilog-defun-level-list): Place defconsts of variables used in
13986 building regular expressions which are built in eval-when-compile
13987 bodies in the same eval-when-compile body to facilitate compile
13988 without load.
13989 (verilog-beg-block-re-ordered): Support indenting
13990 virtual/protected tasks and functions.
13991 (verilog-defun-level-list, verilog-in-generate-region-p)
13992 (verilog-backward-ws&directives, verilog-calc-1): Speed up
13993 indentation of some module items (generate items).
13994 (verilog-forward-sexp, verilog-leap-to-head): Support stepping
13995 across virtual/protected tasks and functions.
13996
13997 2009-06-28 Wilson Snyder <wsnyder@wsnyder.org>
13998
13999 * progmodes/verilog-mode.el (verilog-auto-arg, verilog-auto-arg-sort):
14000 Allow sorting AUTOARG lists. Suggested by Andrea Fedeli.
14001 (verilog-read-sub-decls-line): Fix AUTOWIRE signals getting lost
14002 in concatenations. Reported by Yishay Belkind.
14003 (verilog-auto-ascii-enum): Support one-hot state machines in
14004 AUTOASCIIENUM. Suggested by Lloyd Gomez.
14005 (verilog-auto-inst, verilog-auto-inst-port): Include interface
14006 modport in AUTOINST and add vl-modport for users. Reported by
14007 David Rogoff.
14008 (verilog-auto-inout-module, verilog-auto-inst)
14009 (verilog-decls-get-interfaces, verilog-insert-definition)
14010 (verilog-insert-one-definition, verilog-read-decls)
14011 (verilog-read-sub-decls, verilog-read-sub-decls-sig)
14012 (verilog-sig-modport, verilog-signals-combine-bus)
14013 (verilog-subdecls-get-interfaces): Fix expansion of SystemVerilog
14014 interfaces in AUTOINOUTMODULE, AUTOINOUTCOMP, and AUTOINST.
14015 Suggested by David Rogoff.
14016 (verilog-repair-open-comma): Fix non-insertion of comma when
14017 `DEFINE occurs in V2K argument list. Reported by Lane Brooks.
14018 (verilog-make-width-expression): Simplify [A-1:0] expression
14019 widths to just {A{1'b0}}.
14020 (verilog-mode): Cleanup checkdoc warnings.
14021 (verilog-auto-inout-module, verilog-signals-matching-dir-re):
14022 Add third optional regexp to AUTOINOUTMODULE to allow selecting only
14023 inputs/outputs or data type. Suggested by Vasu Kandadi.
14024 (next-error-last-buffer): Fix byte-compiler warning.
14025 (verilog-auto, verilog-auto-insert-lisp, verilog-auto-inst)
14026 (verilog-delete-auto): Add AUTOINSERTLISP to insert arbitrary lisp
14027 or shell command text during AUTO expansion. Suggested by Tad Truex.
14028 (verilog-read-sub-decls-expr, verilog-read-sub-decls-line)
14029 (verilog-read-sub-decls-sig, verilog-symbol-detick-text):
14030 Fix dotted nets {a.b,c.d} and excaped identifiers being mis-included
14031 in AUTOINOUT. Reported by Matthew Lovell.
14032 (verilog-read-always-signals-recurse): Fix AUTORESET "if (a<=b)"
14033 causing use of <= assignments. Reported by Alex Reed.
14034 (verilog-read-decls): Fix triand, trior, wand, wor to be
14035 recognized by AUTOWIRE. Reported by Spencer Isaacson.
14036 (verilog-extended-complete-re): Support import "DPI-C" functions.
14037 (verilog-read-always-signals-recurse): Fix AUTORESET of "x <=
14038 y[a+1:a+1]" to not include a in reset list. Reported by Dan Dever.
14039 (verilog-insert-date, verilog-insert-year)
14040 (verilog-sk-header-tmpl): Fix verilog-header inserting error on
14041 Windows systems. Reported by Michael Potts.
14042 (verilog-read-module-name): Fix AUTOINST when the child module
14043 declaration's name is a tick define. Reported by Elliot Mednick.
14044 (verilog-read-decls): Fix V2K parameter bit subscripts getting
14045 passed to next parameter's definition. Reported by Bruce T.
14046 (verilog-read-decls): Fix detecting "parameter int" when using
14047 AUTOINSTPARAM. Reported by Bruce T.
14048 (verilog-goto-defun): Fix goto not finding modules unless first
14049 perform a verilog-auto expansion. Suggested by Lawrence Butcher.
14050 (verilog-mode): Expand -f flag arguments on entry to mode so
14051 verilog-goto-defun will work. Reported by Lawrence Butcher.
14052 (verilog-getopt): Expand environment variables in -f file
14053 arguments. Suggested by Lawrence Butcher.
14054 (verilog-set-define): Fix "Symbol's value as variable is void"
14055 when reading enumerations.
14056 (verilog-auto-ascii-enum): Fix duplicate labels in AUTOASCIIENUM.
14057 Suggested by Stephen Peltan.
14058 (verilog-read-defines): Fix reading of enumerations in include
14059 files. Reported by Steve Peltan.
14060
14061 2009-06-28 David De La Harpe Golden <david@harpegolden.net>
14062
14063 * files.el (trash-directory): Fix defcustom type.
14064
14065 2009-06-28 Juri Linkov <juri@jurta.org>
14066
14067 * help-fns.el (describe-function-1): Correctly locate adviced
14068 functions in hyperlink (Bug#2438).
14069
14070 2009-06-28 Chong Yidong <cyd@stupidchicken.com>
14071
14072 * files.el (trash-directory): Change default to nil.
14073 (move-file-to-trash): If trash-directory is nil and
14074 system-move-file-to-trash is unbound, perform freedesktop-style
14075 trashing.
14076
14077 2009-06-28 David De La Harpe Golden <david@harpegolden.net>
14078
14079 * files.el (move-file-to-trash): Add freedesktop trash
14080 support (Bug#973).
14081
14082 2009-06-28 Glenn Morris <rgm@gnu.org>
14083
14084 * autorevert.el (global-auto-revert-non-file-buffers)
14085 (global-auto-revert-mode): Doc fixes.
14086
14087 2009-06-27 Johan Bockgård <bojohan@gnu.org>
14088
14089 * emacs-lisp/cl-specs.el (defstruct): Fix :conc-name spec.
14090
14091 2009-06-27 Chong Yidong <cyd@stupidchicken.com>
14092
14093 * faces.el (x-handle-named-frame-geometry): Ensure that we have
14094 opened an X connection before calling x-get-resource (Bug#3194).
14095
14096 * play/doctor.el: Remove reference to obsolete website.
14097 (make-doctor-variables): Correct grammar mistake (Bug#2633).
14098
14099 2009-06-26 Dan Nicolaescu <dann@ics.uci.edu>
14100
14101 Remove find-file-not-found-hook VC method. (Bug#2757)
14102 * vc-hooks.el (vc-file-not-found-hook)
14103 (vc-default-find-file-not-found-hook): Remove functions.
14104 (find-file-not-found-functions): Do not add vc-file-not-found-hook.
14105 * vc-rcs.el (vc-rcs-find-file-not-found-hook): Remove function.
14106 * vc.el:
14107 * vc-hg.el:
14108 * vc-git.el: Do not mention find-file-not-found-hook VC method.
14109
14110 2009-06-25 Agustín Martín <agustin.martin@hispalinux.es>
14111
14112 * textmodes/ispell.el: Add `ispell-looking-back' XEmacs
14113 compatibility function for `looking-back'.
14114
14115 * textmodes/flyspell.el (sgml-mode-flyspell-verify):
14116 Use `ispell-looking-back'.
14117
14118 2009-06-24 Michael Albinus <michael.albinus@gmx.de>
14119
14120 * net/tramp-gvfs.el (tramp-gvfs-handle-make-directory): Use `dir'
14121 rather than `filename'.
14122
14123 2009-06-23 Miles Bader <miles@gnu.org>
14124
14125 * face-remap.el (text-scale-set): New function.
14126
14127 2009-06-23 Glenn Morris <rgm@gnu.org>
14128
14129 * pcmpl-rpm.el (pcomplete/rpm): Doc fix.
14130
14131 * bindings.el (mode-line-modified): Fix case of "Buffer is modified".
14132
14133 * textmodes/ispell.el (ispell-local-dictionary): Doc fix.
14134
14135 * progmodes/gdb-mi.el (gud-remove, gud-break): Update declarations.
14136
14137 * calendar/cal-dst.el (calendar-time-zone-daylight-rules):
14138 Simplify Persian conditionals.
14139
14140 * calc/calc-graph.el (calc-graph-plot): Avoid assignment to free
14141 variable `filename'.
14142
14143 * comint.el (comint-insert-input): Doc fix.
14144
14145 * Makefile.in (ELCFILES): Fix typo in previous change.
14146
14147 2009-06-23 Miles Bader <miles@gnu.org>
14148
14149 * cus-start.el: Add entry for `recenter-redisplay'.
14150
14151 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
14152
14153 * vc-hooks.el (vc-stay-local-p, vc-state, vc-working-revision):
14154 Add an optional argument for the backend, use it instead of
14155 calling vc-backend.
14156 (vc-mode-line): Add an optional argument for the backend.
14157 Pass the backend to vc-state and vc-working-revision. Move code for
14158 special handling for vc-state being a buffer to ...
14159
14160 * vc-rcs.el (vc-rcs-find-file-hook):
14161 * vc-sccs.el (vc-sccs-find-file-hook): ... here. New functions.
14162
14163 * vc-svn.el (vc-svn-state, vc-svn-dir-status, vc-svn-checkout)
14164 (vc-svn-print-log, vc-svn-diff): Pass 'SVN to vc-state,
14165 vc-stay-local-p and vc-mode-line calls.
14166
14167 * vc-cvs.el (vc-cvs-state, vc-cvs-checkout, vc-cvs-print-log)
14168 (vc-cvs-diff, vc-cvs-annotate-command)
14169 (vc-cvs-make-version-backups-p, vc-cvs-stay-local-p)
14170 (vc-cvs-dir-status): Pass 'CVS to vc-state, vc-stay-local-p and
14171 vc-mode-line calls.
14172
14173 * vc.el (vc-deduce-fileset): Use vc-deduce-fileset instead of
14174 direct comparison.
14175 (vc-next-action, vc-transfer-file, vc-rename-file): Also pass the
14176 backend when calling vc-mode-line.
14177 (vc-register): Do not create a closure for calling the vc register
14178 function, call it directly.
14179
14180 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
14181
14182 * emacs-lisp/elp.el (elp-output-insert-symname): Add a link face
14183 to make it obvious item can be clicked.
14184
14185 * vc-mtn.el (vc-mtn-after-dir-status, vc-mtn-dir-status): New functions.
14186
14187 2009-06-23 Kenichi Handa <handa@m17n.org>
14188
14189 * language/korea-util.el (korean-key-bindings): Change the binding
14190 of F9 to hangul-to-hanja-conversion. Bind Hangul_Hanja to the
14191 same command.
14192
14193 2009-06-22 Michael Albinus <michael.albinus@gmx.de>
14194
14195 Sync with Tramp 2.1.16.
14196
14197 * Makefile.in (ELCFILES): Add net/tramp-gvfs.elc.
14198
14199 * net/tramp.el (top): Require tramp-gvfs. Catch `tramp-loading',
14200 when a loading of a package fails. Completion function for rsync
14201 is `tramp-completion-function-alist-ssh'.
14202 (all): Replace all calls of `split-string' and
14203 `tramp-split-string' by `tramp-compat-split-string'.
14204 (tramp-default-method): Use `tramp-compat-process-running-p'.
14205 (tramp-default-proxies-alist): Allow also Lisp forms.
14206 (tramp-remote-path): Add choice "Private Directories".
14207 (tramp-wrong-passwd-regexp): Remove "Tramp connection closed" option.
14208 (tramp-domain-regexp): Allow also "-", "_" and ".".
14209 (tramp-end-of-output): Remove newlines, and add "$" at the end.
14210 (tramp-file-name-handler-alist): Add handler for `dired-uncache'.
14211 (tramp-debug-message): Insert header line in debug buffer.
14212 (tramp-handle-directory-files-and-attributes-with-stat):
14213 Care about filenames with spaces, or starting with "-".
14214 (tramp-handle-dired-uncache): New defun.
14215 (tramp-handle-insert-directory): Don't flush the directory from
14216 cache, this is handled by `dired-uncache' now.
14217 (tramp-handle-insert-file-contents): Improve error handling.
14218 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
14219 Quote `tramp-end-of-output'.
14220 (tramp-action-password): Improve trace message.
14221 (tramp-check-for-regexp): Both echoes must be present, before removing.
14222 (tramp-open-connection-setup-interactive-shell): Trace coding system.
14223 (tramp-compute-multi-hops): Eval cons cells of
14224 `tramp-default-proxies-alist'.
14225 (tramp-maybe-open-connection): Use the same command pattern for
14226 first hop and further hops.
14227 (tramp-wait-for-output): Remove handling of newlines.
14228 (tramp-get-remote-path): Handle also `tramp-own-remote-path'.
14229 (tramp-split-string): Remove function. It is handled in
14230 tramp-compat now.
14231
14232 * net/tramp-cmds.el (tramp-bug):
14233 Recommend `tramp-cleanup-all-connections' in the bug mail.
14234
14235 * net/tramp-compat.el (tramp-compat-split-string)
14236 (tramp-compat-process-running-p): New defuns.
14237
14238 * net/tramp-fish.el (tramp-fish-file-name-handler-alist): Add handler
14239 for `dired-uncache'.
14240
14241 * net/tramp-gvfs.el: New package.
14242
14243 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
14244 Add handler for `dired-uncache'.
14245 (tramp-smb-handle-file-local-copy): Cleanup in case of error.
14246
14247 * net/trampver.el: Update release number. Make version check fit
14248 for SXEmacs 22.
14249
14250 2009-06-22 Jim Meyering <meyering@redhat.com>
14251
14252 Automatically handle .xz suffix (XZ-compressed files), too.
14253 * jka-cmpr-hook.el (jka-compr-compression-info-list): Add xz.
14254 XZ is the successor to LZMA: <http://tukaani.org/xz/>
14255
14256 2009-06-22 Dmitry Dzhus <dima@sphinx.net.ru>
14257 Nick Roberts <nickrob@snap.net.nz>
14258
14259 * progmodes/gdb-mi.el: Pull further modified changes from Dmitry's
14260 repository (http://sphinx.net.ru/hg/gdb-mi/).
14261
14262 2009-06-22 Glenn Morris <rgm@gnu.org>
14263
14264 * files.el (dir-locals-collect-mode-variables): Allow for any number of
14265 `mode' and `eval' entries. (Bug#3430)
14266
14267 * Makefile.in (ELCFILES): Add fadr.elc.
14268
14269 * calendar/appt.el (appt-make-list): Fix off-by-one error caused by
14270 differing behavior of \n and ^ in strings. (Bug#3385)
14271
14272 * emacs-lisp/cl-indent.el: Remove leading "*" from defcustom docs.
14273
14274 * emacs-lisp/lisp-mode.el (lisp-indent-offset): Fix safe-local-variable
14275 property.
14276 (lisp-indent-function): Make it a defcustom.
14277
14278 2009-06-21 Nick Roberts <nickrob@snap.net.nz>
14279
14280 * progmodes/gdb-ui.el: Replace with ...
14281 * progmodes/gdb-mi.el: ... this file.
14282 * progmodes/gud.el: Modify for gdb-mi.el.
14283
14284 2009-06-21 Dmitry Dzhus <dima@sphinx.net.ru>
14285
14286 * fadr.el: New file.
14287
14288 See ChangeLog.14 for earlier changes.
14289
14290 ;; Local Variables:
14291 ;; coding: utf-8
14292 ;; End:
14293
14294 Copyright (C) 2009, 2010 Free Software Foundation, Inc.
14295
14296 This file is part of GNU Emacs.
14297
14298 GNU Emacs is free software: you can redistribute it and/or modify
14299 it under the terms of the GNU General Public License as published by
14300 the Free Software Foundation, either version 3 of the License, or
14301 (at your option) any later version.
14302
14303 GNU Emacs is distributed in the hope that it will be useful,
14304 but WITHOUT ANY WARRANTY; without even the implied warranty of
14305 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14306 GNU General Public License for more details.
14307
14308 You should have received a copy of the GNU General Public License
14309 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
14310
14311 ;; arch-tag: d3e45e38-19e2-49b6-8dc2-7cb26adcc5a1