49393728f073ca13f94760b243793beaf636a9ed
[bpt/emacs.git] / lisp / ChangeLog
1 2010-09-22 Dan Christensen <jdc@uwo.ca>
2
3 * calendar/time-date.el (date-to-time): Try using parse-time-string
4 first before using the slower timezone-make-date-arpa-standard.
5
6 2010-09-22 Katsumi Yamaoka <yamaoka@jpl.org>
7
8 * calendar/time-date.el (format-seconds): Comment fix.
9
10 2010-09-22 Glenn Morris <rgm@gnu.org>
11
12 * emacs-lisp/package.el (package-menu-mode): `revert-buffer-function'
13 is not automatically buffer-local.
14
15 2010-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
16
17 * emacs-lisp/smie.el (smie-debug--describe-cycle): Fix typo.
18 (smie-indent-comment): Be more careful with comment-start-skip.
19 (smie-indent-comment-close, smie-indent-comment-inside): New funs.
20 (smie-indent-functions): Use them.
21
22 2010-09-21 Michael Albinus <michael.albinus@gmx.de>
23
24 * net/ange-ftp.el (ange-ftp-skip-msgs): Add "^504 ..." message.
25
26 2010-09-21 Jan Djärv <jan.h.d@swipnet.se>
27
28 * menu-bar.el (menu-bar-set-tool-bar-position): customize-set-variable
29 tool-bar-position. Don't modify frame parameters here.
30 (menu-bar-options-save): Add tool-bar-position.
31
32 * tool-bar.el (tool-bar-position): New defcustom (Bug#7049).
33
34 2010-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
35
36 * textmodes/reftex-parse.el (reftex-what-macro)
37 (reftex-context-substring): Let-bind forward-sexp-function to nil
38 since we don't need/want to treat \begin...\end as a block (bug#7053).
39
40 * emacs-lisp/lisp.el (up-list): Don't do nothing silently.
41
42 * simple.el (blink-matching-open): Use syntax-class.
43
44 * progmodes/pascal.el (pascal-mode): Use define-derived-mode.
45 Set invisibility spec for pascal's outline mode.
46 (pascal-outline-change): Clean up calling convention.
47 (pascal-show-all, pascal-hide-other-defuns): Update callers.
48
49 * progmodes/prolog.el (prolog-smie-forward-token)
50 (prolog-smie-backward-token): New functions.
51 (prolog-mode-variables): Use them to parse "!," correctly.
52 Set up smie-blink-matching for ".".
53
54 * textmodes/ispell.el (ispell-start, ispell-end): Rename from `start'
55 and `end'.
56 (ispell-region, ispell-process-line): Update users.
57
58 * textmodes/reftex-parse.el (reftex-what-macro): Don't hardcode
59 point-min==1.
60
61 * textmodes/ispell.el: Fix commenting convention.
62 (ispell-parse-output): Simplify, use push.
63 (ispell-region): Use match-string-no-properties.
64 (ispell-begin-skip-region-regexp): Use mapconcat to simplify.
65 (ispell-minor-mode): Use define-minor-mode.
66 (ispell-message): Remove unused var `skip-regexp'.
67 (ispell-add-per-file-word-list): Use dynamic let-binding.
68 Try and use the proper comment marker.
69
70 * mail/sendmail.el: Fix commenting convention.
71 (sendmail-send-it): Use line-beginning-position.
72
73 * help-fns.el (describe-variable): Add original value, if applicable.
74
75 2010-09-20 Juanma Barranquero <lekktu@gmail.com>
76
77 * subr.el (y-or-n-p): Remove leftover code from 2010-09-17T13:30:30Z!monnier@iro.umontreal.ca.
78
79 * emacs-lisp/smie.el (smie-indent--hanging-p): Use `smie-indent--bolp'.
80
81 2010-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
82
83 * emacs-lisp/smie.el (smie-bnf-precedence-table): Improve error message.
84 (smie-debug--prec2-cycle, smie-debug--describe-cycle): New functions.
85 (smie-prec2-levels): Use them to better diagnose precedence cycles.
86 (smie-blink-matching-check): Don't signal a mismatch if car is t.
87 (smie-blink-matching-open): Rewrite to remove assumptions, so that
88 something like "." can also be a closer.
89 (smie--associative-p, smie-indent--hanging-p, smie-indent--bolp)
90 (smie-indent--offset, smie-indent--offset-rule, smie-indent--column):
91 Rename internal functions to use "--". Update callers.
92
93 * frame.el (make-frame-names-alist): Don't list frames on other displays.
94
95 * fringe.el (fringe-styles): New var.
96 (fringe-mode, fringe-query-style): Use it.
97
98 2010-09-18 Michael R. Mauger <mmaug@yahoo.com>
99
100 * progmodes/sql.el: Version 2.8
101 (sql-login-params): Update widget structure; changes still needed.
102 (sql-product-alist): Add :list-all and :list-table features for
103 SQLite, Postgres and MySQL products.
104 (sql-redirect): Handle default value.
105 (sql-execute, sql-execute-feature): New functions.
106 (sql-read-table-name): New function.
107 (sql-list-all, sql-list-table): New functions. User API.
108 (sql-mode-map, sql-interactive-mode-map): Add key definitions
109 for above functions.
110 (sql-mode-menu, sql-interactive-mode-menu): Add menu definitions
111 for above functions.
112 (sql-postgres-login-params): Add user and database defaults.
113 (sql-buffer-live-p): Bug fix.
114 (sql-product-history): New variable.
115 (sql-read-product): New function. Use it.
116 (sql-set-product, sql-product-interactive): Use it.
117 (sql-connection-history): New variable.
118 (sql-read-connection): New function. Use it.
119 (sql-connect): New function.
120 (sql-for-each-login): Redesign function interface.
121 (sql-make-alternate-buffer-name, sql-save-connection): Use it.
122 (sql-get-login-ext, sql-get-login): Use it. Handle default values.
123 (sql-comint): Check for program. Existing live buffer.
124 (sql-comint-postgres): Add port parameter.
125
126 2010-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
127
128 * emacs-lisp/warnings.el: Fix commenting convention.
129 (display-warning): Use special mode and make the buffer read-only.
130
131 2010-09-18 Jay Belanger <jay.p.belanger@gmail.com>
132
133 * calc/calc-prog.el (calc-read-parse-table-part): Don't "fix" the
134 empty string when it follows a repeated or optional pattern.
135
136 2010-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
137
138 * indent.el (indent-according-to-mode): Apply syntax-propertize.
139 (indent-region): Use indent-according-to-mode.
140
141 2010-09-18 Eli Zaretskii <eliz@gnu.org>
142
143 * fringe.el (fringe-mode): Doc fix.
144
145 2010-09-14 Kan-Ru Chen <kanru@kanru.info> (tiny change)
146
147 * textmodes/nroff-mode.el (nroff-view): Kill old buffer before
148 refreshing the preview buffer.
149
150 2010-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
151
152 * textmodes/tex-mode.el (tex-syntax-propertize-rules)
153 (latex-syntax-propertize-rules): New consts; replace
154 tex-font-lock-syntactic-keywords.
155 (tex-env-mark, latex-env-before-change): New functions.
156 (latex-electric-env-pair-mode): New minor mode.
157 (tex-font-lock-verb): Change arguments; do move point.
158 (tex-font-lock-syntactic-face-function): Adjust to new verbatim
159 representation as a form of comment.
160 (tex-font-lock-keywords-1): Remove workaround, now unneeded.
161 (doctex-syntax-propertize-rules): New const; replaces
162 doctex-font-lock-syntactic-keywords.
163 (tex-common-initialization, doctex-mode): Use syntax-propertize-rules.
164
165 * progmodes/fortran.el (fortran--font-lock-syntactic-keywords): Remove.
166 (fortran-make-syntax-propertize-function): New function; replaces
167 fortran-font-lock-syntactic-keywords.
168 (fortran-mode): Use it.
169 (fortran-line-length): Use it. Improve interactive spec.
170
171 * emacs-lisp/syntax.el (syntax-propertize-precompile-rules): New macro.
172 (syntax-propertize-rules): Add var-ref case. Fix offset computation
173 when adding surrounding \(..\).
174
175 * progmodes/js.el (js-mode): Fix last change (bug#7054).
176
177 2010-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
178
179 * obsolete/old-whitespace.el (whitespace-rescan-files-in-buffers):
180 Use with-current-buffer.
181
182 * isearch.el (isearch-face): Rename from `isearch'.
183 (isearch-highlight): Use new name.
184
185 2010-09-17 Eli Zaretskii <eliz@gnu.org>
186
187 * fringe.el (fringe-mode, fringe-query-style): Use 4 pixels, not
188 5, for `half' width fringes. (Bug#6933)
189
190 2010-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
191
192 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar)
193 (byte-compile-defvar): "foo/bar" does not lack a prefix.
194
195 * subr.el (y-or-n-p): Add the "(y or n)" that was lost somehow.
196
197 2010-09-17 Stephen Berman <stephen.berman@gmx.net>
198
199 * dframe.el (dframe-reposition-frame-emacs): Use tool-bar-pixel-width
200 in calculating new frame position. Add more space between new and
201 parent on the left (Bug#7048).
202
203 2010-09-17 Michael Albinus <michael.albinus@gmx.de>
204
205 * net/tramp-compat.el (tramp-compat-with-temp-message): Make it a
206 defmacro.
207
208 2010-09-16 Chong Yidong <cyd@stupidchicken.com>
209
210 * mail/sendmail.el: Add "*unsent mail*" to same-window-buffer-names.
211
212 * term/x-win.el (x-cut-buffer-or-selection-value): Define as
213 obsolete alias for x-selection-value.
214
215 * ido.el (ido-make-buffer-list): Fix error in 2010-08-22 merge.
216
217 2010-09-16 Michael Albinus <michael.albinus@gmx.de>
218
219 * net/tramp-cmds.el (tramp-cleanup-connection): Set tramp-autoload
220 cookie.
221
222 2010-09-15 Michael Albinus <michael.albinus@gmx.de>
223
224 * net/tramp-compat.el (tramp-compat-with-temp-message)
225 (tramp-compat-font-lock-add-keywords, tramp-compat-process-get)
226 (tramp-compat-process-put): New defuns.
227
228 * net/tramp.el (top):
229 * net/tramp-gvfs.el (top):
230 * net/tramp-cache.el (top): Use `tramp-compat-font-lock-add-keywords'.
231
232 * net/tramp.el (tramp-progress-reporter-update):
233 Use `tramp-compat-funcall'.
234
235 * net/tramp.el (tramp-process-actions):
236 * net/tramp-gvfs.el (tramp-handle-vc-registered):
237 * net/tramp-sh.el (tramp-gvfs-handler-askquestion)
238 (tramp-get-remote-stat, tramp-get-remote-readlink):
239 Use `tramp-compat-with-temp-message'.
240
241 * net/tramp-sh.el (top): Require 'cl.
242 (tramp-handle-start-file-process): Use `tramp-compat-process-get'.
243 (tramp-open-connection-setup-interactive-shell):
244 Use `tramp-compat-process-put'.
245
246 2010-09-15 Alan Mackenzie <acm@muc.de>
247
248 * progmodes/cc-engine.el (c-forward-<>-arglist-recur): Correct the
249 indentation.
250 (c-forward-<>-arglist-recur): Fix an infinite recursion.
251
252 2010-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
253
254 * emacs-lisp/bytecomp.el (byte-compile-warning-types): New type
255 `lexical' for warnings related to lexical scoping.
256 (byte-compile-file-form-defvar, byte-compile-defvar): Warn about
257 global vars which don't have a prefix and could hence affect lexical
258 scoping in unrelated files.
259
260 2010-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
261
262 * net/imap.el: Revert back to version
263 cb950ed8ff3e0f40dac437a51b269166f9ffb60d, since some of the changes
264 seem problematic.
265
266 2010-09-14 Juanma Barranquero <lekktu@gmail.com>
267
268 * obsolete/old-whitespace.el (whitespace-unload-function):
269 Explicitly pass `obarray' to `unintern' to avoid a warning.
270
271 2010-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
272
273 * emacs-lisp/byte-run.el (set-advertised-calling-convention):
274 Add `when' argument. Update callers.
275
276 * subr.el (unintern): Declare the obarray arg mandatory.
277
278 2010-09-14 Glenn Morris <rgm@gnu.org>
279
280 * calendar/diary-lib.el (diary-list-entries-hook, diary-sort-entries):
281 Doc fixes.
282
283 * calendar/diary-lib.el (diary-included-files): New variable.
284 (diary-list-entries): Maybe initialize diary-included-files.
285 (diary-include-other-diary-files): Append to diary-included-files.
286 * calendar/appt.el (appt-update-list): Also check the members of
287 diary-included-files. (Bug#6999)
288 (appt-check): Doc fix.
289
290 2010-09-14 David Reitter <david.reitter@gmail.com>
291
292 * simple.el (line-move-visual): Do not truncate goal column to
293 integer size. (Bug#7020)
294
295 2010-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
296
297 * repeat.el (repeat): Allow repeating when the last event is a click.
298 Suggested by Drew Adams (bug#6256).
299
300 2010-09-14 Sascha Wilde <wilde@sha-bang.de>
301
302 * vc/vc-hg.el (vc-hg-state,vc-hg-working-revision):
303 Replace setting HGRCPATH to "" by some less invasive --config options.
304
305 2010-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
306
307 * font-lock.el (font-lock-beginning-of-syntax-function):
308 Mark as obsolete.
309
310 2010-09-14 Glenn Morris <rgm@gnu.org>
311
312 * menu-bar.el (menu-bar-options-save): Fix handling of menu-bar
313 and tool-bar modes. (Bug#6211)
314 (menu-bar-mode): Move setting of standard-value after the
315 minor-mode definition, otherwise it seems to have no effect.
316
317 2010-09-14 Masatake YAMATO <yamato@redhat.com>
318
319 * progmodes/antlr-mode.el (antlr-font-lock-additional-keywords):
320 Fix typo. (Bug#6976)
321
322 2010-09-14 Vinicius Jose Latorre <viniciusjl@ig.com.br>
323
324 * whitespace.el: Allow cleaning up blanks without blank
325 visualization (Bug#6651). Adjust help window for
326 whitespace-toggle-options (Bug#6479). Allow to use fill-column
327 instead of whitespace-line-column (from EmacsWiki). New version 13.1.
328 (whitespace-style): Add new value 'face. Adjust docstring.
329 (whitespace-space, whitespace-hspace, whitespace-tab):
330 Adjust foreground property face.
331 (whitespace-line-column): Adjust docstring and type declaration.
332 (whitespace-style-value-list, whitespace-toggle-option-alist)
333 (whitespace-help-text): Adjust const initialization.
334 (whitespace-toggle-options, global-whitespace-toggle-options):
335 Adjust docstring.
336 (whitespace-display-window, whitespace-interactive-char)
337 (whitespace-style-face-p, whitespace-color-on): Adjust code.
338 (whitespace-help-scroll): New fun.
339
340 2010-09-14 Katsumi Yamaoka <yamaoka@jpl.org>
341
342 * calendar/time-date.el (format-seconds): Comment fix.
343
344 2010-09-13 Michael R. Mauger <mmaug@yahoo.com>
345
346 * progmodes/sql.el: Version 2.7.
347 (sql-buffer-live-p): Improve detection.
348 (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
349 (sql-set-sqli-buffer): Use it.
350 (sql-product-interactive): Run `sql-set-sqli-hook'.
351 (sql-rename-buffer): Code cleanup.
352 (sql-redirect, sql-redirect-value): New functions. More to come.
353
354 2010-09-13 Juanma Barranquero <lekktu@gmail.com>
355
356 Port tramp-related Makefile changes of 2010-09-08T14:42:54Z!michael.albinus@gmx.de, 2010-09-13T15:17:01Z!michael.albinus@gmx.de to Windows.
357 * makefile.w32-in (LOADDEFS): Add $(lisp)/net/tramp-loaddefs.el.
358 (TRAMP_SRC): New macro.
359 ($(lisp)/net/tramp-loaddefs.el): New target.
360
361 2010-09-13 Michael Albinus <michael.albinus@gmx.de>
362
363 Major code cleanup. Split tramp.el into tramp.el and tramp-sh.el.
364
365 * Makefile.in (TRAMP_SRC): Remove tramp-fish.el. Add tramp-sh.el.
366
367 * net/tramp.el (top): Don't show loading message. Require just
368 'tramp-compat, everything else is required there.
369 Use `ignore-errors' where appropriate.
370 (tramp-inline-compress-start-size, tramp-copy-size-limit)
371 (tramp-terminal-type, tramp-end-of-output)
372 (tramp-initial-end-of-output, tramp-completion-function-alist-rsh)
373 (tramp-completion-function-alist-ssh)
374 (tramp-completion-function-alist-telnet)
375 (tramp-completion-function-alist-su)
376 (tramp-completion-function-alist-putty, tramp-remote-path)
377 (tramp-remote-process-environment, tramp-sh-extra-args)
378 (tramp-actions-before-shell, tramp-uudecode)
379 (tramp-perl-file-truename, tramp-perl-file-name-all-completions)
380 (tramp-perl-file-attributes)
381 (tramp-perl-directory-files-and-attributes)
382 (tramp-perl-encode-with-module, tramp-perl-decode-with-module)
383 (tramp-perl-encode, tramp-perl-decode)
384 (tramp-vc-registered-read-file-names, tramp-file-mode-type-map)
385 (tramp-file-name-handler-alist, tramp-make-tramp-temp-file)
386 (tramp-handle-make-symbolic-link, tramp-handle-load)
387 (tramp-handle-file-name-as-directory)
388 (tramp-handle-file-name-directory)
389 (tramp-handle-file-name-nondirectory, tramp-handle-file-truename)
390 (tramp-handle-file-exists-p, tramp-handle-file-attributes)
391 (tramp-do-file-attributes-with-ls)
392 (tramp-do-file-attributes-with-perl)
393 (tramp-do-file-attributes-with-stat)
394 (tramp-handle-set-visited-file-modtime)
395 (tramp-handle-verify-visited-file-modtime)
396 (tramp-handle-set-file-modes, tramp-handle-set-file-times)
397 (tramp-set-file-uid-gid, tramp-remote-selinux-p)
398 (tramp-handle-file-selinux-context)
399 (tramp-handle-set-file-selinux-context)
400 (tramp-handle-file-executable-p, tramp-handle-file-readable-p)
401 (tramp-handle-file-newer-than-file-p, tramp-handle-file-modes)
402 (tramp-handle-file-directory-p, tramp-handle-file-regular-p)
403 (tramp-handle-file-symlink-p, tramp-handle-file-writable-p)
404 (tramp-handle-file-ownership-preserved-p)
405 (tramp-handle-directory-file-name, tramp-handle-directory-files)
406 (tramp-handle-directory-files-and-attributes)
407 (tramp-do-directory-files-and-attributes-with-perl)
408 (tramp-do-directory-files-and-attributes-with-stat)
409 (tramp-handle-file-name-all-completions)
410 (tramp-handle-file-name-completion, tramp-handle-add-name-to-file)
411 (tramp-handle-copy-file, tramp-handle-copy-directory)
412 (tramp-handle-rename-file, tramp-do-copy-or-rename-file)
413 (tramp-do-copy-or-rename-file-via-buffer)
414 (tramp-do-copy-or-rename-file-directly)
415 (tramp-do-copy-or-rename-file-out-of-band)
416 (tramp-handle-make-directory, tramp-handle-delete-directory)
417 (tramp-handle-delete-file)
418 (tramp-handle-dired-recursive-delete-directory)
419 (tramp-handle-dired-compress-file, tramp-handle-dired-uncache)
420 (tramp-handle-insert-directory)
421 (tramp-handle-unhandled-file-name-directory)
422 (tramp-handle-expand-file-name)
423 (tramp-handle-substitute-in-file-name)
424 (tramp-handle-executable-find, tramp-process-sentinel)
425 (tramp-handle-start-file-process, tramp-handle-process-file)
426 (tramp-handle-call-process-region, tramp-handle-shell-command)
427 (tramp-handle-file-local-copy, tramp-handle-file-remote-p)
428 (tramp-handle-insert-file-contents)
429 (tramp-handle-insert-file-contents-literally)
430 (tramp-handle-find-backup-file-name)
431 (tramp-handle-make-auto-save-file-name, tramp-handle-write-region)
432 (tramp-vc-registered-file-names, tramp-handle-vc-registered)
433 (tramp-sh-file-name-handler, tramp-vc-file-name-handler)
434 (tramp-maybe-send-script, tramp-set-auto-save, tramp-run-test)
435 (tramp-run-test2, tramp-find-executable, tramp-set-remote-path)
436 (tramp-find-file-exists-command, tramp-open-shell)
437 (tramp-find-shell, tramp-barf-if-no-shell-prompt)
438 (tramp-open-connection-setup-interactive-shell)
439 (tramp-local-coding-commands, tramp-remote-coding-commands)
440 (tramp-find-inline-encoding, tramp-call-local-coding-command)
441 (tramp-inline-compress-commands, tramp-find-inline-compress)
442 (tramp-compute-multi-hops, tramp-maybe-open-connection)
443 (tramp-send-command , tramp-wait-for-output)
444 (tramp-send-command-and-check, tramp-barf-unless-okay)
445 (tramp-send-command-and-read, tramp-mode-string-to-int)
446 (tramp-convert-file-attributes, tramp-check-cached-permissions)
447 (tramp-file-mode-from-int, tramp-file-mode-permissions)
448 (tramp-shell-case-fold, tramp-make-copy-program-file-name)
449 (tramp-method-out-of-band-p, tramp-local-host-p)
450 (tramp-get-remote-path, tramp-get-remote-tmpdir)
451 (tramp-get-ls-command, tramp-get-ls-command-with-dired)
452 (tramp-get-test-command, tramp-get-test-nt-command)
453 (tramp-get-file-exists-command, tramp-get-remote-ln)
454 (tramp-get-remote-perl, tramp-get-remote-stat)
455 (tramp-get-remote-readlink, tramp-get-remote-trash)
456 (tramp-get-remote-id, tramp-get-remote-uid, tramp-get-remote-gid)
457 (tramp-get-local-uid, tramp-get-local-gid)
458 (tramp-get-inline-compress, tramp-get-inline-coding): Move to
459 tramp-sh.el.
460 (tramp-methods, tramp-default-method-alist)
461 (tramp-default-user-alist, tramp-foreign-file-name-handler-alist):
462 Move initialization to tramp-sh.el.
463 (tramp-temp-name-prefix): Make it a defconst.
464 (tramp-dissect-file-name): Don't check anymore for multi-hop
465 methods.
466 (tramp-debug-outline-regexp): Add a docstring.
467 (tramp-debug-outline-level): Rename from `tramp-outline-level'.
468 (tramp-get-debug-buffer): Use it.
469
470 * net/tramp-cache.el (top): Set tramp-autoload cookie for
471 initialization forms.
472 (tramp-set-connection-property): Don't protect `tramp-message'
473 call, it isn't necessary any longer.
474 (tramp-dump-connection-properties): Use `ignore-errors'.
475
476 * net/tramp-compat.el (top): Require 'advice, 'format-spec,
477 'password-cache and 'auth-source.
478
479 * net/tramp-gvfs.el (top):
480 * net/tramp-smb.el (top): Require 'tramp-sh.
481
482 * net/tramp-gw.el (tramp-gw-open-network-stream): Use `ignore-errors'.
483
484 * net/tramp-sh.el: New file, derived from tramp.el.
485 (top): Initialize `tramp-methods', `tramp-default-method-alist',
486 `tramp-default-user-alist', `tramp-foreign-file-name-handler-alist'.
487 Remove "scp1_old", "scp2_old", "ssh1_old", "ssh2_old".
488 Use `ignore-errors' where appropriate.
489 (tramp-sh-file-name-handler-alist): Rename from
490 `tramp-file-name-handler-alist'.
491 (tramp-send-command-and-check): Return t or nil. Remove all
492 `zerop' checks, where called.
493 (tramp-handle-set-file-modes)
494 (tramp-do-copy-or-rename-file-directly)
495 (tramp-handle-delete-directory, tramp-handle-delete-file)
496 (tramp-maybe-send-script): Use `tramp-barf-unless-okay'.
497 (tramp-sh-file-name-handler, tramp-send-command-and-check)
498 (tramp-get-remote-ln): Set tramp-autoload cookie.
499
500 * net/tramp-fish.el: Remove file.
501
502 2010-09-13 Daiki Ueno <ueno@unixuser.org>
503
504 * epa-file.el (epa-file-insert-file-contents): If visiting, bind
505 buffer-file-name to avoid file-locking. (Bug#7026)
506
507 2010-09-13 Julien Danjou <julien@danjou.info>
508
509 * notifications.el (notifications-notify): Add support for
510 image-path and sound-name.
511 (notifications-specification-version): Add this variable.
512
513 2010-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
514
515 * subr.el (y-or-n-p): New function, moved from src/fns.c; use read-key.
516
517 2010-09-12 Leo <sdl.web@gmail.com>
518
519 * net/rcirc.el (rcirc-server-commands, rcirc-client-commands)
520 (rcirc-completion-start): New variables.
521 (rcirc-nick-completions): Rename to rcirc-completions.
522 (rcirc-nick-completion-start-offset): Delete.
523 (rcirc-completion-at-point): New function for constructing
524 completion data for both nicks and irc commands. Add to
525 completion-at-point-functions in rcirc mode.
526 (rcirc-complete): Rename from rcirc-nick-complete; use
527 rcirc-completion-at-point.
528 (defun-rcirc-command): Update rcirc-client-commands.
529
530 2010-09-11 Glenn Morris <rgm@gnu.org>
531
532 * emacs-lisp/bytecomp.el (byte-compile-file): Create .elc files
533 atomically, to avoid parallel build errors. (Bug#4196)
534
535 2010-09-11 Michael R. Mauger <mmaug@yahoo.com>
536
537 * progmodes/sql.el: Version 2.6
538 (sql-dialect): Synonym for "sql-product".
539 (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
540 (sql-set-sqli-buffer, sql-show-sqli-buffer, sql-interactive-mode):
541 Set "sql-buffer" to buffer name not buffer object so multiple sql
542 interactive buffers work properly. Reverts misguided changes in
543 earlier work.
544 (sql-comint): Make sure different buffer name is used if "*SQL*"
545 buffer is for a different product.
546 (sql-make-alternate-buffer-name): Fix bug with "sql-database"
547 login param.
548 (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql)
549 (sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase)
550 (sql-db2, sql-linter, sql-product-interactive, sql-rename-buffer):
551 Accept new buffer name or prompt for one.
552 (sql-port): Default to zero.
553 (sql-comint-mysql): Handle "sql-port" as a numeric.
554 (sql-port-history): Delete unused variable.
555 (sql-get-login): Default "sql-port" to a number.
556 (sql-product-alist): Correct Postgres prompt and terminator regexp.
557 (sql-sqlite-program): Dynamically detect presence of "sqlite" or
558 "sqlite3" executables.
559 (sql-sqlite-login-params): Add "*.sqlite[23]?" database name pattern.
560 (sql-buffer-live-p): New function.
561 (sql-mode-menu, sql-send-string): Use it.
562 (sql-mode-oracle-font-lock-keywords): Improve SQL*Plus REMARK
563 syntax pattern.
564 (sql-mode-postgres-font-lock-keywords): Support Postgres V9.
565 (sql-mode-sqlite-font-lock-keywords): Hilight sqlite commands.
566
567 2010-09-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
568
569 * net/netrc.el (netrc-credentials): New convenience function.
570
571 2010-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
572
573 * textmodes/texinfo.el (texinfo-syntax-propertize-function): New fun
574 to replace texinfo-font-lock-syntactic-keywords.
575 (texinfo-mode): Use it.
576
577 * textmodes/tex-mode.el (tex-common-initialization, doctex-mode):
578 Use syntax-propertize-function.
579
580 * textmodes/sgml-mode.el (sgml-syntax-propertize-function): New var to
581 replace sgml-font-lock-syntactic-keywords.
582 (sgml-mode): Use it.
583
584 * textmodes/reftex.el (font-lock-syntactic-keywords): Don't declare
585 since we don't use it.
586
587 * textmodes/bibtex.el (bibtex-mode): Use syntax-propertize-function.
588
589 * progmodes/vhdl-mode.el (vhdl-mode): Use syntax-propertize-function
590 if available.
591 (vhdl-fontify-buffer): Adjust.
592
593 * progmodes/tcl.el (tcl-syntax-propertize-function): New var to
594 replace tcl-font-lock-syntactic-keywords.
595 (tcl-mode): Use it.
596
597 * progmodes/simula.el (simula-syntax-propertize-function): New var to
598 replace simula-font-lock-syntactic-keywords.
599 (simula-mode): Use it.
600
601 * progmodes/sh-script.el (sh-st-symbol): Remove.
602 (sh-font-lock-close-heredoc, sh-font-lock-open-heredoc): Add eol arg.
603 (sh-font-lock-flush-syntax-ppss-cache, sh-font-lock-here-doc): Remove.
604 (sh-font-lock-quoted-subshell): Assume we've already matched $(.
605 (sh-font-lock-paren): Set syntax-multiline.
606 (sh-font-lock-syntactic-keywords): Remove.
607 (sh-syntax-propertize-function): New function to replace it.
608 (sh-mode): Use it.
609
610 * progmodes/ruby-mode.el (ruby-here-doc-beg-re):
611 Define while compiling.
612 (ruby-here-doc-end-re, ruby-here-doc-beg-match)
613 (ruby-font-lock-syntactic-keywords, ruby-comment-beg-syntax)
614 (syntax-ppss, ruby-in-ppss-context-p, ruby-in-here-doc-p)
615 (ruby-here-doc-find-end, ruby-here-doc-beg-syntax)
616 (ruby-here-doc-end-syntax): Only define when
617 syntax-propertize is not available.
618 (ruby-syntax-propertize-function, ruby-syntax-propertize-heredoc):
619 New functions.
620 (ruby-in-ppss-context-p): Update to new syntax of heredocs.
621 (electric-indent-chars): Silence bytecompiler.
622 (ruby-mode): Use prog-mode, syntax-propertize-function, and
623 electric-indent-chars.
624
625 * progmodes/python.el (python-syntax-propertize-function): New var to
626 replace python-font-lock-syntactic-keywords.
627 (python-mode): Use it.
628 (python-quote-syntax): Simplify and adjust to new use.
629
630 * progmodes/perl-mode.el (perl-syntax-propertize-function): New fun to
631 replace perl-font-lock-syntactic-keywords.
632 (perl-syntax-propertize-special-constructs): New fun to replace
633 perl-font-lock-special-syntactic-constructs.
634 (perl-font-lock-syntactic-face-function): New fun.
635 (perl-mode): Use it.
636
637 * progmodes/octave-mod.el (octave-syntax-propertize-sqs): New function
638 to replace octave-font-lock-close-quotes.
639 (octave-syntax-propertize-function): New function to replace
640 octave-font-lock-syntactic-keywords.
641 (octave-mode): Use it.
642
643 * progmodes/mixal-mode.el (mixal-syntax-propertize-function): New var;
644 replaces mixal-font-lock-syntactic-keywords.
645 (mixal-mode): Use it.
646
647 * progmodes/make-mode.el (makefile-syntax-propertize-function):
648 New var; replaces makefile-font-lock-syntactic-keywords.
649 (makefile-mode): Use it.
650 (makefile-imake-mode): Adjust.
651
652 * progmodes/js.el (js--regexp-literal): Define while compiling.
653 (js-syntax-propertize-function): New var; replaces
654 js-font-lock-syntactic-keywords.
655 (js-mode): Use it.
656
657 * progmodes/gud.el (gdb-script-syntax-propertize-function): New var;
658 replaces gdb-script-font-lock-syntactic-keywords.
659 (gdb-script-mode): Use it.
660
661 * progmodes/fortran.el (fortran-mode): Use syntax-propertize-function.
662 (fortran--font-lock-syntactic-keywords): New var.
663 (fortran-line-length): Update syntax-propertize-function and
664 fortran--font-lock-syntactic-keywords.
665
666 * progmodes/cperl-mode.el (cperl-mode): Use syntax-propertize-function.
667
668 * progmodes/cfengine.el (cfengine-mode):
669 Use syntax-propertize-function.
670 (cfengine-font-lock-syntactic-keywords): Remove.
671
672 * progmodes/autoconf.el (autoconf-mode):
673 Use syntax-propertize-function.
674 (autoconf-font-lock-syntactic-keywords): Remove.
675
676 * progmodes/ada-mode.el (ada-set-syntax-table-properties)
677 (ada-after-change-function, ada-initialize-syntax-table-properties)
678 (ada-handle-syntax-table-properties): Only define when
679 syntax-propertize is not available.
680 (ada-mode): Use syntax-propertize-function.
681
682 * font-lock.el (font-lock-syntactic-keywords): Make obsolete.
683 (font-lock-fontify-syntactic-keywords-region): Move handling of
684 font-lock-syntactically-fontified to...
685 (font-lock-default-fontify-region): ...here.
686 Let syntax-propertize-function take precedence.
687 (font-lock-fontify-syntactically-region): Cal syntax-propertize.
688
689 * emacs-lisp/syntax.el (syntax-propertize-function)
690 (syntax-propertize-chunk-size, syntax-propertize--done)
691 (syntax-propertize-extend-region-functions): New vars.
692 (syntax-propertize-wholelines, syntax-propertize-multiline)
693 (syntax-propertize--shift-groups, syntax-propertize-via-font-lock)
694 (syntax-propertize): New functions.
695 (syntax-propertize-rules): New macro.
696 (syntax-ppss-flush-cache): Set syntax-propertize--done.
697 (syntax-ppss): Call syntax-propertize.
698
699 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Skip named groups.
700
701 2010-09-10 Agustín Martín <agustin.martin@hispalinux.es>
702
703 * textmodes/ispell.el (ispell-init-process): Improve comments.
704 XEmacs compatibility changes regarding (add-hook) 'local option
705 and (set-process-query-on-exit-flag).
706
707 2010-09-09 Michael Albinus <michael.albinus@gmx.de>
708
709 * net/tramp-cache.el (tramp-parse-connection-properties):
710 Set tramp-autoload cookie.
711
712 2010-09-09 Glenn Morris <rgm@gnu.org>
713
714 * image.el (imagemagick-types-inhibit): Add :type, :version, :group.
715 (imagemagick-register-types): Doc fix.
716
717 2010-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
718
719 * progmodes/octave-mod.el (electric-indent-chars): Silence bytecomp.
720
721 * progmodes/js.el (require): Require is already "eval-and-compile".
722 (js--re-search-forward): Avoid `eval'. Preserve the error data.
723 (js--re-search-backward): Use js--re-search-forward.
724
725 * progmodes/fortran.el (fortran-line-length): Don't recompute
726 syntactic keywords redundantly a second time.
727
728 * progmodes/ada-mode.el: Replace "(set '" with setq.
729 (ada-mode): Simplify.
730 (ada-create-case-exception, ada-adjust-case-interactive)
731 (ada-adjust-case-region, ada-format-paramlist, ada-indent-current)
732 (ada-search-ignore-string-comment, ada-move-to-start)
733 (ada-move-to-end): Use with-syntax-table.
734
735 * font-lock.el (save-buffer-state): Remove `varlist' arg.
736 (font-lock-unfontify-region, font-lock-default-fontify-region):
737 Update usage correspondingly.
738 (font-lock-fontify-syntactic-keywords-region):
739 Set parse-sexp-lookup-properties buffer-locally here.
740 (font-lock-fontify-syntactically-region): Remove unused `ppss' arg.
741
742 * simple.el (blink-matching-open): Don't burp if we can't find a match.
743
744 2010-09-08 Glenn Morris <rgm@gnu.org>
745
746 * emacs-lisp/bytecomp.el (byte-compile-report-ops):
747 Error if not compiled with -DBYTE_CODE_METER.
748
749 * emacs-lisp/bytecomp.el (byte-recompile-directory):
750 Ignore dir-locals-file.
751
752 2010-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
753
754 * progmodes/compile.el (compilation-error-regexp-alist-alist):
755 Not a const.
756 (compilation-error-regexp-alist-alist): Rule out ": " in file names
757 for the `gnu' messages.
758 (compilation-set-skip-threshold): New command.
759 (compilation-start): Use \' rather than $.
760 (compilation-forget-errors): Use clrhash.
761
762 2010-09-08 Agustín Martín <agustin.martin@hispalinux.es>
763
764 * textmodes/ispell.el (ispell-valid-dictionary-list):
765 Simplify logic.
766
767 2010-09-08 Michael Albinus <michael.albinus@gmx.de>
768
769 Migrate to Tramp 2.2. Rearrange load dependencies.
770 (Bug#1529, Bug#5448, Bug#5705)
771
772 * Makefile.in (TRAMP_DIR, TRAMP_SRC): New variables.
773 ($(TRAMP_DIR)/tramp-loaddefs.el): New target.
774 (LOADDEFS): Add $(lisp)/net/tramp-loaddefs.el.
775
776 * net/tramp.el (top): Remove all other tramp-* loads except
777 tramp-compat.el. Remove all changes to tramp-unload-hook for
778 other tramp-* packages. Rearrange defun order. Change calls of
779 `tramp-compat-call-process', `tramp-compat-decimal-to-octal',
780 `tramp-compat-octal-to-decimal' to new function names.
781 (tramp-terminal-type, tramp-initial-end-of-output)
782 (tramp-methods, tramp-foreign-file-name-handler-alist)
783 (tramp-tramp-file-p, tramp-completion-mode-p)
784 (tramp-send-command-and-check, tramp-get-remote-path)
785 (tramp-get-remote-tmpdir, tramp-get-remote-ln)
786 (tramp-shell-quote-argument): Set tramp-autoload cookie.
787 (with-file-property, with-connection-property): Move to
788 tramp-cache.el.
789 (tramp-local-call-process, tramp-decimal-to-octal)
790 (tramp-octal-to-decimal): Move to tramp-compat.el.
791 (tramp-handle-shell-command): Do not require 'shell.
792 (tramp-compute-multi-hops): No special handling for tramp-gw-*
793 symbols.
794 (tramp-unload-tramp): Do not call `tramp-unload-file-name-handlers'.
795
796 * net/tramp-cache.el (top): Require 'tramp. Add to
797 `tramp-unload-hook'.
798 (tramp-cache-data, tramp-get-file-property)
799 (tramp-set-file-property, tramp-flush-file-property)
800 (tramp-flush-directory-property, tramp-get-connection-property)
801 (tramp-set-connection-property, tramp-flush-connection-property)
802 (tramp-cache-print, tramp-list-connections): Set tramp-autoload
803 cookie.
804 (with-file-property, with-connection-property): New defuns, moved
805 from tramp.el.
806 (tramp-flush-file-function): Use `with-parsed-tramp-file-name'
807 macro.
808
809 * net/tramp-cmds.el (top): Add to `tramp-unload-hook'.
810 (tramp-version): Set tramp-autoload cookie.
811
812 * net/tramp-compat.el (top): Require 'tramp-loaddefs. Remove all
813 changes to tramp-unload-hook for other tramp-* packages. Add to
814 `tramp-unload-hook'.
815 (tramp-compat-decimal-to-octal, tramp-compat-octal-to-decimal)
816 (tramp-compat-call-process): New defuns, moved from tramp.el.
817
818 * net/tramp-fish.el (top) Require just 'tramp. Add objects to
819 `tramp-methods' and `tramp-foreign-file-name-handler-alist'. Add
820 to `tramp-unload-hook'. Change call of
821 `tramp-compat-decimal-to-octal' to new function name.
822 (tramp-fish-method): Make it a defconst.
823 (tramp-fish-file-name-p): Make it a defsubst.
824 (tramp-fish-method, tramp-fish-file-name-handler)
825 (tramp-fish-file-name-p): Set tramp-autoload cookie.
826
827 * net/tramp-ftp.el (top) Add objects to `tramp-methods' and
828 `tramp-foreign-file-name-handler-alist'. Add to
829 `tramp-unload-hook'.
830 (tramp-ftp-method): Make it a defconst.
831 (tramp-ftp-file-name-p): Make it a defsubst.
832 (tramp-ftp-method, tramp-ftp-file-name-handler)
833 (tramp-ftp-file-name-p): Set tramp-autoload cookie.
834
835 * net/tramp-gvfs.el (top) Add objects to `tramp-methods' and
836 `tramp-foreign-file-name-handler-alist'. Add to
837 `tramp-unload-hook'. Change checks, whether package can be
838 loaded.
839 (tramp-gvfs-file-name-p): Make it a defsubst.
840 (tramp-gvfs-methods, tramp-gvfs-file-name-handler)
841 (tramp-gvfs-file-name-p): Set tramp-autoload cookie.
842 (tramp-gvfs-handle-file-directory-p): New defun.
843 (tramp-gvfs-file-name-handler-alist): Use it.
844
845 * net/tramp-gw.el (top) Add objects to `tramp-methods' and
846 `tramp-foreign-file-name-handler-alist'. Add to
847 `tramp-unload-hook'.
848 (tramp-gw-tunnel-method, tramp-gw-default-tunnel-port)
849 (tramp-gw-socks-method, tramp-gw-default-socks-port): Make it a
850 defconst.
851 (tramp-gw-tunnel-method, tramp-gw-socks-method)
852 (tramp-gw-open-connection): Set tramp-autoload cookie.
853
854 * net/tramp-imap.el (top) Require just 'tramp. Add objects to
855 `tramp-methods' and `tramp-foreign-file-name-handler-alist'. Add
856 to `tramp-unload-hook'. Change checks, whether package can be
857 loaded.
858 (tramp-imap-file-name-p): Make it a defsubst.
859 (tramp-imap-method, tramp-imaps-method)
860 (tramp-imap-file-name-handler)
861 (tramp-imap-file-name-p): Set tramp-autoload cookie.
862
863 * net/tramp-smb.el (top) Require just 'tramp. Add objects to
864 `tramp-methods' and `tramp-foreign-file-name-handler-alist'. Add
865 to `tramp-unload-hook'. Change checks, whether package can be
866 loaded. Change call of `tramp-compat-decimal-to-octal' to new
867 function name.
868 (tramp-smb-tunnel-method): Make it a defconst.
869 (tramp-smb-file-name-p): Make it a defsubst.
870 (tramp-smb-method, tramp-smb-file-name-handler)
871 (tramp-smb-file-name-p): Set tramp-autoload cookie.
872
873 * net/tramp-uu.el (top) Add to `tramp-unload-hook'.
874 (tramp-uuencode-region): Set tramp-autoload cookie.
875
876 * net/trampver.el (top) Add to `tramp-unload-hook'.
877 (tramp-version, tramp-bug-report-address): Set tramp-autoload
878 cookie. Update release number.
879
880 2010-09-07 Agustín Martín <agustin.martin@hispalinux.es>
881
882 * textmodes/ispell.el (ispell-start-process): Make sure original
883 arg list is properly initialized (Bug#6993, Bug#6994).
884
885 2010-09-06 Alexander Klimov <alserkli@inbox.ru> (tiny change)
886
887 * files.el (directory-abbrev-alist): Use \` as default regexp.
888
889 * emacs-lisp/rx.el (rx-any): Don't explode ranges that end in special
890 chars like - or ] (bug#6984).
891 (rx-any-condense-range): Explode 2-char ranges.
892
893 2010-09-06 Glenn Morris <rgm@gnu.org>
894
895 * desktop.el (desktop-path): Bump :version after 2009-09-15 change.
896
897 2010-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
898
899 * textmodes/bibtex.el:
900 * proced.el: Update to new email for Roland Winkler <winkler@gnu.org>.
901
902 2010-09-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
903
904 * net/imap.el (imap-message-map): Remove optional buffer parameter,
905 since no callers use it.
906 (imap-message-get): Ditto.
907 (imap-message-put): Ditto.
908 (imap-mailbox-map): Ditto.
909 (imap-mailbox-put): Ditto.
910 (imap-mailbox-get): Ditto.
911 (imap-mailbox-get): Revert last change for this function.
912
913 2010-09-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
914
915 * net/imap.el (imap-fetch-safe): Remove function, and alter all
916 callers to use `imap-fetch' instead. According to the comments, this
917 should be safe, since all other IMAP clients use the 1:* syntax.
918 (imap-enable-exchange-bug-workaround): Remove.
919 (imap-debug): Remove -- doesn't seem very useful.
920
921 2010-09-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
922
923 * net/imap.el (imap-log): New convenience function used throughout
924 instead of repeating the same code all over the place.
925
926 2010-09-05 David De La Harpe Golden <david@harpegolden.net>
927
928 * mouse.el (mouse-save-then-kill): Save region to kill-ring
929 when mouse-drag-copy-region is non-nil (Bug#6956).
930
931 2010-09-05 Chong Yidong <cyd@stupidchicken.com>
932
933 * dired.el (dired-ls-sorting-switches, dired-sort-by-name-regexp):
934 Improve regexps (Bug#6987).
935 (dired-sort-toggle): Search more robustly for -t flag.
936
937 * files.el (get-free-disk-space): Search more robustly for
938 "available" column. Suggested by Ehud Karni
939 <ehud@unix.mvs.co.il>.
940
941 2010-09-05 Juanma Barranquero <lekktu@gmail.com>
942
943 * international/uni-bidi.el:
944 * international/uni-category.el:
945 * international/uni-combining.el:
946 * international/uni-decimal.el:
947 * international/uni-mirrored.el:
948 * international/uni-name.el: Regenerate.
949
950 2010-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
951
952 * electric.el (electric-indent-post-self-insert-function):
953 Don't reindent with a sloppy indentation function.
954
955 * emacs-lisp/syntax.el (syntax-ppss): More sanity check to catch
956 border case in change-log-mode.
957
958 2010-09-04 Chong Yidong <cyd@stupidchicken.com>
959
960 * progmodes/compile.el (compilation-error-regexp-alist-alist):
961 Remove ruby regexp; handle Ruby errors with gcc-include and gnu.
962 Recognize leading tab in gcc-include regexp. Ignore names with
963 leading "from" or "in" in gnu regexp (Bug#6937).
964
965 2010-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
966
967 Avoid global recursive calls to kill-buffer-hooks; fit into 80 cols.
968 * textmodes/ispell.el (ispell-process-buffer-name): Remove.
969 (ispell-start-process): Avoid setq and simplify logic.
970 (ispell-init-process): Setup kill-buffer-hook locally when needed.
971 (kill-buffer-hook): Don't use it globally with code that uses
972 expand-file-name since that may call kill-buffer via
973 code_conversion_restore.
974
975 2010-09-04 Noorul Islam K M <noorul@noorul.com> (tiny change)
976
977 * emacs-lisp/package.el (package-directory-list): Only call
978 file-name-nondirectory on a string.
979
980 2010-09-02 Chong Yidong <cyd@stupidchicken.com>
981
982 * emacs-lisp/package.el (package--download-one-archive):
983 Ensure that archive-contents is valid before saving it.
984 (package-activate-1, package-mark-obsolete, define-package)
985 (package-compute-transaction, package-list-maybe-add): Use push.
986
987 2010-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
988
989 Use SMIE's blink-paren for octave-mode.
990 * progmodes/octave-mod.el (octave-font-lock-close-quotes):
991 Backslashes do not escape single-quotes, single-quotes do.
992 (octave-block-else-regexp, octave-block-end-regexp)
993 (octave-block-match-alist): Remove.
994 (octave-smie-bnf-table): New var, with old content.
995 (octave-smie-op-levels): Use it.
996 (octave-smie-closer-alist): New var.
997 (octave-mode): Use it. Setup smie-blink-matching and electric-indent.
998 (octave-blink-matching-block-open): Remove.
999 (octave-reindent-then-newline-and-indent, octave-electric-semi)
1000 (octave-electric-space): Let self-insert-command run expand-abbrev and
1001 blink parens.
1002
1003 * electric.el (electricity): New group.
1004 (electric-indent-chars): New var.
1005 (electric-indent-post-self-insert-function): New fun.
1006 (electric-indent-mode): New minor mode.
1007 (electric-pair-skip-self): New custom.
1008 (electric-pair-post-self-insert-function): New function.
1009 (electric-pair-mode): New minor mode.
1010
1011 * calc/calc-aent.el (calcAlg-blink-matching-check): New fun, to replace
1012 calcAlg-blink-matching-open.
1013 (calc-alg-ent-map, calc-alg-ent-esc-map): Initialize in the declaration.
1014 (calc-do-alg-entry): Only touch the part of the keymap that varies.
1015 Use the new blink-matching-check-function.
1016
1017 Provide blink-matching support to SMIE.
1018 * emacs-lisp/smie.el (smie-bnf-closer-alist): New function.
1019 (smie-blink-matching-triggers, smie-blink-matching-inners): New vars.
1020 (smie-blink-matching-check, smie-blink-matching-open): New functions.
1021
1022 * simple.el (newline): Fix last change to properly remove itself from
1023 the hook.
1024
1025 2010-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
1026
1027 * simple.el (newline): Eliminate optimization.
1028 Use post-self-insert-hook to set hard-newline and things before
1029 running post-self-insert-hook.
1030 (blink-matching-check-mismatch): New function.
1031 (blink-matching-check-function): New variable.
1032 (blink-matching-open): Use them.
1033 Skip back forward over prefix chars skipped by forward-sexp.
1034 Don't check if the parens are backslash escaped.
1035 (blink-paren-post-self-insert-function): Check backslash escaping here.
1036
1037 2010-09-02 Chong Yidong <cyd@stupidchicken.com>
1038
1039 * emacs-lisp/package.el (package-menu-mode-map):
1040 Change package-menu-revert bindings to revert-buffer.
1041 (package-menu-mode): Set revert-buffer-function.
1042 (package-menu-revert): Doc fix.
1043
1044 2010-09-02 Agustín Martín <agustin.martin@hispalinux.es>
1045
1046 * textmodes/ispell.el (ispell-init-process): Use "~/" as
1047 `default-directory' unless using Ispell per-directory personal
1048 dictionaries and not in a mini-buffer under XEmacs.
1049 (kill-buffer-hook): Do not kill ispell process on exit when
1050 `ispell-process-directory' is "~/". (Bug#6143)
1051
1052 2010-09-02 Jan Djärv <jan.h.d@swipnet.se>
1053
1054 * simple.el (kill-new): Call interprogram-cut-function with only
1055 one argument.
1056
1057 * term.el (term-mouse-paste): Don't call x-get-cutbuffer.
1058 Remove cut buffer from error message.
1059
1060 * term/x-win.el (x-select-text):
1061 * term/pc-win.el (x-selection-value):
1062 * term/ns-win.el (x-selection-value):
1063 * eshell/em-term.el:
1064 * w32-fns.el (x-get-selection-value):
1065 * mouse-sel.el (mouse-sel-set-selection-function):
1066 * frame.el (display-selections-p): Remove cut-buffer in documentation.
1067
1068 * term/x-win.el: Update documentation for x-last-selected-text-*.
1069 (x-last-selected-text-cut, x-last-selected-text-cut-encoded)
1070 (x-last-cut-buffer-coding, x-cut-buffer-max): Remove.
1071 (x-select-text): Remove argument PUSH, update documentation. Remove
1072 cut-buffer code.
1073 (x-selection-value-internal): Was previously x-selection-value.
1074 (x-selection-value): Rename from x-cut-buffer-or-selection-value.
1075 Update documentation, remove cut-buffer code. Call
1076 x-selection-value-internal.
1077 (x-clipboard-yank): Call x-selection-value-internal.
1078 (x-initialize-window-system): Remove setting of x-cut-buffer-max.
1079
1080 * term/pc-win.el (x-last-selected-text):
1081 x-cut-buffer-or-selection-value renamed to x-selection-value
1082 (x-select-text): Remove argument PUSH, update documentation.
1083
1084 * term/ns-win.el (x-setup-function-keys, ns-last-selected-text):
1085 x-cut-buffer-or-selection-value renamed to x-selection-value
1086 (x-selection-value): Renamed from x-cut-buffer-or-selection-value.
1087 (x-select-text): Remove argument PUSH, update documentation.
1088
1089 * emacs-lisp/cl-macs.el (x-get-cutbuffer, x-get-cut-buffer): Remove.
1090
1091 * w32-fns.el (x-last-selected-text):
1092 x-cut-buffer-or-selection-value renamed to x-selection-value.
1093 (x-cut-buffer-max): Remove.
1094 (x-select-text): Remove argument PUSH, update documentation.
1095
1096 * simple.el (interprogram-cut-function): Remove mention of PUSH.
1097
1098 * select.el (x-get-cut-buffer, x-set-cut-buffer): Remove.
1099
1100 * mouse-sel.el (mouse-sel-get-selection-function):
1101 x-cut-buffer-or-selection-value renamed to x-selection-value.
1102 (x-select-text): Remove optional push.
1103
1104 2010-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
1105
1106 * simple.el (blink-paren-function): Move from C to here.
1107 (blink-paren-post-self-insert-function): New function.
1108 (post-self-insert-hook): Use it.
1109
1110 * emacs-lisp/pcase.el (pcase-split-memq):
1111 Fix overenthusiastic optimisation.
1112 (pcase-u1): Handle the case of a lambda pred.
1113
1114 2010-08-31 Kenichi Handa <handa@m17n.org>
1115
1116 * international/mule-cmds.el (standard-display-european-internal):
1117 Setup standard-display-table for 8-bit characters by storing 8-bit
1118 characters in the element vector.
1119
1120 * disp-table.el (standard-display-8bit): Setup
1121 standard-display-table for 8-bit characters by storing 8-bit
1122 characters in the element vector.
1123 (standard-display-european): Likewise.
1124
1125 2010-08-31 Masatake YAMATO <yamato@redhat.com>
1126
1127 * textmodes/nroff-mode.el (nroff-view): New command.
1128 (nroff-mode-map): Bind it to C-c C-c.
1129
1130 2010-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
1131
1132 * emacs-lisp/smie.el (smie-down-list): New command.
1133
1134 Remove old indentation and navigation code on octave-mode.
1135 * progmodes/octave-mod.el (octave-mode-map): Remap down-list to
1136 smie-down-list rather than add a binding for octave-down-block.
1137 (octave-mark-block, octave-blink-matching-block-open):
1138 Rely on forward-sexp-function.
1139 (octave-fill-paragraph): Don't narrow, so you can use
1140 indent-according-to-mode.
1141 (octave-block-begin-regexp, octave-block-begin-or-end-regexp): Remove.
1142 (octave-in-block-p, octave-re-search-forward-kw)
1143 (octave-re-search-backward-kw, octave-indent-calculate)
1144 (octave-end-as-array-index-p, octave-block-end-offset)
1145 (octave-scan-blocks, octave-forward-block, octave-backward-block)
1146 (octave-down-block, octave-backward-up-block, octave-up-block)
1147 (octave-before-magic-comment-p, octave-indent-line): Remove.
1148
1149 2010-08-31 Chong Yidong <cyd@stupidchicken.com>
1150
1151 * emacs-lisp/package.el (package--read-archive-file): Just use
1152 `read', to avoid copying an additional string.
1153 (package-menu-mode): Set header-line-format here.
1154 (package-menu-refresh, package-menu-revert): Signal an error if
1155 not in the Package Menu.
1156 (package-menu-package-list): New var.
1157 (package--generate-package-list): Operate on the current buffer;
1158 don't assume that it is *Packages*, since the user may rename it.
1159 Allow persistent package listings and sort keys using
1160 package-menu-package-list and package-menu-package-sort-key.
1161 (package-menu--version-predicate): Fix version calculation.
1162 (package-menu-sort-by-column): Don't select the window.
1163 (package--list-packages): Create the *Packages* buffer.
1164 Set package-menu-package-list-key.
1165 (list-packages): Sorting by status is now the default.
1166 (package-buffer-info): Use match-string-no-properties.
1167 (define-package): Add a &rest argument for future proofing, but
1168 don't use it yet.
1169 (package-install-from-buffer, package-install-buffer-internal):
1170 Merge into a single function, package-install-from-buffer.
1171 (package-install-file): Change caller.
1172
1173 * finder.el: Load finder-inf using `require'.
1174 (finder-list-matches): Sorting by status is now the default.
1175 (finder-compile-keywords): Simpify printing.
1176
1177 2010-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
1178
1179 * progmodes/octave-mod.el (octave-font-lock-keywords): Use regexp-opt.
1180 (octave-mode-map): Remove special bindings for forward/backward-block
1181 and octave-backward-up-block. Use smie-close-block.
1182 (octave-continuation-marker-regexp): New var.
1183 (octave-continuation-regexp): Use it.
1184 (octave-operator-table, octave-smie-op-levels)
1185 (octave-operator-regexp, octave-smie-indent-rules): New vars.
1186 (octave-smie-backward-token, octave-smie-forward-token): New funs.
1187 (octave-mode): Use SMIE.
1188 (octave-close-block): Delete.
1189
1190 2010-08-30 Eli Zaretskii <eliz@gnu.org>
1191
1192 * menu-bar.el (menu-bar-edit-menu) <"Paste">: Check selection in
1193 CLIPBOARD, not in PRIMARY. (Bug#6944)
1194
1195 2010-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
1196
1197 * emacs-lisp/smie.el (smie-indent-offset-rule): Let :parent take
1198 a list of parents.
1199 (smie-indent-column): Allow indirection through variables.
1200
1201 * composite.el (save-buffer-state): Delete, unused.
1202 * font-lock.el (save-buffer-state): Use with-silent-modifications.
1203 (font-lock-default-fontify-region): Use with-syntax-table.
1204 * jit-lock.el (with-buffer-unmodified): Remove.
1205 (with-buffer-prepared-for-jit-lock): Use with-silent-modifications.
1206
1207 Use `declare' in defmacros.
1208 * window.el (save-selected-window):
1209 * subr.el (with-temp-file, with-temp-message, with-syntax-table):
1210 * progmodes/python.el (def-python-skeleton):
1211 * net/dbus.el (dbus-ignore-errors):
1212 * jka-cmpr-hook.el (with-auto-compression-mode):
1213 * international/mule.el (with-category-table):
1214 * emacs-lisp/timer.el (with-timeout):
1215 * emacs-lisp/lisp-mnt.el (lm-with-file):
1216 * emacs-lisp/eieio.el (with-slots):
1217 * emacs-lisp/easymenu.el (easy-menu-define):
1218 * emacs-lisp/debug.el (debugger-env-macro):
1219 * emacs-lisp/cl-compat.el (Multiple-value-bind, Multiple-value-setq)
1220 (Multiple-value-call, Multiple-value-prog1):
1221 * emacs-lisp/cl-seq.el (cl-parsing-keywords, cl-check-key)
1222 (cl-check-test-nokey, cl-check-test, cl-check-match): Move indent and
1223 edebug rule to definition.
1224 * emacs-lisp/lisp-mode.el (save-selected-window)
1225 (with-current-buffer, combine-after-change-calls)
1226 (with-output-to-string, with-temp-file, with-temp-buffer)
1227 (with-temp-message, with-syntax-table, read-if, eval-after-load)
1228 (dolist, dotimes, when, unless):
1229 * emacs-lisp/byte-run.el (inline): Remove indent rule, redundant.
1230
1231 2010-08-29 Chong Yidong <cyd@stupidchicken.com>
1232
1233 * finder.el: Require `package'.
1234 (finder-known-keywords): Tweak descriptions. Retire `oop' keyword.
1235 (finder-package-info): Var deleted.
1236 (finder-keywords-hash, finder--builtins-alist): New vars.
1237 (finder-compile-keywords): Compute package--builtins and
1238 finder-keywords-hash instead of finder-keywords-hash, respecting
1239 the "Package" header.
1240 (finder-unknown-keywords, finder-list-matches):
1241 Use finder-keywords-hash and package--list-packages.
1242 (finder-mode): Don't set font-lock-defaults.
1243 (finder-exit): We don't use "*Finder-package*" and "*Finder
1244 Category*" buffers anymore.
1245
1246 * emacs-lisp/package.el (package--builtins-base): Var deleted.
1247 (package--builtins): Set default value to nil.
1248 (package-initialize): Load precomputed value of package--builtins
1249 from finder-inf.el.
1250 (package-alist, package-compute-transaction)
1251 (package-download-transaction): Improve docstring.
1252 (package-read-all-archive-contents): Do not change
1253 package--builtins here.
1254 (list-packages): Make package-list-packages an alias for this.
1255 Sort by status by default.
1256 (package--list-packages): Add optional PACKAGES arg.
1257 (describe-package-1): Use font-lock-face property. For built-in
1258 packages, insert file commentary.
1259 (package--generate-package-list): Rename from
1260 package-list-packages-internal; all callers changed. Add optional
1261 PACKAGES arg. Add alphabetical sort fallbacks.
1262 (package-menu--version-predicate, package-menu--status-predicate)
1263 (package-menu--description-predicate)
1264 (package-menu--name-predicate): New functions.
1265
1266 * info.el (Info-finder-find-node): Search package-alist instead of
1267 finder-package-info.
1268
1269 2010-08-29 Chong Yidong <cyd@stupidchicken.com>
1270
1271 * subr.el (version-regexp-alist): Don't use "a" and "b" for
1272 "alpha" and "beta".
1273 (version-to-list): Handle versions like "10.3d".
1274
1275 2010-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
1276
1277 * emacs-lisp/macroexp.el (macroexpand-all-1): Use pcase.
1278 (macroexp-accumulate): Use `declare'.
1279
1280 2010-08-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
1281
1282 * whitespace.el (whitespace-style): Adjust type declaration.
1283
1284 2010-08-26 Magnus Henoch <magnus.henoch@gmail.com>
1285
1286 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Do not pass
1287 empty argument to gvfs-copy.
1288
1289 2010-08-26 Chong Yidong <cyd@stupidchicken.com>
1290
1291 * net/tramp-compat.el (tramp-compat-delete-file): Rewrite to
1292 handle new TRASH arg of `delete-file'.
1293
1294 2010-08-26 Christian Lynbech <christian.lynbech@tieto.com> (tiny change)
1295
1296 * net/tramp.el (tramp-handle-insert-directory): Don't use
1297 `forward-word', its default syntax could be changed.
1298
1299 2010-08-26 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
1300 Michael Albinus <michael.albinus@gmx.de>
1301
1302 Implement compression for inline methods.
1303
1304 * net/tramp.el (tramp-inline-compress-start-size): New defcustom.
1305 (tramp-copy-size-limit): Allow also nil.
1306 (tramp-inline-compress-commands): New defconst.
1307 (tramp-find-inline-compress, tramp-get-inline-compress)
1308 (tramp-get-inline-coding): New defuns.
1309 (tramp-get-remote-coding, tramp-get-local-coding): Remove,
1310 replaced by `tramp-get-inline-coding'.
1311 (tramp-handle-file-local-copy, tramp-handle-write-region)
1312 (tramp-method-out-of-band-p): Use `tramp-get-inline-coding'.
1313
1314 2010-08-26 Noah Lavine <noah549@gmail.com> (tiny change)
1315
1316 Detect ssh 'ControlMaster' argument automatically in some cases.
1317
1318 * net/tramp.el (tramp-detect-ssh-controlmaster): New defun.
1319 (tramp-default-method): Use it.
1320
1321 2010-08-26 Karel Klíč <kklic@redhat.com>
1322
1323 * net/tramp.el (tramp-file-name-for-operation):
1324 Add file-selinux-context.
1325
1326 2010-08-26 Łukasz Stelmach <lukasz.stelmach@iem.pw.edu.pl> (tiny change)
1327
1328 * play/cookie1.el (read-cookie): Fix off-by-one error (bug#6921).
1329
1330 2010-08-26 Chong Yidong <cyd@stupidchicken.com>
1331
1332 * simple.el (beginning-of-buffer, end-of-buffer): Doc fix
1333 (Bug#6907).
1334
1335 2010-08-26 Nathan Weizenbaum <nweiz@cressida.sea.corp.google.com> (tiny change)
1336
1337 * progmodes/js.el: Make indentation more customizable (Bug#6914).
1338 (js-paren-indent-offset, js-square-indent-offset)
1339 (js-curly-indent-offset): New options.
1340 (js--proper-indentation): Use them.
1341
1342 2010-08-26 Daniel Colascione <dan.colascione@gmail.com>
1343
1344 * progmodes/sh-script.el (sh-get-indent-info): Use syntax-ppss
1345 instead of inspecting font-lock properties (Bug#6916).
1346
1347 2010-08-26 David Reitter <david.reitter@gmail.com>
1348
1349 * server.el (server-visit-files): Run pre-command-hook and
1350 post-command-hook for each buffer while it is current
1351 (Bug#6910).
1352 (server-execute): Do not run hooks here.
1353
1354 2010-08-26 Michael Albinus <michael.albinus@gmx.de>
1355
1356 Sync with Tramp 2.1.19.
1357
1358 * net/tramp-cmds.el (tramp-cleanup-all-connections)
1359 (tramp-reporter-dump-variable, tramp-load-report-modules)
1360 (tramp-append-tramp-buffers): Use `tramp-compat-funcall'.
1361 (tramp-bug): Recommend setting of `tramp-verbose' to 9.
1362
1363 * net/tramp-compat.el (top): Do not autoload
1364 `tramp-handle-file-remote-p'. Load tramp-util.el and tramp-vc.el
1365 only when `start-file-process' is not bound.
1366 (byte-compile-not-obsolete-vars): Define if not bound.
1367 (tramp-compat-funcall): New defmacro.
1368 (tramp-compat-line-beginning-position)
1369 (tramp-compat-line-end-position)
1370 (tramp-compat-temporary-file-directory)
1371 (tramp-compat-make-temp-file, tramp-compat-file-attributes)
1372 (tramp-compat-copy-file, tramp-compat-copy-directory)
1373 (tramp-compat-delete-file, tramp-compat-delete-directory)
1374 (tramp-compat-number-sequence, tramp-compat-process-running-p):
1375 Use it.
1376 (tramp-advice-file-expand-wildcards): Do not use
1377 `tramp-handle-file-remote-p'.
1378 (tramp-compat-make-temp-file): Simplify fallback implementation.
1379 (tramp-compat-copy-file): Add PRESERVE-SELINUX-CONTEXT.
1380 (tramp-compat-copy-tree): Remove function.
1381 (tramp-compat-delete-file): New defun.
1382 (tramp-compat-delete-directory): Provide implementation for older
1383 Emacsen.
1384 (tramp-compat-file-attributes): Handle only
1385 `wrong-number-of-arguments' error.
1386
1387 * net/tramp-fish.el (tramp-fish-handle-copy-file): Add
1388 PRESERVE_SELINUX_CONTEXT.
1389 (tramp-fish-handle-delete-file): Add TRASH arg.
1390 (tramp-fish-handle-directory-files-and-attributes):
1391 Do not use `tramp-fish-handle-file-attributes.
1392 (tramp-fish-handle-file-local-copy)
1393 (tramp-fish-handle-insert-file-contents)
1394 (tramp-fish-maybe-open-connection): Use `with-progress-reporter'.
1395
1396 * net/tramp-gvfs.el (top): Require url-util.
1397 (tramp-gvfs-mount-point): Remove.
1398 (tramp-gvfs-file-name-handler-alist): Add `file-selinux-context'
1399 and `set-file-selinux-context'.
1400 (tramp-gvfs-stringify-dbus-message, tramp-gvfs-send-command)
1401 (tramp-gvfs-handle-file-selinux-context)
1402 (tramp-gvfs-handle-set-file-selinux-context): New defuns.
1403 (with-tramp-dbus-call-method): Format trace message.
1404 (tramp-gvfs-handle-copy-file): Handle PRESERVE-SELINUX-CONTEXT.
1405 (tramp-gvfs-handle-copy-file, tramp-gvfs-handle-rename-file):
1406 Implement backup call, when operation on local files fails. Use
1407 progress reporter. Flush properties of changed files.
1408 (tramp-gvfs-handle-delete-file): Add TRASH arg. Use
1409 `tramp-compat-delete-file'.
1410 (tramp-gvfs-handle-expand-file-name): Expand "~/".
1411 (tramp-gvfs-handle-make-directory): Make more traces.
1412 (tramp-gvfs-handle-write-region): Protect deleting tmpfile.
1413 (tramp-gvfs-url-file-name): Hexify file name in url.
1414 (tramp-gvfs-fuse-file-name): Take also prefix (like dav shares)
1415 into account for the resulting file name.
1416 (tramp-gvfs-handler-askquestion): Preserve current message, in
1417 order to let progress reporter continue afterwards. (Bug#6257)
1418 Return dummy mountpoint, when the answer is "no". See
1419 `tramp-gvfs-maybe-open-connection'.
1420 (tramp-gvfs-handler-mounted-unmounted)
1421 (tramp-gvfs-connection-mounted-p): Test also for new mountspec
1422 attribute "default_location". Set "prefix" property. Handle
1423 default-location.
1424 (tramp-gvfs-mount-spec): Return both prefix and mountspec.
1425 (tramp-gvfs-maybe-open-connection): Test, whether mountpoint
1426 exists. Raise an error, if not (due to a corresponding answer
1427 "no" in interactive questions, for example).
1428 Use `tramp-compat-funcall'.
1429
1430 * net/tramp-imap.el (top): Autoload `epg-make-context'.
1431 (tramp-imap-handle-copy-file): Add PRESERVE-SELINUX-CONTEXT.
1432 (tramp-imap-do-copy-or-rename-file)
1433 (tramp-imap-handle-insert-file-contents)
1434 (tramp-imap-handle-file-local-copy): Use `with-progress-reporter'.
1435 (tramp-imap-handle-delete-file): Add TRASH arg.
1436
1437 * net/tramp-smb.el (tramp-smb-handle-copy-file): Add
1438 PRESERVE-SELINUX-CONTEXT.
1439 (tramp-smb-handle-copy-file)
1440 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
1441 (tramp-smb-handle-write-region, tramp-smb-maybe-open-connection):
1442 Use `with-progress-reporter'.
1443 (tramp-smb-handle-delete-file): Add TRASH arg.
1444
1445 * net/tramp.el (tramp-methods): Move hostname to the end in all
1446 ssh `tramp-login-args'. Add `tramp-async-args' attribute where
1447 appropriate.
1448 (tramp-verbose): Describe verbose level 9.
1449 (tramp-completion-function-alist)
1450 (tramp-file-name-regexp, tramp-chunksize)
1451 (tramp-local-coding-commands, tramp-remote-coding-commands)
1452 (with-connection-property, tramp-completion-mode-p)
1453 (tramp-action-process-alive, tramp-action-out-of-band)
1454 (tramp-check-for-regexp, tramp-file-name-p, tramp-equal-remote)
1455 (tramp-exists-file-name-handler): Fix docstring.
1456 (tramp-remote-process-environment): Use `format' instead of
1457 `concat'. Protect version string by apostroph.
1458 (tramp-shell-prompt-pattern): Do not use a shy group in case of
1459 XEmacs.
1460 (tramp-file-name-regexp-unified)
1461 (tramp-completion-file-name-regexp-unified): On W32 systems, do
1462 not regard the volume letter as remote filename. (Bug#5447)
1463 (tramp-perl-file-attributes)
1464 (tramp-perl-directory-files-and-attributes): Don't pass "$3".
1465 (tramp-vc-registered-read-file-names): Read input as
1466 here-document, otherwise the command could exceed maximum length
1467 of command line.
1468 (tramp-file-name-handler-alist): Add `file-selinux-context' and
1469 `set-file-selinux-context'.
1470 (tramp-debug-message): Add `tramp-compat-funcall' to ignored
1471 backtrace functions.
1472 (tramp-error-with-buffer): Don't show the connection buffer when
1473 we are in completion mode.
1474 (tramp-progress-reporter-update, tramp-remote-selinux-p)
1475 (tramp-handle-file-selinux-context)
1476 (tramp-handle-set-file-selinux-context, tramp-process-sentinel)
1477 (tramp-connectable-p, tramp-open-shell, tramp-get-remote-trash):
1478 New defuns.
1479 (with-progress-reporter): New defmacro.
1480 (tramp-debug-outline-regexp): New defconst.
1481 (top, tramp-rfn-eshadow-setup-minibuffer)
1482 (tramp-rfn-eshadow-update-overlay, tramp-handle-set-file-times)
1483 (tramp-handle-dired-compress-file, tramp-handle-shell-command)
1484 (tramp-completion-mode-p, tramp-check-for-regexp)
1485 (tramp-open-connection-setup-interactive-shell)
1486 (tramp-compute-multi-hops, tramp-read-passwd, tramp-clear-passwd)
1487 (tramp-time-diff, tramp-coding-system-change-eol-conversion)
1488 (tramp-set-process-query-on-exit-flag, tramp-unload-tramp):
1489 Use `tramp-compat-funcall'.
1490 (tramp-handle-make-symbolic-link): Flush file properties.
1491 (tramp-handle-load, tramp-handle-file-local-copy)
1492 (tramp-handle-insert-file-contents, tramp-handle-write-region)
1493 (tramp-handle-vc-registered, tramp-maybe-send-script)
1494 (tramp-find-shell): Use `with-progress-reporter'.
1495 (tramp-do-file-attributes-with-stat): Add space in format string,
1496 in order to work around a bug in pdksh. Reported by Gilles Pion
1497 <gpion@lfdj.com>.
1498 (tramp-handle-verify-visited-file-modtime): Do not send a command
1499 when the connection is not established.
1500 (tramp-handle-set-file-times): Simplify the check for utc.
1501 (tramp-handle-directory-files-and-attributes)
1502 (tramp-get-remote-path): Use `copy-tree'.
1503 (tramp-completion-handle-file-name-all-completions): Ensure, that
1504 non remote files are still checked. Oops.
1505 (tramp-handle-copy-file, tramp-do-copy-or-rename-file): Handle
1506 PRESERVE-SELINUX-CONTEXT.
1507 (tramp-do-copy-or-rename-file): Add progress reporter.
1508 (tramp-do-copy-or-rename-file-directly): Do not use
1509 `tramp-handle-file-remote-p'.
1510 (tramp-do-copy-or-rename-file-out-of-band):
1511 Use `tramp-compat-delete-directory'.
1512 (tramp-do-copy-or-rename-file-out-of-band)
1513 (tramp-compute-multi-hops, tramp-maybe-open-connection):
1514 Use `format-spec-make'.
1515 (tramp-handle-delete-file): Add TRASH arg.
1516 (tramp-handle-dired-uncache): Flush directory cache, not only file
1517 cache.
1518 (tramp-handle-expand-file-name)
1519 (tramp-completion-handle-file-name-all-completions)
1520 (tramp-completion-handle-file-name-completion): Use
1521 `tramp-connectable-p'.
1522 (tramp-handle-start-file-process): Set connection property "vec".
1523 Use it, in order to invalidate file caches. Check only for
1524 `remote-tty' process property.
1525 Implement tty setting. (Bug#4604, Bug#6360)
1526 (tramp-file-name-for-operation): Add `call-process-region' and
1527 `set-file-selinux-context'.
1528 (tramp-find-foreign-file-name-handler)
1529 (tramp-advice-make-auto-save-file-name)
1530 (tramp-set-auto-save-file-modes): Remove superfluous check for
1531 `stringp'. This is done inside `tramp-tramp-file-p'.
1532 (tramp-file-name-handler): Trace 'quit. Catch the error for some
1533 operations when we are in completion mode. This gives the user
1534 the chance to correct the file name in the minibuffer.
1535 (tramp-completion-mode-p): Use `non-essential'.
1536 (tramp-handle-file-name-all-completions): Backward/ XEmacs
1537 compatibility: Use `completion-ignore-case' if
1538 `read-file-name-completion-ignore-case' does not exist.
1539 (tramp-get-debug-buffer): Use `tramp-debug-outline-regexp'.
1540 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
1541 `tramp-open-shell'.
1542 (tramp-action-password): Hide password prompt before next run.
1543 (tramp-process-actions): Widen connection buffer for the trace.
1544 (tramp-open-connection-setup-interactive-shell): Set `remote-tty'
1545 process property. Trace stty settings if `tramp-verbose' >= 9.
1546 Apply workaround for IRIX64 bug. Move argument of last
1547 `tramp-send-command' where it belongs to.
1548 (tramp-maybe-open-connection): Use `async-args' and `gw-args' in
1549 front of `login-args'.
1550 (tramp-get-ls-command, tramp-get-ls-command-with-dired): Run tests
1551 on "/dev/null" instead of "/".
1552 (tramp-get-ls-command-with-dired): Make test for "--dired"
1553 stronger.
1554 (tramp-set-auto-save-file-modes): Adapt version check.
1555 (tramp-set-process-query-on-exit-flag): Fix wrong parentheses.
1556 (tramp-handle-process-file): Call the program in a subshell, in
1557 order to preserve working directory.
1558 (tramp-handle-shell-command): Don't use hard-wired "/bin/sh" but
1559 `tramp-remote-sh' from `tramp-methods'.
1560 (tramp-get-ls-command): Make test for "--color=never" stronger.
1561 (tramp-check-for-regexp): Use (forward-line 1).
1562
1563 * net/trampver.el: Update release number.
1564
1565 2010-08-26 Chong Yidong <cyd@stupidchicken.com>
1566
1567 * help.el (help-map): Bind `C-h P' to describe-package.
1568
1569 * menu-bar.el (menu-bar-describe-menu): Add describe-package.
1570
1571 * emacs-lisp/package.el (package-refresh-contents): Catch errors
1572 when downloading archives.
1573 (describe-package-1): Add package commentary.
1574 (package-install-button-action): New function.
1575 (package-menu-mode-map): Bind ? to package-menu-describe-package.
1576 (package-menu-view-commentary): Function removed.
1577 (package-list-packages-internal): Hide the `package' package too.
1578
1579 2010-08-25 Kenichi Handa <handa@m17n.org>
1580
1581 * language/misc-lang.el ("Arabic"): New language environment.
1582 Setup composition-function-table for Arabic characters.
1583
1584 * international/fontset.el (setup-default-fontset): Fix typo for
1585 arabic OTF spec (fini->fina).
1586
1587 2010-08-25 Jan Djärv <jan.h.d@swipnet.se>
1588
1589 * menu-bar.el (menu-bar-set-tool-bar-position): Set frame parameter
1590 on all frames.
1591
1592 2010-08-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
1593
1594 * whitespace.el: Allow cleaning up blanks without blank
1595 visualization (Bug#6651). Adjust help window for
1596 whitespace-toggle-options (Bug#6479). Allow to use fill-column
1597 instead of whitespace-line-column (from EmacsWiki). New version
1598 13.1.
1599 (whitespace-style): Added new value 'face. Adjust docstring.
1600 (whitespace-space, whitespace-hspace, whitespace-tab): Adjust
1601 foreground property face.
1602 (whitespace-line-column): Adjust docstring and type declaration.
1603 (whitespace-style-value-list, whitespace-toggle-option-alist)
1604 (whitespace-help-text): Adjust const initialization.
1605 (whitespace-toggle-options, global-whitespace-toggle-options):
1606 Adjust docstring.
1607 (whitespace-display-window, whitespace-interactive-char)
1608 (whitespace-style-face-p, whitespace-color-on): Adjust code.
1609 (whitespace-help-scroll): New fun.
1610
1611 2010-08-24 Chong Yidong <cyd@stupidchicken.com>
1612
1613 * emacs-lisp/package.el (list-packages): Alias for
1614 package-list-packages.
1615
1616 2010-08-24 Kevin Ryde <user42@zip.com.au>
1617
1618 * textmodes/flyspell.el (flyspell-check-tex-math-command): Doc fix
1619 (Bug#5651).
1620
1621 * progmodes/ruby-mode.el (ruby): Add defgroup.
1622
1623 2010-08-24 Chong Yidong <cyd@stupidchicken.com>
1624
1625 * progmodes/python.el: Add Ipython support (Bug#5390).
1626 (python-shell-prompt-alist)
1627 (python-shell-continuation-prompt-alist): New options.
1628 (python--set-prompt-regexp): New function.
1629 (inferior-python-mode, run-python, python-shell): Require
1630 ansi-color. Use python--set-prompt-regexp to set the comint
1631 prompt based on the Python interpreter.
1632 (python--prompt-regexp): New var.
1633 (python-check-comint-prompt)
1634 (python-comint-output-filter-function): Use it.
1635 (run-python): Use a pipe (Bug#5694).
1636
1637 2010-08-24 Fabian Ezequiel Gallina <galli.87@gmail.com> (tiny change)
1638
1639 * progmodes/python.el (python-send-region): Send a different
1640 Python command if Ipython is in use.
1641 (python-check-version): Use a Python command to find the version.
1642
1643 2010-08-24 Chong Yidong <cyd@stupidchicken.com>
1644
1645 * mouse.el (mouse-yank-primary): Avoid setting primary when
1646 deactivating the mark (Bug#6872).
1647
1648 2010-08-23 Chris Foote <chris@foote.com.au> (tiny change)
1649
1650 * progmodes/python.el (python-block-pairs): Allow use of "finally"
1651 with "else" (Bug#3991).
1652
1653 2010-08-23 Michael Albinus <michael.albinus@gmx.de>
1654
1655 * net/dbus.el: Accept UNIX domain sockets as bus address.
1656 (top): Don't initialize `dbus-registered-objects-table' anymore,
1657 this is done in dbusbind,c.
1658 (dbus-check-event): Adapt test for bus.
1659 (dbus-return-values-table, dbus-unregister-service)
1660 (dbus-event-bus-name, dbus-introspect, dbus-register-property):
1661 Adapt doc string.
1662
1663 2010-08-23 Juanma Barranquero <lekktu@gmail.com>
1664
1665 * ido.el (ido-use-virtual-buffers): Fix typo in docstring.
1666
1667 2010-08-22 Juri Linkov <juri@jurta.org>
1668
1669 * simple.el (read-extended-command): New function with the logic
1670 for `completing-read' moved to Elisp from `execute-extended-command'.
1671 Use `function-called-at-point' in `minibuffer-default-add-function'
1672 to get a command name for M-n (bug#5364, bug#5214).
1673
1674 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
1675
1676 * startup.el (command-line-1): Issue warning for ignored arguments
1677 --unibyte, etc (Bug#6886).
1678
1679 2010-08-22 Leo <sdl.web@gmail.com>
1680
1681 * net/rcirc.el (rcirc-add-or-remove): Accept a list of elements.
1682 (ignore, bright, dim, keyword): Split list of nicknames before
1683 passing to rcirc-add-or-remove (Bug#6894).
1684
1685 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
1686
1687 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix (Bug#6880).
1688
1689 2010-08-22 Leo <sdl.web@gmail.com>
1690
1691 Fix buffer-list rename&refresh after killing a buffer in ido.
1692 * lisp/ido.el: Revert Óscar's.
1693 (ido-kill-buffer-at-head): Exit the minibuffer with ido-exit=refresh.
1694 Remember the buffers at head, rather than their name.
1695 * lisp/iswitchb.el (iswitchb-kill-buffer): Re-make the list.
1696
1697 2010-08-22 Kirk Kelsey <kirk.kelsey@0x4b.net> (tiny change)
1698 Stefan Monnier <monnier@iro.umontreal.ca>
1699
1700 * progmodes/make-mode.el (makefile-fill-paragraph): Account for the
1701 extra backslash added to each line (bug#6890).
1702
1703 2010-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
1704
1705 * subr.el (read-key): Don't echo keystrokes (bug#6883).
1706
1707 2010-08-22 Glenn Morris <rgm@gnu.org>
1708
1709 * menu-bar.el (menu-bar-games-menu): Add landmark.
1710
1711 2010-08-22 Glenn Morris <rgm@gnu.org>
1712
1713 * align.el (align-regexp): Make group and spacing arguments
1714 use the interactive defaults when non-interactive. (Bug#6698)
1715
1716 * mail/rmail.el (rmail-forward): Replace mail-text-start with its
1717 expansion, so as not to need sendmail.
1718 (mail-text-start): Remove declaration.
1719 (rmail-retry-failure): Require sendmail.
1720
1721 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
1722
1723 * subr.el (read-key): Don't hide the menu-bar entries (bug#6881).
1724
1725 2010-08-22 Michael Albinus <michael.albinus@gmx.de>
1726
1727 * progmodes/flymake.el (flymake-start-syntax-check-process):
1728 Use `start-file-process' in order to let it run also on remote hosts.
1729
1730 2010-08-22 Kenichi Handa <handa@m17n.org>
1731
1732 * files.el: Add `word-wrap' as safe local variable.
1733
1734 2010-08-22 Glenn Morris <rgm@gnu.org>
1735
1736 * woman.el (woman-translate): Case matters. (Bug#6849)
1737
1738 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
1739
1740 * simple.el (kill-region): Doc fix (Bug#6787).
1741
1742 2010-08-22 Glenn Morris <rgm@gnu.org>
1743
1744 * calendar/diary-lib.el (diary-header-line-format):
1745 Fit it to the window, not the frame.
1746
1747 2010-08-22 Andreas Schwab <schwab@linux-m68k.org>
1748
1749 * subr.el (ignore-errors): Add debug declaration.
1750
1751 2010-08-22 Geoff Gole <geoffgole@gmail.com> (tiny change)
1752
1753 * whitespace.el (whitespace-color-off): Remove post-command-hook
1754 locally.
1755
1756 2010-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
1757
1758 * vc/add-log.el (add-log-file-name): Don't get confused by symlinks.
1759
1760 2010-08-21 Chong Yidong <cyd@stupidchicken.com>
1761
1762 * cus-edit.el (custom-group-value-create): Add extra newline
1763 before end line (Bug#6876).
1764
1765 2010-08-21 Chong Yidong <cyd@stupidchicken.com>
1766
1767 * mouse.el (mouse-save-then-kill): Don't save region to kill ring
1768 when extending it. Before killing on the second click, check if
1769 the buffer is the correct one. Doc fix.
1770 (mouse-secondary-save-then-kill): Allow usage without first
1771 calling mouse-start-secondary, by defaulting to point. Don't save
1772 an empty secondary selection. Doc fix.
1773
1774 2010-08-21 Vinicius Jose Latorre <viniciusjl@ig.com.br>
1775
1776 * whitespace.el: Fix slow cursor movement (Bug#6172). Reported by
1777 Christoph Groth <cwg@falma.de> and Liu Xin <x_liu@neusoft.com>.
1778 New version 13.0.
1779 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
1780 Adjust initialization.
1781 (whitespace-bob-marker, whitespace-eob-marker)
1782 (whitespace-buffer-changed): New vars.
1783 (whitespace-cleanup, whitespace-color-on, whitespace-color-off)
1784 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp)
1785 (whitespace-post-command-hook, whitespace-display-char-on):
1786 Adjust code.
1787 (whitespace-looking-back, whitespace-buffer-changed): New funs.
1788 (whitespace-space-regexp, whitespace-tab-regexp): Fun eliminated.
1789
1790 2010-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
1791
1792 * files.el (locate-file-completion-table): Only list the .el and .elc
1793 extensions if there's no other choice (bug#5955).
1794
1795 * facemenu.el (facemenu-self-insert-data): New var.
1796 (facemenu-post-self-insert-function, facemenu-set-self-insert-face):
1797 New functions.
1798 (facemenu-add-face): Use them.
1799
1800 * simple.el (blink-matching-open): Obey forward-sexp-function.
1801
1802 2010-08-18 Stefan Monnier <monnier@iro.umontreal.ca>
1803
1804 * simple.el (prog-mode-map): New var.
1805 (prog-indent-sexp): New command.
1806
1807 * progmodes/octave-mod.el (octave-mode-menu): Make toggle buttons.
1808
1809 * progmodes/prolog.el (smie): Require.
1810
1811 * emacs-lisp/smie.el (smie-default-backward-token)
1812 (smie-default-forward-token): Strip properties.
1813 (smie-next-sexp): Be more careful with associative operators.
1814 (smie-forward-sexp-command): Generalize.
1815 (smie-backward-sexp-command): Simplify.
1816 (smie-closer-alist): New var.
1817 (smie-close-block): New command.
1818 (smie-indent-debug-log): New var.
1819 (smie-indent-offset-rule): Add a few more cases.
1820 (smie-indent-column): New function.
1821 (smie-indent-after-keyword): Use it.
1822 (smie-indent-keyword): Use it.
1823 Fix up the opener code's point position.
1824 (smie-indent-comment): Only applies at BOL.
1825 (smie-indent-debug): New command.
1826
1827 * emacs-lisp/autoload.el (make-autoload): Preload the macros's
1828 declarations that are useful before running the macro.
1829
1830 2010-08-18 Joakim Verona <joakim@verona.se>
1831
1832 * image.el (imagemagick-types-inhibit): New variable.
1833 (imagemagick-register-types): New function.
1834 * image-mode.el (image-transform-properties): New function.
1835 (image-transform-set-scale, image-transform-fit-to-height)
1836 (image-transform-set-rotation, image-transform-set-resize)
1837 (image-transform-fit-to-width, image-transform-fit-to-height):
1838 New functions.
1839 (image-toggle-display-image): Support image transforms.
1840
1841 2010-08-18 Katsumi Yamaoka <yamaoka@jpl.org>
1842
1843 * image.el (create-animated-image): Don't add heuristic mask to image
1844 (Bug#6839).
1845
1846 2010-08-18 Jan Djärv <jan.h.d@swipnet.se>
1847
1848 * term/ns-win.el (ns-get-pasteboard, ns-set-pasteboard):
1849 Use QCLIPBOARD instead of QPRIMARY (Bug#6677).
1850
1851 2010-08-17 Stefan Monnier <monnier@iro.umontreal.ca>
1852
1853 * emacs-lisp/lisp.el (up-list): Obey forward-sexp-function if set.
1854
1855 Font-lock '...' strings, plus various simplifications and fixes.
1856 * progmodes/octave-mod.el (octave-font-lock-keywords): Use regexp-opt.
1857 (octave-font-lock-close-quotes): New function.
1858 (octave-font-lock-syntactic-keywords): New var.
1859 (octave-mode): Use it. Set beginning-of-defun-function.
1860 (octave-mode-map): Don't override the <foo>-defun commands.
1861 (octave-mode-menu): Pass it directly to easy-menu-define;
1862 remove (now generic) <foo>-defun commands; use info-lookup-symbol.
1863 (octave-block-match-alist): Fix up last change so that
1864 octave-close-block uses the more specific keyword.
1865 (info-lookup-mode): Silence byte-compiler.
1866 (octave-beginning-of-defun): Not interactive any more.
1867 Optimize slightly.
1868 (octave-end-of-defun, octave-mark-defun, octave-in-defun-p): Remove.
1869 (octave-indent-defun, octave-send-defun): Use mark-defun instead.
1870 (octave-completion-at-point-function): Make sure point is within
1871 beg..end.
1872 (octave-reindent-then-newline-and-indent):
1873 Use reindent-then-newline-and-indent.
1874 (octave-add-octave-menu): Remove.
1875
1876 2010-08-17 Jan Djärv <jan.h.d@swipnet.se>
1877
1878 * mail/emacsbug.el (report-emacs-bug-insert-to-mailer)
1879 (report-emacs-bug-can-use-xdg-email): New functions.
1880 (report-emacs-bug): Set can-xdg-email to result of
1881 report-emacs-bug-can-use-xdg-email. If can-xdg-email bind
1882 \C-cm to report-emacs-bug-insert-to-mailer and add help text
1883 about it.
1884
1885 * net/browse-url.el (browse-url-default-browser): Add cond
1886 for browse-url-xdg-open.
1887 (browse-url-can-use-xdg-open, browse-url-xdg-open): New functions.
1888
1889 2010-08-17 Glenn Morris <rgm@gnu.org>
1890
1891 * progmodes/cc-engine.el (c-new-BEG, c-new-END)
1892 (c-fontify-recorded-types-and-refs): Define for compiler.
1893 * progmodes/cc-mode.el (c-new-BEG, c-new-END): Move definitions
1894 before use.
1895
1896 * calendar/icalendar.el (icalendar--convert-recurring-to-diary):
1897 Fix format call.
1898
1899 2010-08-17 Michael Albinus <michael.albinus@gmx.de>
1900
1901 * net/tramp.el (tramp-handle-make-symbolic-link): Flush file
1902 properties.
1903 (tramp-handle-process-file): Call the program in a subshell, in
1904 order to preserve working directory.
1905 (tramp-action-password): Hide password prompt before next run.
1906 (tramp-process-actions): Widen connection buffer for the trace.
1907
1908 2010-08-16 Deniz Dogan <deniz.a.m.dogan@gmail.com>
1909
1910 * net/rcirc.el (rcirc-log-process-buffers): New option.
1911 (rcirc-print): Use it.
1912 (rcirc-generate-log-filename): New function.
1913 (rcirc-log-filename-function): Change default to
1914 rcirc-generate-log-filename (Bug#6828).
1915
1916 2010-08-16 Chong Yidong <cyd@stupidchicken.com>
1917
1918 * simple.el (deactivate-mark): If select-active-regions is `only',
1919 only set selection for temporarily active regions.
1920
1921 * cus-start.el: Change defcustom for select-active-regions.
1922
1923 2010-08-15 Chong Yidong <cyd@stupidchicken.com>
1924
1925 * mouse.el (mouse--drag-set-mark-and-point): New function.
1926 (mouse-drag-track): Use LOCATION arg to push-mark.
1927 Use mouse--drag-set-mark-and-point to take click-count into
1928 consideration when updating point and mark (Bug#6840).
1929
1930 2010-08-15 Chong Yidong <cyd@stupidchicken.com>
1931
1932 * progmodes/compile.el (compilation-error-regexp-alist-alist):
1933 Give the Ruby rule a lower priority than Gnu (Bug#6778).
1934
1935 2010-08-14 Štěpán Němec <stepnem@gmail.com> (tiny change)
1936
1937 * font-lock.el (lisp-font-lock-keywords-2):
1938 Add combine-after-change-calls, condition-case-no-debug,
1939 with-demoted-errors, and with-silent-modifications (Bug#6025).
1940
1941 2010-08-14 Kevin Ryde <user42@zip.com.au>
1942
1943 * emacs-lisp/copyright.el (copyright-update-year)
1944 (copyright-update): Temporary switch-to-buffer to ensure the
1945 buffer change being queried is visible (Bug#5394).
1946
1947 2010-08-14 Tom Tromey <tromey@redhat.com>
1948
1949 * progmodes/etags.el (tags-file-name): Mark safe if stringp
1950 (Bug#6733).
1951
1952 2010-08-14 Eli Zaretskii <eliz@gnu.org>
1953
1954 * mouse.el (mouse-yank-primary): Fix mouse-2 on MS-Windows and
1955 MS-DOS. (Bug#6689)
1956
1957 2010-08-13 Jan Djärv <jan.h.d@swipnet.se>
1958
1959 * menu-bar.el (menu-bar-set-tool-bar-position): New function.
1960 (menu-bar-showhide-tool-bar-menu-customize-enable-left)
1961 (menu-bar-showhide-tool-bar-menu-customize-enable-right)
1962 (menu-bar-showhide-tool-bar-menu-customize-enable-top)
1963 (menu-bar-showhide-tool-bar-menu-customize-enable-bottom):
1964 Call menu-bar-set-tool-bar-position.
1965
1966 2010-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
1967
1968 * progmodes/octave-mod.el (octave-mode-syntax-table): Use the new "c"
1969 comment style (bug#6834).
1970 * progmodes/scheme.el (scheme-mode-syntax-table):
1971 * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Remove spurious
1972 "b" flag in "' 14b" syntax.
1973
1974 * progmodes/octave-mod.el (octave-mode-map): Remove special bindings
1975 for (un)commenting the region and performing completion.
1976 (octave-mode-menu): Use standard commands for help and completion.
1977 (octave-mode-syntax-table): Support %{..%} comments (sort of).
1978 (octave-mode): Use define-derived-mode.
1979 Set completion-at-point-functions and don't set columns.
1980 Don't disable adaptive-fill-regexp.
1981 (octave-describe-major-mode, octave-comment-region)
1982 (octave-uncomment-region, octave-comment-indent)
1983 (octave-indent-for-comment): Remove.
1984 (octave-indent-calculate): Rename from calculate-octave-indent.
1985 (octave-indent-line, octave-fill-paragraph): Update caller.
1986 (octave-initialize-completions): No need to make an alist.
1987 (octave-completion-at-point-function): New function.
1988 (octave-complete-symbol): Use it.
1989 (octave-insert-defun): Use define-skeleton.
1990
1991 * progmodes/octave-mod.el (octave-mode): Set comment-add.
1992 (octave-mode-map): Use comment-dwim (bug#6829).
1993
1994 2010-08-12 Antoine Levitt <antoine.levitt@gmail.com> (tiny change)
1995
1996 * cus-edit.el (custom-save-variables, custom-save-faces): Fix up
1997 indentation of inserted comment.
1998
1999 2010-08-11 Jan Djärv <jan.h.d@swipnet.se>
2000
2001 * faces.el (region): Add type gtk that uses gtk colors.
2002
2003 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
2004 Handle theme-name change.
2005
2006 2010-08-10 Michael R. Mauger <mmaug@yahoo.com>
2007
2008 * progmodes/sql.el: Version 2.5
2009 (sql-product-alist): Add :prompt-cont-regexp property for several
2010 database products.
2011 (sql-prompt-cont-regexp): New variable.
2012 (sql-output-newline-count, sql-output-by-send):
2013 New variables. Record number of newlines in input text.
2014 (sql-send-string): Handle multiple filters and count newlines.
2015 (sql-send-magic-terminator): Count terminator newline.
2016 (sql-interactive-remove-continuation-prompt): Filters output to
2017 remove continuation prompts; one for each newline.
2018 (sql-interactive-mode): Set up new variables, prompt regexp and
2019 output filter.
2020 (sql-mode-sqlite-font-lock-keywords): Correct some keywords.
2021 (sql-make-alternate-buffer-name): Correct buffer name in edge cases.
2022
2023 2010-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
2024
2025 * emacs-lisp/pcase.el: New file.
2026
2027 2010-08-10 Michael Albinus <michael.albinus@gmx.de>
2028
2029 * net/tramp.el (tramp-vc-registered-read-file-names): Read input
2030 as here-document, otherwise the command could exceed maximum
2031 length of command line.
2032 (tramp-handle-vc-registered): Call script accordingly.
2033 Reported by Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>.
2034
2035 2010-08-10 Kenichi Handa <handa@m17n.org>
2036
2037 * language/hebrew.el: Exclude U+05C3 (Hebrew SOF PASUQ) from the
2038 composable pattern.
2039
2040 2010-08-09 Chong Yidong <cyd@stupidchicken.com>
2041
2042 * emacs-lisp/package.el (package-version-split)
2043 (package--version-first-nonzero, package-version-compare):
2044 Functions removed.
2045 (package-directory-list, package-load-all-descriptors)
2046 (package--built-in, package-activate, define-package)
2047 (package-installed-p, package-compute-transaction)
2048 (package-read-all-archive-contents)
2049 (package--add-to-archive-contents, package-buffer-info)
2050 (package-tar-file-info, package-list-packages-internal):
2051 Use version-to-list and version-list-*.
2052
2053 * emacs-lisp/package-x.el (package-upload-buffer-internal):
2054 Use version-to-list.
2055 (package-upload-buffer-internal): Use version-list-<=.
2056
2057 2010-08-09 Kenichi Handa <handa@m17n.org>
2058
2059 * language/hebrew.el: Exclude U+05BD (Hebrew MAQAF) from the
2060 composable pattern.
2061
2062 2010-08-08 Chong Yidong <cyd@stupidchicken.com>
2063
2064 * tutorial.el (tutorial--default-keys): C-d is now bound to
2065 delete-forward-char (Bug#6826).
2066
2067 * mouse.el (mouse-drag-track): Remove accidentally-removed check
2068 for `double' value of mouse-1-click-follows-link (Bug#6807).
2069
2070 2010-08-08 Johan Bockgård <bojohan@gnu.org>
2071
2072 * replace.el (replace-highlight): Bind isearch-forward and
2073 isearch-error, ensuring that highlighting is updated if the user
2074 switches the search direction (Bug#6808).
2075
2076 * isearch.el (isearch-lazy-highlight-forward): New var.
2077 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
2078 (isearch-lazy-highlight-update): Use it.
2079
2080 2010-08-08 Kenichi Handa <handa@m17n.org>
2081
2082 * international/mule.el (define-charset): Store NAME as :base property.
2083 (ctext-non-standard-encodings-table): Pay attention to charset aliases.
2084 (ctext-pre-write-conversion): Sort ctext-standard-encodings by the
2085 current priority. Force using the designation of the specific
2086 charset by adding `charset' text property. Improve the whole algorithm.
2087
2088 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
2089
2090 * emulation/pc-select.el (pc-selection-mode-hook)
2091 (copy-region-as-kill-nomark, beginning-of-buffer-mark)
2092 (pc-selection-mode): Fix typos in docstrings.
2093
2094 2010-08-08 Kenichi Handa <handa@m17n.org>
2095
2096 * language/cyrillic.el: Don't add "microsoft-cp1251" to
2097 ctext-non-standard-encodings-alist here.
2098
2099 * international/mule.el (ctext-non-standard-encodings-alist):
2100 Add "koi8-r" and "microsoft-cp1251".
2101 (ctext-standard-encodings): New variable.
2102 (ctext-non-standard-encodings-table): List only elements for
2103 non-standard encodings.
2104 (ctext-pre-write-conversion): Adjust for the above change.
2105 Check ctext-standard-encodings.
2106
2107 * international/mule-conf.el (compound-text): Doc fix.
2108 (ctext-no-compositions): Doc fix.
2109 (compound-text-with-extensions): Doc fix.
2110
2111 2010-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
2112
2113 * simple.el (exchange-dot-and-mark): Mark obsolete, finally.
2114
2115 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
2116
2117 * progmodes/which-func.el (which-func-format): Split help-echo text
2118 into lines, like other mode-line tooltips.
2119
2120 * server.el (server-start): When using TCP sockets, force IPv4
2121 and use a literal 127.0.0.1 for localhost. (Related to bug#6781.)
2122
2123 2010-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
2124
2125 * bindings.el (complete-symbol): Run completion-at-point as a fallback.
2126
2127 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
2128
2129 * term.el (term-delimiter-argument-list): Reflow docstring.
2130 (term-read-input-ring, term-write-input-ring, term-send-input)
2131 (term-bol, term-erase-in-display, serial-supported-or-barf):
2132 Fix typos in docstrings.
2133
2134 2010-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
2135
2136 * bindings.el (function-key-map): Add a S-tab => backtab fallback.
2137
2138 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
2139
2140 * dabbrev.el (dabbrev-completion): Fix typo in docstring.
2141
2142 2010-08-08 MON KEY <monkey@sandpframing.com> (tiny change)
2143
2144 * emacs-lisp/syntax.el (syntax-ppss-toplevel-pos):
2145 Fix typo in docstring (bug#6747).
2146
2147 2010-08-08 Leo <sdl.web@gmail.com>
2148
2149 * eshell/esh-io.el (eshell-get-target): Better detection of
2150 read-only file (Bug#6762).
2151
2152 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
2153
2154 * align.el (align-default-spacing): Doc fix.
2155 (align-region-heuristic, align-regexp): Fix typos in docstrings.
2156
2157 2010-08-08 Stephen Peters <speters@itasoftware.com>
2158
2159 * calendar/icalendar.el
2160 (icalendar--split-value): Fix splitting regexp. (Bug#6766)
2161 (icalendar--get-weekday-numbers): New.
2162 (icalendar--convert-recurring-to-diary): Handle multiple byday
2163 values in weekly rules. (Bug#6766)
2164
2165 2010-08-08 Ulf Jasper <ulf.jasper@web.de>
2166
2167 * calendar/icalendar.el (icalendar-uid-format): Doc fix.
2168 (icalendar--create-uid, icalendar-export-region)
2169 (icalendar--parse-summary-and-rest): Code formatting.
2170
2171 2010-08-08 Jay Belanger <jay.p.belanger@gmail.com>
2172
2173 * calc/calc.el (calc-trail-mode,calc-refresh): Use `face' property
2174 to italicize headers.
2175 (calc-highlight-selections-with-faces): New variable.
2176 (calc-selected-face, calc-nonselected-face): New faces.
2177
2178 * calc/calccomp.el (math-comp-highlight-string): Use
2179 `calc-highlight-selections-with-faces' to determine how to highlight
2180 sub-formulas.
2181
2182 * calc/calc-sel.el (calc-show-selections): Change message to when
2183 using faces to highlight selections.
2184
2185 2010-08-07 Michael R. Mauger <mmaug@yahoo.com>
2186
2187 * progmodes/sql.el (sql-mode-sqlite-font-lock-keywords):
2188 Add SQLite 3 keywords, functions and datatypes.
2189 (sql-interactive-mode): Remove `comint-process-echoes' set to t
2190 (Bug#6686).
2191
2192 2010-08-07 Chong Yidong <cyd@stupidchicken.com>
2193
2194 * simple.el (select-active-regions): Move to keyboard.c.
2195 (deactivate-mark): Used saved-region-selection.
2196 (select-active-region): Function removed.
2197 (activate-mark, set-mark, push-mark-command)
2198 (handle-shift-selection): Don't call it.
2199 (keyboard-quit): Avoid adding the region to the window selection.
2200
2201 * mouse.el (mouse-drag-track): Remove hacks to deal with old
2202 select-active-regions implementation.
2203 (mouse-yank-at-click): Doc fix.
2204
2205 * cus-start.el: Add custom declaration for select-active-regions.
2206
2207 2010-08-07 Eli Zaretskii <eliz@gnu.org>
2208
2209 * simple.el (delete-forward-char): Doc fix.
2210
2211 * tutorial.el (help-with-tutorial): Hack safe file-local variables
2212 after reading the tutorial.
2213
2214 2010-08-06 Alan Mackenzie <bug-cc-mode@gnu.org>
2215
2216 * progmodes/cc-cmds.el (c-mask-paragraph, c-fill-paragraph): Fix
2217 for the case that a C style comment has its delimiters alone on
2218 their respective lines.
2219
2220 2010-08-06 Michael Albinus <michael.albinus@gmx.de>
2221
2222 * net/tramp.el (tramp-handle-start-file-process): Set connection
2223 property "vec".
2224 (tramp-process-sentinel): Use it for flushing the cache. We
2225 cannot do it via the process buffer, the buffer could be deleted
2226 already when running the sentinel.
2227
2228 2010-08-06 Jürgen Hötzel <juergen@archlinux.org> (tiny change)
2229
2230 * comint.el (comint-mode): Make directory tracking functions
2231 functional on remote files. (Bug#6764)
2232
2233 2010-08-06 Dan Nicolaescu <dann@ics.uci.edu>
2234
2235 * vc/diff-mode.el (diff-mode-shared-map): Bind g to revert-buffer.
2236
2237 2010-08-05 Eli Zaretskii <eliz@gnu.org>
2238
2239 * emacs-lisp/find-gc.el (find-gc-source-files): Rename
2240 unexec.c => unexcoff.c.
2241
2242 * emacs-lisp/authors.el (authors-fixed-entries): Rename
2243 unexec.c => unexcoff.c.
2244
2245 2010-08-05 Michael Albinus <michael.albinus@gmx.de>
2246
2247 * net/tramp.el (tramp-handle-dired-uncache): Flush directory
2248 cache, not only file cache.
2249 (tramp-process-sentinel): New defun.
2250 (tramp-handle-start-file-process): Use it, in order to invalidate
2251 file caches.
2252
2253 2010-08-03 Leo <sdl.web@gmail.com>
2254
2255 * server.el (server-start): Simplify loop.
2256
2257 2010-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
2258
2259 * frame.el (screen-height, screen-width, set-screen-width)
2260 (set-screen-height): Remove ancient compatibility aliases.
2261
2262 * textmodes/fill.el (justify-current-line): Don't add 1 to nspaces
2263 when justifying. It seems useless and harmful for ncols=1 (bug#6738).
2264
2265 * emacs-lisp/timer.el (timer-event-handler): Protect against timers
2266 that change current buffer.
2267
2268 2010-08-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2269
2270 * mouse.el (mouse-fixup-help-message): Match "mouse-2" only at the
2271 beginning of the string. Use `string-match-p'. (Bug#6765)
2272
2273 2010-08-01 Jan Djärv <jan.h.d@swipnet.se>
2274
2275 * cus-start.el (x-gtk-use-system-tooltips): New variable.
2276
2277 2010-08-01 Chong Yidong <cyd@stupidchicken.com>
2278
2279 * emacs-lisp/package.el (package--list-packages): Fix column alignment.
2280 (package--builtins): Tweak descriptions.
2281 (package-print-package): Upcase descriptions if necessary.
2282 Show all built-in packages in font-lock-builtin-face.
2283 (package-list-packages-internal): Omit "emacs" package.
2284 Show status of built-in packages as "built-in".
2285
2286 2010-07-31 Chong Yidong <cyd@stupidchicken.com>
2287
2288 * mouse.el (mouse-save-then-kill): Doc fix. Deactivate mark
2289 before killing to preserve the primary selection (Bug#6701).
2290
2291 * term/x-win.el (x-select-text): Doc fix.
2292
2293 2010-07-31 Nathaniel Flath <flat0103@gmail.com>
2294
2295 Enhance Java Mode to handle Java 5.0 (Tiger) and Java 6 (Mustang).
2296 The following functions were modified or created:
2297
2298 * progmodes/cc-vars.el (c-offsets-alist, c-inside-block-syms)
2299 (objc-font-lock-extra-types):
2300 * progmodes/cc-mode.el (c-basic-common-init):
2301 * progmodes/cc-langs.el (c-make-mode-syntax-table)
2302 (c++-make-template-syntax-table)
2303 (c-identifier-syntax-modifications, c-symbol-start, c-operators)
2304 (c-<-op-cont-regexp, c->-op-cont-regexp, c-class-decl-kwds)
2305 (c-brace-list-decl-kwds, c-modifier-kwds, c-prefix-spec-kwds-re)
2306 (c-type-list-kwds, c-decl-prefix-re, c-opt-type-suffix-key):
2307 * progmodes/cc-fonts.el (c-make-inverse-face)
2308 (c-basic-matchers-after):
2309 * progmodes/cc-engine.el (c-forward-keyword-clause)
2310 (c-forward-<>-arglist, c-forward-<>-arglist-recur)
2311 (c-forward-name, c-forward-type, c-forward-decl-or-cast-1)
2312 (c-guess-continued-construct, c-guess-basic-syntax):
2313
2314 2010-07-31 Jan Djärv <jan.h.d@swipnet.se>
2315
2316 * faces.el (face-all-attributes): Improve documentation (Bug#6767).
2317
2318 2010-07-31 Eli Zaretskii <eliz@gnu.org>
2319
2320 * files.el (bidi-paragraph-direction): Define safe local values.
2321
2322 * language/hebrew.el ("Hebrew"): Add TUTORIAL.he to
2323 language-info-alist. Remove outdated FIXME in a comment.
2324
2325 2010-07-31 Alan Mackenzie <acm@muc.de>
2326
2327 * progmodes/cc-cmds.el (c-mask-paragraph): Fix bug #6688:
2328 Auto-fill broken in C/C++ modes.
2329
2330 2010-07-29 Jan Djärv <jan.h.d@swipnet.se>
2331
2332 * menu-bar.el (menu-bar-showhide-tool-bar-menu-customize-enable-left)
2333 (menu-bar-showhide-tool-bar-menu-customize-disable)
2334 (menu-bar-showhide-tool-bar-menu-customize-enable-right)
2335 (menu-bar-showhide-tool-bar-menu-customize-enable-bottom)
2336 (menu-bar-showhide-tool-bar-menu-customize-enable-top): New functions
2337 (menu-bar-showhide-tool-bar-menu): If tool bar is moveable,
2338 make a menu for Options => toolbar that can move it.
2339
2340 2010-07-29 Chong Yidong <cyd@stupidchicken.com>
2341
2342 * emacs-lisp/package-x.el (package--make-rss-entry):
2343 (package-maint-add-news-item, package--update-news)
2344 (package-upload-buffer-internal): New arg ARCHIVE-URL.
2345
2346 * emacs-lisp/package.el (package-archive-url): Rename from
2347 package-archive-id.
2348 (package-install): Doc fix.
2349 (package-download-single, package-download-tar, package-install)
2350 (package-menu-view-commentary): Callers changed.
2351
2352 2010-07-29 Michael Albinus <michael.albinus@gmx.de>
2353
2354 * net/tramp.el (tramp-handle-start-file-process): Check only for
2355 `remote-tty' process property.
2356 (tramp-open-shell): Don't check for tty.
2357 (tramp-open-connection-setup-interactive-shell): Set `remote-tty'
2358 process property.
2359
2360 * progmodes/gdb-mi.el (gdb-init-1): Check also for tty on a remote
2361 host.
2362
2363 2010-07-28 Chong Yidong <cyd@stupidchicken.com>
2364
2365 * emacs-lisp/package.el (package-load-list, package-archives)
2366 (package-archive-contents, package-user-dir)
2367 (package-directory-list, package--builtins, package-alist)
2368 (package-activated-list, package-obsolete-alist): Mark as risky.
2369
2370 2010-07-28 Phil Hagelberg <phil@evri.com>
2371
2372 Add support for non-default package repositories.
2373 * emacs-lisp/package.el (package-archive-base): Var deleted.
2374 (package-archives): New variable.
2375 (package-archive-contents): Doc fix.
2376 (package-load-descriptor): Do nothing if descriptor file is missing.
2377 (package--write-file-no-coding): New function.
2378 (package-unpack-single): Use it.
2379 (package-archive-id): New function.
2380 (package-download-single, package-download-tar)
2381 (package-menu-view-commentary): Use it.
2382 (package-installed-p): Make second argument optional.
2383 (package-read-all-archive-contents): New function.
2384 (package-initialize): Use it.
2385 (package-read-archive-contents): Add ARCHIVE argument.
2386 (package--add-to-archive-contents): New function.
2387 (package-install): Don't call package-read-archive-contents.
2388 (package--download-one-archive): Store archive file in a
2389 subdirectory of package-user-dir.
2390 (package-menu-execute): Remove spurious line movement.
2391
2392 2010-07-28 Jan Djärv <jan.h.d@swipnet.se>
2393
2394 * cus-start.el (tool-bar-style): Add text-image-horiz.
2395
2396 2010-07-28 Michael Albinus <michael.albinus@gmx.de>
2397
2398 * progmodes/gud.el (gud-common-init): Check for remoteness of
2399 `file', and not of `default-directory'.
2400
2401 2010-07-28 Michael Albinus <michael.albinus@gmx.de>
2402
2403 * net/tramp.el (tramp-methods): Move hostname to the end in all
2404 ssh `tramp-login-args'.
2405 (tramp-verbose): Describe verbose level 9.
2406 (tramp-open-shell): Check for tty if `tramp-verbose' >= 9.
2407 (tramp-open-connection-setup-interactive-shell): Trace stty
2408 settings if `tramp-verbose' >= 9.
2409 (tramp-handle-start-file-process): Implement tty setting.
2410 (Bug#4604, Bug#6360)
2411
2412 * net/tramp-cmds.el (tramp-bug): Recommend setting of
2413 `tramp-verbose' to 9.
2414
2415 2010-07-27 Aaron S. Hawley <ashawley@burlingtontelecom.net>
2416
2417 * emacs-lisp/re-builder.el (reb-re-syntax, reb-lisp-mode)
2418 (reb-lisp-syntax-p, reb-change-syntax, reb-cook-regexp):
2419 Remove references to package `lisp-re' (bug#4369).
2420
2421 2010-07-27 Tom Tromey <tromey@redhat.com>
2422
2423 * progmodes/js.el (js-mode):
2424 * progmodes/make-mode.el (makefile-mode):
2425 * progmodes/simula.el (simula-mode):
2426 * progmodes/tcl.el (tcl-mode): Derive from prog-mode.
2427
2428 2010-07-27 Juanma Barranquero <lekktu@gmail.com>
2429
2430 * help-fns.el (find-lisp-object-file-name): Doc fix (bug#6494).
2431
2432 * cedet/semantic/db-file.el (object-write): Fix typo in docstring.
2433
2434 * time.el (display-time-day-and-date): Remove spurious * in docstring.
2435 (display-time-world-buffer-name, display-time-world-mode-map):
2436 Fix typos in docstrings.
2437
2438 2010-07-27 Shyam Karanatt <shyam@swathanthran.in> (tiny change)
2439
2440 * image-mode.el (image-display-size): New function.
2441 (image-forward-hscroll, image-next-line, image-eol, image-eob)
2442 (image-mode-fit-frame): Use it (Bug#6639).
2443
2444 2010-07-27 Chong Yidong <cyd@stupidchicken.com>
2445
2446 * dired.el (dired-buffers-for-dir): Handle list values of
2447 dired-directory (Bug#6636).
2448
2449 2010-07-26 Sam Steingold <sds@gnu.org>
2450
2451 * mouse.el (mouse-yank-primary, mouse-yank-secondary):
2452 Do not call `x-get-selection' the second time, reuse the value.
2453
2454 2010-07-26 Daiki Ueno <ueno@unixuser.org>
2455
2456 * epa-mail.el (epa-mail-mode-map): Add alternative key bindings
2457 which consist of control chars only. Suggested by Richard Stallman.
2458
2459 2010-07-25 Daiki Ueno <ueno@unixuser.org>
2460
2461 * epa-file.el (epa-file-insert-file-contents): Check if LOCAL-FILE
2462 exists before passing an error to find-file-not-found-functions
2463 (bug#6723).
2464
2465 2010-07-23 Lukas Huonker <l.huonker@gmail.com>
2466
2467 * play/tetris.el (tetris-tty-colors, tetris-x-colors, tetris-blank):
2468 Remove leading nil element, adjust values.
2469 (tetris-shapes, tetris-shape-scores):
2470 Change representation of shapes and remove some redundancy.
2471 (tetris-get-shape-cell, tetris-shape-width, tetris-draw-next-shape)
2472 (tetris-draw-shape, tetris-erase-shape, tetris-test-shape):
2473 Adjust for working with new representation of shapes.
2474 (tetris-shape-rotations): New function.
2475 (tetris-move-bottom, tetris-move-left, tetris-move-right)
2476 (tetris-rotate-prev, tetris-rotate-next):
2477 Adjust for working with the new version of tetris-test-shape.
2478
2479 2010-07-23 Markus Triska <markus.triska@gmx.at>
2480
2481 * progmodes/ps-mode.el: Use comint (bug#5954).
2482 (ps-run-mode-map): Adapt for comint-mode; omit "\r", [return]..
2483 (ps-mode-other-newline): Simplify.
2484 (ps-run-mode): Derive from comint-mode instead of
2485 fundamental-mode, yielding input history etc.
2486 (ps-run-start, ps-run-quit, ps-run-clear, ps-run-region)
2487 (ps-run-send-string): Adapt for comint-mode.
2488 (ps-run-newline): Remove now unneeded function.
2489
2490 2010-07-23 Michael Albinus <michael.albinus@gmx.de>
2491
2492 * net/tramp.el (tramp-methods): Move hostname to the end in all
2493 plink `tramp-login-args'.
2494
2495 2010-07-23 Michael Albinus <michael.albinus@gmx.de>
2496
2497 * net/tramp.el (tramp-open-shell): New defun.
2498 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
2499 Use it.
2500
2501 2010-07-23 Michael Albinus <michael.albinus@gmx.de>
2502
2503 * net/tramp.el (tramp-file-name-regexp-unified)
2504 (tramp-completion-file-name-regexp-unified): On W32 systems, do
2505 not regard the volume letter as remote filename. (Bug#5447)
2506
2507 2010-07-23 Juanma Barranquero <lekktu@gmail.com>
2508
2509 * custom.el (custom-declare-variable): Give a clearer error message
2510 when the docstring is missing (bug#6476).
2511
2512 2010-07-22 Michael R. Mauger <mmaug@yahoo.com>
2513
2514 * progmodes/sql.el: Version 2.4. Improved Login prompting.
2515 (sql-login-params): New widget definition.
2516 (sql-oracle-login-params, sql-mysql-login-params)
2517 (sql-solid-login-params, sql-sybase-login-params)
2518 (sql-informix-login-params, sql-ingres-login-params)
2519 (sql-ms-login-params, sql-postgres-login-params)
2520 (sql-interbase-login-params, sql-db2-login-params)
2521 (sql-linter-login-params): Use it.
2522 (sql-sqlite-login-params): Use it; Define "database" parameter as
2523 a file name.
2524 (sql-sqlite-program): Change to "sqlite3".
2525 (sql-comint-sqlite): Make sure database name is complete.
2526 (sql-for-each-login): New function.
2527 (sql-connect, sql-save-connection): Use it.
2528 (sql-get-login-ext): New function.
2529 (sql-get-login): Use it.
2530 (sql-make-alternate-buffer-name): Handle :file parameters.
2531
2532 2010-07-22 Juanma Barranquero <lekktu@gmail.com>
2533
2534 * dired.el (dired-no-confirm): Document value t and fix defcustom to
2535 accept it (bug#6597). Suggested by Drew Adams <drew.adams@oracle.com>.
2536
2537 2010-07-22 Teemu Likonen <tlikonen@iki.fi> (tiny change)
2538
2539 * dired.el (dired-mode-map): Use command remapping (bug#6632).
2540
2541 2010-07-22 Lawrence Mitchell <wence@gmx.li>
2542
2543 * term/vt100.el (vt100-wide-mode): Fix :init-value keyword (bug#6620).
2544
2545 2010-07-21 Michael Albinus <michael.albinus@gmx.de>
2546
2547 * net/tramp.el (tramp-get-ls-command)
2548 (tramp-get-ls-command-with-dired): Run tests on "/dev/null"
2549 instead of "/".
2550
2551 2010-07-20 Michael R. Mauger <mmaug@yahoo.com>
2552
2553 * progmodes/sql.el: Version 2.3.
2554 (sql-connection-alist): Changed keys from symbols to strings;
2555 enhanced the widget definition.
2556 (sql-mode-menu): Added submenu to select connections.
2557 (sql-interactive-mode-menu): Added "Save Connection" item.
2558 (sql-add-product): Fixed menu item.
2559 (sql-get-product-feature): Improved error handling.
2560 (sql--alt-buffer-part, sql--alt-if-not-empty): Removed.
2561 (sql-make-alternate-buffer-name): Simplified.
2562 (sql-product-interactive): Handle missing product.
2563 (sql-connect): Support string keys, minor improvements.
2564 (sql-save-connection): New function.
2565 (sql-connection-menu-filter): New function.
2566
2567 2010-07-20 Michael Albinus <michael.albinus@gmx.de>
2568
2569 * net/tramp.el (tramp-file-name-handler): Trace 'quit.
2570 (tramp-open-connection-setup-interactive-shell): Apply
2571 workaround for IRIX64 bug. Move argument of last
2572 `tramp-send-command' where it belongs to.
2573
2574 2010-07-20 Michael Albinus <michael.albinus@gmx.de>
2575
2576 * net/tramp.el (tramp-perl-file-attributes)
2577 (tramp-perl-directory-files-and-attributes): Don't pass "$3".
2578 (tramp-maybe-open-connection): Use `async-args' and `gw-args' in
2579 front of `login-args'.
2580
2581 2010-07-19 Juanma Barranquero <lekktu@gmail.com>
2582
2583 * time.el (display-time-world-mode): Define with `define-derived-mode'.
2584 Set `show-trailing-whitespace' to nil.
2585 (display-time-world-display): Simplify.
2586
2587 2010-07-18 Alan Mackenzie <acm@muc.de>
2588
2589 Enhance `c-file-style' in file/directory local variables.
2590 * progmodes/cc-mode.el (c-count-cfss): New function.
2591 (c-before-hack-hook): Call `c-set-style' differently according to
2592 whether c-file-style was set in file or directory local
2593 variables.
2594
2595 2010-07-18 Michael R. Mauger <mmaug@yahoo.com>
2596
2597 * progmodes/sql.el: Version 2.2.
2598 (sql-product, sql-user, sql-database, sql-server, sql-port): Use
2599 defcustom :safe keyword rather than putting safe-local-variable
2600 property.
2601 (sql-password): Use defcustom :risky keyword rather than putting
2602 risky-local-variable property.
2603 (sql-oracle-login-params, sql-sqlite-login-params)
2604 (sql-solid-login-params, sql-sybase-login-params)
2605 (sql-informix-login-params, sql-ingres-login-params)
2606 (sql-ms-login-params, sql-postgres-login-params)
2607 (sql-interbase-login-params, sql-db2-login-params)
2608 (sql-linter-login-params): Add `port' option.
2609 (sql-get-product-feature): Added NO-INDIRECT parameter.
2610 (sql-comint-oracle, sql-comint-sybase)
2611 (sql-comint-informix, sql-comint-sqlite, sql-comint-mysql)
2612 (sql-comint-solid, sql-comint-ingres, sql-comint-ms)
2613 (sql-comint-postgres, sql-comint-interbase, sql-comint-db2)
2614 (sql-comint-linter): Renamed sql-connect-* functions to
2615 sql-comint-*.
2616 (sql-product-alist, sql-mode-menu): Renamed as above and
2617 :sqli-connect-func to :sqli-comint-func.
2618 (sql-connection): New variable.
2619 (sql-interactive-mode): Set it.
2620 (sql-connection-alist): New variable.
2621 (sql-connect): New function.
2622 (sql--alt-buffer-part, sql--alt-if-not-empty)
2623 (sql-make-alternate-buffer-name): Improved alternative buffer name.
2624
2625 2010-07-17 Thierry Volpiatto <thierry.volpiatto@gmail.com>
2626
2627 * image-mode.el (image-bookmark-make-record): Do not set context
2628 in an image (Bug#6650).
2629
2630 2010-07-17 Chong Yidong <cyd@stupidchicken.com>
2631
2632 * simple.el (select-active-region): New function.
2633 (push-mark-command, set-mark, activate-mark)
2634 (handle-shift-selection): Use it.
2635 (deactivate-mark): Don't check for size of region.
2636
2637 * mouse.el (mouse-drag-track): Use select-active-region.
2638
2639 2010-07-17 Michael Albinus <michael.albinus@gmx.de>
2640
2641 * net/tramp.el (tramp-get-ls-command-with-dired): Make test for
2642 "--dired" stronger.
2643
2644 2010-07-17 Chong Yidong <cyd@stupidchicken.com>
2645
2646 * term/x-win.el (x-select-enable-primary): Change default to nil.
2647 (x-select-enable-clipboard): Add :version keyword.
2648
2649 * mouse.el (mouse-drag-copy-region):
2650 * simple.el (select-active-regions): Likewise.
2651
2652 2010-07-16 Reiner Steib <Reiner.Steib@gmx.de>
2653
2654 * vc/vc.el (vc-coding-system-inherit-eol): New defvar.
2655 (vc-coding-system-for-diff): Use it to decide whether to inherit
2656 from the file the EOL format for reading the diffs of that file.
2657 (Bug#4451)
2658
2659 2010-07-16 Eli Zaretskii <eliz@gnu.org>
2660
2661 * mail/rmailmm.el (rmail-mime-save): Make the temp buffer
2662 unibyte, so compressed attachments are not compressed again.
2663
2664 2010-07-16 Michael Albinus <michael.albinus@gmx.de>
2665
2666 * net/tramp.el (tramp-handle-shell-command): Don't use hard-wired
2667 "/bin/sh" but `tramp-remote-sh' from `tramp-methods'.
2668 (tramp-find-shell): Simplify setting connection property.
2669 (tramp-get-ls-command): Make test for "--color=never" stronger.
2670
2671 2010-07-15 Simon South <ssouth@member.fsf.org>
2672
2673 * progmodes/delphi.el (delphi-previous-indent-of): Indent case
2674 blocks within record declarations (i.e. variant parts) correctly.
2675
2676 2010-07-15 Simon South <ssouth@member.fsf.org>
2677
2678 * progmodes/delphi.el (delphi-token-at): Give newlines precedence
2679 over literal tokens when parsing so newlines aren't "absorbed" by
2680 single-line comments. Corrects the indentation of case blocks
2681 that have a comment on the first line.
2682
2683 2010-07-14 Karl Fogel <kfogel@red-bean.com>
2684
2685 * bookmark.el (bookmark-load-hook): Fix doc string as suggested
2686 by Drew Adams (Bug#5504).
2687
2688 2010-07-14 Jan Djärv <jan.h.d@swipnet.se>
2689
2690 * xt-mouse.el (xterm-mouse-event-read): Fix for characters > 127
2691 now that Unicode is used (Bug#6594).
2692
2693 2010-07-14 Chong Yidong <cyd@stupidchicken.com>
2694
2695 * term/x-win.el (x-select-enable-clipboard): Default to t.
2696 (x-initialize-window-system): Don't overwrite Paste menu item.
2697
2698 * simple.el (select-active-regions): Default to t.
2699 (push-mark-command): Don't overwrite primary with empty string.
2700
2701 * mouse.el: Bind mouse-2 to mouse-yank-primary.
2702 (mouse-drag-copy-region): Default to nil.
2703
2704 * menu-bar.el (menu-bar-enable-clipboard): Don't overwrite
2705 Cut/Copy/Paste menu bar items.
2706
2707 2010-07-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
2708
2709 Allow C-w when setting a bookmark in a Gnus Article buffer (Bug#5975).
2710 Patch applied by Karl Fogel.
2711
2712 * bookmark.el (bookmark-set): Don't set `bookmark-yank-point'
2713 and `bookmark-current-buffer' if they have been already set in
2714 another buffer (e.g gnus-art).
2715
2716 2010-07-13 Karl Fogel <kfogel@red-bean.com>
2717 Thierry Volpiatto <thierry.volpiatto@gmail.com>
2718
2719 Preparation for setting bookmarks in Gnus article buffers (Bug#5975).
2720
2721 * bookmark.el (bookmark-make-record-default): Allow unneeded
2722 information to be omitted from the record.
2723
2724 Adjust declarations and calls:
2725
2726 * info.el (bookmark-make-record-default): Adjust declaration.
2727 (Info-bookmark-make-record): Adjust call.
2728
2729 * woman.el (bookmark-make-record-default): Adjust declaration.
2730 (woman-bookmark-make-record): Adjust call.
2731
2732 * man.el (bookmark-make-record-default): Adjust declaration.
2733 (Man-bookmark-make-record): Adjust call.
2734
2735 * image-mode.el (bookmark-make-record-default): Adjust declaration.
2736
2737 * doc-view.el (bookmark-make-record-default): Adjust declaration.
2738
2739 2010-07-13 Karl Fogel <kfogel@red-bean.com>
2740
2741 * bookmark.el (bookmark-show-annotation): Use `when' instead of `if'.
2742 This is also from Thierry Volpiatto's patch in bug #6444. However,
2743 because it was extraneous to the functional change in that patch,
2744 and causes a re-indendation, I am committing it separately.
2745
2746 2010-07-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
2747
2748 * bookmark.el (bookmark-show-annotation): Ensure annotations show,
2749 e.g. in Info bookmarks, by using `switch-to-buffer-other-window'.
2750 Patch applied by Karl Fogel (Bug#6444).
2751
2752 2010-07-13 Chong Yidong <cyd@stupidchicken.com>
2753
2754 * frame.el (make-frame): Fix typo in 2010-06-30 change (Bug#6625).
2755
2756 2010-07-13 Adrian Robert <Adrian.B.Robert@gmail.com>
2757
2758 * term/ns-win.el: Bind M-~ to 'ns-prev-frame (due to Matthew
2759 Dempsky; bug#5084). Remove incorrect binding for S-tab.
2760 (ns-alternatives-map): Change S-tab binding to backtab
2761 (bug#6616).
2762
2763 * simple.el (normal-erase-is-backspace-setup-frame): Set mode on
2764 under ns.
2765
2766 2010-07-12 Andreas Schwab <schwab@linux-m68k.org>
2767
2768 * language/tai-viet.el ("TaiViet"): Try to fix re-encoding bugs.
2769 (Bug#5806)
2770
2771 * language/tv-util.el (tai-viet-re): Remove format.
2772
2773 2010-07-12 Kenichi Handa <handa@m17n.org>
2774
2775 * language/hebrew.el: Remove no-byte-compile declaration.
2776 Change coding: tag to utf-8. Register hebrew-shape-gstring in
2777 composition-function-table for 3-character looking back.
2778 (hebrew-font-get-precomposed): New function.
2779 (hebrew-shape-gstring): Utilize precomposed glyphs if available.
2780
2781 2010-07-11 Chong Yidong <cyd@stupidchicken.com>
2782
2783 * mouse.el (mouse-drag-track): Handle select-active-regions
2784 (Bug#6612).
2785
2786 2010-07-11 Magnus Henoch <magnus.henoch@gmail.com>
2787
2788 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Do not pass
2789 empty argument to gvfs-copy.
2790
2791 2010-07-10 Glenn Morris <rgm@gnu.org>
2792
2793 * calendar/calendar.el (calendar-week-end-day): New function.
2794 * calendar/cal-tex.el (cal-tex-cursor-month): Remove unused vars.
2795 Respect calendar-week-start-day. (Bug#6606)
2796 (cal-tex-insert-day-names, cal-tex-insert-blank-days)
2797 (cal-tex-insert-blank-days-at-end): Respect calendar-week-start-day.
2798 (cal-tex-first-blank-p, cal-tex-last-blank-p): Simplify, and
2799 respect calendar-week-start-day.
2800
2801 2010-07-10 Chong Yidong <cyd@stupidchicken.com>
2802
2803 * simple.el (use-region-p): Doc fix (Bug#6607).
2804
2805 2010-07-10 Aleksei Gusev <aleksei.gusev@gmail.com> (tiny change)
2806
2807 * progmodes/compile.el (compilation-error-regexp-alist-alist): Add
2808 regexps for cucumber and ruby.
2809
2810 2010-07-08 Daiki Ueno <ueno@unixuser.org>
2811
2812 * epa-file.el (epa-file-error, epa-file--find-file-not-found-function)
2813 (epa-file-insert-file-contents): Hack to prevent
2814 find-file from opening empty buffer when decryption failed
2815 (bug#6568).
2816
2817 2010-07-07 Agustín Martín <agustin.martin@hispalinux.es>
2818
2819 * textmodes/ispell.el (ispell-alternate-dictionary):
2820 Use file-readable-p.
2821 Return nil if no word-list is found at default locations.
2822 (ispell-complete-word-dict): Default to nil.
2823 (ispell-command-loop): Use 'word-list' when using lookup-words.
2824 (lookup-words): Use ispell-complete-word-dict or
2825 ispell-alternate-dictionary. Check for word-list availability
2826 and handle errors if needed with better messages (Bug#6539).
2827 (ispell-complete-word): Use ispell-complete-word-dict or
2828 ispell-alternate-dictionary.
2829
2830 2010-07-07 Christoph Scholtes <cschol2112@gmail.com>
2831
2832 * progmodes/python.el (python-font-lock-keywords): Add Python 2.7
2833 builtins (BufferError, BytesWarning, WindowsError; callables
2834 bin, bytearray, bytes, format, memoryview, next, print; __package__).
2835
2836 2010-07-07 Glenn Morris <rgm@gnu.org>
2837
2838 * play/zone.el (top-level): Do not require timer, tabify, or cl.
2839 (zone-shift-left): Ignore intangibility, and any errors from
2840 forward-char.
2841 (zone-shift-right): Remove no-op end-of-line. Ignore intangibility.
2842 (zone-pgm-putz-with-case): Use upcase-region rather than inserting,
2843 deleting, and copying text properties.
2844 (zone-line-specs, zone-pgm-stress): Check forward-line exit status.
2845 (zone-pgm-rotate): Handle odd buffers like that of gomoku, where getting
2846 to point-max is hard.
2847 (zone-fret, zone-fill-out-screen): Replace cl's do with dotimes.
2848 (zone-fill-out-screen): Ignore intangibility.
2849
2850 2010-07-05 Chong Yidong <cyd@stupidchicken.com>
2851
2852 * menu-bar.el (menu-bar-mode):
2853 * tool-bar.el (tool-bar-mode): Replace default-frame-alist element
2854 if it has been set.
2855
2856 * mouse.el (mouse-drag-track): Call mouse-start-end to handle
2857 word/line selection (Bug#6565).
2858
2859 2010-07-04 Juanma Barranquero <lekktu@gmail.com>
2860
2861 * net/dbus.el (dbus-send-signal): Declare function.
2862
2863 2010-07-04 Michael Albinus <michael.albinus@gmx.de>
2864
2865 * net/dbus.el: Implement signal "PropertiesChanged" (from D-Bus 1.3.1).
2866 (dbus-register-property): New optional argument EMITS-SIGNAL.
2867 (dbus-property-handler): Send signal "PropertiesChanged" if requested.
2868
2869 2010-07-03 Chong Yidong <cyd@stupidchicken.com>
2870
2871 * mouse.el (mouse-drag-overlay): Variable deleted.
2872 (mouse-move-drag-overlay, mouse-show-mark): Functions deleted.
2873 (mouse--remap-link-click-p): New function.
2874 (mouse-drag-track): Handle dragging by using temporary Transient
2875 Mark mode, instead of a special overlay.
2876 (mouse-kill-ring-save, mouse-save-then-kill): Don't call
2877 mouse-show-mark.
2878
2879 * mouse-sel.el (mouse-sel-selection-alist): mouse-drag-overlay
2880 deleted.
2881
2882 2010-07-02 Juri Linkov <juri@jurta.org>
2883
2884 * autoinsert.el (auto-insert-alist): Fix readability
2885 by using dotted pair notation for lambda.
2886
2887 2010-07-02 Juri Linkov <juri@jurta.org>
2888
2889 * faces.el (read-face-name): Rename arg `string-describing-default'
2890 to `default'. Doc fix. Display the default value in quotes
2891 in the prompt. With empty input, return the `default' arg,
2892 unless the default value is a string (in which case return nil).
2893 (describe-face): Replace the string `default' arg of `read-face-name'
2894 with the symbol `default'.
2895
2896 2010-07-02 Chong Yidong <cyd@stupidchicken.com>
2897
2898 * emulation/viper-cmd.el (viper-delete-backward-char)
2899 (viper-del-backward-char-in-insert)
2900 (viper-del-backward-char-in-replace, viper-change)
2901 (viper-backward-indent): Replace delete-backward-char with
2902 delete-char (Bug#6552).
2903
2904 2010-07-01 Chong Yidong <cyd@stupidchicken.com>
2905
2906 * ruler-mode.el (ruler--save-header-line-format): Fix typos.
2907
2908 2010-06-30 Chong Yidong <cyd@stupidchicken.com>
2909
2910 * frame.el (make-frame): Add default-frame-alist to the PARAMETERS
2911 argument passed to frame-creation-function (Bug#5378).
2912
2913 * faces.el (x-handle-named-frame-geometry)
2914 (x-handle-reverse-video, x-create-frame-with-faces)
2915 (face-set-after-frame-default, tty-create-frame-with-faces): Don't
2916 separately consult default-frame-alist. It is now passed as the
2917 PARAMETER argument.
2918
2919 2010-06-30 Andreas Schwab <schwab@linux-m68k.org>
2920
2921 * startup.el (command-line): Don't call tool-bar-setup in a
2922 tty-only build.
2923
2924 2010-06-30 Chong Yidong <cyd@stupidchicken.com>
2925
2926 * ruler-mode.el (ruler--save-header-line-format): New fun.
2927 (ruler-mode): Use it as a setter function, so as not to overwrite
2928 ruler-mode-header-line-format-old if Ruler mode is on (Bug#5370).
2929
2930 2010-06-29 Chong Yidong <cyd@stupidchicken.com>
2931
2932 * vc/vc.el (vc-deduce-backend): New fun. Handle diff buffers.
2933 (vc-root-diff, vc-print-root-log, vc-log-incoming)
2934 (vc-log-outgoing): Use it.
2935 (vc-diff-internal): Set diff-vc-backend.
2936
2937 * vc/diff-mode.el (diff-vc-backend): New var.
2938
2939 2010-06-28 Jan Djärv <jan.h.d@swipnet.se>
2940
2941 * dynamic-setting.el (font-setting-change-default-font): Remove
2942 call to message.
2943
2944 2010-06-28 Kenichi Handa <handa@m17n.org>
2945
2946 * international/quail.el (quail-insert-kbd-layout): Fix the
2947 showing of untranslated characters.
2948
2949 2010-06-28 Chong Yidong <cyd@stupidchicken.com>
2950
2951 * simple.el (delete-active-region): New option.
2952 (delete-backward-char): Implement in Lisp.
2953 (delete-forward-char): New command.
2954
2955 * mouse.el (mouse-region-delete-keys): Deleted.
2956 (mouse-show-mark): Simplify.
2957
2958 * bindings.el (global-map): Bind delete and DEL, the former to
2959 delete-forward-char.
2960
2961 2010-06-27 Lennart Borgman <lennart.borgman@gmail.com>
2962
2963 * progmodes/ruby-mode.el (ruby-mode-map): Don't bind TAB.
2964 (ruby-mode): Bind indent-line-function (Bug#5119).
2965
2966 2010-06-27 Chong Yidong <cyd@stupidchicken.com>
2967
2968 * startup.el (command-line): Recognize "0" X resource value.
2969
2970 2010-06-27 Chong Yidong <cyd@stupidchicken.com>
2971
2972 * startup.el (command-line): Use X resources to set the value of
2973 menu-bar-mode and tool-bar-mode, before calling frame-initialize.
2974
2975 * menu-bar.el (menu-bar-mode):
2976 * tool-bar.el (tool-bar-mode): Don't change default-frame-alist.
2977 Set init-value to t.
2978
2979 * frame.el (frame-notice-user-settings): Don't change
2980 default-frame-alist based on menu-bar-mode and tool-bar-mode, or
2981 vice versa (Bug#2249).
2982
2983 2010-06-26 Eli Zaretskii <eliz@gnu.org>
2984
2985 * w32-fns.el (w32-convert-standard-filename): Doc fix.
2986
2987 2010-06-25 Agustín Martín <agustin.martin@hispalinux.es>
2988
2989 * textmodes/flyspell.el (flyspell-check-previous-highlighted-word):
2990 Make sure `flyspell-word' re-checks word after function run (Bug#6504).
2991
2992 * textmodes/ispell.el (ispell-init-process): Make sure ispell and
2993 default directories are expanded (Bug#6143).
2994
2995 2010-06-24 Juri Linkov <juri@jurta.org>
2996
2997 * minibuffer.el (completions-format): Change default from nil to
2998 `horizontal'. Remove `nil' value from :type. Doc fix. (Bug#6459)
2999
3000 2010-06-24 Juri Linkov <juri@jurta.org>
3001
3002 * vc/vc.el (vc-diff-internal): Set `revert-buffer-function'
3003 buffer-locally to lambda that re-runs the vc diff command.
3004 (Bug#6447)
3005
3006 2010-06-24 Chong Yidong <cyd@stupidchicken.com>
3007
3008 * kmacro.el (kmacro-call-macro): Don't issue hint message if the
3009 echo area is in use (Bug#3412).
3010
3011 2010-06-22 Glenn Morris <rgm@gnu.org>
3012
3013 * textmodes/texinfmt.el (texinfo-format-region)
3014 (texinfo-raise-lower-sections, texinfo-format-separate-node)
3015 (texinfo-itemize-item, texinfo-multitable-item, texinfo-alias)
3016 (texinfo-format-option, texinfo-noindent):
3017 Use line-beginning-position and line-end-position.
3018
3019 * calc/calc-aent.el, calc/calc-ext.el, calc/calc-lang.el:
3020 * calc/calc-store.el, calc/calc-units.el, calc/calc.el:
3021 * calc/calccomp.el: Add explicit utf-8 coding cookies to files with
3022 utf-8 characters.
3023
3024 2010-06-21 Karl Fogel <kfogel@red-bean.com>
3025
3026 * play/zone.el (zone-fall-through-ws): Fix next-line ->
3027 forward-line fallout.
3028
3029 2010-07-06 Chong Yidong <cyd@stupidchicken.com>
3030
3031 * mouse.el (mouse-appearance-menu): Add docstring.
3032
3033 * help.el (describe-key): Print up-event using key-description.
3034
3035 2010-07-03 Michael Albinus <michael.albinus@gmx.de>
3036
3037 * net/zeroconf.el (zeroconf-resolve-service)
3038 (zeroconf-service-resolver-handler): Use
3039 `dbus-byte-array-to-string'.
3040 (zeroconf-publish-service): Use `dbus-string-to-byte-array'.
3041
3042 2010-07-03 Jan Moringen <jan.moringen@uni-bielefeld.de>
3043
3044 * net/zeroconf.el (zeroconf-service-remove-hook): New defun.
3045
3046 2010-06-30 Dan Nicolaescu <dann@ics.uci.edu>
3047
3048 Avoid displaying files with a nil state in vc-dir.
3049 * vc/vc-dir.el (vc-dir-update): Obey the noinsert argument in all
3050 cases that cause insertion.
3051 (vc-dir-resynch-file): Tell vc-dir-update to avoid inserting files
3052 with a nil state.
3053
3054 2010-06-30 Chong Yidong <cyd@stupidchicken.com>
3055
3056 * xml.el (xml-parse-region): Avoid infloop (Bug#5281).
3057
3058 2010-06-29 Leo <sdl.web@gmail.com>
3059
3060 * emacs-lisp/rx.el (rx): Doc fix. (Bug#6537)
3061
3062 2010-06-27 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
3063
3064 * generic-x.el (bat-generic-mode): Fix regexp for command line
3065 switches (Bug#5719).
3066
3067 2010-06-27 Masatake YAMATO <yamato@redhat.com>
3068
3069 * htmlfontify.el (hfy-face-attr-for-class): Use append instead
3070 of nconc to avoid pure storage error (Bug#6239).
3071
3072 2010-06-27 Christoph <cschol2112@googlemail.com> (tiny change)
3073
3074 * bookmark.el (bookmark-bmenu-2-window, bookmark-bmenu-other-window)
3075 (bookmark-bmenu-other-window-with-mouse): Remove unnecessary
3076 bindings of bookmark-automatically-show-annotations (Bug#6515).
3077
3078 2010-06-25 Eli Zaretskii <eliz@gnu.org>
3079
3080 * arc-mode.el (archive-zip-extract): Don't quote the file name on
3081 MS-Windows and MS-DOS. (Bug#6467, Bug#6144)
3082
3083 2010-06-24 Štěpán Němec <stepnem@gmail.com> (tiny change)
3084
3085 * comint.el (make-comint, make-comint-in-buffer): Mention return
3086 value in the docstrings. (Bug#6498)
3087
3088 2010-06-24 Yoni Rabkin <yoni@rabkins.net>
3089
3090 * bs.el (bs-mode-font-lock-keywords): Remove "by" from Dired pattern,
3091 since it is not present when using some non-default switches.
3092
3093 2010-06-23 Karl Fogel <kfogel@red-bean.com>
3094
3095 * simple.el (compose-mail): Fix doc string to refer to
3096 `compose-mail-user-agent-warnings', instead of to the
3097 nonexistent `compose-mail-check-user-agent'.
3098
3099 2010-06-21 Alan Mackenzie <bug-cc-mode@gnu.org>
3100
3101 Fix an indentation bug:
3102
3103 * progmodes/cc-mode.el (c-common-init): Initialise c-new-BEG/END.
3104 (c-neutralize-syntax-in-and-mark-CPP): c-new-BEG/END: Take account
3105 of existing values.
3106
3107 * progmodes/cc-engine.el (c-clear-<-pair-props-if-match-after)
3108 (c-clear->-pair-props-if-match-before): now return t when they've
3109 cleared properties, nil otherwise.
3110 (c-before-change-check-<>-operators): Set c-new-beg/end correctly
3111 by taking account of the existing value.
3112
3113 * progmodes/cc-defs.el
3114 (c-clear-char-property-with-value-function): Fix this to clear the
3115 property rather than overwriting it with nil.
3116
3117 2010-06-20 Chong Yidong <cyd@stupidchicken.com>
3118
3119 * emacs-lisp/package.el (package-print-package): Add link to
3120 package description via describe-package.
3121 (describe-package-1): List package requirements. Add button to
3122 perform installation.
3123 (package-menu-describe-package): New command.
3124
3125 * help-mode.el (help-package): New button type.
3126
3127 2010-06-19 Chong Yidong <cyd@stupidchicken.com>
3128
3129 * emacs-lisp/package.el: Move package-list-packages binding to
3130 menu-bar.el.
3131 (describe-package, describe-package-1, package--dir): New funs.
3132 (package-activate-1): Use package--dir.
3133
3134 * emacs-lisp/package-x.el (gnus-article-buffer): Require package.
3135
3136 * help-mode.el (help-package-def): New button type.
3137
3138 * menu-bar.el: Move package-list-packages binding here from
3139 package.el.
3140
3141 2010-06-19 Gustav Hållberg <gustav@gmail.com> (tiny change)
3142
3143 * descr-text.el (describe-char): Avoid trailing whitespace. (Bug#6423)
3144
3145 2010-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
3146
3147 * emacs-lisp/edebug.el (edebug-read-list):
3148 Phase out old-style backquotes.
3149
3150 2010-06-17 Juri Linkov <juri@jurta.org>
3151
3152 * help-mode.el (help-mode): Set buffer-local variable
3153 revert-buffer-function to help-mode-revert-buffer.
3154 (help-mode-revert-buffer): New function.
3155
3156 * info.el (Info-revert-find-node): Check for major-mode Info-mode
3157 before popping to "*info*" (like in other Info functions).
3158 Keep buffer-name in old-buffer-name. Keep Info-history-forward in
3159 old-history-forward. Pop to old-buffer-name or "*info*" to
3160 recreate the killed buffer. Set Info-history-forward from
3161 old-history-forward.
3162 (Info-breadcrumbs-depth): Add :group and :version.
3163
3164 2010-06-17 Dan Nicolaescu <dann@ics.uci.edu>
3165
3166 * emacs-lisp/package.el (package-menu-mode-map): Add a menu.
3167
3168 2010-06-17 Agustín Martín <agustin.martin@hispalinux.es>
3169
3170 * textmodes/ispell.el (ispell-aspell-find-dictionary): Fix regexp
3171 for languages like Portuguese with pt_{BR,PT} and no plain pt.
3172
3173 2010-06-17 Juanma Barranquero <lekktu@gmail.com>
3174
3175 * emacs-lisp/package.el (package-menu-mode-map):
3176 Move initialization into declaration.
3177
3178 * menu-bar.el (menu-bar-options-menu): Fix typo in menu entry.
3179
3180 2010-06-17 Chong Yidong <cyd@stupidchicken.com>
3181
3182 * emacs-lisp/package.el (package-archive-base): Point to
3183 elpa.gnu.org.
3184 (package-enable, package-load-list): New defcustoms.
3185 (package-user-dir, package-directory-list): Turn into defcustoms.
3186 Don't include package-user-dir in package-directory-list.
3187 (package--builtins-base): Don't include Emacs as a "package".
3188 (package-subdirectory-regexp): New var.
3189 (package-load-all-descriptors, package-compute-transaction)
3190 (package-download-transaction): Obey package-load-list.
3191 (package-activate-1): Rename from package-do-activate.
3192 (package-list-packages-internal): Check package-load-list.
3193 (package-load-descriptor, package-generate-autoloads)
3194 (package-unpack, package-unpack-single)
3195 (package--read-archive-file, package-delete): Use
3196 expand-file-name.
3197
3198 * emacs-lisp/package-x.el: New file. Package uploading
3199 functionality split out from package.el.
3200
3201 * startup.el (command-line): Load packages after reading init
3202 file.
3203
3204 2010-06-17 Tom Tromey <tromey@redhat.com>
3205
3206 * emacs-lisp/package.el: New file.
3207
3208 2010-06-22 Dan Nicolaescu <dann@ics.uci.edu>
3209
3210 Fix vc-annotate for renamed files when using Git.
3211 * vc-git.el (vc-git-find-revision): Deal with empty results from
3212 ls-files. Doe not pass the object as a file name to cat-file, it
3213 is not a file name.
3214 (vc-git-annotate-command): Pass the file name using -- to avoid
3215 ambiguity with the revision.
3216 (vc-git-previous-revision): Pass a relative file name.
3217
3218 2010-06-22 Glenn Morris <rgm@gnu.org>
3219
3220 * progmodes/js.el (js-mode-map): Use standard capitalization and
3221 ellipses for menu entries.
3222
3223 * wid-edit.el (widget-complete): Doc fix.
3224
3225 2010-06-22 Jürgen Hötzel <juergen@hoetzel.info> (tiny change)
3226
3227 * wid-edit.el (widget-complete): Fix typo in 2009-12-02 change.
3228
3229 2010-06-22 Dan Nicolaescu <dann@ics.uci.edu>
3230
3231 Fix annotating other revisions for renamed files in vc-annotate.
3232 * vc-annotate.el (vc-annotate): Add an optional argument for the
3233 VC backend. Use it when non-nil.
3234 (vc-annotate-warp-revision): Pass the VC backend to vc-annotate.
3235 (Bug#6487)
3236
3237 Fix vc-annotate-show-changeset-diff-revision-at-line for git.
3238 * vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
3239 Do not pass the file name to the 'previous-revision call when we
3240 don't want a file diff. (Bug#6489)
3241
3242 2010-06-21 Dan Nicolaescu <dann@ics.uci.edu>
3243
3244 Fix finding revisions for renamed files in vc-annotate.
3245 * vc.el (vc-find-revision): Add an optional argument for
3246 the VC backend. Use it when non-nil.
3247 * vc-annotate.el (vc-annotate-find-revision-at-line): Pass the VC
3248 backend to vc-find-revision. (Bug#6487)
3249
3250 2010-06-21 Dan Nicolaescu <dann@ics.uci.edu>
3251
3252 Fix reading file names in Git annotate buffers.
3253 * vc-git.el (vc-git-annotate-extract-revision-at-line): Remove
3254 trailing whitespace. Suggested by Eric Hanchrow. (Bug#6481)
3255
3256 2010-06-20 Alan Mackenzie <acm@muc.de>
3257
3258 * progmodes/cc-mode.el (c-before-hack-hook): When the mode is set
3259 in file local variables, set it first.
3260
3261 2010-06-19 Glenn Morris <rgm@gnu.org>
3262
3263 * descr-text.el (describe-char-unicode-data): Insert separating
3264 space when needed. (Bug#6422)
3265
3266 * progmodes/idlwave.el (idlwave-action-and-binding):
3267 Fix typo in 2009-12-03 change. (Bug#6450)
3268
3269 2010-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
3270
3271 * emacs-lisp/macroexp.el (macroexpand-all-1): Put back special
3272 handling for `lambda' (misunderstanding).
3273
3274 2010-06-16 Jay Belanger <jay.p.belanger@gmail.com>
3275
3276 * calc/calc-poly.el (math-accum-factors): Make sure that
3277 constants aren't distributed after they are factored out.
3278
3279 2010-06-16 Juri Linkov <juri@jurta.org>
3280
3281 * facemenu.el (list-colors-display): Call `pop-to-buffer' before
3282 `list-colors-print'. (Bug#6332)
3283
3284 * subr.el (read-quoted-char): Fix up last change (bug#6290).
3285
3286 2010-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
3287
3288 * emacs-lisp/macroexp.el (macroexpand-all-1): Don't handle `lambda'
3289 specially, since it's a macro. Fix up wrong hint passed to maybe-cons.
3290
3291 * font-lock.el (font-lock-major-mode): Rename from
3292 font-lock-mode-major-mode to distinguish it from
3293 global-font-lock-mode's own font-lock-mode-major-mode (bug#6135).
3294 (font-lock-set-defaults):
3295 * font-core.el (font-lock-default-function): Adjust users.
3296 (font-lock-mode): Don't set it at all.
3297
3298 2010-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
3299
3300 * vc-annotate.el (vc-annotate): Use vc-read-revision.
3301
3302 2010-06-16 Glenn Morris <rgm@gnu.org>
3303
3304 * calendar/appt.el (appt-time-msg-list): Doc fix.
3305 (appt-check): Let-bind appt-warn-time.
3306 (appt-add): Make the 3rd argument optional.
3307 Simplify argument names. Doc fix. Check for integer WARNTIME.
3308 Only add WARNTIME to the output list if non-nil.
3309
3310 2010-06-16 Ivan Kanis <apple@kanis.eu>
3311
3312 * calendar/appt.el (appt-check): Let the 3rd element of
3313 appt-time-msg-list specify the warning time.
3314 (appt-add): Add new argument with the warning time. (Bug#5176)
3315
3316 2010-06-16 Bob Rogers <rogers-emacs@rgrjr.dyndns.org> (tiny change)
3317
3318 * vc-svn.el (vc-svn-after-dir-status): Fix regexp for Subversions
3319 older than version 1.6. (Bug#6361)
3320
3321 2010-06-16 Helmut Eller <eller.helmut@gmail.com>
3322
3323 * emacs-lisp/cl-macs.el (destructuring-bind): Bind `bind-enquote',
3324 used by cl-do-arglist. (Bug#6408)
3325
3326 2010-06-16 Agustín Martín <agustin.martin@hispalinux.es>
3327
3328 * textmodes/ispell.el (ispell-dictionary-base-alist): Fix
3329 portuguese casechars/not-casechars for missing 'çÇ'.
3330 Suggested by Rolando Pereira (bug#6434).
3331
3332 2010-06-15 Juanma Barranquero <lekktu@gmail.com>
3333
3334 * facemenu.el (list-colors-sort): Doc fix.
3335
3336 2010-06-15 Bob Rogers <rogers-emacs@rgrjr.dyndns.org> (tiny change)
3337
3338 * progmodes/sql.el (sql-connect-mysql): Fix typo.
3339
3340 2010-06-14 Juri Linkov <juri@jurta.org>
3341
3342 Add sort option `list-colors-sort'. (Bug#6332)
3343 * facemenu.el (color-rgb-to-hsv): New function.
3344 (list-colors-sort): New defcustom.
3345 (list-colors-sort-key): New function.
3346 (list-colors-display): Doc fix. Sort list according to the option
3347 `list-colors-sort'.
3348 (list-colors-print): Add HSV values to `help-echo' property of
3349 RGB strings.
3350
3351 2010-06-14 Juri Linkov <juri@jurta.org>
3352
3353 * compare-w.el: Move to the "vc" subdirectory.
3354
3355 2010-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
3356
3357 * image-mode.el (image-mode-map): Remap left-char and right-char.
3358
3359 * nxml/nxml-mode.el (nxml-indent-line): Standardize indent behavior.
3360
3361 2010-06-12 Chong Yidong <cyd@stupidchicken.com>
3362
3363 * term/common-win.el (x-colors): Add all the color names defined
3364 in rgb.txt (Bug#6332).
3365
3366 * facemenu.el (list-colors-print): Don't print extra names if it
3367 will overflow the window width.
3368
3369 * vc/log-edit.el (log-edit-font-lock-keywords): Revert 2010-06-02
3370 change (Bug#6343).
3371
3372 2010-06-12 Eli Zaretskii <eliz@gnu.org>
3373
3374 * files.el (make-directory): Doc fix (bug#6396).
3375
3376 2010-06-12 Michael Albinus <michael.albinus@gmx.de>
3377
3378 * net/tramp.el (tramp-remote-process-environment): Protect version
3379 string by apostroph.
3380 (tramp-shell-prompt-pattern): Do not use a shy group in case of
3381 XEmacs.
3382 (tramp-file-name-for-operation): Add `call-process-region'.
3383 (tramp-set-process-query-on-exit-flag): Fix wrong parentheses.
3384
3385 * net/tramp-compat.el (top): Do not autoload
3386 `tramp-handle-file-remote-p'. Load tramp-util.el and tramp-vc.el
3387 only when `start-file-process' is not bound.
3388 (tramp-advice-file-expand-wildcards): Do not use
3389 `tramp-handle-file-remote-p'.
3390 (tramp-compat-make-temp-file): Handle the case, that
3391 `make-temp-file' has no third argument EXTENSION.
3392
3393 2010-06-11 Juanma Barranquero <lekktu@gmail.com>
3394
3395 * makefile.w32-in (WINS_BASIC): Include new directory vc.
3396
3397 * loadup.el ("vc-hooks", "ediff-hook"): Load from lisp/vc/.
3398
3399 2010-06-11 Juri Linkov <juri@jurta.org>
3400
3401 * finder.el (finder-known-keywords): Add keyword "vc"
3402 for version control.
3403
3404 * add-log.el, cvs-status.el, diff.el, diff-mode.el, ediff.el,
3405 * emerge.el, log-edit.el, log-view.el, pcvs.el, smerge-mode.el,
3406 * vc-annotate.el, vc-bzr.el, vc-dir.el, vc-dispatcher.el, vc-git.el,
3407 * vc-hg.el, vc-mtn.el, vc.el: Add keyword "vc".
3408
3409 2010-06-11 Juri Linkov <juri@jurta.org>
3410
3411 Move version control related files to the "vc" subdirectory.
3412 * add-log.el, cvs-status.el, diff.el, diff-mode.el, ediff-diff.el,
3413 * ediff.el, ediff-help.el, ediff-hook.el, ediff-init.el,
3414 * ediff-merg.el, ediff-mult.el, ediff-ptch.el, ediff-util.el,
3415 * ediff-vers.el, ediff-wind.el, emerge.el, log-edit.el, log-view.el,
3416 * pcvs-defs.el, pcvs.el, pcvs-info.el, pcvs-parse.el, pcvs-util.el,
3417 * smerge-mode.el, vc-annotate.el, vc-arch.el, vc-bzr.el, vc-cvs.el,
3418 * vc-dav.el, vc-dir.el, vc-dispatcher.el, vc.el, vc-git.el,
3419 * vc-hg.el, vc-hooks.el, vc-mtn.el, vc-rcs.el, vc-sccs.el, vc-svn.el:
3420 Move files to the "vc" subdirectory.
3421
3422 2010-06-11 Chong Yidong <cyd@stupidchicken.com>
3423
3424 * comint.el (comint-password-prompt-regexp): Fix 2010-04-10 change
3425 (Bug#6367).
3426
3427 2010-06-11 Stephen Eglen <stephen@gnu.org>
3428
3429 * shell.el: Bind `shell-resync-dirs' to M-RET.
3430
3431 2010-06-10 Michael Albinus <michael.albinus@gmx.de>
3432
3433 * notifications.el: Move file from lisp/net, because it is
3434 supposed to talk locally to the user.
3435
3436 2010-06-10 Julien Danjou <julien@danjou.info>
3437
3438 * net/notifications.el (notifications-on-action-signal)
3439 (notifications-on-closed-signal): Pass notification id as first
3440 argument to the callback functions. Add docstrings.
3441 (notifications-notify): Fix docstring.
3442
3443 2010-06-10 Glenn Morris <rgm@gnu.org>
3444
3445 * emacs-lisp/authors.el (authors-ignored-files)
3446 (authors-valid-file-names): Add some files.
3447
3448 2010-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
3449
3450 * net/rcirc.el (rcirc-server-alist, rcirc, rcirc-connect): Resolve
3451 merge conflict, giving preference to the emacs-23 version of the code.
3452
3453 2010-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
3454
3455 * emacs-lisp/advice.el (ad-compile-function):
3456 Define warning-suppress-types before we let-bind it (bug#6275).
3457
3458 * vc-dispatcher.el: Rename mode-line-hook to vc-mode-line-hook;
3459 declare it, make it buffer-local and permanent-local (bug#6324).
3460 (vc-resynch-window): Adjust name.
3461 * vc-hooks.el (vc-find-file-hook): Adjust name.
3462
3463 2010-06-09 Michael Albinus <michael.albinus@gmx.de>
3464
3465 * net/notifications.el (notifications-notify): Fix docstring.
3466
3467 2010-06-09 Juanma Barranquero <lekktu@gmail.com>
3468
3469 Update to Unicode 6.0.0 beta.
3470 * international/charprop.el: Update copyright.
3471 * international/mule-cmds.el (ucs-names): Update character ranges.
3472 * international/uni-bidi.el:
3473 * international/uni-category.el:
3474 * international/uni-combining.el:
3475 * international/uni-comment.el:
3476 * international/uni-decimal.el:
3477 * international/uni-decomposition.el:
3478 * international/uni-digit.el:
3479 * international/uni-lowercase.el:
3480 * international/uni-mirrored.el:
3481 * international/uni-name.el:
3482 * international/uni-numeric.el:
3483 * international/uni-old-name.el:
3484 * international/uni-titlecase.el:
3485 * international/uni-uppercase.el: Regenerate.
3486
3487 2010-06-09 Juanma Barranquero <lekktu@gmail.com>
3488
3489 * emacs-lisp/smie.el (comment-string-strip): Declare function.
3490 (smie-precs-precedence-table): Fix typo in docstring.
3491
3492 * vc-mtn.el (log-edit-extract-headers): Declare function.
3493
3494 * vc-hg.el (log-edit-extract-headers): Remove duplicate declaration.
3495
3496 * net/notifications.el (dbus-register-signal): Declare function.
3497 (notifications-notify): Fix typos and reflow docstring.
3498
3499 2010-06-09 Dan Nicolaescu <dann@ics.uci.edu>
3500
3501 Improve VC create/retrieve tag/branch.
3502 * vc.el (vc-create-tag): Do not read the directory name for VCs
3503 with repository revision granularity. Adjust the tag/branch
3504 prompt. Reset VC properties.
3505 (vc-retrieve-tag): Do not read the directory name for VCs
3506 with repository revision granularity. Reset VC properties.
3507
3508 2010-06-09 Julien Danjou <julien@danjou.info>
3509
3510 * net/notifications.el: New file.
3511
3512 2010-06-09 Dan Nicolaescu <dann@ics.uci.edu>
3513
3514 Add optional support for resetting VC properties.
3515 * vc-dispatcher.el (vc-resynch-window): Add new optional argument,
3516 call vc-file-clearprops when true.
3517 (vc-resynch-buffer): Add new optional argument, pass it down.
3518 (vc-resynch-buffers-in-directory): Likewise.
3519
3520 Improve support for special markup in the VC commit message.
3521 * vc-mtn.el (vc-mtn-checkin): Add support for Author: and Date: markup.
3522 * vc-hg.el (vc-hg-checkin): Add support for Date:.
3523 * vc-git.el (vc-git-checkin):
3524 * vc-bzr.el (vc-bzr-checkin): Likewise.
3525
3526 2010-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
3527
3528 * emacs-lisp/smie.el (smie-indent-keyword): Remove special case that
3529 can be handled with a ((:before "fn") (:prev "=>" parent)) rule.
3530
3531 2010-06-07 Martin Pohlack <mp26@os.inf.tu-dresden.de>
3532
3533 * iimage.el: Remove images as soon as the underlying text is modified.
3534 (iimage-modification-hook): New function.
3535 (iimage-mode-buffer): Use it.
3536
3537 2010-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
3538
3539 * emacs-lisp/smie.el (smie-indent-offset-rule): Rename from
3540 smie-indent-offset-after. Add :prev case. Make a bit more generic.
3541 (smie-indent-virtual): Remove `virtual' arg. Update callers.
3542 (smie-indent-keyword): Add handling of open-paren keywords.
3543 (smie-indent-comment-continue): Don't assume comment-continue.
3544
3545 2010-06-07 Martin Rudalics <rudalics@gmx.at>
3546
3547 * window.el (pop-to-buffer): Remove the conditional that
3548 compares new-window and old-window, so it will reselect
3549 the selected window unconditionally.
3550 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00078.html
3551
3552 2010-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
3553
3554 * emacs-lisp/smie.el (smie-indent-offset-after)
3555 (smie-indent-forward-token, smie-indent-backward-token): New functions.
3556 (smie-indent-after-keyword): Use them.
3557 (smie-indent-fixindent): Only applies to the indentation of the BOL.
3558 (smie-indent-keyword): Tweak the black magic.
3559 (smie-indent-comment-continue): Strip comment-continue before use.
3560 (smie-indent-functions): Indent comments before keywords.
3561
3562 2010-06-06 Juri Linkov <juri@jurta.org>
3563
3564 * isearch.el (isearch-lazy-highlight-search): Fix looping
3565 by checking for empty match. This syncs this loop with the
3566 similar loop in `isearch-search'. (Bug#6362)
3567
3568 2010-06-05 Juanma Barranquero <lekktu@gmail.com>
3569
3570 * net/dbus.el (dbus-register-method): Declare function.
3571 (dbus-handle-event, dbus-property-handler): Fix typos in docstrings.
3572 (dbus-introspect): Doc fix.
3573 (dbus-event-bus-name, dbus-introspect-get-interface)
3574 (dbus-introspect-get-argument): Reflow docstrings.
3575
3576 2010-06-05 Dan Nicolaescu <dann@ics.uci.edu>
3577
3578 vc-log-incoming/vc-log-outgoing fixes for Git.
3579 * vc-git.el (vc-git-log-view-mode): Fix font lock for
3580 incoming/outgoing logs.
3581 (vc-git-log-outgoing, vc-git-log-incoming): Use @{upstream}
3582 instead of vc-git-compute-remote.
3583 (vc-git-compute-remote): Remove.
3584
3585 2010-06-04 Chong Yidong <cyd@stupidchicken.com>
3586
3587 * term/common-win.el (x-colors): Add "dark green" and "dark
3588 turquoise" (Bug#6332).
3589
3590 2010-06-04 Juri Linkov <juri@jurta.org>
3591
3592 * simple.el (kill-new): Fix logic of kill-do-not-save-duplicates.
3593 Instead of setting `replace' to t and replacing the same string
3594 with itself, don't do certain actions when
3595 kill-do-not-save-duplicates is non-nil and string is equal to car
3596 of kill-ring: don't call menu-bar-update-yank-menu, don't push
3597 interprogram-paste strings to kill-ring, and don't push the input
3598 argument `string' to kill-ring.
3599 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00072.html
3600
3601 2010-06-04 Juanma Barranquero <lekktu@gmail.com>
3602
3603 * subr.el (directory-sep-char): Move from fileio.c and make a defconst.
3604
3605 2010-06-04 Michael Albinus <michael.albinus@gmx.de>
3606
3607 * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name): Expand "~/".
3608 (tramp-gvfs-handler-mounted-unmounted)
3609 (tramp-gvfs-connection-mounted-p): Handle default-location.
3610
3611 * net/tramp-smb.el (tramp-smb-handle-delete-directory): Don't try to
3612 move files to trash.
3613
3614 2010-06-04 Juanma Barranquero <lekktu@gmail.com>
3615
3616 * international/mule-cmds.el (nonascii-insert-offset)
3617 (nonascii-translation-table): Add obsolescence information.
3618
3619 * international/mule.el (make-translation-table-from-vector): Doc fix.
3620
3621 2010-06-03 Eric Ludlam <zappo@gnu.org>
3622
3623 * cedet/semantic/lex-spp.el
3624 (semantic-lex-spp-table-write-slot-value): Instead of erroring on
3625 invalid values during save, just save a nil (Bug#6324).
3626
3627 2010-06-03 Glenn Morris <rgm@gnu.org>
3628
3629 * desktop.el (desktop-clear-preserve-buffers):
3630 Add "*Warnings*" buffer. (Bug#6336)
3631
3632 2010-06-03 Dan Nicolaescu <dann@ics.uci.edu>
3633
3634 vc-log-incoming/vc-log-outgoing improvements for Git.
3635 * vc-git.el (vc-git-log-outgoing): Use the same format as the
3636 short log.
3637 (vc-git-log-incoming): Likewise. Run "git fetch" before the log command.
3638
3639 Add bindings for vc-log-incoming and vc-log-outgoing.
3640 * vc-hooks.el (vc-prefix-map): Add bindings for vc-log-incoming
3641 and vc-log-outgoing.
3642 * vc-dir.el (vc-dir-menu-map): Add menu bindings for vc-log-incoming
3643 and vc-log-outgoing.
3644
3645 2010-06-03 Chong Yidong <cyd@stupidchicken.com>
3646
3647 * net/rcirc.el (rcirc-sort-nicknames): Remove.
3648 (rcirc-handler-366): Always sort nicknames.
3649
3650 2010-06-03 Juanma Barranquero <lekktu@gmail.com>
3651
3652 * emacs-lisp/smie.el (comment-continue): Declare for byte-compiler.
3653
3654 2010-06-03 Chong Yidong <cyd@stupidchicken.com>
3655
3656 * net/rcirc.el (rcirc-nickname<, rcirc-sort-nicknames-join): Doc fix.
3657
3658 2010-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
3659
3660 * net/rcirc.el (rcirc-sort-nicknames): Change default.
3661 (rcirc-sort-nicknames-join): Avoid setq.
3662
3663 2010-06-03 Deniz Dogan <deniz.a.m.dogan@gmail.com>
3664
3665 * net/rcirc.el (rcirc-sort-nicknames): New custom.
3666 (rcirc-nickname<, rcirc-sort-nicknames-join): New funs.
3667 (rcirc-handler-366): Use them.
3668
3669 2010-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
3670
3671 Split smie-indent-calculate into more manageable chunks.
3672 * emacs-lisp/smie.el (smie-indent-virtual, smie-indent-fixindent)
3673 (smie-indent-comment, smie-indent-after-keyword, smie-indent-keyword)
3674 (smie-indent-close, smie-indent-comment-continue, smie-indent-bob)
3675 (smie-indent-exps): Extract from smie-indent-calculate.
3676 (smie-indent-functions): New var.
3677 (smie-indent-functions): Use them.
3678
3679 2010-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
3680
3681 * emacs-lisp/smie.el (smie-indent-hanging-p): Use smie-bolp.
3682 (smie-indent-calculate): Simplify and cleanup.
3683
3684 2010-06-02 Michael Albinus <michael.albinus@gmx.de>
3685
3686 * net/tramp-gvfs.el (top): Require url-util.
3687 (tramp-gvfs-mount-point): Remove.
3688 (tramp-gvfs-stringify-dbus-message, tramp-gvfs-send-command):
3689 New defuns.
3690 (with-tramp-dbus-call-method): Format trace message.
3691 (tramp-gvfs-handle-copy-file, tramp-gvfs-handle-rename-file):
3692 Implement backup call, when operation on local files fails.
3693 Use progress reporter. Flush properties of changed files.
3694 (tramp-gvfs-handle-make-directory): Make more traces.
3695 (tramp-gvfs-url-file-name): Hexify file name in url.
3696 (tramp-gvfs-fuse-file-name): Take also prefix (like dav shares)
3697 into account for the resulting file name.
3698 (tramp-gvfs-handler-askquestion): Return dummy mountpoint, when
3699 the answer is "no". See `tramp-gvfs-maybe-open-connection'.
3700 (tramp-gvfs-handler-mounted-unmounted)
3701 (tramp-gvfs-connection-mounted-p): Test also for new mountspec
3702 attribute "default_location". Set "prefix" property.
3703 (tramp-gvfs-mount-spec): Return both prefix and mountspec.
3704 (tramp-gvfs-maybe-open-connection): Test, whether mountpoint
3705 exists. Raise an error, if not (due to a corresponding answer
3706 "no" in interactive questions, for example).
3707
3708 2010-06-02 Dan Nicolaescu <dann@ics.uci.edu>
3709
3710 * log-edit.el (log-edit-font-lock-keywords): Make group 4 match lax.
3711
3712 2010-06-01 Juanma Barranquero <lekktu@gmail.com>
3713
3714 * emacs-lisp/eldoc.el: Add completions for new commands left-* and
3715 right-*. (Bug#6265)
3716
3717 2010-06-01 Dan Nicolaescu <dann@ics.uci.edu>
3718
3719 Add support for vc-log-incoming, improve vc-log-outgoing for Git.
3720 * vc-git.el (vc-git-compute-remote): New function.
3721 (vc-git-log-outgoing): Use it instead of hard coding a value.
3722 (vc-git-log-incoming): New function.
3723
3724 Improve state updating for VC tag commands.
3725 * vc.el (vc-create-tag, vc-retrieve-tag): Call vc-resynch-buffer
3726 to update the state of all buffers in the directory.
3727
3728 * vc-dir.el (vc-dir-update): Remove entries with a nil state (bug#5539).
3729
3730 2010-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
3731
3732 * vc-bzr.el (vc-bzr-revision-completion-table): Apply
3733 `file-directory-p' to the filename part rather than to the whole text.
3734
3735 2010-05-31 Jonathan Marchand <jonathlela@gmail.com> (tiny change)
3736
3737 * cedet/ede/cpp-root.el (ede-set-project-variables): Fix feature name
3738 (bug#6231).
3739
3740 2010-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
3741
3742 * man.el (Man-completion-table): Let the user type "-k " (bug#6319).
3743
3744 2010-05-31 Drew Adams <drew.adams@oracle.com>
3745
3746 * files.el (directory-files-no-dot-files-regexp): Doc fix (bug#6298).
3747
3748 2010-05-31 Juanma Barranquero <lekktu@gmail.com>
3749
3750 * subr.el (momentary-string-display): Just use read-event to read
3751 the exit event (Bug#6238).
3752
3753 2010-05-30 Eli Zaretskii <eliz@gnu.org>
3754
3755 * international/mule.el (define-coding-system): Doc fix (bug#6313).
3756
3757 2010-05-30 Juanma Barranquero <lekktu@gmail.com>
3758
3759 * emulation/cua-base.el: Recognize also `right-word' and `left-word'.
3760 Suggested by Eli Zaretskii <eliz@gnu.org>.
3761
3762 2010-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
3763
3764 * minibuffer.el (completion-file-name-table): Don't return a boundary
3765 past the end of `string' (bug#6299).
3766 (completion--file-name-table): Delegate to completion-file-name-table
3767 for the `boundaries' case.
3768
3769 2010-05-30 Juanma Barranquero <lekktu@gmail.com>
3770
3771 * emulation/cua-base.el: Recognize `right-char' and `left-char' as
3772 movement commands.
3773
3774 * progmodes/ada-xref.el (ada-prj-ada-project-path-sep): Set from
3775 `path-separator', but maintain compatibility with Emacs 20.2.
3776
3777 2010-05-29 Chong Yidong <cyd@stupidchicken.com>
3778
3779 * server.el (server-process-filter): Receive parent-id argument
3780 from emacsclient.
3781 (server-create-window-system-frame): New arg. Pass parent-id as
3782 frame parameter.
3783
3784 2010-05-29 Eli Zaretskii <eliz@gnu.org>
3785
3786 Bidi-sensitive word movement with arrow keys.
3787 * subr.el (right-arrow-command, left-arrow-command): Move to
3788 bindings.el.
3789
3790 * bindings.el (right-char, left-char): Move from subr.el and
3791 rename from right-arrow-command and left-arrow-command.
3792 (right-word, left-word): New functions.
3793 (global-map) <right>: Bind to right-char.
3794 (global-map) <left>: Bind to left-char.
3795 (global-map) <C-right>: Bind to right-word.
3796 (global-map) <C-left>: Bind to left-word.
3797
3798 * ls-lisp.el (ls-lisp-classify-file): New function.
3799 (ls-lisp-insert-directory): Call it if switches include -F (bug#6294).
3800 (ls-lisp-classify): Call ls-lisp-classify-file.
3801 (insert-directory): Remove blanks from switches.
3802
3803 2010-05-29 Chong Yidong <cyd@stupidchicken.com>
3804
3805 * ansi-color.el: Delete unused escape sequences (Bug#6085).
3806 (ansi-color-drop-regexp): New constant.
3807 (ansi-color-apply, ansi-color-filter-region)
3808 (ansi-color-apply-on-region): Delete unrecognized control sequences.
3809 (ansi-color-apply): Build string list before calling concat.
3810
3811 2010-05-28 Juri Linkov <juri@jurta.org>
3812
3813 * image-dired.el (image-dired-dired-toggle-marked-thumbs):
3814 Replace LOCALP arg of `dired-get-filename' 'no-dir with nil.
3815 (Bug#5270)
3816
3817 2010-05-28 Michael Albinus <michael.albinus@gmx.de>
3818
3819 * net/tramp.el (tramp-debug-message): Add `tramp-compat-funcall'
3820 to ignored backtrace functions.
3821 (with-progress-reporter): Expand docstring.
3822 (tramp-handle-delete-file): Implement TRASH argument.
3823 (tramp-get-remote-trash): New defun.
3824
3825 2010-05-28 Michael Albinus <michael.albinus@gmx.de>
3826
3827 * net/tramp-compat.el (tramp-compat-delete-file): Use
3828 `symbol-value' for backward compatibility.
3829
3830 * net/tramp.el (tramp-handle-make-symbolic-link)
3831 (tramp-handle-load)
3832 (tramp-do-copy-or-rename-file-via-buffer)
3833 (tramp-do-copy-or-rename-file-directly)
3834 (tramp-do-copy-or-rename-file-out-of-band)
3835 (tramp-handle-process-file, tramp-handle-call-process-region)
3836 (tramp-handle-shell-command, tramp-handle-file-local-copy)
3837 (tramp-handle-insert-file-contents, tramp-handle-write-region)
3838 (tramp-delete-temp-file-function): Use `delete-file' instead
3839 of `tramp-compat-delete-file'.
3840
3841 * net/tramp-fish.el (tramp-fish-handle-delete-directory)
3842 (tramp-fish-handle-make-symbolic-link)
3843 (tramp-fish-handle-process-file): Use `delete-file' instead
3844 of `tramp-compat-delete-file'.
3845
3846 * net/tramp-ftp.el (tramp-ftp-file-name-handler): Use
3847 `delete-file' instead of `tramp-compat-delete-file'.
3848
3849 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Rename arg.
3850 (tramp-gvfs-handle-write-region): Use `delete-file' instead of
3851 `tramp-compat-delete-file'.
3852
3853 * net/tramp-imap.el (tramp-imap-do-copy-or-rename-file): Use
3854 `delete-file' instead of `tramp-compat-delete-file'.
3855
3856 * net/tramp-smb.el (tramp-smb-handle-copy-file)
3857 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
3858 (tramp-smb-handle-write-region): Use `delete-file' instead of
3859 `tramp-compat-delete-file'.
3860 (tramp-smb-handle-delete-directory): Use 'trash as arg.
3861
3862 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
3863
3864 * dired.el (dired-delete-file): New arg TRASH.
3865 (dired-internal-do-deletions): New arg TRASH. Use progress reporter.
3866 (dired-do-flagged-delete, dired-do-delete): Use trash.
3867
3868 * speedbar.el (speedbar-item-delete): Allow trashing.
3869
3870 * files.el (delete-directory): New arg TRASH.
3871
3872 * net/ange-ftp.el (ange-ftp-del-tmp-name, ange-ftp-delete-file)
3873 (ange-ftp-rename-remote-to-remote)
3874 (ange-ftp-rename-local-to-remote)
3875 (ange-ftp-rename-remote-to-local, ange-ftp-load)
3876 (ange-ftp-compress, ange-ftp-uncompress): Remove optional arg from
3877 `delete-file'.
3878 (ange-ftp-delete-directory): Add optional arg to `delete-file', to
3879 allow trashing.
3880
3881 * net/tramp-compat.el (tramp-compat-delete-file): Rewrite to
3882 handle new TRASH arg of `delete-file'.
3883
3884 * net/tramp.el (tramp-handle-delete-file): Change FORCE arg to TRASH.
3885 (tramp-handle-make-symbolic-link, tramp-handle-load)
3886 (tramp-do-copy-or-rename-file-via-buffer)
3887 (tramp-do-copy-or-rename-file-directly)
3888 (tramp-do-copy-or-rename-file-out-of-band)
3889 (tramp-handle-process-file, tramp-handle-call-process-region)
3890 (tramp-handle-shell-command, tramp-handle-file-local-copy)
3891 (tramp-handle-insert-file-contents, tramp-handle-write-region)
3892 (tramp-delete-temp-file-function): Use null TRASH arg in
3893 tramp-compat-delete-file call.
3894
3895 * net/tramp-fish.el (tramp-fish-handle-delete-directory)
3896 (tramp-fish-handle-delete-file)
3897 (tramp-fish-handle-make-symbolic-link)
3898 (tramp-fish-handle-process-file): Use null TRASH arg in
3899 `tramp-compat-delete-file' call.
3900
3901 * net/tramp-ftp.el (tramp-ftp-file-name-handler): Use null TRASH
3902 arg in `tramp-compat-delete-file' call.
3903
3904 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Rename arg.
3905 (tramp-gvfs-handle-write-region): Use null TRASH arg in
3906 `tramp-compat-delete-file' call.
3907
3908 * net/tramp-imap.el (tramp-imap-handle-delete-file): Rename arg.
3909 (tramp-imap-do-copy-or-rename-file): Use null TRASH arg in
3910 `tramp-compat-delete-file' call.
3911
3912 * net/tramp-smb.el (tramp-smb-handle-copy-file)
3913 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
3914 (tramp-smb-handle-write-region): Use null TRASH arg in
3915 tramp-compat-delete-file call.
3916 (tramp-smb-handle-delete-directory): Use tramp-compat-delete-file.
3917 (tramp-smb-handle-delete-file): Rename arg.
3918
3919 * diff.el (diff-sentinel):
3920 * epg.el (epg--make-temp-file, epg-decrypt-string)
3921 (epg-verify-string, epg-sign-string, epg-encrypt-string):
3922 * jka-compr.el (jka-compr-partial-uncompress)
3923 (jka-compr-call-process, jka-compr-write-region):
3924 * server.el (server-sentinel): Remove optional arg from
3925 delete-file, reverting 2010-05-03 change.
3926
3927 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
3928
3929 * progmodes/verilog-mode.el (verilog-type-font-keywords): Use
3930 font-lock-constant-face, not obsolete font-lock-reference-face.
3931
3932 2010-05-27 Kenichi Handa <handa@m17n.org>
3933
3934 * language/hebrew.el (hebrew-shape-gstring): Check if a glyph
3935 element of GSTRING is nil.
3936
3937 2010-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
3938
3939 * emacs-lisp/smie.el (smie-forward-token-function)
3940 (smie-backward-token-function): New vars.
3941 (smie-backward-sexp, smie-forward-sexp)
3942 (smie-indent-hanging-p, smie-indent-calculate): Use them.
3943 (smie-default-backward-token): Rename from smie-backward-token and
3944 skip comments.
3945 (smie-default-forward-token): Rename from smie-forward-token and
3946 skip comments.
3947 (smie-next-sexp): Handle nil results from next-token.
3948 (smie-indent-calculate): Add a new case for special `fixindent' comments.
3949
3950 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
3951
3952 * progmodes/verilog-mode.el (verilog-type-font-keywords):
3953 Use font-lock-constant-face, not obsolete font-lock-reference-face.
3954
3955 2010-05-27 Masatake YAMATO <yamato@redhat.com>
3956
3957 * htmlfontify.el (hfy-face-resolve-face): New function.
3958 (hfy-face-to-style): Use it (Bug#6279).
3959
3960 2010-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
3961
3962 * progmodes/ada-xref.el (ada-gnat-parse-gpr):
3963 * emulation/edt.el (edt-load-keys): Avoid (expand-file-name ".").
3964
3965 2010-05-26 Glenn Morris <rgm@gnu.org>
3966
3967 * emulation/edt.el (edt-load-keys): Use locate-library.
3968
3969 2010-05-25 Chong Yidong <cyd@stupidchicken.com>
3970
3971 * log-edit.el (log-edit-strip-single-file-name): Default to nil.
3972 (log-edit-changelog-entries): Doc fix.
3973 (log-edit-changelog-insert-entries): Args changed.
3974 Rename relative filenames in ChangeLog entries. Delete tabs.
3975 (log-edit-insert-changelog-entries): Reorganize return value of
3976 `log-edit-changelog-entries' to pass filenames to
3977 log-edit-changelog-insert-entries.
3978
3979 2010-05-25 Thierry Volpiatto <thierry.volpiatto@gmail.com>
3980
3981 * dired.el (dired-mode-map): Rebind "\C-t\C-t" from
3982 `image-dired-dired-insert-marked-thumbs' to
3983 `image-dired-dired-toggle-marked-thumbs'.
3984
3985 * image-dired.el: Require cl when compiling.
3986 (image-dired-dired-toggle-marked-thumbs): Rename from
3987 `image-dired-dired-insert-marked-thumbs'. Add ARG. Doc fix.
3988 Use interactive spec "P". Set LOCALP arg of `dired-get-filename'
3989 to 'no-dir. Skip files whose names don't match
3990 `image-file-name-regexp'. When file has a thumbnail overlay,
3991 delete it. (Bug#5270)
3992
3993 2010-05-25 Juri Linkov <juri@jurta.org>
3994
3995 * image-mode.el (image-mode): Add image-after-revert-hook to
3996 after-revert-hook.
3997 (image-after-revert-hook): New function. (Bug#5669)
3998
3999 2010-05-25 Juri Linkov <juri@jurta.org>
4000
4001 * image.el (image-animated-p): When delay between animated images
4002 is 0, set it to 10 (0.1 sec). (Bug#6258)
4003
4004 2010-05-25 Christian Lynbech <christian.lynbech@tieto.com> (tiny change)
4005
4006 * net/tramp.el (tramp-handle-insert-directory): Don't use
4007 `forward-word', its default syntax could be changed.
4008
4009 2010-05-25 Michael Albinus <michael.albinus@gmx.de>
4010
4011 * net/tramp.el (tramp-progress-reporter-update): New defun.
4012 (with-progress-reporter): Use it.
4013 (tramp-process-actions):
4014 * net/tramp-gvfs.el (tramp-gvfs-handler-askquestion): Preserve
4015 current message, in order to let progress reporter continue
4016 afterwards. (Bug#6257)
4017
4018 2010-05-25 Glenn Morris <rgm@gnu.org>
4019
4020 * net/rcirc.el (rcirc-default-user-name, rcirc-default-full-name):
4021 Add :version.
4022
4023 2010-05-25 Ryan Yeske <rcyeske@gmail.com>
4024
4025 * net/rcirc.el (rcirc-default-user-name): Change to "user".
4026 (rcirc-default-full-name): Change to "unknown".
4027 (rcirc-user-name-history): Add variable.
4028
4029 2010-05-25 Ryan Yeske <rcyeske@gmail.com>
4030 Jonathan Rockway <jon@jrock.us>
4031
4032 * net/rcirc.el (rcirc-server-alist): Add :pass.
4033 (rcirc): When prompting for connection parameters, also prompt for
4034 username and password.
4035 (rcirc-connect): Take a PASS argument. If PASS is non-nil, send
4036 value to server when connecting.
4037
4038 2010-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
4039
4040 * emacs-lisp/smie.el (smie-set-prec2tab): Check override before use.
4041 (smie-merge-prec2s): Pass the tables as separate args.
4042 (smie-bnf-precedence-table): Adjust call accordingly.
4043 (smie-prec2-levels): Set levels at the end.
4044
4045 Replace Lisp calls to delete-backward-char by delete-char.
4046 * bs.el, expand.el, ido.el, image-dired.el, lpr.el, pcomplete.el,
4047 * skeleton.el, term.el, time.el, wid-edit.el, woman.el,
4048 * calc/calc-graph.el, calc/calc-help.el, calc/calc-incom.el,
4049 * calc/calc.el, emacs-cl-extra.el, emacs-cl-loaddefs.el,
4050 * emulation/cua-rect.el, emulation/viper-ex.el, eshell/esh-test.el,
4051 * eshell/eshell.el, gnus/gnus-uu.el, gnus/nndoc.el, gnus/nnrss.el,
4052 * gnus/rfc2047.el, gnus/utf7.el, international/utf-7.el,
4053 * language/ethio-util.el, mh-e/mh-alias.el, mh-e/mh-search.el,
4054 * net/imap.el, net/rcirc.el, obsolete/complete.el, play/decipher.el,
4055 * progmodes/ada-mode.el, progmodes/cc-awk.el, progmodes/dcl-mode.el,
4056 * progmodes/ps-mode.el, progmodes/verilog-mode.el,
4057 * progmodes/vhdl-mode.el, textmodes/bibtex.el, textmodes/fill.el,
4058 * textmodes/reftex-auc.el, textmodes/rst.el, textmodes/sgml-mode.el,
4059 * textmodes/table.el, textmodes/texinfmt.el: Replace Lisp calls to
4060 delete-backward-char by calls to delete-char.
4061
4062 2010-05-25 Kenichi Handa <handa@m17n.org>
4063
4064 * language/hebrew.el (hebrew-shape-gstring): New function.
4065 Register it in composition-function-table for all Hebrew combining
4066 characters.
4067
4068 2010-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
4069
4070 * epa.el (epa--select-keys): Don't explicitly delete the window since
4071 that can fail (e.g. sole window in frame). Use dedication instead.
4072
4073 2010-05-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
4074
4075 * textmodes/fill.el (fill-region): Don't fill past the end (bug#6201).
4076
4077 2010-05-22 Chong Yidong <cyd@stupidchicken.com>
4078
4079 * image.el (image-refresh): Define as an alias for image-flush.
4080
4081 * image-mode.el (image-toggle-display-image): Caller changed.
4082
4083 2010-05-21 Juri Linkov <juri@jurta.org>
4084
4085 * progmodes/grep.el (grep-read-files): Fix multi-pattern aliases.
4086 Remove "all" from grep-files-aliases. Split grep-files-aliases by
4087 whitespace, call wildcard-to-regexp on substrings and concat them
4088 with "\\|". (Bug#6114)
4089
4090 2010-05-21 Alan Mackenzie <acm@muc.de>
4091
4092 * progmodes/cc-engine.el (c-parse-state-get-strategy):
4093 Replace parameter `here' with `here-' and `here-plus', which sandwich
4094 any pertinent CPP construct.
4095 (c-remove-stale-state-cache-backwards): Fix a bug which happens
4096 when doing (c-parse-state) in a CPP construct: Exclude any "new"
4097 CPP construct from taking part in the scanning.
4098
4099 2010-05-21 Michael Albinus <michael.albinus@gmx.de>
4100
4101 * net/tramp.el (tramp-do-copy-or-rename-file)
4102 (tramp-handle-file-local-copy, tramp-maybe-open-connection):
4103 Tune `with-progress-reporter' messages.
4104 (tramp-handle-vc-registered):
4105 * net/tramp-fish.el (tramp-fish-handle-file-local-copy)
4106 (tramp-fish-handle-insert-file-contents)
4107 (tramp-fish-maybe-open-connection):
4108 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
4109 * net/tramp-imap.el (tramp-imap-do-copy-or-rename-file)
4110 (tramp-imap-handle-insert-file-contents)
4111 (tramp-imap-handle-file-local-copy): Use `with-progress-reporter'.
4112
4113 2010-05-21 Juanma Barranquero <lekktu@gmail.com>
4114
4115 * add-log.el (change-log-font-lock-keywords):
4116 Highlight all authors in multi-author entries.
4117
4118 * smerge-mode.el (smerge-refine-ignore-whitespace)
4119 (smerge-refine-weight-hack, smerge-refine, smerge-makeup-conflict):
4120 Fix typos in docstrings.
4121 (smerge-resolve, smerge-refine-subst): Reflow docstrings.
4122
4123 2010-05-21 Glenn Morris <rgm@gnu.org>
4124
4125 * progmodes/fortran.el (fortran-mode):
4126 * progmodes/f90.el (f90-mode): Derive from prog-mode.
4127
4128 * loadup.el [CANNOT_DUMP]: Update for bootstrap-emacs no longer
4129 having a relative path in src/Makefile.in.
4130
4131 2010-05-20 Kevin Ryde <user42@zip.com.au>
4132
4133 * help-mode.el (help-make-xrefs): For Info node links turn
4134 newlines into spaces. Link node names with newlines are matched
4135 by help-xref-info-regexp and buttonized, this change ensures they
4136 can be followed successfully with RET. (Bug#6206)
4137
4138 2010-05-20 Juri Linkov <juri@jurta.org>
4139
4140 * locate.el (locate): Use pop-to-buffer instead of
4141 switch-to-buffer-other-window. (Bug#6204)
4142
4143 2010-05-20 Juri Linkov <juri@jurta.org>
4144
4145 * replace.el (replace-highlight): Fix lazy-highlighting
4146 for `M-s w str M-% str RET'.
4147
4148 2009-12-15 Masatake YAMATO <yamato@redhat.com>
4149
4150 * isearch.el (isearch-yank-word-or-char): Pull next subword
4151 when `subword-mode' is activated. (Bug#6220)
4152
4153 2010-05-20 Mark A. Hershberger <mah@everybody.org>
4154
4155 * isearch.el (isearch-update-post-hook): New hook.
4156 (isearch-update): Use the new hook. (Bug#6225)
4157
4158 2010-05-20 Juri Linkov <juri@jurta.org>
4159
4160 * isearch.el (isearch-mode-map): Bind more keys to isearch-help-map:
4161 [f1], [help], and (char-to-string help-char) instead of "\C-h".
4162 (Bug#6222)
4163
4164 2010-05-20 Juri Linkov <juri@jurta.org>
4165
4166 * isearch.el (isearch-yank-string): Use isearch-process-search-string.
4167 (Bug#6223)
4168
4169 2010-05-20 Juri Linkov <juri@jurta.org>
4170
4171 * dired-x.el (dired-jump, dired-jump-other-window): Add arg
4172 FILE-NAME to read from the minibuffer when called interactively
4173 with prefix argument instead of using buffer-file-name.
4174 http://lists.gnu.org/archive/html/emacs-devel/2010-05/msg00534.html
4175
4176 * dired.el: Update autoloads.
4177
4178 2010-05-20 Chong Yidong <cyd@stupidchicken.com>
4179
4180 * nxml/nxml-mode.el (nxml-mode-map): Bind C-c / to
4181 nxml-finish-element, for consistency with SGML mode.
4182
4183 * progmodes/octave-mod.el (octave-mode-map): Bind C-c / to
4184 octave-close-block.
4185
4186 2010-05-20 Juanma Barranquero <lekktu@gmail.com>
4187
4188 * composite.el: Require cl when compiling.
4189 (reference-point-alist, compose-gstring-for-graphic)
4190 (compose-gstring-for-terminal): Fix typos in docstrings.
4191
4192 2010-05-19 Juri Linkov <juri@jurta.org>
4193
4194 * emacs-lisp/cl-macs.el (window-parameter): Add defsetf with
4195 set-window-parameter.
4196
4197 2010-05-19 Michael Albinus <michael.albinus@gmx.de>
4198
4199 * net/tramp.el (tramp-methods): Add `tramp-async-args' attribute
4200 where appropriate.
4201 (tramp-maybe-open-connection): Use it.
4202
4203 2010-05-19 Eli Zaretskii <eliz@gnu.org>
4204
4205 * simple.el (move-end-of-line): Make sure we are at line beginning
4206 before backing up to end of previous line.
4207
4208 2010-05-19 Michael Albinus <michael.albinus@gmx.de>
4209
4210 * password-cache.el (password-cache-remove): Fix docstring.
4211
4212 * net/secrets.el: Autoload the widget functions.
4213 (secrets-search-items, secrets-create-item)
4214 (secrets-get-attributes, secrets-expand-item): Attributes will be
4215 stored on the password database without leading ":", as all other
4216 clients do as well.
4217 (secrets-mode): Fix docstring.
4218 (secrets-show-secrets): Provide it as autoloaded command only when
4219 D-Bus support is available. Check existence of Secret Service API.
4220
4221 2010-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
4222
4223 * indent.el (indent-region): Deactivate region (bug#6200).
4224
4225 2010-05-19 Glenn Morris <rgm@gnu.org>
4226
4227 * vc-dir.el (vc-dir): Don't pop-up-windows. (Bug#6204)
4228
4229 2010-05-19 Kenichi Handa <handa@m17n.org>
4230
4231 * composite.el: Register compose-gstring-for-graphic in
4232 composition-function-table only for combining characters (Mn, Mc, Me).
4233
4234 2010-05-18 Jay Belanger <jay.p.belanger@gmail.com>
4235
4236 * calc/calc-trail.el (calc-trail-isearch-forward)
4237 (calc-trail-isearch-backward): Ensure that the new window
4238 point is set correctly.
4239
4240 2010-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
4241
4242 * subr.el (read-quoted-char): Resolve modifiers after key
4243 remapping (bug#6212).
4244
4245 2010-05-18 Michael Albinus <michael.albinus@gmx.de>
4246
4247 Add visualization code for secrets.
4248 * net/secrets.el (secrets-mode): New major mode.
4249 (secrets-show-secrets, secrets-show-collections)
4250 (secrets-expand-collection, secrets-expand-item)
4251 (secrets-tree-widget-after-toggle-function)
4252 (secrets-tree-widget-show-password): New defuns.
4253
4254 2010-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
4255
4256 * emacs-lisp/smie.el (smie-next-sexp): Break inf-loop at BOB.
4257 (smie-backward-sexp, smie-forward-sexp): Remove boundary condition now
4258 handled in smie-next-sexp.
4259 (smie-indent-calculate): Provide a starting indentation (so the
4260 recursion is well-founded ;-).
4261
4262 Fix handling of non-associative equal levels.
4263 * emacs-lisp/smie.el (smie-prec2-levels): Choose distinct levels even
4264 when it's not needed.
4265 (smie-op-left, smie-op-right): New functions.
4266 (smie-next-sexp): New function, extracted from smie-backward-sexp.
4267 Better handle equal levels to distinguish the associative case from
4268 the "multi-keyword construct" case.
4269 (smie-backward-sexp, smie-forward-sexp): Use it.
4270
4271 2010-05-18 Juanma Barranquero <lekktu@gmail.com>
4272
4273 * progmodes/prolog.el (smie-indent-basic): Declare for byte-compiler.
4274
4275 * emacs-lisp/smie.el (smie-precs-precedence-table, smie-backward-sexp)
4276 (smie-forward-sexp, smie-indent-calculate): Fix typos in docstrings.
4277
4278 2010-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
4279
4280 Provide a simple generic indentation engine and use it for Prolog.
4281 * emacs-lisp/smie.el: New file.
4282 * progmodes/prolog.el (prolog-smie-op-levels)
4283 (prolog-smie-indent-rules): New var.
4284 (prolog-mode-variables): Use them to configure SMIE.
4285 (prolog-indent-line, prolog-indent-level): Remove.
4286
4287 2010-05-17 Jay Belanger <jay.p.belanger@gmail.com>
4288
4289 * calc/calc-vec.el (math-vector-avg): Put the vector elements in
4290 order before computing the averages.
4291
4292 2010-05-16 Jay Belanger <jay.p.belanger@gmail.com>
4293
4294 * calc/calc-vec.el (calc-histogram):
4295 (calcFunc-histogram): Allow vectors as inputs.
4296 (math-vector-avg): New function.
4297
4298 * calc/calc-ext.el (math-group-float): Have the number of digits
4299 being grouped depend on the radix (Bug#6189).
4300
4301 2010-05-15 Ken Raeburn <raeburn@raeburn.org>
4302
4303 * version.el (emacs-copyright, emacs-version): Don't define here,
4304 now that emacs.c defines it.
4305
4306 2010-05-15 Eli Zaretskii <eliz@gnu.org>
4307
4308 * international/mule-cmds.el (mule-menu-keymap): Fix definition of
4309 "Describe Language Environment" menu item.
4310
4311 * language/hebrew.el ("Hebrew", "Windows-1255"): Doc fix.
4312
4313 Bidi-sensitive movement with arrow keys.
4314 * subr.el (right-arrow-command, left-arrow-command): New functions.
4315
4316 * bindings.el (global-map): Bind them to right and left arrow keys.
4317
4318 Don't override standard definition of convert-standard-filename.
4319 * files.el (convert-standard-filename): Call
4320 w32-convert-standard-filename and dos-convert-standard-filename on
4321 the corresponding systems.
4322
4323 * w32-fns.el (w32-convert-standard-filename): Rename from
4324 convert-standard-filename. Doc fix.
4325
4326 * dos-fns.el (dos-convert-standard-filename): Doc fix.
4327 (convert-standard-filename): Don't defalias.
4328 (register-name-alist, make-register, register-value)
4329 (set-register-value, intdos): Obsolete aliases for the
4330 corresponding dos-* functions and variables.
4331 (dos-intdos): Add a doc string.
4332
4333 2010-05-15 Jay Belanger <jay.p.belanger@gmail.com>
4334
4335 * calc/calc-aent.el (math-read-token, math-find-user-tokens):
4336 * calc/calc-lang.el (math-read-big-rec, math-lang-read-symbol):
4337 (math-compose-tex-func):
4338 * calc/calccomp.el (math-compose-expr):
4339 * calc/calc-ext.el (math-format-flat-expr-fancy):
4340 * calc/calc-store.el (calc-read-var-name):
4341 * calc/calc-units.el (calc-explain-units-rec): Allow Greek letters.
4342
4343 * calc/calc.el (var-π, var-φ, var-γ): New variables.
4344 * calc/calc-aent.el (math-read-replacement-list): Add "micro" symbol.
4345 * calc/calc-units.el (math-unit-prefixes): Add mu for micro.
4346 (math-standard-units): Add units.
4347
4348 2010-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
4349
4350 * progmodes/asm-mode.el (asm-mode):
4351 * progmodes/prolog.el (prolog-mode): Use define-derived-mode.
4352
4353 * pcomplete.el (pcomplete-completions-at-point): New function,
4354 extracted from pcomplete-std-complete.
4355 (pcomplete-std-complete): Use it.
4356
4357 2010-05-15 Glenn Morris <rgm@gnu.org>
4358
4359 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
4360 Remove references to CVS, RCS and Old directories.
4361
4362 2010-05-14 Jay Belanger <jay.p.belanger@gmail.com>
4363
4364 * calc/calc-bin.el (math-format-twos-complement): Group digits when
4365 appropriate.
4366
4367 2010-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
4368
4369 * progmodes/sh-script.el (sh-mode-default-syntax-table): Remove.
4370 (sh-mode-syntax-table): Give it a default value instead.
4371 (sh-header-marker): Make buffer-local.
4372 (sh-mode): Move make-local-variable to the corresponding setq.
4373 (sh-add-completer): Avoid gratuitously let-binding a buffer-local var.
4374 Use complete-with-action.
4375
4376 * simple.el (prog-mode): New (abstract) major mode.
4377 * emacs-lisp/lisp-mode.el (emacs-lisp-mode, lisp-mode): Use it.
4378 * progmodes/sh-script.el (sh-mode): Remove redundant var assignment.
4379
4380 2010-05-14 Juanma Barranquero <lekktu@gmail.com>
4381
4382 * progmodes/sql.el (sql-oracle-program): Reflow docstring.
4383 (sql-oracle-scan-on, sql-sybase-program, sql-product-font-lock)
4384 (sql-add-product-keywords, sql-highlight-product, sql-set-product)
4385 (sql-make-alternate-buffer-name, sql-placeholders-filter)
4386 (sql-escape-newlines-filter, sql-input-sender)
4387 (sql-send-magic-terminator, sql-sybase): Fix typos in docstrings.
4388
4389 2010-05-13 Chong Yidong <cyd@stupidchicken.com>
4390
4391 Add TeX open-block and close-block keybindings to SGML, and vice versa.
4392
4393 * textmodes/tex-mode.el (tex-mode-map): Bind C-c C-t to
4394 latex-open-block and C-c / to latex-close-block.
4395
4396 * textmodes/sgml-mode.el (sgml-mode-map): Bind C-c C-o to sgml-tag
4397 and C-c C-e to sgml-close-tag.
4398
4399 2010-05-13 Michael Albinus <michael.albinus@gmx.de>
4400
4401 * net/tramp.el (with-progress-reporter): Create reporter object
4402 only when the message would be displayed. Handle nested calls.
4403 (tramp-handle-load, tramp-handle-file-local-copy)
4404 (tramp-handle-insert-file-contents, tramp-handle-write-region)
4405 (tramp-maybe-send-script, tramp-find-shell):
4406 Use `with-progress-reporter'.
4407 (tramp-handle-dired-compress-file, tramp-maybe-open-connection):
4408 Fix message text.
4409
4410 * net/tramp-smb.el (tramp-smb-handle-copy-file)
4411 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
4412 (tramp-smb-handle-write-region, tramp-smb-maybe-open-connection):
4413 Use `with-progress-reporter'.
4414
4415 2010-05-13 Agustín Martín <agustin.martin@hispalinux.es>
4416
4417 * textmodes/ispell.el (ispell-init-process): Do not kill ispell
4418 process everytime when spellchecking from the minibuffer (bug#6143).
4419
4420 2010-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
4421
4422 * progmodes/sh-script.el (sh-mode): Use define-derived-mode.
4423
4424 * dos-fns.el: Add "dos-" prefix for namespace control.
4425 (convert-standard-filename): Define as alias for
4426 dos-convert-standard-filename but only if applicable.
4427
4428 2010-05-12 Alan Mackenzie <acm@muc.de>
4429
4430 * progmodes/cc-cmds.el (c-beginning-of-defun, c-end-of-defun):
4431 Push the mark at the start of these functions when appropriate.
4432
4433 2010-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
4434
4435 * minibuffer.el (completion-cycle-threshold): New custom var.
4436 (completion--do-completion): Use it.
4437 (minibuffer-complete): Use cycling if appropriate.
4438
4439 2010-05-11 Juanma Barranquero <lekktu@gmail.com>
4440
4441 * dirtrack.el (dirtrackp): Remove defcustom; don't make automatically
4442 buffer-local (it's an obsolete alias for `dirtrack-mode') (bug#6173).
4443
4444 2010-05-11 Juri Linkov <juri@jurta.org>
4445
4446 * scroll-all.el (scroll-all-check-to-scroll):
4447 Add `scroll-up-command' and `scroll-down-command' (bug#6164).
4448
4449 2010-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
4450
4451 * iimage.el (iimage-mode-map): Move initialization into declaration.
4452 (iimage-mode-buffer): Use with-silent-modifications.
4453 Simplify calling convention. Adjust callers.
4454 (iimage-mode): Don't run hook redundantly.
4455
4456 * minibuffer.el (completion-pcm--pattern->regex):
4457 Fix last change (bug#6160).
4458
4459 2010-05-10 Juri Linkov <juri@jurta.org>
4460
4461 Remove nodes visited during Isearch from the Info history.
4462 * info.el (Info-isearch-initial-history)
4463 (Info-isearch-initial-history-list): New variables.
4464 (Info-isearch-start): Record initial values of
4465 Info-isearch-initial-history and Info-isearch-initial-history-list.
4466 Add Info-isearch-end to isearch-mode-end-hook.
4467 (Info-isearch-end): New function.
4468
4469 2010-05-10 Michael Albinus <michael.albinus@gmx.de>
4470
4471 * net/tramp.el (tramp-do-file-attributes-with-stat): Add space in
4472 format string, in order to work around a bug in pdksh.
4473 Reported by Gilles Pion <gpion@lfdj.com>.
4474 (tramp-handle-verify-visited-file-modtime): Do not send a command
4475 when the connection is not established.
4476 (tramp-handle-set-file-times): Simplify the check for utc.
4477
4478 2010-05-10 Juanma Barranquero <lekktu@gmail.com>
4479
4480 Fix use of `filter-buffer-substring' (rework previous change).
4481 * emulation/cua-base.el (cua--filter-buffer-noprops): New function.
4482 (cua-repeat-replace-region):
4483 * emulation/cua-rect.el (cua--extract-rectangle, cua-incr-rectangle):
4484 * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
4485 (cua-cut-region-to-global-mark): Use it.
4486
4487 2010-05-09 Michael R. Mauger <mmaug@yahoo.com>
4488
4489 * progmodes/sql.el: Version 2.1.
4490 (sql-product-alist): Redesign structure of product info.
4491 (sql-product, sql-user, sql-server, sql-database): Safe variables.
4492 (sql-port, sql-port-history): New variables.
4493 (sql-interactive-product): New variable.
4494 (sql-send-terminator): New variable.
4495 (sql-imenu-generic-expression): Add "Types" imenu entry.
4496 (sql-oracle-login-params, sql-sqlite-login-params)
4497 (sql-mysql-login-params, sql-solid-login-params)
4498 (sql-sybase-login-params, sql-informix-login-params)
4499 (sql-ingres-login-params, sql-ms-login-params)
4500 (sql-postgres-login-params, sql-interbase-login-params)
4501 (sql-db2-login-params, sql-linter-login-params)
4502 (sql-oracle-scan-on): New variables.
4503 (sql-mode-map): Add C-c C-i to start interactive mode.
4504 (sql-mode-menu): Update existing menu entries.
4505 (sql-font-lock-keywords-builder): Compile-time font-lock optimization.
4506 (sql-mode-oracle-font-lock-keywords)
4507 (sql-mode-postgres-font-lock-keywords)
4508 (sql-mode-ms-font-lock-keywords)
4509 (sql-mode-sybase-font-lock-keywords)
4510 (sql-mode-informix-font-lock-keywords)
4511 (sql-mode-interbase-font-lock-keywords)
4512 (sql-mode-ingres-font-lock-keywords)
4513 (sql-mode-solid-font-lock-keywords)
4514 (sql-mode-mysql-font-lock-keywords)
4515 (sql-mode-sqlite-font-lock-keywords)
4516 (sql-mode-db2-font-lock-keywords)
4517 (sql-mode-linter-font-lock-keywords): Update initialization to
4518 reduce run-time complexity.
4519 (sql-add-product, sql-del-product): New functions.
4520 (sql-set-product-feature, sql-get-product-feature): New functions.
4521 (sql-product-font-lock): Update product API.
4522 (sql-add-product-keywords): New function.
4523 (sql-highlight-product): Update product API.
4524 (sql-help-list-products): New function.
4525 (sql-help): Dynamically lists free and non-free products.
4526 (sql-get-login): Correct bug in handling history and added
4527 prompt for port.
4528 (sql-copy-column): Copy without properties.
4529 (sqli-input-sender): Apply filters to SQLi input.
4530 (sql-query-placeholders-and-send): Obey `sql-oracle-scan-on' setting.
4531 Implement as a filter.
4532 (sql-escape-newlines-filter): Implement as a filter.
4533 (sql-remove-tabs-filter): New function.
4534 (sql-send-magic-terminator): New function.
4535 (sql-send-string): Implement magic terminator.
4536 (sql-send-region): Use `sql-send-string'.
4537 (sql-interactive-mode): Use product API.
4538 (sql-product-interactive): Use product API.
4539 (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql)
4540 (sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase)
4541 (sql-db2, sql-linter): Use `sql-product-interactive'.
4542 (sql-connect): New function.
4543 (sql-connect-oracle, sql-connect-sybase, sql-connect-informix)
4544 (sql-connect-sqlite, sql-connect-mysql, sql-connect-solid)
4545 (sql-connect-ingres, sql-connect-ms, sql-connect-postgres)
4546 (sql-connect-interbase, sql-connect-db2, sql-connect-linter):
4547 Use `sql-connect'.
4548
4549 2010-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
4550
4551 * minibuffer.el (completion-pcm-complete-word-inserts-delimiters):
4552 New custom variable.
4553 (completion-pcm--string->pattern): Use it.
4554 (completion-pcm--pattern->regex, completion-pcm--pattern->string):
4555 Make it handle any symbol as `any'.
4556 (completion-pcm--merge-completions): Extract common suffix for the new
4557 `prefix' symbol as well.
4558 (completion-substring--all-completions): Use the new `prefix' symbol.
4559
4560 2010-05-09 Michael Albinus <michael.albinus@gmx.de>
4561
4562 * net/tramp-compat.el (byte-compile-not-obsolete-vars): Define if
4563 not bound.
4564 (tramp-compat-copy-file): Add PRESERVE-SELINUX-CONTEXT.
4565 (tramp-compat-funcall): New defmacro.
4566 (tramp-compat-line-beginning-position)
4567 (tramp-compat-line-end-position)
4568 (tramp-compat-temporary-file-directory)
4569 (tramp-compat-make-temp-file, tramp-compat-file-attributes)
4570 (tramp-compat-copy-file, tramp-compat-copy-directory)
4571 (tramp-compat-delete-file, tramp-compat-delete-directory)
4572 (tramp-compat-number-sequence, tramp-compat-process-running-p)
4573 * net/tramp.el (top, with-progress-reporter)
4574 (tramp-rfn-eshadow-setup-minibuffer)
4575 (tramp-rfn-eshadow-update-overlay, tramp-handle-set-file-times)
4576 (tramp-handle-dired-compress-file, tramp-handle-shell-command)
4577 (tramp-completion-mode-p, tramp-check-for-regexp)
4578 (tramp-open-connection-setup-interactive-shell)
4579 (tramp-compute-multi-hops, tramp-read-passwd, tramp-clear-passwd)
4580 (tramp-time-diff, tramp-coding-system-change-eol-conversion)
4581 (tramp-set-process-query-on-exit-flag, tramp-unload-tramp)
4582 * net/tramp-cmds.el (tramp-cleanup-all-connections)
4583 (tramp-reporter-dump-variable, tramp-load-report-modules)
4584 (tramp-append-tramp-buffers)
4585 * net/tramp-gvfs.el (tramp-gvfs-handle-file-selinux-context): Use it.
4586
4587 * net/tramp-imap.el (top): Autoload `epg-make-context'.
4588
4589 2010-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
4590
4591 * progmodes/compile.el (compilation-buffer-modtime): Rename from
4592 buffer-modtime. Adjust users.
4593
4594 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
4595
4596 * international/mule.el (auto-coding-alist): Only purecopy
4597 car of each item, not the whole list (Bug#6083).
4598
4599 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
4600
4601 * progmodes/js.el (js-mode): Make paragraph variables local before
4602 calling c-setup-paragraph-variables (Bug#6071).
4603
4604 2010-05-08 Eli Zaretskii <eliz@gnu.org>
4605
4606 * composite.el (compose-region, reference-point-alist): Fix typos
4607 in the doc strings.
4608
4609 2010-05-08 Alexander Klimov <alserkli@inbox.ru> (tiny change)
4610
4611 * calc/calc-graph.el (calc-graph-plot): Use the proper form for
4612 gnuplot's "set" command.
4613
4614 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
4615
4616 * abbrev.el (last-abbrev-text): Doc fix.
4617 (abbrev-prefix-mark): Don't escape parenthesis.
4618
4619 2010-05-08 Andreas Schwab <schwab@linux-m68k.org>
4620
4621 * composite.el (find-composition): Doc fix.
4622
4623 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
4624
4625 * progmodes/sql.el (sql-electric-stuff): Fix typo in tag.
4626 (sql-oracle-program, sql-sqlite-options)
4627 (sql-query-placeholders-and-send): Doc fixes.
4628 (sql-set-product, sql-interactive-mode): Reflow docstrings.
4629 (sql-imenu-generic-expression, sql-buffer)
4630 (sql-mode-ansi-font-lock-keywords, sql-mode-oracle-font-lock-keywords)
4631 (sql-mode-postgres-font-lock-keywords, sql-mode-ms-font-lock-keywords)
4632 (sql-mode-sybase-font-lock-keywords)
4633 (sql-mode-informix-font-lock-keywords)
4634 (sql-mode-interbase-font-lock-keywords)
4635 (sql-mode-ingres-font-lock-keywords, sql-mode-solid-font-lock-keywords)
4636 (sql-mode-mysql-font-lock-keywords, sql-mode-sqlite-font-lock-keywords)
4637 (sql-mode-db2-font-lock-keywords, sql-mode-font-lock-keywords)
4638 (sql-product-feature, sql-highlight-product)
4639 (comint-line-beginning-position, sql-rename-buffer)
4640 (sql-toggle-pop-to-buffer-after-send-region sql-oracle)
4641 (sql-sybase, sql-informix, sql-sqlite, sql-mysql, sql-solid)
4642 (sql-ingres, sql-ms, sql-postgres, sql-interbase, sql-db2, sql-linter):
4643 Fix typos in docstrings.
4644
4645 2010-05-08 Juri Linkov <juri@jurta.org>
4646
4647 * info.el (Info-fontify-node): Put Info-breadcrumbs to the `display'
4648 property instead of `invisible' and `after-string' (bug#5998).
4649
4650 2010-05-08 Juri Linkov <juri@jurta.org>
4651
4652 * image-mode.el (image-mode-as-text): Fix typo in docstring.
4653
4654 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
4655
4656 * filecache.el (file-cache-add-directory-list)
4657 (file-cache-add-directory-recursively): Fix typos in docstrings.
4658
4659 2010-05-08 Kenichi Handa <handa@m17n.org>
4660
4661 * language/indian.el (gurmukhi-composable-pattern): Fix typo.
4662 (gujarati-composable-pattern): Fix typo.
4663
4664 2010-05-08 Kenichi Handa <handa@m17n.org>
4665
4666 * language/indian.el (oriya-composable-pattern)
4667 (tamil-composable-pattern, malayalam-composable-pattern):
4668 Add two-part vowels to "v" (vowel sign).
4669
4670 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
4671
4672 * files.el (copy-directory): Handle symlinks (Bug#5982).
4673
4674 2010-05-08 Dan Nicolaescu <dann@ics.uci.edu>
4675
4676 * vc-hg.el (vc-hg-state): Use HGRCPATH, not HGRC.
4677 (vc-hg-working-revision): Likewise. Use hg parents, not hg parent
4678 (Bug#5846).
4679
4680 2010-05-08 Glenn Morris <rgm@gnu.org>
4681
4682 * emacs-lisp/lisp.el (lisp-completion-at-point): Give it a doc string.
4683
4684 * minibuffer.el (completion-at-point): Doc fix.
4685
4686 2010-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
4687
4688 * electric.el (Electric-command-loop): Minor tweak.
4689
4690 * ebuff-menu.el (electric-buffer-list): Try and make it behave a bit
4691 better with dedicated windows.
4692
4693 2010-05-07 Chong Yidong <cyd@stupidchicken.com>
4694
4695 * Version 23.2 released.
4696
4697 2010-05-07 Deniz Dogan <deniz.a.m.dogan@gmail.com> (tiny change)
4698 Stefan Monnier <monnier@iro.umontreal.ca>
4699
4700 Highlight vendor specific properties.
4701 * textmodes/css-mode.el (css-proprietary-nmstart-re): New var.
4702 (css-proprietary-property): New face.
4703 (css-font-lock-keywords): Use them.
4704
4705 2010-05-07 Eli Zaretskii <eliz@gnu.org>
4706
4707 * cus-start.el (all): Add native condition for tool-bar-* symbols.
4708
4709 2010-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
4710
4711 * textmodes/dns-mode.el (auto-mode-alist): Add entry for .zone files.
4712 * files.el (auto-mode-alist): Remove redundant entries.
4713
4714 * files.el (auto-save-mode): Move to simple.el to fix bootstrap.
4715 * simple.el (auto-save-mode): Move from files.el.
4716 * minibuffer.el (completion--common-suffix): Fix copy&paste error.
4717
4718 2010-05-07 Christian von Roques <roques@mti.ag> (tiny change)
4719
4720 * lisp/epg.el (epg-key-capablity-alist): Add "D" flag (Bug#5592).
4721
4722 2010-05-07 Katsumi Yamaoka <yamaoka@jpl.org>
4723
4724 * mail/binhex.el (binhex-decode-region-internal)
4725 * mail/uudecode.el (uudecode-decode-region-internal)
4726 * net/dns.el (dns-read-string-name, dns-write, dns-read)
4727 (dns-read-type, dns-query)
4728 * pgg-parse.el (pgg-parse-armor)
4729 * pgg.el (pgg-verify-region)
4730 * sha1.el (sha1-string-external): Don't run set-buffer-multibyte for
4731 XEmacs.
4732
4733 * net/imap.el (imap-disable-multibyte): Redefine it as a macro.
4734
4735 2010-05-07 Juanma Barranquero <lekktu@gmail.com>
4736
4737 * progmodes/cperl-mode.el (cperl-mode-unload-function): New function.
4738
4739 Fix use of `filter-buffer-substring' (4th arg NOPROPS removed).
4740 * emulation/cua-base.el (cua-repeat-replace-region):
4741 * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
4742 (cua-cut-region-to-global-mark):
4743 Remove text properties with `set-text-properties'.
4744
4745 2010-05-06 Michael Albinus <michael.albinus@gmx.de>
4746
4747 * net/tramp.el (top, with-progress-reporter):
4748 Use `symbol-function' inside `funcall'.
4749
4750 * net/tramp-compat.el (tramp-compat-file-attributes)
4751 (tramp-compat-delete-file, tramp-compat-delete-directory):
4752 Handle only `wrong-number-of-arguments' error.
4753
4754 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Fix typo.
4755 (tramp-gvfs-handle-file-selinux-context): Use `symbol-function'
4756 inside `funcall'.
4757
4758 2010-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
4759
4760 * minibuffer.el (completion--sreverse, completion--common-suffix):
4761 New functions.
4762 (completion-pcm--merge-completions): Extract common suffix when safe.
4763
4764 * emacs-lisp/easy-mmode.el (define-minor-mode):
4765 Make :variable more flexible.
4766 * files.el (auto-save-mode): Use it to define using define-minor-mode.
4767
4768 2010-05-05 Juri Linkov <juri@jurta.org>
4769
4770 Add `slow' and `history' tags to the desktop data.
4771
4772 * info.el (Info-virtual-nodes) [*Index*]: Add `slow' tag.
4773 (Info-virtual-files) [*Apropos*]: Add `slow' tag.
4774 (Info-finder-find-node): Require `finder.el' to be able
4775 to restore node from the desktop.
4776 (Info-desktop-buffer-misc-data): Save all nodes. Save additional
4777 data `Info-history' and `slow' tag in the assoc list.
4778 (Info-restore-desktop-buffer): Don't restore nodes with the
4779 `slow' tag. Restore `Info-history'.
4780
4781 2010-05-05 Michael Albinus <michael.albinus@gmx.de>
4782
4783 Add FORCE argument to `delete-file'.
4784
4785 * net/ange-ftp.el (ange-ftp-del-tmp-name): Make it a defun,
4786 forcing to delete the temporary file.
4787 (ange-ftp-delete-file): Add FORCE arg.
4788 (ange-ftp-rename-remote-to-remote)
4789 (ange-ftp-rename-local-to-remote, ange-ftp-rename-remote-to-local)
4790 (ange-ftp-load, ange-ftp-compress, ange-ftp-uncompress):
4791 Force file deletion.
4792
4793 * net/tramp-compat.el (tramp-compat-delete-file): New defun.
4794
4795 * net/tramp.el (tramp-handle-delete-file): Add FORCE arg.
4796 (tramp-handle-make-symbolic-link, tramp-handle-load)
4797 (tramp-do-copy-or-rename-file-via-buffer)
4798 (tramp-do-copy-or-rename-file-directly)
4799 (tramp-do-copy-or-rename-file-out-of-band)
4800 (tramp-handle-process-file, tramp-handle-call-process-region)
4801 (tramp-handle-shell-command, tramp-handle-file-local-copy)
4802 (tramp-handle-insert-file-contents, tramp-handle-write-region)
4803 (tramp-delete-temp-file-function): Use `tramp-compat-delete-file'.
4804
4805 * net/tramp-fish.el (tramp-fish-handle-delete-file): Add FORCE arg.
4806 (tramp-fish-handle-make-symbolic-link)
4807 (tramp-fish-handle-process-file): Use `tramp-compat-delete-file'.
4808
4809 * net/tramp-ftp.el (tramp-ftp-file-name-handler):
4810 Use `tramp-compat-delete-file'.
4811
4812 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Add FORCE arg.
4813 (tramp-gvfs-handle-write-region): Use `tramp-compat-delete-file'.
4814
4815 * net/tramp-imap.el (tramp-imap-handle-delete-file): Add FORCE arg.
4816 (tramp-imap-do-copy-or-rename-file): Use `tramp-compat-delete-file'.
4817
4818 * net/tramp-smb.el (tramp-smb-handle-delete-file): Add FORCE arg.
4819 (tramp-smb-handle-copy-file, tramp-smb-handle-file-local-copy)
4820 (tramp-smb-handle-rename-file, tramp-smb-handle-write-region): Use
4821 `tramp-compat-delete-file'.
4822
4823 2010-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
4824
4825 Minor cleanups.
4826 * subr.el (add-minor-mode): Use push.
4827 * mail/supercite.el (sc-electric-mode): Use more descriptive arg name.
4828 * emulation/edt.el (edt-select-mode): Simplify.
4829
4830 Use define-minor-mode in more cases.
4831 * term/tvi970.el (tvi970-set-keypad-mode):
4832 * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
4833 (normal-erase-is-backspace-mode):
4834 * scroll-bar.el (scroll-bar-mode): Use it and define-minor-mode.
4835 (set-scroll-bar-mode-1): (Re)move to its sole caller.
4836 (get-scroll-bar-mode): New function.
4837 * emacs-lisp/cl-macs.el (eq): Handle a non-variable first arg.
4838
4839 Use define-minor-mode for less obvious cases.
4840 * emacs-lisp/easy-mmode.el (define-minor-mode): Add :variable keyword.
4841 * emacs-lisp/cl-macs.el (terminal-parameter, eq): Add setf method.
4842 * international/iso-ascii.el (iso-ascii-mode):
4843 * frame.el (auto-raise-mode, auto-lower-mode):
4844 * composite.el (global-auto-composition-mode): Use define-minor-mode.
4845
4846 2010-05-04 Michael Albinus <michael.albinus@gmx.de>
4847
4848 * net/tramp.el (tramp-methods): Remove "-q" from `tramp-login-args'
4849 in order to see error messages for failed logins.
4850
4851 2010-05-03 Chong Yidong <cyd@stupidchicken.com>
4852
4853 * diff.el (diff-sentinel):
4854
4855 * epg.el (epg--make-temp-file, epg-decrypt-string)
4856 (epg-verify-string, epg-sign-string, epg-encrypt-string):
4857
4858 * jka-compr.el (jka-compr-partial-uncompress)
4859 (jka-compr-call-process, jka-compr-write-region, jka-compr-load):
4860
4861 * server.el (server-sentinel): Use delete-file's new FORCE arg
4862 (Bug#6070).
4863
4864 2010-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
4865
4866 Use define-minor-mode where applicable.
4867 * view.el (view-mode):
4868 * type-break.el (type-break-query-mode)
4869 (type-break-mode-line-message-mode):
4870 * textmodes/reftex.el (reftex-mode):
4871 * term/vt100.el (vt100-wide-mode):
4872 * tar-mode.el (tar-subfile-mode):
4873 * savehist.el (savehist-mode):
4874 * ibuf-ext.el (ibuffer-auto-mode):
4875 * composite.el (auto-composition-mode):
4876 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
4877 Use define-minor-mode.
4878 (vhdl-mode): Use static mode-line format.
4879 (vhdl-mode-line-update): Delete.
4880 (vhdl-create-mode-menu, vhdl-activate-customizations)
4881 (vhdl-hs-minor-mode): Don't bother calling it.
4882
4883 2010-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
4884
4885 * simple.el (with-wrapper-hook): Move.
4886 (buffer-substring-filters): Mark obsolete.
4887 (filter-buffer-substring-functions): New variable.
4888 (filter-buffer-substring): Use it. Remove unused arg `noprops'.
4889
4890 Use a mode-line spec rather than a static string in Semantic.
4891 * cedet/semantic/util-modes.el:
4892 (semantic-minor-modes-format): New var to replace...
4893 (semantic-minor-modes-status): Remove.
4894 (semantic-mode-line-update): Construct a mode-line spec rather than
4895 a static string so that mouse buttons can be used on individual minor
4896 modes and so that semantic-mode-line-update only needs to be called
4897 when global settings are changed.
4898 (semantic-add-minor-mode, semantic-toggle-minor-mode-globally):
4899 Call semantic-mode-line-update.
4900 (semantic-toggle-minor-mode-globally): Don't assume mode is on
4901 minor-mode-alist, check semantic-minor-mode-alist as well.
4902 (semantic-stickyfunc-mode, semantic-show-parser-state-auto-marker)
4903 (semantic-show-parser-state-marker, semantic-show-parser-state-mode)
4904 (semantic-show-unmatched-syntax-mode, semantic-highlight-edits-mode):
4905 * cedet/semantic/mru-bookmark.el (semantic-mru-bookmark-mode):
4906 * cedet/semantic/idle.el (semantic-idle-scheduler-mode)
4907 (define-semantic-idle-service, semantic-idle-summary-mode):
4908 * cedet/semantic/decorate/mode.el (semantic-decoration-mode):
4909 Don't call semantic-mode-line-update any more.
4910
4911 2010-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
4912
4913 Use define-minor-mode in CEDET where applicable.
4914
4915 * cedet/srecode/mode.el (srecode-minor-mode,global-srecode-minor-mode):
4916 Use define-minor-mode.
4917
4918 * cedet/semantic/util-modes.el (semantic-add-minor-mode):
4919 Remove unused arg `keymap' and code redundant with define-minor-mode.
4920 (semantic-toggle-minor-mode-globally): Only handle arg -1 and 1.
4921 (semantic-stickyfunc-mode, global-semantic-show-unmatched-syntax-mode)
4922 (semantic-highlight-func-mode, global-semantic-show-parser-state-mode)
4923 (global-semantic-highlight-edits-mode, semantic-highlight-edits-mode)
4924 (semantic-show-unmatched-syntax-mode, semantic-show-parser-state-mode)
4925 (global-semantic-stickyfunc-mode, global-semantic-highlight-func-mode):
4926 Use define-minor-mode.
4927 (semantic-stickyfunc-mode-setup, semantic-highlight-edits-mode-setup)
4928 (semantic-show-unmatched-syntax-mode-setup)
4929 (semantic-show-parser-state-mode-setup)
4930 (semantic-highlight-func-mode-setup): Inline into sole caller.
4931
4932 * cedet/semantic/mru-bookmark.el (global-semantic-mru-bookmark-mode)
4933 (semantic-mru-bookmark-mode): Use define-minor-mode.
4934 (semantic-mru-bookmark-mode-setup): Inline into sole caller.
4935
4936 * cedet/semantic/idle.el (define-semantic-idle-service):
4937 Use define-minor-mode and inline setup function into its sole caller.
4938 (semantic-idle-scheduler-mode-setup)
4939 (semantic-idle-summary-mode-setup): Inline into sole caller.
4940 (global-semantic-idle-scheduler-mode, semantic-idle-scheduler-mode):
4941 Use define-minor-mode.
4942
4943 * cedet/semantic/decorate/mode.el (global-semantic-decoration-mode)
4944 (semantic-decoration-mode): Use define-minor-mode.
4945 (semantic-decoration-mode-setup): Inline into sole caller.
4946
4947 * cedet/ede/dired.el (ede-dired-minor-mode): Initialize in declaration.
4948 (ede-dired-minor-mode): Use define-minor-mode and derived-mode-p.
4949 (ede-dired-add-to-target): Use dolist.
4950
4951 2010-05-01 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
4952 Michael Albinus <michael.albinus@gmx.de>
4953
4954 Implement compression for inline methods.
4955
4956 * net/tramp.el (tramp-inline-compress-start-size): New defcustom.
4957 (tramp-copy-size-limit): Allow also nil.
4958 (tramp-inline-compress-commands): New defconst.
4959 (tramp-find-inline-compress, tramp-get-inline-compress)
4960 (tramp-get-inline-coding): New defuns.
4961 (tramp-get-remote-coding, tramp-get-local-coding): Remove,
4962 replaced by `tramp-get-inline-coding'.
4963 (tramp-handle-file-local-copy, tramp-handle-write-region)
4964 (tramp-method-out-of-band-p): Use `tramp-get-inline-coding'.
4965
4966 2010-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
4967
4968 * bindings.el (mode-line-abbrev-mode, mode-line-auto-fill-mode):
4969 Remove unused functions.
4970
4971 * emacs-lisp/lisp-mode.el (lisp-mode): Use define-derived-mode.
4972 Set find-tag-default-function as a variable rather than a property.
4973
4974 * minibuffer.el (tags-completion-at-point-function): Move to etags.el.
4975 * progmodes/etags.el (tags-completion-at-point-function):
4976 Remove left over interactive spec. Add autoloading stub.
4977 (complete-tag): Use tags-completion-at-point-function.
4978
4979 2010-04-30 Chong Yidong <cyd@stupidchicken.com>
4980
4981 * minibuffer.el (tags-completion-at-point-function): Fix return value.
4982
4983 2010-04-29 Chong Yidong <cyd@stupidchicken.com>
4984
4985 * ido.el (ido-init-completion-maps): Remove C-v binding.
4986 (ido-minibuffer-setup): Don't set cua-inhibit-cua-keys (Bug#5765).
4987
4988 2010-04-29 Chong Yidong <cyd@stupidchicken.com>
4989
4990 * minibuffer.el (tags-completion-at-point-function): New function.
4991 (completion-at-point-functions): Use it.
4992
4993 * cedet/semantic.el (semantic-completion-at-point-function):
4994 New function.
4995 (semantic-mode): Use semantic-completion-at-point-function for
4996 completion-at-point-functions instead.
4997
4998 * progmodes/etags.el (complete-tag): Revert last change.
4999
5000 2010-04-29 Alan Mackenzie <acm@muc.de>
5001
5002 * progmodes/cc-mode.el (c-extend-region-for-CPP): Fix an
5003 off-by-one error (in end of macro position).
5004
5005 2010-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
5006
5007 * net/browse-url.el (browse-url-firefox-program): Use iceweasel if
5008 firefox is absent. Don't autoload.
5009 (browse-url-galeon-program): Don't autoload.
5010
5011 2010-04-28 Chong Yidong <cyd@stupidchicken.com>
5012
5013 * bindings.el (complete-symbol): Move into minibuffer.el.
5014
5015 * minibuffer.el (complete-tag): Move from etags.el. If tags
5016 completion cannot be performed, return nil instead of signalling
5017 an error.
5018 (completion-at-point): Make it an alias for complete-symbol.
5019 (complete-symbol): Move from bindings.el, and replace with the
5020 body of completion-at-point.
5021
5022 * progmodes/etags.el (complete-tag): Move to minibuffer.el.
5023
5024 * cedet/semantic.el (semantic-mode): When enabled, add
5025 semantic-ia-complete-symbol to completion-at-point-functions.
5026
5027 * cedet/semantic/ia.el (semantic-ia-complete-symbol): Return nil
5028 if Semantic is not active.
5029
5030 2010-04-28 Michael Albinus <michael.albinus@gmx.de>
5031
5032 * net/tramp.el (tramp-remote-selinux-p): New defun.
5033 (tramp-handle-file-selinux-context)
5034 (tramp-handle-set-file-selinux-context): Use it.
5035
5036 2010-04-28 Sam Steingold <sds@gnu.org>
5037
5038 * progmodes/bug-reference.el (bug-reference-url-format): Mark as
5039 `safe-local-variable' if the value is a string or a symbol with
5040 the property `bug-reference-url-format'.
5041
5042 2010-04-28 Chong Yidong <cyd@stupidchicken.com>
5043
5044 * progmodes/bug-reference.el (bug-reference-url-format):
5045 Revert 2010-04-27 change due to security risk.
5046
5047 2010-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
5048
5049 Make it possible to locally disable a globally enabled mode.
5050 * simple.el (fundamental-mode): Run fundamental-mode-hook.
5051 * emacs-lisp/derived.el (define-derived-mode): Use fundamental-mode
5052 rather than kill-all-local-variables so it runs fundamental-mode-hook.
5053 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
5054 Use fundamental-mode-hook to run MODE-enable-in-buffers earlier, so
5055 that subsequent hooks get a chance to disable it.
5056
5057 2010-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
5058
5059 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
5060 Avoid re-enabling a minor mode after the user turned the minor mode
5061 off if MODE-enable-in-buffers is run twice (typically once from
5062 fundamental-mode's after-change-major-mode-hook and a second time from
5063 run-mode-hook's own after-change-major-mode-hook).
5064
5065 * emacs-lisp/lisp.el (lisp-complete-symbol): Fail gracefully.
5066
5067 2010-04-27 Sam Steingold <sds@gnu.org>
5068
5069 * progmodes/bug-reference.el (bug-reference-url-format): Mark as
5070 `safe-local-variable' if the value is a string or a function, as
5071 documented and implemented on 2010-04-02.
5072
5073 2010-04-27 Juanma Barranquero <lekktu@gmail.com>
5074
5075 * ido.el (ido-buffer-internal): Bind `ido-use-virtual-buffers' to nil
5076 when method is 'kill.
5077
5078 2010-04-27 Agustín Martín <agustin.martin@hispalinux.es>
5079
5080 * textmodes/ispell.el (ispell-init-process): Fix personal dictionary
5081 condition in default directory check.
5082 (ispell-init-process,ispell-kill-ispell,kill-buffer-hook):
5083 Kill ispell process when killing its associated buffer.
5084
5085 2010-04-27 Jan Djärv <jan.h.d@swipnet.se>
5086
5087 * desktop.el (desktop-kill): ask-if-new: Ask if desktop file exists,
5088 but we aren't using it.
5089
5090 2010-04-25 Jan Djärv <jan.h.d@swipnet.se>
5091
5092 * tool-bar.el (tool-bar-local-item-from-menu): Revert unintended
5093 checkin in 2010-04-23T16:26:11Z!monnier@iro.umontreal.ca.
5094
5095 2010-04-24 Glenn Morris <rgm@gnu.org>
5096
5097 * emacs-lisp/authors.el (authors-obsolete-files-regexps):
5098 Ignore VCS-ignore files, and deleted nextstep preferences files.
5099 (authors-ignored-files): Ignore deleted cedet test files, and "*.el".
5100 (authors-ambiguous-files): New list.
5101 (authors-valid-file-names): Add some deleted files.
5102 (authors-renamed-files-alist): Add font-setting.el, edt-user.doc.
5103 (authors-disambiguate-file-name): New function. (Bug#5501)
5104 (authors-canonical-file-name): Doc fix.
5105 Don't warn about obsolete files.
5106 (authors-canonical-file-name, authors-scan-el):
5107 Use authors-disambiguate-file-name.
5108
5109 * hfy-cmap.el (htmlfontify-load-rgb-file, hfy-fallback-colour-values):
5110 Add autoload cookies.
5111 (htmlfontify-unload-rgb-file, hfy-fallback-colour-values): Add docs.
5112 (generated-autoload-file): Set file-local value to "htmlfontify.el".
5113 * htmlfontify.el (caddr, cadddr): Remove fallback definitions.
5114 They have definitions / compiler macros in cl.el.
5115 (htmlfontify-load-rgb-file, hfy-fallback-colour-values):
5116 Replace manual autoloads with generated ones.
5117 (htmlfontify-unload-rgb-file): Remove autoload.
5118 * Makefile.in (autoloads): Ensure htmlfontify.el is writable.
5119
5120 2010-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
5121
5122 * emacs-lisp/bytecomp.el (byte-compile-set-default): New function.
5123 (byte-compile-setq-default): Optimize for the
5124 single-var case and don't call byte-compile-form in this case to avoid
5125 inf-loop with byte-compile-set-default.
5126
5127 * progmodes/compile.el (compilation-start): Abbreviate default directory.
5128
5129 2010-04-23 Michael Albinus <michael.albinus@gmx.de>
5130
5131 Implement SELINUX backends.
5132
5133 * net/tramp.el (tramp-file-name-handler-alist):
5134 Add `file-selinux-context' and `set-file-selinux-context'.
5135 (tramp-handle-file-selinux-context)
5136 (tramp-handle-set-file-selinux-context): New defuns.
5137 (tramp-handle-copy-file, tramp-do-copy-or-rename-file):
5138 Handle PRESERVE-SELINUX-CONTEXT.
5139
5140 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
5141 Add `file-selinux-context' and `set-file-selinux-context'.
5142 (tramp-gvfs-handle-file-selinux-context)
5143 (tramp-gvfs-handle-set-file-selinux-context): New defuns.
5144 (tramp-gvfs-handle-copy-file): Handle PRESERVE-SELINUX-CONTEXT.
5145
5146 * net/ange-ftp.el (ange-ftp-copy-file):
5147 * net/tramp-fish.el (tramp-fish-handle-copy-file):
5148 * net/tramp-imap.el (tramp-imap-handle-copy-file):
5149 * net/tramp-smb.el (tramp-smb-handle-copy-file):
5150 Add PRESERVE-SELINUX-CONTEXT.
5151
5152 2010-04-22 Michael Albinus <michael.albinus@gmx.de>
5153
5154 Synchronize with Tramp repository.
5155
5156 * net/tramp.el (with-connection-property, tramp-completion-mode-p)
5157 (tramp-action-process-alive, tramp-action-out-of-band)
5158 (tramp-check-for-regexp, tramp-file-name-p, tramp-equal-remote)
5159 (tramp-exists-file-name-handler): Fix docstring.
5160 (with-progress-reporter): New defmacro.
5161 (tramp-do-copy-or-rename-file, tramp-handle-dired-compress-file)
5162 (tramp-maybe-open-connection): Use it.
5163
5164 2010-04-22 Noah Lavine <noah549@gmail.com> (tiny change)
5165
5166 Detect ssh 'ControlMaster' argument automatically in some cases.
5167
5168 * net/tramp.el (tramp-detect-ssh-controlmaster): New defun.
5169 (tramp-default-method): Use it.
5170
5171 2010-04-22 Michael Albinus <michael.albinus@gmx.de>
5172
5173 * net/tramp.el (tramp-handle-copy-file): Add new optional
5174 parameter `preserve-selinux-context'.
5175 (tramp-file-name-for-operation): Add `set-file-selinux-context'.
5176
5177 2010-04-22 Michael Albinus <michael.albinus@gmx.de>
5178
5179 * net/tramp.el (tramp-completion-handle-file-name-all-completions):
5180 Ensure, that non remote files are still checked. Oops.
5181
5182 2010-04-21 Michael Albinus <michael.albinus@gmx.de>
5183
5184 Fix Bug#5840.
5185
5186 * icomplete.el (icomplete-completions): Use `non-essential'.
5187
5188 * net/tramp.el (tramp-connectable-p): New defun.
5189 (tramp-handle-expand-file-name)
5190 (tramp-completion-handle-file-name-all-completions)
5191 (tramp-completion-handle-file-name-completion): Use it.
5192
5193 2010-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
5194
5195 * emacs-lisp/lisp.el (lisp-completion-at-point): Try and handle errors.
5196
5197 2010-04-21 Jan Djärv <jan.h.d@swipnet.se>
5198
5199 * vc-dir.el (vc-dir-tool-bar-map): Add :label on some tool bar items.
5200
5201 * tool-bar.el (tool-bar-setup): Add :label on some tool bar items.
5202
5203 * loadup.el: Load dynamic-setting.el if feature dynamic-setting
5204 is present.
5205
5206 * info.el (info-tool-bar-map): Add labels.
5207
5208 * cus-start.el (all): Add tool-bar-style and tool-bar-max-label-size.
5209
5210 * cus-edit.el (custom-commands): Add labels for tool bar.
5211 (custom-buffer-create-internal, Custom-mode): Adjust for
5212 labels in custom-commands.
5213
5214 * dynamic-setting.el: Renamed from font-setting.el.
5215
5216 2010-04-21 John Wiegley <jwiegley@gmail.com>
5217
5218 * ido.el (ido-init-completion-maps): For ido-switch-buffer, C-o
5219 toggles the use of virtual buffers.
5220 (ido-buffer-internal): Guard `ido-use-virtual-buffers' global value.
5221 (ido-toggle-virtual-buffers): New function.
5222
5223 2010-04-21 Juanma Barranquero <lekktu@gmail.com>
5224
5225 Use `define-derived-mode'; fix window selection; doc fixes.
5226 * play/tetris.el (tetris, tetris-update-speed-function)
5227 (tetris-tty-colors, tetris-x-colors, tetris-move-bottom)
5228 (tetris-move-left, tetris-move-right, tetris-rotate-prev)
5229 (tetris-rotate-next, tetris-end-game, tetris-start-game)
5230 (tetris-pause-game): Fix typos in docstrings.
5231 (tetris-mode-map, tetris-null-map):
5232 Move initialization into declaration.
5233 (tetris-mode): Define with `define-derived-mode';
5234 set show-trailing-whitespace to nil.
5235 (tetris): Prefer window already displaying the "*Tetris*" buffer.
5236
5237 2010-04-21 Karel Klíč <kklic@redhat.com>
5238
5239 * files.el (backup-buffer): Handle SELinux context, and return it
5240 if a backup was made by renaming.
5241 (backup-buffer-copy): Set SELinux context to the target file.
5242 (basic-save-buffer): Set SELinux context of the newly written file.
5243 (basic-save-buffer-1): Now it also returns any SELinux context.
5244 (basic-save-buffer-2): Set SELinux context of the newly created file,
5245 and return it.
5246 * net/tramp.el (tramp-file-name-for-operation):
5247 Add file-selinux-context.
5248
5249 2010-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
5250
5251 Make the log-edit comments use RFC822 format throughout.
5252
5253 * vc.el (vc-checkin, vc-modify-change-comment):
5254 Adjust to new vc-start/finish-logentry.
5255 (vc-find-conflicted-file): New command.
5256 (vc-transfer-file): Adjust to new vc-checkin.
5257 (vc-next-action): Improve scoping.
5258
5259 * vc-hg.el (vc-hg-log-edit-mode): Remove.
5260 (vc-hg-checkin): Remove extra arg. Use log-edit-extract-headers.
5261
5262 * vc-git.el (vc-git-log-edit-mode): Remove.
5263 (vc-git-checkin): Remove extra arg. Use log-edit-extract-headers.
5264 (vc-git-commits-coding-system): Rename from git-commits-coding-system.
5265
5266 * vc-dispatcher.el (vc-log-edit): Shorten names for log-edit-show-files.
5267 (vc-start-logentry): Remove argument `extra'.
5268 (vc-finish-logentry): Remove extra args.
5269
5270 * vc-bzr.el (vc-bzr-log-edit-mode): Remove.
5271 (vc-bzr-checkin): Remove extra arg. Use log-edit-extract-headers.
5272 (vc-bzr-conflicted-files): New function.
5273
5274 * log-edit.el (log-edit-extra-flags)
5275 (log-edit-before-checkin-process): Remove.
5276 (log-edit-summary, log-edit-header, log-edit-unknown-header): New faces.
5277 (log-edit-headers-alist): New var.
5278 (log-edit-header-contents-regexp): New const.
5279 (log-edit-match-to-eoh): New function.
5280 (log-edit-font-lock-keywords): Use them.
5281 (log-edit): Insert a "Summary:" header as default.
5282 (log-edit-mode): Mark font-lock rules as case-insensitive.
5283 (log-edit-done): Cleanup headers.
5284 (log-view-process-buffer): Remove.
5285 (log-edit-extract-headers): New function to replace it.
5286
5287 2010-04-20 Juanma Barranquero <lekktu@gmail.com>
5288
5289 * subr.el (default-direction-reversed): Remove obsolescence info.
5290
5291 2010-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
5292
5293 * vc-dispatcher.el (vc-finish-logentry): Don't mess so badly with the
5294 windows/frames.
5295
5296 * emacs-lisp/lisp.el (lisp-completion-at-point): Complete around point.
5297 I.e. include text after point in the completion region.
5298 Also, return nil when we're not after/in a symbol.
5299
5300 * international/mule-cmds.el (view-hello-file): Don't fiddle with the
5301 default enable-multibyte-characters.
5302
5303 2010-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
5304
5305 * international/mule.el: Help the user choose a valid coding-system.
5306 (read-buffer-file-coding-system): New function.
5307 (set-buffer-file-coding-system): Use it. Prompt the user if the
5308 coding-system cannot encode all the chars.
5309
5310 * vc-bzr.el: Use standard *vc* and *vc-diff* buffers.
5311 (vc-bzr-shelve-show, vc-bzr-shelve-apply)
5312 (vc-bzr-shelve-apply-and-keep, vc-bzr-shelve-snapshot):
5313 Don't use *vc-bzr-shelve*.
5314
5315 2010-04-19 Chong Yidong <cyd@stupidchicken.com>
5316
5317 * cedet/ede/pmake.el (ede-proj-makefile-insert-variables):
5318 Don't destroy list before using it.
5319
5320 2010-04-19 Dan Nicolaescu <dann@ics.uci.edu>
5321
5322 Fix the version number for added files.
5323 * vc-hg.el (vc-hg-working-revision): Check if the file is
5324 registered after hg parent fails (Bug#5961).
5325
5326 2010-04-19 Glenn Morris <rgm@gnu.org>
5327
5328 * htmlfontify.el (htmlfontify-buffer)
5329 (htmlfontify-copy-and-link-dir): Autoload entry points.
5330
5331 2010-04-19 Magnus Henoch <magnus.henoch@gmail.com>
5332
5333 * vc-hg.el (vc-hg-annotate-extract-revision-at-line): Expand file
5334 name relative to the project root (Bug#5960).
5335
5336 2010-04-19 Glenn Morris <rgm@gnu.org>
5337
5338 * vc-git.el (vc-git-print-log): Doc fix.
5339
5340 2010-04-19 Óscar Fuentes <ofv@wanadoo.es>
5341
5342 * ido.el (ido-file-internal): Fix 2009-12-02 change.
5343
5344 2010-04-19 Christoph <cschol2112@googlemail.com> (tiny change)
5345
5346 * progmodes/grep.el (grep-compute-defaults): Fix handling of host
5347 default settings (Bug#5928).
5348
5349 2010-04-19 Glenn Morris <rgm@gnu.org>
5350
5351 * progmodes/fortran.el (fortran-match-and-skip-declaration):
5352 New function.
5353 (fortran-font-lock-keywords-3): Use it. (Bug#1385)
5354
5355 2010-04-19 Kenichi Handa <handa@m17n.org>
5356
5357 * language/indian.el (malayalam-composable-pattern): Fix previous
5358 change (add U+0D4D "SIGN VIRAMA").
5359 (oriya-composable-pattern): Add U+0B30 and fix typo in the regexp.
5360 (tamil-composable-pattern): Fix typo in the regexp.
5361 (telugu-composable-pattern): Fix U+0C4D and typo in the regexp.
5362 (kannada-composable-pattern): Fix U+0CB0 and typo in the regexp.
5363 (malayalam-composable-pattern): Fix U+0D4D and typo in the regexp.
5364
5365 2010-04-19 Chong Yidong <cyd@stupidchicken.com>
5366
5367 * textmodes/tex-mode.el (latex-mode): Revert 2008-03-03 change to
5368 paragraph-separate (Bug#5821).
5369
5370 2010-04-19 Juri Linkov <juri@jurta.org>
5371
5372 Put breadcrumbs on overlay instead of inserting to buffer (bug#5809).
5373
5374 * info.el (Info-find-node-2): Comment out code that skips
5375 breadcrumbs line.
5376 (Info-mouse-follow-link): New command.
5377 (Info-link-keymap): New keymap.
5378 (Info-breadcrumbs): Rename from `Info-insert-breadcrumbs'.
5379 Return a string with links instead of inserting breadcrumbs
5380 to the Info buffer.
5381 (Info-fontify-node): Comment out code that inserts breadcrumbs.
5382 Instead of putting the `invisible' text property over the Info
5383 header, make an overlay over the Info header with the `invisible'
5384 property and `after-string' set to the string returned by
5385 `Info-breadcrumbs'.
5386
5387 2010-04-19 Chong Yidong <cyd@stupidchicken.com>
5388
5389 * help.el (help-window-setup-finish): Doc fix (Bug#5830).
5390 Reported by monkey@sandpframing.com.
5391
5392 2010-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
5393
5394 * tmm.el (tmm-prompt): Remove obsolete call to x-popup-menu.
5395 (tmm-get-keymap): Add key-binding shortcuts now that they're not
5396 available in the "keyseq cache" any more.
5397
5398 * custom.el (defcustom): Add edebug spec.
5399
5400 2010-04-18 Juri Linkov <juri@jurta.org>
5401
5402 Test for special mode-class in view-buffer instead of view-file (bug#5513).
5403
5404 * view.el (view-file, view-buffer): Move test for special mode-class
5405 from view-file to view-buffer.
5406
5407 * tar-mode.el (tar-extract): Turn if's into one cond
5408 like in arc-mode.el.
5409
5410 2010-04-18 Juri Linkov <juri@jurta.org>
5411
5412 Add 7z archive format support (bug#5475).
5413
5414 * arc-mode.el (archive-zip-extract): Try to find 7z executable.
5415 (archive-7z-extract): New defcustom.
5416 (archive-find-type): Add magic string for 7z.
5417 (archive-extract-by-stdout): Add new optional arg `stderr-file'.
5418 If `stderr-file' is non-nil, use `(t stderr-file)' for the
5419 `buffer' arg of `call-process'.
5420 (archive-zip-extract): Check `archive-zip-extract' for "7z" and
5421 call the function `archive-7z-extract' with the variable
5422 `archive-7z-extract' let-bound to `archive-zip-extract'.
5423 (archive-7z-summarize, archive-7z-extract): New functions.
5424
5425 * international/mule.el (auto-coding-alist):
5426 * files.el (auto-mode-alist): Add 7z file extension.
5427
5428 2010-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
5429
5430 * loadup.el: Setup hash-cons for pure data.
5431
5432 Fix duplicate entries in cedet's loaddefs.el files.
5433 * emacs-lisp/autoload.el (autoload-file-load-name): Be more clever.
5434 Should make most file-local generated-autoload-file unnecessary.
5435 (print-readably): Silence warnings.
5436 (autoload-find-destination): Take load-name as an arg to make sure
5437 it's the same as the one that will be in the file.
5438 (autoload-generate-file-autoloads): Adjust to above changes.
5439 Try to make the dataflow a bit simpler.
5440
5441 * cvs-status.el (cvs-refontify): Remove unused.
5442
5443 2010-04-18 Jay Belanger <jay.p.belanger@gmail.com>
5444
5445 * calc.el (calc-mode-map): Bind "O" to `calc-missing-key'.
5446
5447 * calc-bin.el (calc-radix): Have the "O" option turn on
5448 twos-complement mode.
5449
5450 2010-04-17 Jay Belanger <jay.p.belanger@gmail.com>
5451
5452 * calc-ext.el (calc-init-extensions): Add keybinding for 'calc-option'.
5453 Add `calc-option-prefix-help' to calc-help autoloads.
5454 (calc-inverse): Add "Option" to message, as appropriate.
5455 (calc-hyperbolic): Add "Option" to message, as appropriate.
5456 (calc-option, calc-is-option): New functions.
5457
5458 * calc-help.el (calc-full-help): Add `calc-option-help'.
5459 (calc-option-prefix-help): New function.
5460
5461 * calc-misc.el (calc-help): Add "Option" entry.
5462
5463 * calc.el (calc-local-var-list): Add `calc-option-flag'.
5464 (calc-option-flag): New variable.
5465 (calc-do): Set `calc-option-flag to nil.
5466 (calc-set-mode-line): Add "Opt " as appropriate.
5467
5468 2010-04-16 Juri Linkov <juri@jurta.org>
5469
5470 Move scrolling commands from simple.el to window.el
5471 because their primitives are implemented in window.c.
5472
5473 * simple.el (scroll-error-top-bottom)
5474 (scroll-up-command, scroll-down-command, scroll-up-line)
5475 (scroll-down-line, scroll-other-window-down)
5476 (beginning-of-buffer-other-window, end-of-buffer-other-window):
5477 * window.el (scroll-error-top-bottom)
5478 (scroll-up-command, scroll-down-command, scroll-up-line)
5479 (scroll-down-line, scroll-other-window-down)
5480 (beginning-of-buffer-other-window, end-of-buffer-other-window):
5481 Move from simple.el to window.el because their primitives are
5482 implemented in window.c.
5483
5484 2010-04-16 Juri Linkov <juri@jurta.org>
5485
5486 * isearch.el (isearch-lookup-scroll-key): Check both
5487 `isearch-scroll' and `scroll-command' properties.
5488 (scroll-up, scroll-down): Remove `isearch-scroll' property.
5489
5490 * mwheel.el (mwheel-scroll): Remove `isearch-scroll' property.
5491
5492 * simple.el (scroll-up-command, scroll-down-command)
5493 (scroll-up-line, scroll-down-line): Remove `isearch-scroll' property.
5494
5495 2010-04-15 Juri Linkov <juri@jurta.org>
5496
5497 * simple.el (scroll-up-command, scroll-down-command)
5498 (scroll-up-line, scroll-down-line): Put `scroll-command'
5499 property on the these symbols. Remove them from
5500 `scroll-preserve-screen-position-commands'.
5501
5502 * mwheel.el (mwheel-scroll): Put `scroll-command' and
5503 `isearch-scroll' properties on the `mwheel-scroll' symbol.
5504 Remove it from `scroll-preserve-screen-position-commands'.
5505
5506 * isearch.el (isearch-allow-scroll): Doc fix.
5507
5508 2010-04-15 Michael Albinus <michael.albinus@gmx.de>
5509
5510 * net/tramp.el (tramp-error-with-buffer): Don't show the
5511 connection buffer when we are in completion mode.
5512 (tramp-file-name-handler): Catch the error for some operations
5513 when we are in completion mode. This gives the user the chance to
5514 correct the file name in the minibuffer.
5515
5516 2010-04-15 Glenn Morris <rgm@gnu.org>
5517
5518 * progmodes/verilog-mode.el (verilog-forward-sexp): Avoid free variable.
5519
5520 2010-04-15 Juanma Barranquero <lekktu@gmail.com>
5521
5522 Simplify by using `define-derived-mode'.
5523 * info.el (Info-mode):
5524 * calendar/todo-mode.el (todo-mode):
5525 * play/gomoku.el (gomoku-mode): Define with `define-derived-mode'.
5526 (gomoku-mode-map): Move initialization into declaration.
5527
5528 2010-04-14 Michael Albinus <michael.albinus@gmx.de>
5529
5530 Fix Bug#5840.
5531 * ido.el (ido-file-name-all-completions-1):
5532 * minibuffer.el (minibuffer-completion-help):
5533 * net/tramp.el (tramp-completion-mode-p): Use `non-essential'.
5534
5535 2010-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
5536
5537 * simple.el (non-essential): New var.
5538
5539 Add a new field `location' to bookmarks for non-file bookmarks.
5540 * bookmark.el (bookmark-location): Use the new field, if present.
5541 (bookmark-insert-location): Undo last change, not needed any more.
5542 * man.el (Man-bookmark-make-record):
5543 * woman.el (woman-bookmark-make-record): Add `location' field.
5544
5545 2010-04-14 Juri Linkov <juri@jurta.org>
5546
5547 * simple.el (scroll-error-top-bottom): New defcustom.
5548 (scroll-up-command, scroll-down-command): Use it. Doc fix.
5549
5550 * emulation/pc-select.el (pc-select-override-scroll-error):
5551 Obsolete in favor of `scroll-error-top-bottom'.
5552
5553 2010-04-14 Juri Linkov <juri@jurta.org>
5554
5555 * tutorial.el (tutorial--default-keys): Rebind `C-v' to
5556 `scroll-up-command' and `M-v' to `scroll-down-command'.
5557
5558 * emulation/cua-rect.el (cua--init-rectangles):
5559 * forms.el (forms--change-commands):
5560 * image-mode.el (image-mode-map):
5561 Remap scroll-down-command and scroll-up-command
5562 in addition to scroll-down and scroll-up.
5563
5564 2010-04-14 Juri Linkov <juri@jurta.org>
5565
5566 * mwheel.el (scroll-preserve-screen-position-commands):
5567 Add mwheel-scroll to this list of commands.
5568
5569 * simple.el (scroll-preserve-screen-position-commands):
5570 Add scroll-up-command, scroll-down-command, scroll-up-line,
5571 scroll-down-line to this list of commands.
5572
5573 2010-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
5574
5575 * obsolete/complete.el: Move from lisp/complete.el.
5576
5577 * pcomplete.el (pcomplete-here*): Fix mistaken change (bug#5935).
5578
5579 * emacs-lisp/easy-mmode.el (define-minor-mode): Passing a nil argument
5580 to the minor mode function now turns the mode ON unconditionally.
5581
5582 2010-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
5583
5584 * vc-dir.el (vc-dir-kill-line): New command.
5585 (vc-dir-mode-map): Bind it to C-k.
5586
5587 * bookmark.el (bookmark-insert-location): Handle a nil filename.
5588
5589 * woman.el: Add bookmark declarations to silence the compiler.
5590 (bookmark-prop-get): Use `man-args' rather than `filename' as a first
5591 step to compatibility between man and woman bookmarks.
5592 Adjust for Man-default-bookmark-title renaming.
5593 (woman-bookmark-jump): Adjust accordingly. Don't forget to autoload.
5594
5595 * man.el: Add bookmark declarations to silence the compiler.
5596 (Man-name-local-regexp): Make it match NAME as well.
5597 (Man-getpage-in-background): Return the buffer.
5598 (Man-notify-when-ready): Use `case'.
5599 (man-set-default-bookmark-title): Rename to Man-default-bookmark-title.
5600 Don't hardcode "NAME". Simplify.
5601 (Man-bookmark-make-record): Use Man-arguments rather than buffer-name.
5602 Rename from Man-bookmark-make-record.
5603 (Man-bookmark-jump): Rename from man-bookmark-jump. Simplify now that
5604 we have the actual man-args. Use Man-getpage-in-background rather
5605 than `man' since the arg is already processed. Let bookmark.el do the
5606 window handling. Only wait for the relevant process.
5607 Don't forget to autoload.
5608
5609 * bookmark.el (bookmark-default-file): Use locate-user-emacs-file.
5610
5611 2010-04-12 Thierry Volpiatto <thierry.volpiatto@gmail.com>
5612
5613 * woman.el (woman-bookmark-make-record, woman-bookmark-jump):
5614 New functions.
5615 (woman-mode): Setup bookmark support.
5616
5617 * man.el (man-set-default-bookmark-title, man-bookmark-make-record)
5618 (man-bookmark-jump): New functions.
5619 (Man-mode): Setup bookmark support.
5620
5621 2010-04-10 Jari Aalto <jari.aalto@cante.net>
5622
5623 * comint.el (comint-password-prompt-regexp): Use regexp-opt, and
5624 recognize ssh-keygen prompt (Bug#2817).
5625
5626 2010-04-10 Michael Albinus <michael.albinus@gmx.de>
5627
5628 * net/tramp.el (tramp-do-copy-or-rename-file): Add progress reporter.
5629
5630 2010-04-10 Michael Albinus <michael.albinus@gmx.de>
5631
5632 Synchronize with Tramp repository.
5633
5634 * net/tramp.el (tramp-completion-function-alist)
5635 (tramp-file-name-regexp, tramp-chunksize)
5636 (tramp-local-coding-commands, tramp-remote-coding-commands):
5637 Fix docstring.
5638 (tramp-remote-process-environment): Use `format' instead of `concat'.
5639 (tramp-handle-directory-files-and-attributes)
5640 (tramp-get-remote-path): Use `copy-tree'.
5641 (tramp-handle-file-name-all-completions): Backward/ XEmacs
5642 compatibility: Use `completion-ignore-case' if
5643 `read-file-name-completion-ignore-case' does not exist.
5644 (tramp-do-copy-or-rename-file-directly): Do not use
5645 `tramp-handle-file-remote-p'.
5646 (tramp-do-copy-or-rename-file-out-of-band):
5647 Use `tramp-compat-delete-directory'.
5648 (tramp-do-copy-or-rename-file-out-of-band)
5649 (tramp-compute-multi-hops, tramp-maybe-open-connection):
5650 Use `format-spec-make'.
5651 (tramp-find-foreign-file-name-handler)
5652 (tramp-advice-make-auto-save-file-name)
5653 (tramp-set-auto-save-file-modes): Remove superfluous check for
5654 `stringp'. This is done inside `tramp-tramp-file-p'.
5655 (tramp-debug-outline-regexp): New defconst.
5656 (tramp-get-debug-buffer): Use it.
5657 (tramp-check-for-regexp): Use (forward-line 1).
5658 (tramp-set-auto-save-file-modes): Adapt version check.
5659
5660 * net/tramp-compat.el (tramp-advice-file-expand-wildcards):
5661 Wrap call of `featurep' for 2nd argument.
5662 (tramp-compat-make-temp-file): Simplify fallback implementation.
5663 (tramp-compat-copy-tree): Remove function.
5664 (tramp-compat-delete-directory): Provide implementation for older
5665 Emacsen.
5666
5667 * net/tramp-fish.el (tramp-fish-handle-directory-files-and-attributes):
5668 Do not use `tramp-fish-handle-file-attributes.
5669
5670 * net/trampver.el: Update release number.
5671
5672 2010-04-10 Glenn Morris <rgm@gnu.org>
5673
5674 * progmodes/compile.el (compilation-save-buffers-predicate):
5675 Add missing :version tag.
5676
5677 2010-04-09 Sam Steingold <sds@gnu.org>
5678
5679 * progmodes/compile.el (compilation-save-buffers-predicate):
5680 Remove the "autoload" cookie.
5681
5682 * progmodes/bug-reference.el (turn-on-bug-reference-mode)
5683 (turn-on-bug-reference-prog-mode): Remove, `bug-reference-mode'
5684 and `bug-reference-prog-mode' can be used in hooks directly.
5685
5686 2010-04-09 Dan Nicolaescu <dann@ics.uci.edu>
5687
5688 Add --author support to git commit.
5689 * vc-git.el (vc-git-checkin): Pass extra-args to the commit command.
5690 (vc-git-log-edit-mode): New minor mode.
5691 (log-edit-mode, log-edit-extra-flags, log-edit-mode):
5692 New declarations.
5693
5694 2010-04-09 Eric Raymond <esr@snark.thyrsus.com>
5695
5696 * vc-hooks.el, vc-git.el: Improve documentation comments.
5697
5698 2010-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
5699
5700 Fix some of the problems in defsubst* (bug#5728).
5701 * emacs-lisp/cl-macs.el (defsubst*): Don't substitute non-trivial args.
5702 (cl-defsubst-expand): Do the substitutions simultaneously (bug#5728).
5703
5704 2010-04-07 Sam Steingold <sds@gnu.org>
5705
5706 * progmodes/compile.el (compilation-save-buffers-predicate):
5707 New custom variable.
5708 (compile, recompile): Pass it to `save-some-buffers'.
5709
5710 2010-04-07 Jan Djärv <jan.h.d@swipnet.se>
5711
5712 * wid-edit.el (widget-choose): Move cursor to the second line of
5713 the buffer (Bug#5695).
5714
5715 2010-04-07 Dan Nicolaescu <dann@ics.uci.edu>
5716
5717 Add new VC methods: vc-log-incoming and vc-log-outgoing.
5718 * vc.el (vc-print-log-setup-buttons): New function split out from
5719 vc-print-log-internal.
5720 (vc-log-internal-common): New function, a parametrized version of
5721 vc-print-log-internal.
5722 (vc-print-log-internal): Just call vc-log-internal-common with the
5723 right arguments.
5724 (vc-incoming-outgoing-internal):
5725 (vc-log-incoming, vc-log-outgoing): New functions.
5726 (vc-log-view-type): New permanent local variable.
5727
5728 * vc-hooks.el (vc-menu-map): Bind vc-log-incoming and vc-log-outgoing.
5729
5730 * vc-bzr.el (vc-bzr-log-view-mode): Use vc-log-view-type instead
5731 of the dynamic bound vc-short-log.
5732 (vc-bzr-log-incoming, vc-bzr-log-outgoing): New functions.
5733
5734 * vc-git.el (vc-git-log-outgoing): New function.
5735 (vc-git-log-view-mode): Use vc-log-view-type instead
5736 of the dynamic bound vc-short-log.
5737
5738 * vc-hg.el (vc-hg-log-view-mode): Use vc-log-view-type instead
5739 of the dynamic bound vc-short-log. Highlight the tag.
5740 (vc-hg-log-incoming, vc-hg-log-outgoing): New functions.
5741 (vc-hg-outgoing, vc-hg-incoming, vc-hg-outgoing-mode):
5742 (vc-hg-incoming-mode): Remove.
5743 (vc-hg-extra-menu-map): Do not bind vc-hg-incoming and vc-hg-outgoing.
5744
5745 2010-04-07 Dan Nicolaescu <dann@ics.uci.edu>
5746
5747 Fix default-directory for vc-root-diff.
5748 * vc.el (vc-root-diff): Bind default-directory to the root
5749 directory for the diff command.
5750
5751 2010-04-07 Michael McNamara <mac@mail.brushroad.com>
5752
5753 * progmodes/verilog-mode.el (verilog-forward-sexp):
5754 (verilog-calc-1): Support "disable fork" and "fork wait" multi
5755 word keywords, suggested by Steve Pearlmutter.
5756 (verilog-pretty-declarations): Support lineup of declarations in
5757 port lists.
5758 (verilog-skip-backward-comments, verilog-skip-forward-comment-p):
5759 fix bug for /* / comments.
5760 (verilog-backward-syntactic-ws, verilog-forward-syntactic-ws):
5761 Speed up and simplfy as this is never called with a bound.
5762 (verilog-pretty-declarations): Enhance to line up declarations
5763 inside a parameter list, suggested by Alan Morgan.
5764 (verilog-pretty-expr): Tune assignment regular expression match
5765 string for corner cases; also use markers instead of character
5766 number as indent changes the later.
5767
5768 2010-04-07 Wilson Snyder <wsnyder@wsnyder.org>
5769
5770 * progmodes/verilog-mode.el (verilog-type-keywords): Fix pulldown
5771 as missing keyword.
5772 (verilog-read-sub-decls-line): Fix comments in AUTO_TEMPLATE
5773 causing truncation of AUTOWIRE signals. Reported by Bruce Tennant.
5774 (verilog-auto-inst, verilog-auto-inst-port): Add vl_mbits for
5775 AUTO_TEMPLATEs needing multiple array bits. Suggested by Bruce
5776 Tennant.
5777 (verilog-keywords):
5778 (verilog-1800-2005-keywords, verilog-1800-2009-keywords): Add IEEE
5779 1800-2009 keywords, including "global.".
5780
5781 2010-04-06 John Wiegley <jwiegley@gmail.com>
5782
5783 * ido.el (ido-add-virtual-buffers-to-list): Fix duplicated names
5784 appearing in buffer list (if a live buffer name matched a recentf
5785 file basename). Should use uniquify to offer a real solution.
5786
5787 2010-04-06 John Wiegley <jwiegley@gmail.com>
5788
5789 * ido.el (ido-use-virtual-buffers, ido-virtual): Move a ChangeLog
5790 comment to code, and add a :version tag.
5791 (ido-virtual-buffers): Move defvar to fix byte-compiler warning.
5792
5793 2010-04-06 Juanma Barranquero <lekktu@gmail.com>
5794
5795 Enable recentf-mode if using virtual buffers.
5796 * ido.el (recentf-list): Declare for byte-compiler.
5797 (ido-virtual-buffers): Move up to silence byte-compiler. Add docstring.
5798 (ido-make-buffer-list): Simplify.
5799 (ido-add-virtual-buffers-to-list): Simplify. Enable recentf-mode.
5800
5801 2010-04-05 Juri Linkov <juri@jurta.org>
5802
5803 Scrolling commands which scroll a line instead of full screen.
5804 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01452.html
5805
5806 * simple.el (scroll-up-line, scroll-down-line): New commands.
5807 Put property isearch-scroll=t on them.
5808
5809 * emulation/ws-mode.el (scroll-down-line, scroll-up-line):
5810 Remove commands.
5811
5812 2010-04-05 Juri Linkov <juri@jurta.org>
5813
5814 Scrolling commands which do not signal errors at top/bottom.
5815 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01452.html
5816
5817 * simple.el (scroll-up-command, scroll-down-command): New commands.
5818 Put property isearch-scroll=t on them.
5819
5820 * bindings.el (global-map): Rebind [prior] from `scroll-down' to
5821 `scroll-down-command' and [next] from `scroll-up' to
5822 `scroll-up-command'.
5823
5824 * emulation/cua-base.el: Put property CUA=move on
5825 `scroll-up-command' and `scroll-down-command'.
5826 (cua--init-keymaps): Remap `scroll-up-command' to `cua-scroll-up'
5827 and `scroll-down-command' to `cua-scroll-down'.
5828
5829 2010-04-05 Juanma Barranquero <lekktu@gmail.com>
5830
5831 * help.el (describe-mode): Return nil.
5832
5833 2010-04-04 John Wiegley <jwiegley@gmail.com>
5834
5835 * ido.el (ido-use-virtual-buffers): New variable to indicate
5836 whether "virtual buffer" support is enabled for IDO.
5837 (ido-virtual): Face used to indicate virtual buffers in the list.
5838 (ido-buffer-internal): If a buffer is chosen, and no such buffer
5839 exists, but a virtual buffer of that name does (which would be why
5840 it was in the list), recreate the buffer by reopening the file.
5841 (ido-make-buffer-list): If virtual buffers are being used, call
5842 `ido-add-virtual-buffers-to-list' before the make list hook.
5843 (ido-virtual-buffers): New variable which contains a copy of the
5844 current contents of the `recentf-list', albeit pared down for the
5845 sake of speed, and with proper faces applied.
5846 (ido-add-virtual-buffers-to-list): Using the `recentf-list',
5847 create a list of "virtual buffers" to present to the user in
5848 addition to the currently open set. Note that this logic could
5849 get rather slow if that list is too large. With the default
5850 `recentf-max-saved-items' of 200, there is little speed penalty.
5851
5852 2010-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
5853
5854 * font-lock.el: Require CL when compiling.
5855 (font-lock-turn-on-thing-lock): Use `case'.
5856
5857 2010-04-03 Eli Zaretskii <eliz@gnu.org>
5858
5859 * emacs-lisp/authors.el (authors-fixed-entries): Add entry for Eli
5860 Zaretskii.
5861
5862 2010-04-02 Juanma Barranquero <lekktu@gmail.com>
5863
5864 * cedet/semantic/imenu.el (semantic-imenu-bucketize-type-members)
5865 (semantic-create-imenu-directory-index): Fix typos in docstrings.
5866 (semantic-imenu-goto-function): Reflow docstring.
5867
5868 2010-04-02 Juri Linkov <juri@jurta.org>
5869
5870 * ehelp.el (electric-help-orig-major-mode):
5871 New buffer-local variable.
5872 (electric-help-mode): Set it to original major-mode. Doc fix.
5873 (with-electric-help): Use `electric-help-orig-major-mode' instead
5874 of (default-value 'major-mode). Doc fix.
5875 http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00069.html
5876
5877 2010-04-02 Sam Steingold <sds@gnu.org>
5878
5879 * vc-hg.el (vc-hg-push, vc-hg-pull): Use `apply' when calling
5880 `vc-hg-command' with a list of flags.
5881
5882 * progmodes/bug-reference.el (bug-reference-bug-regexp):
5883 Also accept "patch" and "RFE".
5884 (bug-reference-fontify): `bug-reference-url-format' can also be a
5885 function to be able to handle the bug kind.
5886 (turn-on-bug-reference-mode, turn-on-bug-reference-prog-mode): Add.
5887
5888 2010-04-02 Jan Djärv <jan.h.d@swipnet.se>
5889
5890 * tmm.el (tmm-get-keymap): Check with symbolp before passing
5891 value to fboundp, it may not be a symbol.
5892
5893 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
5894
5895 * cus-edit.el (custom-buffer-sort-alphabetically): Update :version.
5896
5897 2010-03-31 Juri Linkov <juri@jurta.org>
5898
5899 * simple.el (next-line, previous-line): Re-throw a signal
5900 with `signal' instead of using `ding'.
5901 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01432.html
5902
5903 2010-03-31 Juri Linkov <juri@jurta.org>
5904
5905 * simple.el (keyboard-escape-quit): Raise deselecting the active
5906 region higher than exiting the minibuffer.
5907 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00904.html
5908
5909 2010-03-31 Juri Linkov <juri@jurta.org>
5910
5911 * image.el (image-animated-p): Use `image-metadata' instead of
5912 `image-extension-data'. Get GIF extenstion data from metadata
5913 property `extension-data'.
5914
5915 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
5916
5917 * simple.el (append-to-buffer): Simplify.
5918
5919 2010-03-31 Tomas Abrahamsson <tab@lysator.liu.se>
5920
5921 * textmodes/artist.el (artist-mode): Fix typo in docstring.
5922 Reported by Alex Schröder <kensanata@gmail.com>. (Bug#5807)
5923
5924 2010-03-31 Kenichi Handa <handa@m17n.org>
5925
5926 * language/sinhala.el (composition-function-table): Fix regexp for
5927 the new Unicode specification.
5928
5929 * language/indian.el (devanagari-composable-pattern)
5930 (tamil-composable-pattern, kannada-composable-pattern)
5931 (malayalam-composable-pattern): Adjust for the new Unicode
5932 specification.
5933 (bengali-composable-pattern, gurmukhi-composable-pattern)
5934 (gujarati-composable-pattern, oriya-composable-pattern)
5935 (telugu-composable-pattern): New variables to cope with the new
5936 Unicode specification. Use them in composition-function-table.
5937
5938 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
5939
5940 Make tmm-menubar work for the Buffers menu again (bug#5726).
5941 * tmm.el (tmm-prompt): Also handle keymap entries in the form of
5942 vectors rather than cons cells, as used in menu-bar-update-buffers.
5943
5944 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
5945
5946 * progmodes/js.el (js-auto-indent-flag, js-mode-map)
5947 (js-insert-and-indent): Revert 2009-08-15 change, restoring
5948 electric punctuation for "{}();,:" (Bug#5586).
5949
5950 * mail/sendmail.el (mail-default-directory): Doc fix.
5951
5952 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
5953
5954 * mail/sendmail.el (mail-default-directory): Doc fix.
5955
5956 2010-03-31 Eli Zaretskii <eliz@gnu.org>
5957
5958 * subr.el (version-regexp-alist, version-to-list)
5959 (version-list-<, version-list-=, version-list-<=)
5960 (version-list-not-zero, version<, version<=, version=): Doc fix.
5961 (Bug#5744).
5962
5963 2010-02-31 Dan Nicolaescu <dann@ics.uci.edu>
5964
5965 * vc.el (vc-root-diff): Doc fix.
5966
5967 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
5968
5969 * vc.el (vc-print-log, vc-print-root-log): Doc fix.
5970
5971 * simple.el (append-to-buffer): Fix last change.
5972
5973 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
5974
5975 * simple.el (append-to-buffer): Ensure that point is preserved if
5976 BUFFER is the current buffer. Suggested by YAMAMOTO Mitsuharu.
5977 (Bug#5749)
5978
5979 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
5980
5981 * files.el (auto-mode-case-fold): Change default to t.
5982
5983 2010-03-30 Juri Linkov <juri@jurta.org>
5984
5985 * dired-x.el (dired-omit-mode): Doc fix.
5986
5987 2010-03-30 Juri Linkov <juri@jurta.org>
5988
5989 * replace.el (occur-accumulate-lines): Move occur-engine related
5990 functions `occur-accumulate-lines' and `occur-engine-add-prefix'
5991 to be located after `occur-engine'.
5992
5993 2010-03-30 Juri Linkov <juri@jurta.org>
5994
5995 Make occur handle multi-line matches cleanly with context.
5996 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01280.html
5997
5998 * replace.el (occur-accumulate-lines): Add optional arg `pt'.
5999 (occur-engine): Add local variables `ret', `prev-after-lines',
6000 `prev-lines'. Use more arguments for `occur-context-lines'.
6001 Set first elem of its returned list to `data', and the second elem
6002 to `prev-after-lines'. Don't print the separator line.
6003 In the end, print remaining context after-lines.
6004 (occur-context-lines): Add new arguments `begpt', `endpt',
6005 `lines', `prev-lines', `prev-after-lines'. Rewrite to combine
6006 after-lines of the previous match with before-lines of the
6007 current match and not overlap them. Return a list with two
6008 values: the output line and the list of context after-lines.
6009
6010 2010-03-30 Juri Linkov <juri@jurta.org>
6011
6012 * replace.el (occur-accumulate-lines): Fix a bug where the first
6013 context line at the beginning of the buffer was missing.
6014
6015 2010-03-30 Eli Zaretskii <eliz@gnu.org>
6016
6017 * files.el: Make bidi-display-reordering safe variable for boolean
6018 values.
6019
6020 2010-03-29 Phil Hagelberg <phil@evri.com>
6021 Chong Yidong <cyd@stupidchicken.com>
6022
6023 * subr.el: Extend progress reporters to perform "spinning".
6024 (progress-reporter-update, progress-reporter-do-update):
6025 Handle non-numeric value arguments.
6026 (progress-reporter--pulse-characters): New var.
6027
6028 2010-03-28 Chong Yidong <cyd@stupidchicken.com>
6029
6030 * progmodes/compile.el (compilation-start): Fix regexp detection
6031 of initial cd command (Bug#5771).
6032
6033 2010-03-28 Stefan Guath <stefan@automata.se> (tiny change)
6034
6035 * find-dired.el (find-dired): Use read-directory-name (Bug#5777).
6036
6037 2010-03-27 Nick Roberts <nickrob@snap.net.nz>
6038
6039 Restore GDB/MI fuctionality removed by 2009-12-29T07:15:34Z!nickrob@snap.net.nz.
6040 * lisp/progmodes/gdb-mi.el: Restore.
6041 * lisp/progmodes/gdb-ui.el: Remove.
6042 * lisp/progmodes/gud.el: Re-accommodate for gdb-mi.el.
6043
6044 2010-03-25 Glenn Morris <rgm@gnu.org>
6045
6046 * desktop.el (desktop-save-buffer-p): Don't mistakenly include
6047 all dired buffers, even tramp ones. (Bug#5755)
6048
6049 2010-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
6050
6051 Add "union tags" in mpc.el.
6052 * mpc.el: Remove backward compatibility code.
6053 (mpc-browser-tags): Change default.
6054 (mpc--find-memoize-union-tags): New var.
6055 (mpc-cmd-flush, mpc-cmd-special-tag-p): New fun.
6056 (mpc-cmd-find): Handle the case where the playlist does not exist.
6057 Handle union-tags.
6058 (mpc-cmd-list): Use mpc-cmd-special-tag-p. Handle union-tags.
6059 (mpc-cmd-add): Use mpc-cmd-flush.
6060 (mpc-tagbrowser-tag-name): New fun.
6061 (mpc-tagbrowser-buf): Use it.
6062 (mpc-songs-refresh): Use cond. Move to point-min as a fallback.
6063
6064 2010-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
6065
6066 Misc cleanup.
6067 * progmodes/make-mode.el (makefile-bsdmake-rule-action-regex):
6068 Use replace-regexp-in-string.
6069 (makefile-mode-abbrev-table): Merge defvar and define-abbrev-table.
6070 (makefile-imake-mode-syntax-table): Move init into defvar.
6071 (makefile-mode): Use define-derived-mode.
6072
6073 * progmodes/make-mode.el (makefile-rule-action-regex): Backtrack less.
6074 (makefile-make-font-lock-keywords): Adjust rule since submatch 1 may
6075 not be present any more.
6076
6077 2010-03-24 Juanma Barranquero <lekktu@gmail.com>
6078
6079 * faces.el (set-face-attribute): Fix typo in docstring.
6080 (face-valid-attribute-values): Reflow docstring.
6081
6082 * cedet/srecode/table.el (srecode-template-table): Fix docstring typo.
6083
6084 2010-03-24 Glenn Morris <rgm@gnu.org>
6085
6086 * textmodes/flyspell.el (sgml-lexical-context): Autoload it (Bug#5752).
6087
6088 2010-03-24 Chong Yidong <cyd@stupidchicken.com>
6089
6090 * indent.el (indent-for-tab-command): Doc fix.
6091
6092 2010-03-24 Alan Mackenzie <acm@muc.de>
6093
6094 * progmodes/cc-engine.el (c-remove-stale-state-cache):
6095 Fix off-by-one error. Fixes bug #5747.
6096
6097 2010-03-24 Juanma Barranquero <lekktu@gmail.com>
6098
6099 * image-dired.el (image-dired-display-thumbs): Fix typo in docstring.
6100 (image-dired-read-comment): Doc fix.
6101
6102 * json.el (json-object-type, json-array-type, json-key-type)
6103 (json-false, json-null, json-read-number):
6104 * minibuffer.el (completion-in-region-functions):
6105 * calendar/cal-tex.el (cal-tex-daily-end, cal-tex-number-weeks)
6106 (cal-tex-cursor-week):
6107 * emacs-lisp/trace.el (trace-function):
6108 * eshell/em-basic.el (eshell/printnl):
6109 * eshell/em-dirs.el (eshell-last-dir-ring, eshell-parse-drive-letter)
6110 (eshell-read-last-dir-ring, eshell-write-last-dir-ring):
6111 * obsolete/levents.el (allocate-event, event-key, event-object)
6112 (event-point, event-process, event-timestamp, event-to-character)
6113 (event-window, event-x, event-x-pixel, event-y, event-y-pixel):
6114 * textmodes/reftex-vars.el (reftex-index-macros-builtin)
6115 (reftex-section-levels, reftex-auto-recenter-toc, reftex-toc-mode-hook)
6116 (reftex-cite-punctuation, reftex-search-unrecursed-path-first)
6117 (reftex-highlight-selection): Fix typos in docstrings.
6118
6119 2010-03-24 Juanma Barranquero <lekktu@gmail.com>
6120
6121 * minibuffer.el (completion-in-region-functions): Fix docstring typos.
6122
6123 2010-03-24 Glenn Morris <rgm@gnu.org>
6124
6125 * mail/rmail.el (rmail-highlight-face): Restore option deleted
6126 2008-02-13 without comment; mark it obsolete.
6127 (rmail-highlight-headers): Use rmail-highlight-face once more.
6128
6129 2010-03-24 Chong Yidong <cyd@stupidchicken.com>
6130
6131 * woman.el (woman2-process-escapes): Only consume the newline if
6132 the filler character is on a line by itself (Bug#5729).
6133
6134 2010-03-24 Kenichi Handa <handa@m17n.org>
6135
6136 * language/indian.el (devanagari-composable-pattern): Add more
6137 consonants.
6138
6139 2010-03-24 Michael Albinus <michael.albinus@gmx.de>
6140
6141 * net/trampver.el: Update release number.
6142
6143 2010-03-24 Glenn Morris <rgm@gnu.org>
6144
6145 * Makefile.in (ELCFILES): Add cedet/semantic/imenu.el.
6146
6147 2010-03-24 Michael Albinus <michael.albinus@gmx.de>
6148
6149 * net/tramp.el (tramp-find-executable):
6150 Use `tramp-get-connection-buffer'. Make the regexp for checking
6151 output of "wc -l" more robust.
6152 (tramp-find-shell): Use another shell but /bin/sh on OpenSolaris.
6153 (tramp-open-connection-setup-interactive-shell): Remove workaround
6154 for OpenSolaris bug, it is not needed anymore.
6155
6156 2010-03-24 Eric M. Ludlam <zappo@gnu.org>
6157
6158 * cedet/semantic/imenu.el: New file, from the CEDET repository
6159 (Bug#5412).
6160
6161 2010-03-24 Glenn Morris <rgm@gnu.org>
6162
6163 * emacs-lisp/cl-macs.el (defsubst*): Add autoload cookie. (Bug#4427)
6164
6165 2010-03-24 Wilson Snyder <wsnyder@wsnyder.org>
6166
6167 * files.el (auto-mode-alist): Accept more verilog file patterns.
6168
6169 2010-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
6170
6171 * vc-dir.el (vc-dir-headers): Abbreviate the working dir.
6172
6173 2010-03-24 Glenn Morris <rgm@gnu.org>
6174
6175 * vc-bzr.el (vc-bzr-log-edit-mode): Add --fixes support to
6176 log-edit-before-checkin-process.
6177
6178 * vc.el (vc-modify-change-comment): Pass MODE to vc-start-logentry.
6179
6180 * vc.el, vc-bzr.el, vc-hg.el (log-edit-mode): Declare.
6181
6182 * vc-dispatcher.el (vc-start-logentry): Doc fix.
6183 (log-view-process-buffer, log-edit-extra-flags): Declare.
6184
6185 * log-edit.el (log-edit-before-checkin-process): Doc fix.
6186
6187 * cedet/semantic/bovine/c.el (semantic-c-describe-environment):
6188 Consistently check ede-object is bound throughout.
6189
6190 * cedet/ede/project-am.el (ede-shell-run-something): Declare.
6191
6192 2010-03-23 Sam Steingold <sds@gnu.org>
6193
6194 Fix bug#5620: recalculate all markers on compilation buffer
6195 modifications, not on file modifications.
6196 * progmodes/compile.el (buffer-modtime): New buffer-local variable:
6197 the buffer modification time, for buffers not associated with files.
6198 (compilation-mode): Create it.
6199 (compilation-filter): Update it.
6200 (compilation-next-error-function): Use it instead of
6201 `visited-file-modtime' for timestamp.
6202
6203 2010-03-23 Juri Linkov <juri@jurta.org>
6204
6205 Implement Occur multi-line matches.
6206 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01044.html
6207
6208 * replace.el (occur): Doc fix.
6209 (occur-engine): Set `begpt' to the beginning of the first line.
6210 Set `endpt' to the end of the last match line. At first, count
6211 line numbers between `origpt' and `begpt'. Split out code from
6212 `out-line' variable to new let-bindings `match-prefix' and
6213 `match-str'. In `out-line' add non-numeric prefix to all
6214 non-first lines of multi-line matches. Finally, count lines
6215 between `begpt' and `endpt' and add to `lines'.
6216
6217 2010-03-23 Juri Linkov <juri@jurta.org>
6218
6219 * replace.el (occur-accumulate-lines, occur-engine):
6220 Use `occur-engine-line' instead of duplicate code.
6221 (occur-engine-line): New function created from duplicate code
6222 in `occur-accumulate-lines' and `occur-engine'.
6223
6224 * replace.el (occur-engine-line): Add optional arg `keep-props'.
6225 (occur-accumulate-lines, occur-engine): Add arg `keep-props'.
6226
6227 2010-03-23 Juri Linkov <juri@jurta.org>
6228
6229 * finder.el: Remove TODO tasks.
6230
6231 * info.el (Info-finder-find-node): Add node "all"
6232 with all package info. Handle a list of multiple keywords
6233 separated by comma.
6234 (info-finder): In interactive use with a prefix argument,
6235 use `completing-read-multiple' to read a list of keywords
6236 separated by comma.
6237
6238 2010-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
6239
6240 Add a new completion style `substring'.
6241 * minibuffer.el (completion-basic--pattern): New function.
6242 (completion-basic-try-completion, completion-basic-all-completions):
6243 Use it.
6244 (completion-substring--all-completions)
6245 (completion-substring-try-completion)
6246 (completion-substring-all-completions): New functions.
6247 (completion-styles-alist): New style `substring'.
6248
6249 2010-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
6250
6251 Get rid of .elc files after removal of the corresponding .el.
6252 * Makefile.in (compile-clean): New target.
6253 (compile-main): Use it.
6254
6255 2010-03-22 Jan Djärv <jan.h.d@swipnet.se>
6256
6257 * Makefile.in (compile-main): cd to $(lisp) in a sub-shell, so we
6258 don't do make there. When compiling with separate object dir, there
6259 is no Makefile there.
6260
6261 2010-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
6262
6263 Get rid of the ELCFILES abomination, again.
6264 * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
6265 (all, compile): Don't call compile-last.
6266 (compile-main): Build the "elcfiles" list dynamically.
6267 (compile-targets): New (internal) target.
6268
6269 2010-03-21 Andreas Schwab <schwab@linux-m68k.org>
6270
6271 * Makefile.in (top_srcdir): Define.
6272 (abs_top_builddir): Define.
6273 (srcdir): Don't append `/..'.
6274 (EMACS): Use ${abs_top_builddir}.
6275 (all, compile, compile-always, compile-last): Don't set emacswd.
6276 (update-subdirs, update-authors): Use $(top_srcdir) instead of
6277 $(srcdir).
6278 (lisp): Use $(srcdir) instead of @srcdir@.
6279
6280 2010-03-21 Juri Linkov <juri@jurta.org>
6281
6282 Fix message of multi-line occur regexps and multi-buffer header lines.
6283 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00457.html
6284
6285 * replace.el (occur-1): Don't display regexp if it is longer
6286 than window-width. Use `query-replace-descr' to display regexp.
6287 (occur-engine): Don't display regexp in the buffer header for
6288 multi-buffer occur. Display a separate header line with total
6289 match count and regexp for multi-buffer occur.
6290 Use `query-replace-descr' to display regexp.
6291
6292 2010-03-20 Teodor Zlatanov <tzz@lifelogs.com>
6293
6294 * net/secrets.el: Fix parenthesis.
6295 (secrets-enabled): Fix parenthesis.
6296
6297 2010-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
6298
6299 Use more relative file and directory names.
6300 * Makefile.in (EMACS): Arrange for it to work when we chdir.
6301 (setwins, setwins_almost, setwins_for_subdirs):
6302 Don't `cd'; output relative names.
6303 (all, compile, compile-always, compile-last): Set emacswd.
6304 (custom-deps, finder-data, autoloads, update-subdirs, compile-last):
6305 Just cd to the lisp source dir so we can use relative file names.
6306
6307 * outline.el (hide-sublevels): Unfix the paren non-typo! (bug#5738).
6308
6309 2010-03-20 Glenn Morris <rgm@gnu.org>
6310
6311 * textmodes/rst.el: Use faces for font-lock customization, and make the
6312 old -face variables obsolete.
6313 (rst-block, rst-external, rst-definition, rst-directive, rst-comment)
6314 (rst-emphasis1, rst-emphasis2, rst-literal, rst-reference): New faces.
6315 (rst-block-face, rst-external-face, rst-definition-face)
6316 (rst-directive-face, rst-comment-face, rst-emphasis1-face)
6317 (rst-emphasis2-face, rst-literal-face, rst-reference-face):
6318 Make obsolete.
6319 (rst-font-lock-keywords-function): Update for above changes.
6320
6321 2010-03-20 Juri Linkov <juri@jurta.org>
6322
6323 * s-region.el:
6324 * obsolete/s-region.el: Move to obsolete.
6325
6326 2010-03-19 Juanma Barranquero <lekktu@gmail.com>
6327
6328 * vc-dispatcher.el (vc-do-command): Remove reference to `vc-path'.
6329
6330 2010-03-19 Dan Nicolaescu <dann@ics.uci.edu>
6331
6332 * vc-hooks.el (vc-path): Remove variable and obsolete declaration.
6333
6334 2010-03-19 Dan Nicolaescu <dann@ics.uci.edu>
6335
6336 Add special markup processing for commit logs.
6337 * log-edit.el (log-edit-extra-flags): New variable.
6338 (log-edit): Add new argument MODE. Use that mode when non-nil
6339 instead of the log-view-mode.
6340 (log-view-process-buffer): New function.
6341
6342 * vc.el: Document that the checkin method takes optional
6343 arguments. Document new backend specific method: log-view-mode.
6344 (vc-default-log-edit-mode): New function.
6345 (vc-checkin): Use a backend specific log-view-mode.
6346 Pass extra arguments to the checkin method.
6347 (vc-modify-change-comment): Pass a dummy extra argument.
6348
6349 * vc-dispatcher.el (vc-log-edit): Add a mode argument, pass it to
6350 log-edit.
6351 (vc-start-logentry): Add a mode argument, pass it to vc-log-edit.
6352 (vc-finish-logentry): Process the log buffer before passing it
6353 down. Pass log-edit-extra-flags.
6354
6355 * vc-bzr.el (vc-bzr-checkin): Pass extra arguments to the commit
6356 command.
6357 (log-edit-extra-flags, log-edit-before-checkin-process):
6358 New declarations.
6359
6360 * vc-hg.el (vc-hg-checkin): Pass extra arguments to the commit
6361 command.
6362 (log-edit-extra-flags, log-edit-before-checkin-process):
6363 New declarations.
6364 (vc-hg-log-edit-mode): New derived mode.
6365
6366 * vc-arch.el (vc-arch-checkin):
6367 * vc-cvs.el (vc-cvs-checkin):
6368 * vc-git.el (vc-git-checkin):
6369 * vc-mtn.el (vc-mtn-checkin):
6370 * vc-rcs.el (vc-rcs-checkin):
6371 * vc-sccs.el (vc-sccs-checkin):
6372 * vc-svn.el (vc-svn-checkin): Add an optional ignored argument.
6373
6374 2010-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
6375
6376 * outline.el (hide-sublevels): Don't hide trailing newline (and fix
6377 parent typo).
6378
6379 2010-03-19 Glenn Morris <rgm@gnu.org>
6380
6381 * password-cache.el (password-cache, password-cache-expiry): Autoload.
6382
6383 2010-03-18 Glenn Morris <rgm@gnu.org>
6384
6385 * emacs-lisp/autoload.el (autoload-rubric): Doc fix.
6386
6387 * replace.el (query-replace-history): Give it a doc string.
6388 (map-query-replace-regexp): Use query-replace-from-history-variable
6389 and query-replace-to-history-variable.
6390
6391 * mail/hashcash.el (declare-function): Remove duplicate definition.
6392
6393 * mail/emacsbug.el (report-emacs-bug-pretest-address):
6394 Make it an obsolete alias for report-emacs-bug-address.
6395 (message-strip-special-text-properties): Declare.
6396 (report-emacs-bug): Remove test for a pretest bug address.
6397 Combine message-mode-specific code.
6398
6399 * mail/supercite.el: Don't require sendmail.
6400 (mh-in-header-p): Declare rather than using with-no-warnings.
6401 (sc-no-blank-line-or-header): Use rfc822-goto-eoh rather than
6402 mail-header-end. Don't bind mysterious variable `kill-lines-magic'.
6403
6404 * calendar/cal-french.el: Convert to utf-8.
6405
6406 * files.el (interpreter-mode-alist): Use emacs-lisp-mode for
6407 Emacs scripts.
6408
6409 2010-03-16 Michael Albinus <michael.albinus@gmx.de>
6410
6411 * net/secrets.el (secrets-enabled): New variable. Use it instead
6412 of a subfeature.
6413
6414 2010-03-15 Michael Albinus <michael.albinus@gmx.de>
6415
6416 * net/secrets.el (top): Register the D-Bus signals only when the
6417 service "org.freedesktop.secrets" can be pinged.
6418 Provide subfeature `enabled'.
6419
6420 2010-03-14 Juri Linkov <juri@jurta.org>
6421
6422 Add finder unknown keywords.
6423
6424 * finder.el (finder-unknown-keywords): New function.
6425
6426 * info.el (Info-finder-find-node): Use `finder-unknown-keywords'
6427 to create a Finder node with unknown keywords.
6428
6429 2010-03-14 Juri Linkov <juri@jurta.org>
6430
6431 * finder.el (finder-compile-keywords): Replace `princ' with
6432 `prin1' on a list of symbols interned from keyword strings.
6433
6434 * emacs-lisp/lisp-mnt.el (lm-keywords-list): If `keywords' contains
6435 a comma, then split keywords using a comma and optional whitespace.
6436 Otherwise, split by whitespace.
6437
6438 * complete.el:
6439 * face-remap.el:
6440 * log-view.el:
6441 * net/hmac-def.el:
6442 * net/hmac-md5.el:
6443 * net/netrc.el:
6444 * progmodes/mixal-mode.el: Fix keywords.
6445
6446 2010-03-13 Michael Albinus <michael.albinus@gmx.de>
6447
6448 * Makefile.in (ELCFILES): Add net/secrets.elc.
6449
6450 * net/secrets.el: New file.
6451
6452 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
6453
6454 * facemenu.el (list-colors-display, list-colors-print): New arg
6455 callback. Use it to allow selecting colors.
6456
6457 * wid-edit.el (widget-image-insert): Insert image prop even if the
6458 current display is non-graphic.
6459 (widget-field-value-set): New fun.
6460 (editable-field): Use it.
6461 (widget-field-value-get): Clean up unused var.
6462 (widget-color-value-create, widget-color--choose-action):
6463 New funs. Allow using list-colors-display to choose color.
6464
6465 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
6466
6467 * cus-edit.el: Resort topmost custom groups.
6468 (custom-buffer-sort-alphabetically): Default to t.
6469 (customize-apropos): Use apropos-parse-pattern.
6470 (custom-search-field): New var.
6471 (custom-buffer-create-internal): Add custom-apropos search field.
6472 (custom-add-parent-links): Don't display parent doc.
6473 (custom-group-value-create): Don't sort top-level custom group.
6474 (custom-magic-value-create): Show visibility button before option name.
6475
6476 (custom-variable-state): New fun, from custom-variable-state-set.
6477 (custom-variable-state-set): Use it.
6478 (custom-group-value-create): Hide options with standard values
6479 using the :hidden-states property. Use progress reporter.
6480
6481 (custom-show): Simplify.
6482 (custom-visibility): Disable images by default.
6483 (custom-variable): New property :hidden-states.
6484 (custom-variable-value-create): Enable images for
6485 custom-visibility widgets. Use :hidden-states property to
6486 determine initial visibility.
6487
6488 * wid-edit.el (widget-image-find): Give images center ascent.
6489 (visibility): Add :on-image and :off-image properties.
6490 (widget-visibility-value-create): Use them.
6491
6492 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
6493
6494 * cus-edit.el (processes): Remove from development group.
6495 (oop, hypermedia): Delete group.
6496 (comm): Promote to top-level group.
6497
6498 * net/browse-url.el (browse-url):
6499 * net/xesam.el (xesam):
6500 * net/tramp.el (tramp):
6501 * net/goto-addr.el (goto-address):
6502 * net/ange-ftp.el (ange-ftp): Put in comm group.
6503
6504 * view.el (view): Remove from editing group.
6505
6506 * uniquify.el (uniquify): Put in files group.
6507
6508 * net/browse-url.el (browse-url):
6509 * ps-print.el (postscript): Put in external group.
6510
6511 * cus-edit.el (outlines):
6512 * textmodes/text-mode.el (text-mode-hook):
6513 * textmodes/table.el (table):
6514 * textmodes/picture.el (picture):
6515 * outline.el (outlines): Put in wp group.
6516
6517 * nxml/nxml-mode.el (nxml): Remove from wp group.
6518
6519 * net/tramp-imap.el (tramp-imap): Put in tramp group.
6520
6521 * mail/metamail.el (metamail): Remove from hypermedia group.
6522
6523 * cus-edit.el (abbrev):
6524 * whitespace.el (whitespace):
6525 * vcursor.el (vcursor):
6526 * reveal.el (reveal):
6527 * hl-line.el (hl-line): Put in convenience group.
6528
6529 * epg-config.el (epg): Put in data group.
6530
6531 * emulation/pc-select.el (pc-select): Put in emulations group.
6532
6533 * calculator.el (calculator): Put in applications group.
6534
6535 2010-03-12 Dan Nicolaescu <dann@ics.uci.edu>
6536
6537 Add .dir-locals.el support for file-less buffers.
6538 * files.el (hack-local-variables): Split out code to apply local
6539 variable settings ...
6540 (hack-local-variables-apply): ... here. New function.
6541 (hack-dir-local-variables): Use the default directory for when the
6542 buffer does not have an associated file.
6543 (hack-dir-local-variables-non-file-buffer): New function.
6544 * diff-mode.el (diff-mode):
6545 * vc-annotate.el (vc-annotate-mode):
6546 * vc-dir.el (vc-dir-mode):
6547 * log-edit.el (log-edit-mode):
6548 * log-view.el (log-view-mode): Call hack-dir-local-variables-non-file-buffer.
6549
6550 2010-03-12 Dan Nicolaescu <dann@ics.uci.edu>
6551
6552 Add support for shelving snapshots and for showing shelves.
6553 * vc-bzr.el (vc-bzr-shelve-show, vc-bzr-shelve-show-at-point)
6554 (vc-bzr-shelve-apply-and-keep-at-point, vc-bzr-shelve-snapshot):
6555 New functions.
6556 (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
6557 (vc-bzr-extra-menu-map): Map them.
6558
6559 2010-03-11 Glenn Morris <rgm@gnu.org>
6560
6561 * cus-edit.el (customize-changed-options-previous-release):
6562 Bump to 23.1.
6563
6564 * image.el (image-animate-max-time): Fix :version tag.
6565
6566 2010-03-10 Chong Yidong <cyd@stupidchicken.com>
6567
6568 * Branch for 23.2.
6569
6570 2010-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
6571
6572 * vc-git.el (vc-git-revision-table): Include remote branches.
6573
6574 2010-03-10 Kim F. Storm <storm@cua.dk>
6575
6576 Animated image API.
6577 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00211.html
6578
6579 * image.el (image-animate-max-time): New defcustom.
6580 (image-animated-types): New defconst.
6581 (create-animated-image, image-animate-timer)
6582 (image-animate-start, image-animate-stop, image-animate-timeout)
6583 (image-animated-p): New functions.
6584
6585 * image-mode.el (image-toggle-display-image):
6586 Replace `create-image' with `create-animated-image'.
6587
6588 2010-03-09 Miles Bader <miles@gnu.org>
6589
6590 * vc-git.el (vc-git-print-log): Use "tformat:" for shortlog,
6591 instead of "format:"; this ensures that the output is
6592 newline-terminated.
6593
6594 2010-03-08 Chong Yidong <cyd@stupidchicken.com>
6595
6596 * mail/rfc822.el (rfc822-addresses): Use nested catches to ensure
6597 that all errors are caught, and that the return value is always a
6598 list (Bug#5692).
6599
6600 2010-03-08 Kenichi Handa <handa@m17n.org>
6601
6602 * language/misc-lang.el (windows-1256): New coding system.
6603 (cp1256): New alias of windows-1256 (bug#5690).
6604
6605 2010-03-07 Andreas Schwab <schwab@linux-m68k.org>
6606
6607 * mail/rfc822.el (rfc822-addresses): Move catch clause down around
6608 call to rfc822-bad-address. (Bug#5692)
6609
6610 2010-03-07 Štěpán Němec <stepnem@gmail.com> (tiny change)
6611
6612 * vc-git.el (vc-git-annotate-extract-revision-at-line):
6613 Use vc-git-root as default directory for revision path (Bug#5657).
6614
6615 2010-03-06 Chong Yidong <cyd@stupidchicken.com>
6616
6617 * calculator.el (calculator): Don't bind split-window-keep-point
6618 (Bug#5674).
6619
6620 2010-03-06 Stefan Monnier <monnier@iro.umontreal.ca>
6621
6622 * vc-git.el: Re-flow to fit into 80 columns.
6623 (vc-git-after-dir-status-stage, vc-git-dir-status-goto-stage):
6624 Remove spurious `quote' element in each case alternative.
6625 (vc-git-show-log-entry): Use prog1.
6626 (vc-git-after-dir-status-stage): Remove unused var `remaining'.
6627
6628 2010-03-06 Glenn Morris <rgm@gnu.org>
6629
6630 * cedet/semantic/grammar.el (semantic-grammar-header-template):
6631 Update template copyright to GPLv3+.
6632
6633 2010-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
6634
6635 * man.el (Man-files-regexp): Tighten up the regexp (bug#5686).
6636
6637 2010-03-03 Chong Yidong <cyd@stupidchicken.com>
6638
6639 * macros.el (insert-kbd-macro): Look up keyboard macro using the
6640 definition, not the name (Bug#5481).
6641
6642 2010-03-03 Štěpán Němec <stepnem@gmail.com> (tiny change)
6643
6644 * subr.el (momentary-string-display): Don't overwrite the MESSAGE
6645 argument with a local variable. (Bug#5670)
6646
6647 2010-03-02 Juri Linkov <juri@jurta.org>
6648
6649 * info.el (Info-index-next): Decrement line number by 2. (Bug#5652)
6650
6651 2010-03-02 Michael Albinus <michael.albinus@gmx.de>
6652
6653 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Fix an
6654 error when FILENAME and NEWNAME are existing remote directories.
6655
6656 * net/tramp-compat.el (tramp-compat-make-temp-file): Add optional
6657 parameter DIR-FLAG.
6658
6659 2010-03-02 Glenn Morris <rgm@gnu.org>
6660
6661 * calendar/cal-hebrew.el (holiday-hebrew-passover): Fix date
6662 of Yom HaAtzma'ut when it falls on a Monday (rule changed in 2004).
6663
6664 2010-03-01 Kenichi Handa <handa@m17n.org>
6665
6666 * language/burmese.el (burmese-composable-pattern): Rename from
6667 myanmar-composable-pattern.
6668
6669 * international/characters.el (script-list):
6670 * international/fontset.el (script-representative-chars):
6671 Change myanmar to burmese.
6672 (otf-script-alist): Likewise.
6673 (setup-default-fontset): Likewise. Re-fix :otf spec.
6674
6675 2010-02-28 Katsumi Yamaoka <yamaoka@jpl.org>
6676
6677 * menu-bar.el (menu-bar-manuals-menu): Fix typo.
6678
6679 2010-02-28 Jan Djärv <jan.h.d@swipnet.se>
6680
6681 * scroll-bar.el (scroll-bar-drag-1): Add save-excursion, bug #5654.
6682
6683 2010-02-28 Michael Albinus <michael.albinus@gmx.de>
6684
6685 * net/tramp.el (tramp-handle-write-region): START can be a string.
6686 Take care in the checks. Reported by Dan Davison
6687 <davison@stats.ox.ac.uk>.
6688
6689 2010-02-28 Michael Albinus <michael.albinus@gmx.de>
6690
6691 * net/dbus.el (dbus-introspect, dbus-get-property)
6692 (dbus-set-property, dbus-get-all-properties):
6693 Use `dbus-call-method' when noninteractive. (Bug#5645)
6694
6695 2010-02-28 Chong Yidong <cyd@stupidchicken.com>
6696
6697 * textmodes/reftex-toc.el (reftex-toc-promote-prepare):
6698 * emacs-lisp/elint.el (elint-add-required-env):
6699 * cedet/semantic/db-find.el
6700 (semanticdb-find-translate-path-brutish-default):
6701 * cedet/ede/make.el (ede-make-check-version):
6702 * calendar/icalendar.el (icalendar--add-diary-entry):
6703 * calc/calcalg2.el (math-tracing-integral):
6704 * files.el (recover-session-finish): Use with-current-buffer
6705 instead of save-excursion.
6706
6707 2010-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
6708
6709 Fix in-buffer completion when after-change-functions modify the buffer.
6710 * minibuffer.el (completion--replace): New function.
6711 (completion--do-completion): Use it and use relative movement.
6712
6713 2010-02-27 Chong Yidong <cyd@stupidchicken.com>
6714
6715 * international/fontset.el (setup-default-fontset): Fix :otf spec.
6716
6717 2010-02-27 Jeremy Whitlock <jcscoobyrs@gmail.com> (tiny change)
6718
6719 * progmodes/python.el (python-pdbtrack-stack-entry-regexp):
6720 Allow the characters _<> in the stack entry (Bug#5653).
6721
6722 2010-02-26 Kenichi Handa <handa@m17n.org>
6723
6724 * language/burmese.el: Fix entries in composition-function-table.
6725 (myanmar-composable-pattern): New variable.
6726
6727 * international/fontset.el (setup-default-fontset): Add an entry
6728 for myanmar.
6729
6730 * international/characters.el (script-list): Add Myanmar
6731 Extended-A.
6732
6733 2010-02-26 Glenn Morris <rgm@gnu.org>
6734
6735 * custom.el (custom-initialize-delay): Doc fix.
6736
6737 * mail/sendmail.el (send-mail-function): Autoload the call
6738 to custom-initialize-delay, not otherwise preserved in loaddefs.el.
6739
6740 2010-02-24 Chong Yidong <cyd@stupidchicken.com>
6741
6742 * files.el (hack-local-variables-filter): For eval forms, also
6743 check safe-local-variable-p (Bug#5636).
6744
6745 2010-02-24 Eduard Wiebe <usenet@pusto.de>
6746
6747 * javascript.el (wisent-javascript-jv-expand-tag): Avoid c(ad)ddr
6748 and use c(ad)r of cddr (Bug#5640).
6749
6750 2010-02-22 Michael Albinus <michael.albinus@gmx.de>
6751
6752 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Protect
6753 setting the modes by `ignore-errors'. It might fail, for example
6754 if the file is not owned by the user but the group.
6755 (tramp-handle-write-region): Ensure, that `tmpfile' is always readable.
6756
6757 2010-02-21 Chong Yidong <cyd@stupidchicken.com>
6758
6759 * files.el (directory-listing-before-filename-regexp): Use
6760 stricter matching for iso-style dates, to avoid false matches with
6761 date-like filenames (Bug#5597).
6762
6763 * htmlfontify.el (htmlfontify): Doc fix.
6764
6765 * eshell/eshell.el (eshell): Doc fix.
6766
6767 * startup.el (fancy-about-screen): In mode-line, apply
6768 mode-line-buffer-id face only to the buffer name (Bug#5613).
6769
6770 2010-02-20 Kevin Ryde <user42@zip.com.au>
6771
6772 * progmodes/compile.el (compilation-error-regexp-alist-alist):
6773 In `watcom' anchor regexp to start of line, to avoid slowness
6774 (Bug#5599).
6775
6776 2010-02-20 Eli Zaretskii <eliz@gnu.org>
6777
6778 * subr.el (remove-yank-excluded-properties): Explain in a comment
6779 why `category' property is removed.
6780
6781 2010-02-19 Chong Yidong <cyd@stupidchicken.com>
6782
6783 * isearch.el (isearch-update-post-hook, isearch-update): Revert
6784 2010-02-17 change.
6785
6786 2010-02-19 Ulf Jasper <ulf.jasper@web.de>
6787
6788 * calendar/icalendar.el (icalendar--convert-ordinary-to-ical)
6789 (icalendar--convert-weekly-to-ical)
6790 (icalendar--convert-yearly-to-ical)
6791 (icalendar--convert-block-to-ical)
6792 (icalendar--convert-cyclic-to-ical)
6793 (icalendar--convert-anniversary-to-ical): Take care of time
6794 specifications where hour has 1-digit only (Bug#5549).
6795
6796 2010-02-19 Nick Roberts <nickrob@snap.net.nz>
6797
6798 * progmodes/gdb-ui.el (gdb-assembler-handler): Accommodate change
6799 of disassemble output in GDB 7.1.
6800
6801 2010-02-19 Glenn Morris <rgm@gnu.org>
6802
6803 * progmodes/f90.el (f90-electric-insert): Give it a delete-selection
6804 property. (Bug#5593)
6805
6806 2010-02-18 Sam Steingold <sds@gnu.org>
6807
6808 * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
6809
6810 2010-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
6811
6812 Use abbreviated file names in bookmarks (bug#5591).
6813 * bookmark.el (bookmark-maybe-load-default-file): Remove redundant
6814 calls to expand-file-name.
6815 (bookmark-relocate): Use abbreviated file names in bookmarks.
6816 (bookmark-load): Use abbreviated file names in messages.
6817
6818 2010-02-18 Michael Albinus <michael.albinus@gmx.de>
6819
6820 * net/tramp.el (tramp-handle-directory-files): When FULL, do not
6821 expand "." and "..". Reported by Thierry Volpiatto
6822 <thierry.volpiatto@gmail.com>.
6823
6824 2010-02-18 Michael Albinus <michael.albinus@gmx.de>
6825
6826 * net/tramp.el (tramp-handle-insert-file-contents): Set always the
6827 permissions of the temporary file to "0600". In case the remote
6828 file has no read permissions for the owner, there might be
6829 problems otherwise. Reported by Ole Laursen <olau@iola.dk>.
6830
6831 22010-02-18 Glenn Morris <rgm@gnu.org>
6832
6833 * emacs-lisp/authors.el (authors-renamed-files-alist):
6834 Add entries for INSTALL.CVS.
6835
6836 2010-02-17 Mark A. Hershberger <mah@everybody.org>
6837
6838 * vc-bzr.el: Fix typo in Known Bugs section.
6839
6840 * isearch.el (isearch-update-post-hook): New hook.
6841 (isearch-update): Use the new hook.
6842
6843 2010-02-16 Michael Albinus <michael.albinus@gmx.de>
6844
6845 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
6846 Fix errors in copying directories.
6847 (tramp-handle-add-name-to-file, tramp-handle-copy-directory)
6848 (tramp-do-copy-or-rename-file, tramp-handle-delete-directory)
6849 (tramp-handle-delete-file)
6850 (tramp-handle-dired-recursive-delete-directory)
6851 (tramp-handle-write-region): Flush also the cache for the upper
6852 directory.
6853
6854 2010-02-16 Chong Yidong <cyd@stupidchicken.com>
6855
6856 * simple.el (save-interprogram-paste-before-kill): Doc fix.
6857
6858 * cus-edit.el (hardware): Doc fix.
6859
6860 * man.el (man): Add to external custom group.
6861
6862 * delim-col.el (columns): Move to wp custom group.
6863
6864 * doc-view.el (doc-view): Add to data custom group.
6865
6866 * cedet/data-debug.el (data-debug): Move to extensions group.
6867
6868 * cedet/ede.el (ede):
6869 * cedet/srecode.el (srecode):
6870 * cedet/semantic.el (semantic): Put in tools and extensions group.
6871
6872 * nxml/nxml-mode.el (nxml-faces): Remove from font-lock-faces group.
6873
6874 * textmodes/flyspell.el (flyspell-word): Obey the offset specified
6875 by ispell-parse-output (Bug#5575).
6876
6877 2010-02-16 Kenichi Handa <handa@m17n.org>
6878
6879 * international/ja-dic-cnv.el (iso-2022-7bit-short): Delete it.
6880 (skkdic-convert-okuri-ari): Ignore lines starting with '>'.
6881 (skkdic-convert): Use `euc-japan' coding system for writing.
6882
6883 2010-02-16 Glenn Morris <rgm@gnu.org>
6884
6885 * textmodes/tex-mode.el (tex-bibtex-file): Expand the result of
6886 tex-main-file before using it. (Bug#5562)
6887
6888 2010-02-15 Stefan Monnier <monnier@iro.umontreal.ca>
6889
6890 * emacs-lisp/advice.el (ad-compile-function): Suppress byte-compiler
6891 warnings, since it is annoying for the user to see them each time he
6892 runs the code.
6893
6894 2010-02-15 Michael Albinus <michael.albinus@gmx.de>
6895
6896 * net/tramp.el (tramp-process-actions, tramp-read-passwd):
6897 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection): Use VEC
6898 instead of PROC for caching "first-password-request". Otherwise,
6899 new processes would not profit from passwords already entered.
6900
6901 * net/tramp-cache.el (tramp-dump-connection-properties):
6902 Don't save "first-password-request" property.
6903
6904 2010-02-14 Juanma Barranquero <lekktu@gmail.com>
6905
6906 * outline.el (outline-head-from-level):
6907 * simple.el (with-wrapper-hook):
6908 * cedet/ede.el (ede-run-target, project-delete-target)
6909 (project-dist-files, ede-name, ede-documentation, ede-parent-project)
6910 (ede-adebug-project, ede-adebug-project-parent)
6911 (ede-adebug-project-root):
6912 * emacs-lisp/elint.el (elint-extra-errors, elint-current-buffer)
6913 (elint-defun, elint-buffer-env, elint-top-form-logged)
6914 (elint-unbound-variable):
6915 * textmodes/reftex-toc.el (reftex-toc-newhead-from-alist):
6916 Fix typos in docstrings.
6917
6918 2010-02-14 Michael Albinus <michael.albinus@gmx.de>
6919
6920 * files.el (insert-directory): When WILDCARD-REGEXP and
6921 FULL-DIRECTORY-P are nil, insert the file entry instead of the
6922 whole directory. (Bug#5551)
6923
6924 * net/ange-ftp.el (ange-ftp-insert-directory): Insert " " for
6925 dired's alignment sanity. (Bug#5516)
6926
6927 2010-02-14 Juri Linkov <juri@jurta.org>
6928
6929 * man.el (Man-fontify-manpage, Man-cleanup-manpage):
6930 Remove remaining ^H with their preceding chars. (Bug#5566)
6931
6932 2010-02-13 Glenn Morris <rgm@gnu.org>
6933
6934 * simple.el (transpose-subr): Give it a doc-string.
6935
6936 * textmodes/paragraphs.el (transpose-paragraphs, transpose-sentences):
6937 Doc fixes.
6938
6939 2010-02-12 Juri Linkov <juri@jurta.org>
6940
6941 * arc-mode.el (archive-unique-fname): Make directories for nested
6942 archives. (Bug#5540)
6943
6944 2010-02-12 Juri Linkov <juri@jurta.org>
6945
6946 * ffap.el (dired-at-point): Fix docstring. (Bug#5565)
6947
6948 2010-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
6949
6950 * subr.el (copy-overlay): Handle deleted overlays.
6951
6952 * man.el (Man-completion-table): Don't signal an error if we can't run
6953 manual-program (bug#4056).
6954
6955 2010-02-10 Juanma Barranquero <lekktu@gmail.com>
6956
6957 * textmodes/artist.el (artist-mt): Fix typos in docstring.
6958
6959 2010-02-10 Thierry Volpiatto <thierry.volpiatto@gmail.com>
6960
6961 * info.el (Info-bookmark-jump): Simplify.
6962
6963 * bookmark.el (bookmark-handle-bookmark): Catch the right error.
6964 (bookmark-default-handler): Accept new bookmark field `buffer'.
6965
6966 2010-02-10 Chong Yidong <cyd@stupidchicken.com>
6967
6968 * iswitchb.el (iswitchb-completions): Revert last change.
6969
6970 2010-02-10 Michael Albinus <michael.albinus@gmx.de>
6971
6972 * ls-lisp.el (ls-lisp-insert-directory): When WILDCARD-REGEXP and
6973 FULL-DIRECTORY-P are nil, and FILE is absolute, expand it.
6974 This prevents file names like "~/" being listed literally.
6975
6976 2010-02-10 Dan Nicolaescu <dann@ics.uci.edu>
6977
6978 * term/xterm.el (xterm-maybe-set-dark-background-mode):
6979 Remove dead code. (Bug#5546)
6980
6981 2010-02-09 Chong Yidong <cyd@stupidchicken.com>
6982
6983 * eshell/em-ls.el (eshell-ls-applicable): Frob file attributes
6984 correctly (Bug#5548).
6985
6986 2010-02-08 Jose E. Marchesi <jemarch@gnu.org>
6987
6988 * progmodes/ada-mode.el (ada-in-numeric-literal-p): New function.
6989 (ada-adjust-case): Don't adjust case in hexadecimal number literals.
6990
6991 2010-02-08 Kenichi Handa <handa@m17n.org>
6992
6993 * international/mule-util.el (with-coding-priority): Add autoload
6994 cookie for putting `lisp-indent-function'.
6995
6996 2010-02-07 Glenn Morris <rgm@gnu.org>
6997
6998 * progmodes/f90.el (f90-font-lock-keywords-1, f90-font-lock-keywords-2):
6999 Move F2003 named interfaces from keywords-2 to keywords-1, and
7000 use function-name-face rather than constant-face.
7001 Simplify "abstract interface" regexp.
7002
7003 2010-02-07 Chong Yidong <cyd@stupidchicken.com>
7004
7005 * eshell/esh-util.el (eshell-file-attributes): New optional arg
7006 ID-FORMAT. Pass it to `file-attributes'.
7007
7008 * eshell/em-ls.el (eshell-do-ls): Use it (Bug#5528).
7009
7010 2010-02-07 sj <prime.wizard+emacs@gmail.com> (tiny change)
7011
7012 * faces.el (set-face-attribute): Allow calling
7013 internal-set-lisp-face-attribute with 'unspecified family and
7014 foundry argument (Bug#5536).
7015
7016 2010-02-07 Glenn Morris <rgm@gnu.org>
7017
7018 * progmodes/f90.el (f90-font-lock-keywords-2)
7019 (f90-looking-at-type-like, f90-looking-at-program-block-end):
7020 Handle F2003 named interfaces.
7021
7022 2010-02-06 Chong Yidong <cyd@stupidchicken.com>
7023
7024 * progmodes/cc-mode.el (c-common-init): Bind temporary variables
7025 beg and end before calling c-get-state-before-change-functions.
7026
7027 2010-02-06 Dan Nicolaescu <dann@ics.uci.edu>
7028
7029 * vc-bzr.el (vc-bzr-dir-extra-headers): Disable the pending merges header.
7030
7031 2010-02-05 Juri Linkov <juri@jurta.org>
7032
7033 * doc-view.el (doc-view-mode):
7034 * image-mode.el (image-mode): Put property mode-class=special.
7035 (Bug#4896)
7036
7037 2010-02-05 Mark A. Hershberger <mah@everybody.org>
7038
7039 * vc-svn.el (vc-svn-revision-table): New function.
7040
7041 2010-02-05 Michael Albinus <michael.albinus@gmx.de>
7042
7043 * net/ange-ftp.el (ange-ftp-insert-directory):
7044 * net/tramp-imap.el (tramp-imap-handle-insert-directory):
7045 * net/tramp-smb.el (tramp-smb-handle-insert-directory):
7046 Handle also directories. (Bug#5478)
7047
7048 2010-02-05 Glenn Morris <rgm@gnu.org>
7049
7050 * progmodes/f90.el (f90-font-lock-keywords-2): Fix `enum'.
7051
7052 2010-02-05 Chong Yidong <cyd@stupidchicken.com>
7053
7054 * startup.el (command-line-1): Convert options beginning with a
7055 single dash as well (Bug#5519).
7056
7057 2010-02-05 Stefan Monnier <monnier@iro.umontreal.ca>
7058
7059 Make `initials' completion work for /hh -> /home/horn again (bug#5524).
7060 * minibuffer.el (completion-initials-expand): Only check the presence
7061 of delims *within* the boundaries, since otherwise the / delim is
7062 always found for files.
7063
7064 Fix up various corner case problems.
7065 * doc-view.el (doc-view-last-page-number): New function.
7066 (doc-view-mode, doc-view-last-page, doc-view-goto-page): Use it.
7067 (doc-view-goto-page): Avoid inf-loops when the conversion fails.
7068 (doc-view-kill-proc): Avoid inf-loop in freak cases.
7069 (doc-view-reconvert-doc): Use the new recursive delete-directory.
7070 (doc-view-convert-current-doc): Don't create the resolution.el file
7071 here any more.
7072 (doc-view-pdf/ps->png): Do it here instead.
7073 (doc-view-already-converted-p): Check that resolution.el is present.
7074 (doc-view-pdf->png): Don't rely on doc-view-pdf/ps->png for the few
7075 windows that are not yet showing images.
7076
7077 2010-02-04 Michael Albinus <michael.albinus@gmx.de>
7078
7079 * dired.el (dired-revert): If DIRED-DIRECTORY is a cons cell, call
7080 `dired-uncache' for every elemnt which is an absolute file name.
7081
7082 * net/tramp.el (tramp-handle-dired-uncache): When DIR is not a
7083 directory, handle its directory component.
7084 (tramp-handle-file-remote-p): Let-bind `tramp-verbose' to 3; this
7085 function is called permanently and creates noise, otherwise.
7086
7087 * net/tramp-imap.el (tramp-imap-handle-insert-directory):
7088 * net/tramp-smb.el (tramp-smb-handle-insert-directory):
7089 Handle the case, FILENAME is not in `default-directory'. (Bug#5478)
7090
7091 2010-02-04 David Burger <dburger@google.com> (tiny change)
7092
7093 * macros.el (apply-macro-to-region-lines):
7094 Minor simplification. (Bug#5485)
7095
7096 2010-02-04 Glenn Morris <rgm@gnu.org>
7097
7098 * mail/rmail.el (rmail-show-message-1): Handle malformed
7099 quoted-printable text. (Bug#5441)
7100
7101 * mail/mail-utils.el (mail-unquote-printable-region): Doc fix.
7102
7103 * simple.el (visual-line-mode): Capitalize lighter.
7104
7105 2010-02-03 John Wiegley <jwiegley@gmail.com>
7106
7107 * iswitchb.el (iswitchb-completions): Add bookmark files to the
7108 list of files considered for "virtual buffer" completions.
7109
7110 2010-02-03 Michael Albinus <michael.albinus@gmx.de>
7111
7112 * net/ange-ftp.el (ange-ftp-insert-directory): Parse directory
7113 also in case of (and (not full) (not wildcard)). This is needed
7114 when dired is called with a list of files, which are not in
7115 `default-directory'. (Bug#5478)
7116
7117 2010-02-03 Stefan Monnier <monnier@iro.umontreal.ca>
7118
7119 * vc-hooks.el (vc-path): Make it an obsolete var, rather than function.
7120
7121 2010-02-02 Juri Linkov <juri@jurta.org>
7122
7123 * textmodes/ispell.el (ispell-message-text-end): Remove final newline
7124 from unidiff to allow function-line after @@.
7125
7126 2010-02-02 Juri Linkov <juri@jurta.org>
7127
7128 * ediff-util.el (ediff-file-checked-in-p): Replace '(nil CVS) by
7129 '(RCS SCCS) with inverted condition.
7130
7131 2010-02-02 Michael Albinus <michael.albinus@gmx.de>
7132
7133 * net/ange-ftp.el (ange-ftp-skip-msgs): Ignore all ""^500 .*AUTH"
7134 messages.
7135
7136 2010-02-01 Juri Linkov <juri@jurta.org>
7137
7138 * arc-mode.el (archive-zip-extract): Use `member-ignore-case' to
7139 compare with "pkunzip" and "pkzip" instead of only "pkzip".
7140 In the `archive-extract-by-stdout' branch use `shell-quote-argument'
7141 only when (car archive-zip-extract) is "unzip". (Bug#5475)
7142
7143 2010-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
7144
7145 * doc-view.el (doc-view-new-window-function): Be a bit more defensive.
7146 (doc-view-revert-buffer): New command.
7147 (doc-view-mode-map): Use it.
7148
7149 2010-02-01 Dan Nicolaescu <dann@ics.uci.edu>
7150
7151 * vc-bzr.el (vc-bzr-dir-extra-headers): Add a header when a
7152 pending merge is detected.
7153
7154 2010-01-31 Juri Linkov <juri@jurta.org>
7155
7156 * progmodes/grep.el (zrgrep): Call `grep-compute-defaults' at the
7157 beginning of interactive spec like all other grep commands do.
7158 Put "all" in front of "gz". (Bug#5260)
7159
7160 2010-01-29 Dan Nicolaescu <dann@ics.uci.edu>
7161
7162 * vc-bzr.el (vc-bzr-after-dir-status): Match another renaming indicator.
7163
7164 2010-01-29 Chong Yidong <cyd@stupidchicken.com>
7165
7166 * dirtrack.el (dirtrack): Warn instead of signalling error if the
7167 regexp is incorrect (Bug#5476).
7168
7169 2010-01-29 Michael Albinus <michael.albinus@gmx.de>
7170
7171 * net/tramp.el (tramp-handle-insert-directory): Handle also
7172 symlinks, when FILENAME is not in `default-directory'.
7173
7174 2010-01-28 Michael Albinus <michael.albinus@gmx.de>
7175
7176 * net/ange-ftp.el (ange-ftp-insert-directory): Handle the case,
7177 FILE is not in `default-directory'. (Bug#5478)
7178
7179 * net/tramp.el (tramp-handle-insert-directory): Simplify handling
7180 of SWITCHES. Handle the case, FILENAME is not in
7181 `default-directory'. (Bug#5478)
7182 (tramp-register-file-name-handlers): Add safe-magic property.
7183
7184 2010-01-28 Chong Yidong <cyd@stupidchicken.com>
7185
7186 * arc-mode.el (archive-zip-extract): Quote the argument passed to
7187 unzip (Bug#5475).
7188
7189 2010-01-28 Nil Geisweiller <ngeiswei@googlemail.com> (tiny change)
7190
7191 * progmodes/flymake.el (flymake-allowed-file-name-masks)
7192 (flymake-master-make-header-init): Add other C++ filename masks.
7193 (flymake-find-possible-master-files)
7194 (flymake-check-patch-master-file-buffer): Doc fixes (Bug#5488).
7195
7196 2010-01-28 Michael Albinus <michael.albinus@gmx.de>
7197
7198 Fix some busybox annoyances.
7199
7200 * net/tramp.el (tramp-wrong-passwd-regexp): Add "Timeout, server
7201 not responding." string.
7202 (tramp-open-connection-setup-interactive-shell): Dump stty
7203 settings. Enable "neveropen" arg for all `tramp-send-command'
7204 calls. Handle "=" in variable values properly.
7205 (tramp-find-inline-encoding): Raise an error, when no encoding is
7206 found.
7207 (tramp-wait-for-output): Check, whether PROC buffer is available.
7208 Remove spurious " ^H" sequences, sent by busybox.
7209 (tramp-get-ls-command): Suppress coloring, if possible.
7210
7211 2010-01-28 Glenn Morris <rgm@gnu.org>
7212
7213 * vc-svn.el (vc-svn-update): Use "svn --non-interactive". (Bug#4280)
7214
7215 * log-edit.el (log-edit-strip-single-file-name): Add missing
7216 :safe, :group, and :version tags.
7217
7218 2010-01-27 Stephen Berman <stephen.berman@gmx.net>
7219
7220 * calendar/diary-lib.el (diary-unhide-everything): Handle narrowed
7221 buffers. (Bug#5477)
7222
7223 2010-01-27 David De La Harpe Golden <david@harpegolden.net>
7224
7225 * files.el (delete-directory): Handle moving to trash without
7226 first doing recursion (Bug#5436).
7227
7228 2010-01-26 Dan Nicolaescu <dann@ics.uci.edu>
7229
7230 * vc-hooks.el (vc-path): Mark as obsolete.
7231
7232 2010-01-25 Dan Nicolaescu <dann@ics.uci.edu>
7233
7234 * vc-annotate.el (vc-annotate-revision-at-line): Compare file
7235 names too.
7236
7237 * vc-bzr.el (vc-bzr-print-log): Use the more compact --line option
7238 for the short log.
7239 (vc-bzr-log-view-mode): Adjust regexp for the above change.
7240
7241 2010-01-25 Mark A. Hershberger <mah@everybody.org>
7242
7243 * progmodes/python.el: Replace reference to obsolete c-subword-mode.
7244
7245 * vc-bzr.el (vc-bzr-revision-table): New function.
7246
7247 2010-01-25 Eric Hanchrow <eric.hanchrow@gmail.com> (tiny change)
7248
7249 * vc-git.el (vc-git-dir-status-goto-stage): Pass --relative to the
7250 diff-index command. This requires at least git-1.5.5. (Bug#1589).
7251
7252 2010-01-24 Dan Nicolaescu <dann@ics.uci.edu>
7253
7254 Remove support for adding --signoff on commit.
7255 Future support will use an incompatible generic mechanism.
7256 * vc-git.el (vc-git-add-signoff): Remove variable.
7257 (vc-git-toggle-signoff): Remove function.
7258 (vc-git-extra-menu-map): Do not bind vc-git-toggle-signoff.
7259
7260 * term/xterm.el (xterm-maybe-set-dark-background-mode): Rename
7261 from xterm-set-background-mode. Return t if the background mode
7262 was set.
7263 (terminal-init-xterm): Move tty-set-up-initial-frame-faces
7264 earlier, call it again in case the background mode has changed.
7265
7266 2010-01-23 Dmitri Paduchikh <dpaduch@k66.ru> (tiny change)
7267
7268 * emacs-lisp/advice.el (ad-set-orig-definition): Fix typo
7269 (Bug#3541).
7270
7271 2010-01-23 Chong Yidong <cyd@stupidchicken.com>
7272
7273 * emacs-lisp/assoc.el (aelement): Doc fix.
7274 (aput, adelete, amake): Use lexical-let (Bug#5450).
7275
7276 2010-01-23 Stephen Leake <stephen_leake@member.fsf.org>
7277
7278 * progmodes/ada-mode.el (ada-in-paramlist-p): Pragma syntax
7279 is the same as subprogram call, not declaration. (Bug#5435).
7280
7281 2010-01-23 Michael Albinus <michael.albinus@gmx.de>
7282
7283 * net/tramp-smb.el (tramp-smb-conf): New defcustom.
7284 (tramp-smb-maybe-open-connection): Use it.
7285
7286 2010-01-22 Michael Albinus <michael.albinus@gmx.de>
7287
7288 * net/tramp-imap.el (top): Autoload needed packages. (Bug#5448)
7289
7290 2010-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
7291
7292 * mail/rmailmm.el (rmail-mime-handle): Don't set the buffer to unibyte
7293 just because we see "encoding: 8bit".
7294 * mail/rmail.el (rmail-show-message-1): Decode the body's QP into bytes.
7295
7296 2010-01-22 Chong Yidong <cyd@stupidchicken.com>
7297
7298 * isearch.el (isearch-allow-scroll): Doc fix (Bug#5446).
7299
7300 2010-01-22 Eli Zaretskii <eliz@gnu.org>
7301
7302 * jka-compr.el (jka-compr-load): If load-file is not in
7303 load-history, try its file-truename version. (bug#5447)
7304
7305 2010-01-21 Alan Mackenzie <acm@muc.de>
7306
7307 Fix a situation where deletion of a cpp construct throws an error.
7308 * progmodes/cc-engine.el (c-invalidate-state-cache):
7309 Before invoking c-with-all-but-one-cpps-commented-out, check that the
7310 special cpp construct is still in the buffer.
7311 (c-parse-state): Record the special cpp with markers, not numbers.
7312
7313 2010-01-21 Kenichi Handa <handa@m17n.org>
7314
7315 * textmodes/sgml-mode.el (sgml-maybe-name-self): No need to
7316 process last-command-event, as it is now decoded first (Bug#5380).
7317
7318 2010-01-20 Chong Yidong <cyd@stupidchicken.com>
7319
7320 * term.el (term-send-raw-meta): Revert 2009-12-04 change (Bug#5330).
7321
7322 2010-01-20 Glenn Morris <rgm@gnu.org>
7323
7324 * indent.el (tab-always-indent): Fix custom-type.
7325
7326 2010-01-19 Alan Mackenzie <acm@muc.de>
7327
7328 * progmodes/cc-defs.el: Fix bug#5395: typing '#' in an empty
7329 buffer throws "args out of range".
7330 (c-set-cpp-delimiters, c-clear-cpp-delimiters): Check for EOB
7331 playing the role of delimiter.
7332
7333 2010-01-18 Stephen Leake <stephen_leake@member.fsf.org>
7334
7335 * progmodes/ada-mode.el: Fix bug#5400.
7336 (ada-matching-decl-start-re): Move into ada-goto-decl-start.
7337 (ada-goto-decl-start): Rename from ada-goto-matching-decl-start; callers
7338 changed. Delete RECURSIVE parameter; never used. Improve doc string.
7339 Improve comments in "is" portion. Handle null procedure declaration.
7340 (ada-move-to-end): Improve doc string.
7341
7342 2010-01-18 Óscar Fuentes <ofv@wanadoo.es>
7343
7344 * ido.el (ido-cur-list): Initialize to nil.
7345 Remove obsolete information from commentary.
7346 (ido-choice-list): Initialize to nil.
7347 (ido-get-bufname): Reject minibuffers.
7348 (ido-make-buffer-list): If "default" is a nonexistent
7349 buffer, ignore it, as per the function's comment.
7350 (ido-kill-buffer-internal): New function.
7351 (ido-kill-buffer-at-head): Use it.
7352 (ido-visit-buffer): Likewise.
7353
7354 2010-01-18 Chong Yidong <cyd@stupidchicken.com>
7355
7356 * calendar/time-date.el (date-to-time): Doc fix (Bug#5408).
7357
7358 2010-01-18 Juanma Barranquero <lekktu@gmail.com>
7359
7360 * cedet/ede/locate.el (ede-locate-file-in-project)
7361 (ede-locate-file-in-project-impl): Fix typos in docstrings.
7362 (ede-enable-locate-on-project): Fix typos in error messages.
7363
7364 * cedet/semantic/util-modes.el (semantic-unmatched-syntax-face)
7365 (semantic-stickyfunc-old-hlf, semantic-stickyfunc-header-line-format)
7366 (semantic-stickyfunc-sticky-classes, semantic-highlight-func-mode-setup)
7367 (semantic-stickyfunc-fetch-stickyline): Fix typos in docstrings.
7368 (semantic-stickyfunc-popup-menu, semantic-highlight-func-popup-menu):
7369 Fix typos in menu help.
7370
7371 * emacs-lisp/chart.el (chart-file-count, chart-rmail-from):
7372 Fix typos in chart titles.
7373
7374 * whitespace.el (whitespace-style, global-whitespace-newline-mode):
7375 * cedet/semantic.el (semantic-require-version, semantic--buffer-cache)
7376 (semantic-unmatched-syntax-cache-check, semantic-unmatched-syntax-hook)
7377 (semantic--before-fetch-tags-hook, semantic-new-buffer-fcn-was-run)
7378 (semantic--umatched-syntax-needs-refresh-p, semantic-elapsed-time)
7379 (semantic-parse-stream, semantic-parse-region)
7380 (semantic-parse-region-default, semantic--set-buffer-cache)
7381 (semantic-minimum-working-buffer-size, semantic-refresh-tags-safe)
7382 (semantic-bovinate-toplevel, semantic-load-system-cache-loaded)
7383 (semantic-default-submodes):
7384 * cedet/semantic/db-ebrowse.el (semanticdb-table-ebrowse)
7385 (semanticdb-create-ebrowse-database)
7386 (semanticdb-find-tags-for-completion-method)
7387 (semanticdb-find-tags-by-class-method)
7388 (semanticdb-deep-find-tags-by-name-method)
7389 (semanticdb-deep-find-tags-for-completion-method):
7390 * cedet/semantic/db-el.el (semanticdb-elisp-mapatom-collector)
7391 (semanticdb-find-tags-by-name-method, emacs-lisp-mode)
7392 (semanticdb-find-tags-for-completion-method)
7393 (semanticdb-find-tags-by-class-method)
7394 (semanticdb-deep-find-tags-for-completion-method):
7395 * cedet/semantic/db-find.el (semanticdb-find-translate-path)
7396 (semanticdb-find-need-cache-update-p, semanticdb-find-result-with-nil-p)
7397 (semanticdb-find-scanned-include-tags, semanticdb-find-tags-collector)
7398 (semanticdb-find-tags-by-name-method)
7399 (semanticdb-find-tags-by-name-regexp-method)
7400 (semanticdb-find-tags-for-completion-method)
7401 (semanticdb-find-tags-by-class-method)
7402 (semanticdb-find-tags-external-children-of-type-method)
7403 (semanticdb-find-tags-subclasses-of-type-method)
7404 (semanticdb-deep-find-tags-by-name-method)
7405 (semanticdb-deep-find-tags-by-name-regexp-method)
7406 (semanticdb-deep-find-tags-for-completion-method):
7407 * cedet/semantic/db-global.el (semanticdb-enable-gnu-global-hook)
7408 (semanticdb-enable-gnu-global-in-buffer)
7409 (semanticdb-find-tags-for-completion-method)
7410 (semanticdb-deep-find-tags-by-name-method)
7411 (semanticdb-deep-find-tags-for-completion-method):
7412 * cedet/semantic/db-javascript.el (semanticdb-javascript-tags)
7413 (javascript-mode, semanticdb-find-translate-path)
7414 (semanticdb-find-tags-for-completion-method)
7415 (semanticdb-find-tags-by-class-method)
7416 (semanticdb-deep-find-tags-by-name-method)
7417 (semanticdb-deep-find-tags-for-completion-method)
7418 (semanticdb-find-tags-external-children-of-type-method):
7419 * cedet/semantic/idle.el (semantic-idle-work-core-handler)
7420 (define-semantic-idle-service, semantic-idle-summary-useful-context-p)
7421 (global-semantic-idle-scheduler-mode):
7422 * cedet/srecode/dictionary.el (srecode-field-value)
7423 (srecode-dictionary-add-section-dictionary):
7424 * emacs-lisp/eieio.el (eieio-error-unsupported-class-tags)
7425 (eieio-generic-form, eieio-help-mode-augmentation-maybee, eieio-browse)
7426 (describe-class, eieio-describe-generic, describe-generic):
7427 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click)
7428 (eieio-speedbar-expand):
7429 * emulation/viper-cmd.el (viper-exec-form-in-vi)
7430 (viper-exec-form-in-emacs, viper-harness-minor-mode, viper-ESC)
7431 (viper-repeat, viper-replace-state-exit-cmd, viper-toggle-search-style)
7432 (viper-del-backward-char-in-replace, viper-backward-indent)
7433 (viper-brac-function, viper-register-to-point, viper-submit-report):
7434 * net/tramp.el (tramp-remote-coding-commands):
7435 * term/x-win.el (emacs-session-save, x-menu-bar-open, icon-map-list):
7436 Fix typos in docstrings.
7437
7438 2010-01-17 Chong Yidong <cyd@stupidchicken.com>
7439
7440 * mail/sendmail.el (mail-yank-original): Set the mark if the
7441 specified function for yanking does not do it.
7442
7443 2010-01-17 Dan Nicolaescu <dann@ics.uci.edu>
7444
7445 * vc.el (with-vc-properties): Deal with directory arguments. (Bug#5298)
7446
7447 * vc-dir.el (vc-dir-resynch-file): Update the vc-dir header when
7448 resyncing a directory.
7449
7450 2010-01-17 Stephen Leake <stephen_leake@member.fsf.org>
7451
7452 * progmodes/ada-mode.el: Fix bug#1920.
7453 (ada-ident-re): Delete ., allow multibyte characters.
7454 (ada-goto-label-re): New; matches goto labels.
7455 (ada-block-label-re): New; matches block labels.
7456 (ada-label-re): New; matches both.
7457 (ada-named-block-re): Deleted; callers changed to use
7458 `ada-block-label-re' instead.
7459 (ada-get-current-indent, ada-get-indent-noindent, ada-get-indent-loop):
7460 Use `ada-block-label-re'.
7461 (ada-indent-on-previous-lines): Improve handling of goto labels.
7462 (ada-get-indent-block-start): Special-case block label.
7463 (ada-get-indent-label): Split into `ada-indent-block-label' and
7464 `ada-indent-goto-label'.
7465 (ada-goto-stmt-start, ada-goto-next-non-ws):
7466 Optionally ignore goto labels.
7467 (ada-goto-next-word): Simplify.
7468 (ada-indent-newline-indent-conditional): Insert newline before
7469 trying to fix indentation; doc fix.
7470
7471 2010-01-17 Jay Belanger <jay.p.belanger@gmail.com>
7472
7473 * calc/calc.el (calc-command-flags): Give it an initial value.
7474
7475 2010-01-17 Glenn Morris <rgm@gnu.org>
7476
7477 * cedet/semantic/idle.el (semantic-idle-work-for-one-buffer): Doc fix.
7478
7479 2010-01-17 Juanma Barranquero <lekktu@gmail.com>
7480
7481 * cedet/semantic.el (semantic-mode):
7482 * files.el (minibuffer-with-setup-hook):
7483 * textmodes/artist.el (artist-mt, artist-key-undraw-continously)
7484 (artist-key-draw-continously, artist-key-do-continously-continously)
7485 (artist-key-set-point-continously, artist-mouse-draw-continously):
7486 Fix typos in docstrings.
7487
7488 2010-01-16 Lennart Borgman <lennart.borgman@gmail.com>
7489
7490 * nxml/nxml-mode.el (nxml-extend-after-change-region): Never
7491 return t (Bug#3898).
7492
7493 2010-01-16 Frédéric Perrin <frederic.perrin@resel.fr> (tiny change)
7494
7495 * vc-dispatcher.el (vc-do-command): Set LC_MESSAGES, so that we
7496 can parse the output of the external commands (Bug#5279).
7497
7498 2010-01-16 Jari Aalto <jari.aalto@cante.net>
7499
7500 * pcmpl-unix.el (pcmpl-unix-read-passwd-file): Doc fix.
7501
7502 2010-01-16 Chong Yidong <cyd@stupidchicken.com>
7503
7504 * emacs-lisp/advice.el (ad-add-advice): Doc fix (Bug#5274)
7505
7506 * emacs-lisp/cl-macs.el (defstruct): Doc fix (Bug#5267).
7507
7508 * startup.el (command-line): Remove unused --icon-type arg.
7509 Handle --display arg, passing it to command-line-1 (Bug#5392).
7510
7511 2010-01-16 Mario Lang <mlang@delysid.org>
7512
7513 * cedet/ede/cpp-root.el (ede-cpp-root-project):
7514 * cedet/ede/files.el (ede-expand-filename):
7515 * cedet/ede/simple.el (ede-simple-project):
7516 * cedet/semantic/complete.el (semantic-complete-read-tag-engine)
7517 (semantic-complete-inline-tag-engine):
7518 * cedet/semantic/db-el.el (semanticdb-equivalent-mode):
7519 * cedet/semantic/db-global.el (semanticdb-equivalent-mode):
7520 * cedet/semantic/db-javascript.el (semanticdb-equivalent-mode):
7521 * cedet/semantic/db.el (semanticdb-equivalent-mode):
7522 * cedet/semantic/decorate/include.el (semantic-decoration-unknown-include-describe):
7523 * cedet/semantic/idle.el (semantic-idle-work-for-one-buffer):
7524 * emacs-lisp/chart.el (chart-translate-namezone):
7525 * textmodes/artist.el (artist-compute-popup-menu-table):
7526 Remove duplicated words in doc-strings.
7527
7528 2010-01-15 David Abrahams <dave@boostpro.com> (tiny change)
7529
7530 * net/mairix.el (mairix-widget-send-query): Send -1 instead of nil
7531 to mairix-search to suppress threading (Bug#5342).
7532
7533 2010-01-15 Kenichi Handa <handa@m17n.org>
7534
7535 * international/mule-cmds.el (canonicalize-coding-system-name):
7536 Convert "msXXX", "ibmXXX", "windows-XXX" to "cpXXX" (Bug#5387).
7537
7538 2010-01-15 Glenn Morris <rgm@gnu.org>
7539
7540 * log-view.el (top-level): Require 'wid-edit. (Bug#5311)
7541
7542 * wid-edit.el (widget-keymap): Doc fix.
7543
7544 * vc-svn.el (vc-svn-print-log): Use --limit rather than -l since the
7545 former seems to be more widely accepted by various svn versions.
7546
7547 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
7548
7549 * find-cmd.el (find-constituents):
7550 * vc-arch.el (vc-arch-root):
7551 * window.el (window-body-height, pop-up-frames):
7552 * cedet/semantic/edit.el (semantic-reparse-needed-change-hook)
7553 (semantic-no-reparse-needed-change-hook):
7554 * cedet/srecode/insert.el (srecode-resolve-argument-list)
7555 (srecode-template-inserter-blank, srecode-template-inserter-variable)
7556 (srecode-template-inserter-ask, srecode-template-inserter-width)
7557 (srecode-template-inserter-section-start)
7558 (srecode-template-inserter-section-end, srecode-insert-method):
7559 * emacs-lisp/eieio-base.el (eieio-singleton, slot-missing):
7560 * progmodes/ada-stmt.el (ada-if):
7561 * progmodes/gdb-ui.el (gdb-jsonify-buffer):
7562 * textmodes/ispell.el (ispell-grep-options, ispell-dictionary-alist)
7563 (ispell-encoding8-command, ispell-aspell-supports-utf8)
7564 (ispell-last-program-name, ispell-help): Fix typos in docstrings.
7565
7566 * progmodes/flymake.el (flymake-post-syntax-check):
7567 Fix typo in error message.
7568
7569 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
7570
7571 * hexl.el (hexl-printable-character): Fix check of `hexl-iso',
7572 which is always a string. (Bug#5313)
7573
7574 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
7575
7576 * progmodes/ada-xref.el (ada-default-prj-properties):
7577 Simplify previous change.
7578
7579 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
7580
7581 * progmodes/ada-xref.el (ada-default-prj-properties):
7582 Default ada_project_path to $ADA_PROJECT_PATH.
7583
7584 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
7585
7586 * progmodes/ada-mode.el (ada-create-keymap):
7587 Override `narrow-to-defun' with `ada-narrow-to-defun'.
7588
7589 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
7590
7591 * progmodes/ada-mode.el: Deal with Ada 2005 "overriding" keyword.
7592 (ada-subprog-start-re, ada-imenu-subprogram-menu-re): Add keyword.
7593 (ada-get-current-indent, ada-imenu-generic-expression)
7594 (ada-which-function): Check for it.
7595
7596 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
7597
7598 * progmodes/ada-mode.el (ada-clean-buffer-before-saving): Make obsolete.
7599 (ada-mode): Don't obey `ada-clean-buffer-before-saving' anymore.
7600
7601 2010-01-14 Glenn Morris <rgm@gnu.org>
7602
7603 * frame.el (show-trailing-whitespace): Safe if boolean. (Bug#5312)
7604
7605 2010-01-14 Kenichi Handa <handa@m17n.org>
7606
7607 * composite.el (auto-composition-mode): Make it a buffer local
7608 variable (permanent-local).
7609 (auto-composition-function): Set the default value to
7610 auto-compose-chars.
7611 (auto-composition-mode): Make it a simple function, not a minor mode.
7612 (global-auto-composition-mode): Likewise.
7613 (turn-on-auto-composition-if-enabled): Delete it.
7614
7615 2010-01-13 Karl Fogel <kfogel@red-bean.com>
7616
7617 * bookmark.el (bookmark-bmenu-execute-deletions): Doc fix (Bug#5276).
7618
7619 2010-01-12 Michael Albinus <michael.albinus@gmx.de>
7620
7621 * files.el (copy-directory): Compute target for recursive
7622 directories with identical names. (Bug#5343)
7623
7624 2010-01-12 Glenn Morris <rgm@gnu.org>
7625
7626 * mail/emacsbug.el (report-emacs-bug-pretest-address): Set
7627 it to bug-gnu-emacs rather than emacs-pretest-bug.
7628
7629 2010-01-12 Juanma Barranquero <lekktu@gmail.com>
7630
7631 * cedet/data-debug.el (data-debug): Fix customization group reference.
7632
7633 2010-01-12 Juanma Barranquero <lekktu@gmail.com>
7634
7635 * cedet/semantic/analyze.el (semantic-analyze-push-error)
7636 (semantic-analyze-context, semantic-analyze-context-assignment)
7637 (semantic-analyze-find-tag-sequence, semantic-analyze-find-tag):
7638 * cedet/semantic/java.el (java-mode, semantic-tag-include-filename)
7639 (semantic-java-doc-keywords-map):
7640 * cedet/semantic/bovine/c.el (c-mode, semantic-c-member-of-autocast)
7641 (semantic-lex-c-nested-namespace-ignore-second, semantic-parse-region)
7642 (semantic-c-parse-lexical-token, semantic-c-debug-mode-init-pch)
7643 (semantic-c-classname, semantic-format-tag-uml-prototype)
7644 (semantic-c-dereference-namespace, semantic-analyze-type-constants):
7645 * cedet/semantic/bovine/el.el (semantic-elisp-form-to-doc-string)
7646 (semantic-emacs-lisp-obsoleted-doc, semantic-up-context)
7647 (semantic-get-local-variables, semantic-end-of-command)
7648 (semantic-beginning-of-command, semantic-ctxt-current-class-list)
7649 (lisp-mode):
7650 * cedet/semantic/bovine/make.el (makefile-mode):
7651 * cedet/semantic/wisent/python.el (wisent-python-string-re)
7652 (wisent-python-implicit-line-joining-p, wisent-python-forward-string)
7653 (wisent-python-lex-beginning-of-line, wisent-python-lex-end-of-line)
7654 (semantic-lex, semantic-get-local-variables, python-mode):
7655 * cedet/semantic/wisent/python-wy.el (wisent-python-wy--keyword-table):
7656 * cedet/srecode/extract.el (srecode-extract-state-set)
7657 (srecode-extract-method): Fix typos in docstrings.
7658
7659 2010-01-11 Sam Steingold <sds@gnu.org>
7660
7661 * imenu.el (imenu-default-create-index-function): Detect infinite
7662 loops caused by imenu-prev-index-position-function.
7663
7664 2010-01-11 Juanma Barranquero <lekktu@gmail.com>
7665
7666 * htmlfontify.el (htmlfontify-load-rgb-file)
7667 (htmlfontify-unload-rgb-file, hfy-fallback-colour-values)
7668 (htmlfontify-manual, htmlfontify, hfy-page-header, hfy-page-footer)
7669 (hfy-src-doc-link-style, hfy-src-doc-link-unstyle, hfy-link-extn)
7670 (hfy-link-style-fun, hfy-index-file, hfy-instance-file)
7671 (hfy-html-quote-regex, hfy-init-kludge-hook, hfy-post-html-hooks)
7672 (hfy-default-face-def, hfy-etag-regex, hfy-html-quote-map)
7673 (hfy-etags-cmd-alist-default, hfy-etags-bin, hfy-ignored-properties)
7674 (hfy-which-etags, hfy-etags-cmd, hfy-istext-command, hfy-display-class)
7675 (hfy-optimisations, hfy-tags-cache, hfy-tags-sortl, hfy-tags-rmap)
7676 (hfy-style-assoc, hfy-sheet-assoc, hfy-facemap-assoc, hfy-interq)
7677 (hfy-colour-vals, hfy-default-header, hfy-link-style-string)
7678 (hfy-triplet, hfy-slant, hfy-weight, hfy-combined-face-spec)
7679 (hfy-face-attr-for-class, hfy-face-to-style-i, hfy-size-to-int)
7680 (hfy-flatten-style, hfy-face-to-style, hfy-face-or-def-to-name)
7681 (hfy-face-to-css, hfy-p-to-face, hfy-p-to-face-lennart, hfy-face-at)
7682 (hfy-fontified-p, hfy-merge-adjacent-spans, hfy-buffer)
7683 (hfy-html-enkludge-buffer, hfy-html-quote, hfy-html-dekludge-buffer)
7684 (hfy-force-fontification, htmlfontify-buffer, hfy-dirname)
7685 (hfy-make-directory, hfy-text-p, hfy-mark-tag-names, hfy-relstub)
7686 (hfy-href-stub, hfy-href, hfy-mark-tag-hrefs, hfy-prepare-index-i)
7687 (hfy-prepare-index, hfy-prepare-tag-map, hfy-subtract-maps)
7688 (htmlfontify-run-etags): Fix typos in docstrings and remove superfluous
7689 backslash-quoting from parentheses, etc.
7690
7691 2010-01-11 Chong Yidong <cyd@stupidchicken.com>
7692
7693 * progmodes/js.el: Autoload javascript-mode alias.
7694
7695 2010-01-11 Juanma Barranquero <lekktu@gmail.com>
7696
7697 * ffap.el (ffap-shell-prompt-regexp, ffap-all-subdirs, ffap-url-p)
7698 (ffap-alist, ffap-tex-path, ffap-url-at-point, ffap-gopher-regexp)
7699 (ffap-gopher-at-point, ffap-file-at-point, ffap-read-file-or-url)
7700 (ffap-read-url-internal, ffap-menu, ffap-at-mouse):
7701 Fix typos in docstrings.
7702 (ffap-url-regexp): Doc fix.
7703 (ffap-at-mouse): Fix typo in message.
7704
7705 2010-01-11 Glenn Morris <rgm@gnu.org>
7706
7707 * version.el (emacs-copyright): Set copyright year to 2010.
7708
7709 2010-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
7710
7711 * format.el (format-annotate-function): Only set
7712 write-region-post-annotation-function after running to-fn so as not to
7713 affect nested write-region calls (bug#5273).
7714
7715 2010-01-10 Chong Yidong <cyd@stupidchicken.com>
7716
7717 * cedet/semantic.el (semantic-new-buffer-setup-functions):
7718 Add python parser.
7719
7720 * Makefile.in (ELCFILES): Add wisent/python-wy.el and
7721 wisent/python.el.
7722
7723 2010-01-10 Richard Kim <emacs18@gmail.com>
7724
7725 * cedet/semantic/wisent/python-wy.el:
7726 * cedet/semantic/wisent/python.el: New files.
7727
7728 2010-01-09 Chong Yidong <cyd@stupidchicken.com>
7729
7730 * man.el (Man-goto-section): Signal error if the section is not
7731 found (Bug#5317).
7732
7733 2010-01-09 Juanma Barranquero <lekktu@gmail.com>
7734
7735 * vc-bzr.el (vc-bzr-working-revision): On Windows and MS-DOS, accept
7736 URLs with a leading triple slash in the file: scheme. (Bug#5345)
7737
7738 2010-01-09 Chong Yidong <cyd@stupidchicken.com>
7739
7740 * progmodes/compile.el: Don't treat compile-command as safe if
7741 compilation-read-command might be nil (Bug#4218).
7742
7743 2010-01-09 Jan Djärv <jan.h.d@swipnet.se>
7744
7745 * startup.el (command-line-1): Use orig-argi to check for ignored X and
7746 NS options.
7747
7748 2010-01-08 Kenichi Handa <handa@m17n.org>
7749
7750 * international/fontset.el (build-default-fontset-data):
7751 Exclude characters in scripts kana, hangul, han, or cjk-misc.
7752
7753 2010-01-07 Juanma Barranquero <lekktu@gmail.com>
7754
7755 * vc-dir.el (vc-dir-prepare-status-buffer): Pass a (fake) filename
7756 to `create-file-buffer' as it expects, not just a buffer name.
7757 (vc-dir-mode): Include the buffer name in `list-buffers-directory',
7758 to help uniquify. (Bug#3224)
7759
7760 2010-01-06 Jan Djärv <jan.h.d@swipnet.se>
7761
7762 * font-setting.el (font-setting-change-default-font): Use user-spec
7763 instead of name.
7764
7765 2010-01-06 Dan Nicolaescu <dann@ics.uci.edu>
7766
7767 * vc-bzr.el (vc-bzr-after-dir-status): Ignore pending merges.
7768
7769 2010-01-05 Tom Tromey <tromey@redhat.com>
7770
7771 * progmodes/python.el (python-font-lock-keywords):
7772 Handle qualified decorators (Bug#881).
7773
7774 2010-01-05 Dan Nicolaescu <dann@ics.uci.edu>
7775
7776 * vc-bzr.el (vc-bzr-working-revision): Fix looking for a revision
7777 in a lightweight checkout.
7778
7779 2010-01-05 Kenichi Handa <handa@m17n.org>
7780
7781 * language/indian.el (malayalam-composable-pattern): Fix ZWNJ and ZWJ.
7782
7783 2010-01-05 Dan Nicolaescu <dann@ics.uci.edu>
7784
7785 * vc-bzr.el (vc-bzr-diff): Obey vc-disable-async-diff.
7786
7787 2010-01-04 Dan Nicolaescu <dann@ics.uci.edu>
7788
7789 * vc-bzr.el (vc-bzr-state-heuristic): Make it work for lightweight
7790 checkouts. (Bug#618)
7791 (vc-bzr-log-view-mode): Also highlight the author.
7792 (vc-bzr-shelve-map): Change binding for vc-bzr-shelve-apply-at-point.
7793 (vc-bzr-shelve-menu-map):
7794 (vc-bzr-dir-extra-headers): Improve menu and tooltip text.
7795 (vc-bzr-shelve-apply): Make prompt more explicit.
7796
7797 2010-01-02 Chong Yidong <cyd@stupidchicken.com>
7798
7799 * net/browse-url.el (browse-url-encode-url): Don't escape commas.
7800 They are valid characters in URL paths (rfc3986), and at least
7801 Firefox does not understand the encoded version (Bug#3166).
7802
7803 2010-01-02 Daniel Elliott <danelliottster@gmail.com> (tiny change)
7804
7805 * progmodes/octave-mod.el (octave-end-keywords)
7806 (octave-block-begin-or-end-regexp, octave-block-match-alist):
7807 Add "end" keyword (Bug#3061).
7808 (octave-end-as-array-index-p): New function.
7809 (calculate-octave-indent): Use it.
7810
7811 2010-01-02 Karl Fogel <kfogel@red-bean.com>
7812
7813 * bookmark.el: Consistently put the text property on the bookmark name.
7814 (bookmark-bmenu-marks-width): Bump back to 2, to include
7815 annotation marks.
7816 (bookmark-bmenu-hide-filenames): Adjust for above, and put the text
7817 property on the bookmark name, instead of not putting it at all.
7818 (bookmark-bmenu-list): Fix where we put the text property.
7819
7820 2010-01-02 Karl Fogel <kfogel@red-bean.com>
7821
7822 * bookmark.el (bookmark-bmenu-save): Just depend on the new logic
7823 for showing buffer modified state (as added in the previous change).
7824
7825 2010-01-02 Karl Fogel <kfogel@red-bean.com>
7826
7827 * bookmark.el: Show modified state of bookmark buffer more accurately.
7828 (bookmark-bmenu-list): Initialize buffer-modified-p properly.
7829 (bookmark-send-edited-annotation): Mark bookmark-alist as modified.
7830 (with-buffer-modified-unmodified): New macro.
7831 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
7832 (bookmark-bmenu-mark, bookmark-bmenu-unmark, bookmark-bmenu-delete):
7833 Use new macro to preserve the buffer modified state.
7834
7835 2010-01-02 Karl Fogel <kfogel@red-bean.com>
7836
7837 * bookmark.el (bookmark-bmenu-select, bookmark-bmenu-1-window)
7838 (bookmark-bmenu-2-window, bookmark-bmenu-this-window)
7839 (bookmark-bmenu-other-window, bookmark-bmenu-switch-other-window)
7840 (bookmark-bmenu-show-annotation, bookmark-bmenu-edit-annotation)
7841 (bookmark-bmenu-rename, bookmark-bmenu-locate)
7842 (bookmark-bmenu-relocate, bookmark-bmenu-goto-bookmark):
7843 Remove unnecessary calls to `bookmark-bmenu-ensure-position'.
7844
7845 2010-01-02 Eli Zaretskii <eliz@gnu.org>
7846
7847 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
7848 Make the lines in the generated doc string shorter. (Bug#4668)
7849
7850 2010-01-02 Ryan Yeske <rcyeske@gmail.com>
7851
7852 * net/rcirc.el: Add follow-link binding (Bug#4738).
7853
7854 2010-01-02 Eli Zaretskii <eliz@gnu.org>
7855
7856 * Makefile.in (bzr-update): Rename from cvs-update.
7857 (cvs-update): New target for backward compatibility.
7858
7859 * makefile.w32-in (bzr-update): Rename from cvs-update.
7860 (cvs-update): New target for backward compatibility.
7861
7862 2010-01-02 Karl Fogel <kfogel@red-bean.com>
7863
7864 * bookmark.el: Remove gratuitous gratitude.
7865
7866 2010-01-02 Karl Fogel <kfogel@red-bean.com>
7867
7868 * bookmark.el (bookmark-bmenu-any-marks): New function.
7869 (bookmark-bmenu-save): Clear buffer modification if no marks.
7870
7871 2010-01-02 Karl Fogel <kfogel@red-bean.com>
7872
7873 * bookmark.el (bookmark-bmenu-marks-width): Define to 1, not 2.
7874 (bookmark-bmenu-list, bookmark-bmenu-bookmark): Calculate property
7875 positions by using `bookmark-bmenu-marks-width', instead of hardcoding.
7876 This fixes the `bookmark-bmenu-execute-deletions' bug reported here:
7877
7878 http://lists.gnu.org/archive/html/emacs-devel/2009-12/msg00819.html
7879 From: Sun Yijiang <sunyijiang {_AT_} gmail.com>
7880 To: emacs-devel {_AT_} gnu.org
7881 Subject: bookmark.el bug report
7882 Date: Mon, 28 Dec 2009 14:19:16 +0800
7883 Message-ID: 5065e2900912272219y3734fc9fsdaee41167ef99ad7@mail.gmail.com
7884
7885 2010-01-02 Karl Fogel <kfogel@red-bean.com>
7886
7887 * bookmark.el: Improvements suggested by Drew Adams:
7888 (bookmark-bmenu-ensure-position): New name for
7889 `bookmark-bmenu-check-position'. Just ensure the position,
7890 don't return any meaningful value.
7891 (bookmark-bmenu-header-height, bookmark-bmenu-marks-width):
7892 New constants.
7893
7894 2010-01-02 Juanma Barranquero <lekktu@gmail.com>
7895
7896 * bookmark.el (bookmarks-already-loaded): Doc fix (don't use `iff').
7897 (bookmark-yank-point, bookmark-bmenu-check-position):
7898 Fix typos in docstrings.
7899 (bookmark-save-flag, bookmark-bmenu-toggle-filenames)
7900 (bookmark-name-from-full-record, bookmark-get-position)
7901 (bookmark-set-position, bookmark-set, bookmark-handle-bookmark)
7902 (bookmark-delete, bookmark-save, bookmark-save, bookmark-bmenu-mode):
7903 Remove useless quoting of parenthesis, etc. in docstrings.
7904
7905 * ediff-mult.el (ediff-prepare-meta-buffer): Fix typo in help message.
7906 (ediff-append-custom-diff): Fix typo in error message.
7907 (ediff-meta-mark-equal-files): Fix typos in messages.
7908
7909 * mpc.el (mpc-playlist-delete): Fix typo in error messages.
7910
7911 * cedet/semantic/db-typecache.el (semanticdb-typecache-find-default):
7912 Fix typo in docstring.
7913
7914 * net/imap-hash.el (imap-hash-make): Doc fix.
7915 (imap-hash-test): Fix typo in error message; reflow docstring.
7916 (imap-hash-p, imap-hash-get, imap-hash-put, imap-hash-make-message)
7917 (imap-hash-count, imap-hash-server, imap-hash-port, imap-hash-ssl)
7918 (imap-hash-mailbox, imap-hash-user, imap-hash-password):
7919 Fix typos in docstrings.
7920 (imap-hash-open-connection): Fix typo in error message.
7921
7922 * play/gomoku.el (gomoku): Fix typos in docstring.
7923
7924 * progmodes/gdb-ui.el (gdb-location-alist): Reflow docstring.
7925 (gdb-jsonify-buffer): Fix typos in docstring.
7926 (gdb-goto-breakpoint): Fix typo in error message.
7927 ("Display Other Windows"): Fix typo in help message.
7928 (gdb-speedbar-expand-node): Fix typo in question.
7929
7930 * progmodes/idlw-help.el (idlwave-help-browse-url-available)
7931 (idlwave-html-system-help-location, idlwave-html-help-location)
7932 (idlwave-help-browser-function, idlwave-help-browser-generic-program)
7933 (idlwave-help-browser-generic-args, idlwave-help-directory)
7934 (idlwave-html-help-is-available, idlwave-help-mode-line-indicator)
7935 (idlwave-help-mode-map, idlwave-help-mode, idlwave-do-context-help)
7936 (idlwave-online-help, idlwave-help-html-link)
7937 (idlwave-help-show-help-frame, idlwave-help-assistant-command):
7938 Fix typos in docstrings.
7939 (idlwave-help-with-source, idlwave-help-find-routine-definition):
7940 Reflow docstrings.
7941 (idlwave-help-assistant-start): Fix typo in error message.
7942
7943 * progmodes/octave-mod.el (octave-mode, octave-electric-semi)
7944 (octave-electric-space): Fix typos in docstrings.
7945
7946 2010-01-01 Chong Yidong <cyd@stupidchicken.com>
7947
7948 * files.el (minibuffer-with-setup-hook): Doc fix (Bug#5149).
7949
7950 2010-01-01 Juri Linkov <juri@jurta.org>
7951
7952 * comint.el (comint-input-ring-size): Make it a defcustom and
7953 increase the default to 500 (Bug#5148).
7954
7955 2009-12-31 Nick Roberts <nickrob@snap.net.nz>
7956
7957 Further changes from EMACS_23_1_RC branch (2009-12-29 contd).
7958 * term/x-win.el (x-gtk-stock-map): Map some GUD buttons.
7959 * progmodes/gud.el (gud-menu-map): Add reverse-execution commands.
7960
7961 2009-12-30 Nick Roberts <nickrob@snap.net.nz>
7962
7963 Show working revision correctly for mercurial.
7964 * vc-hg.el (vc-hg-working-revision): Use hg parent instead of
7965 hg log as suggested by Alex Harsanyi <alexharsanyi@gmail.com>.
7966
7967 2009-12-29 Juanma Barranquero <lekktu@gmail.com>
7968
7969 Declare some functions for the byte-compiler.
7970 * progmodes/gdb-ui.el (speedbar-change-initial-expansion-list)
7971 (speedbar-timer-fn, speedbar-change-expand-button-char)
7972 (speedbar-delete-subblock, speedbar-center-buffer-smartly): Declare.
7973
7974 2009-12-29 Nick Roberts <nickrob@snap.net.nz>
7975
7976 This changeset reverts GDB Graphical Interface to use annotations.
7977 * progmodes/gdb-ui.el, progmodes/gud.el: Import from EMACS_23_1_RC.
7978
7979 2009-12-29 Dan Nicolaescu <dann@ics.uci.edu>
7980
7981 Make vc-dir work on subdirectories of the bzr root.
7982 * vc-bzr.el (vc-bzr-after-dir-status): Add new argument. Return
7983 file names relative to it.
7984 (vc-bzr-dir-status, vc-bzr-dir-status-files): Pass the bzr root
7985 relative directory to vc-bzr-after-dir-status.
7986
7987 2009-12-28 Tassilo Horn <tassilo@member.fsf.org>
7988
7989 * font-lock.el (font-lock-refresh-defaults): New function, which
7990 can be used to let font-lock react to external changes in
7991 variables like font-lock-defaults and keywords.
7992 See http://thread.gmane.org/gmane.emacs.devel/118777/focus=118802
7993
7994 2009-12-28 Dan Nicolaescu <dann@ics.uci.edu>
7995
7996 * vc-rcs.el (vc-rcs-register): Fix registering a specific version.
7997
7998 * vc-bzr.el (vc-bzr-log-view-mode): Fix short log regexp.
7999
8000 2009-12-28 Juanma Barranquero <lekktu@gmail.com>
8001
8002 Supersede color.diff settings in git log (bug#5211).
8003
8004 * vc-git.el (vc-git-print-log): Pass "--no-color" to log to avoid
8005 escape chars in its output when the user has color.diff set to `always'.
8006 This fix works on git 1.4.2 and newer (released on 2006-08-13).
8007
8008 2009-12-26 Kevin Ryde <user42@zip.com.au>
8009
8010 * info-look.el (sh-mode): Look for coreutils new "Concept Index"
8011 node. Keep previous "Index" name to work with past coreutils too.
8012
8013 * man.el (man): Revise docstring a bit to show -a and -l as
8014 examples. Add -k description since support for it has otherwise
8015 been a secret. (Further to bug#3717.)
8016 (Man-bgproc-sentinel): When "-k foo" produces no output show error
8017 "no matches" rather than "Can't find manpage", as the latter reads
8018 like -k was interpreted as a page name, which is not so. (Bug#5431)
8019
8020 2009-12-26 Michael Albinus <michael.albinus@gmx.de>
8021
8022 * net/tramp.el (tramp-handle-insert-directory): Quote "'" in the
8023 switches. Check also for //SUBDIRED// line.
8024
8025 2009-12-25 Kenichi Handa <handa@m17n.org>
8026
8027 * language/indian.el (devanagari-composable-pattern): Fixed to
8028 handle ZWNJ and ZWJ. Use it in composition-function-table for
8029 Devanagari.
8030 (malayalam-composable-pattern): Fix previous change.
8031
8032 2009-12-23 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8033
8034 * ps-print.el (ps-face-attributes): It was not returning the
8035 attribute face for faces specified as string. Reported by harven
8036 <harven@free.fr>. (Bug#5254)
8037 (ps-print-version): New version 7.3.5.
8038
8039 2009-12-18 Ulf Jasper <ulf.jasper@web.de>
8040
8041 * calendar/icalendar.el (icalendar--convert-tz-offset):
8042 Fix timezone names.
8043 (icalendar--convert-tz-offset): Fix the "last-day-problem".
8044 (icalendar--add-diary-entry): Remove the trailing blank that
8045 diary-make-entry inserts.
8046
8047 2009-12-17 Michael Albinus <michael.albinus@gmx.de>
8048
8049 Make `file-expand-wildcards' work for remote files.
8050
8051 * files.el (file-expand-wildcards): In case of remote files, check
8052 only local file name part for wildcards. Provide feature 'files
8053 and subfeature 'remote-wildcards. (Bug#5198)
8054
8055 * net/tramp.el (tramp-handle-file-remote-p): Expand file name only
8056 if there is already an established connection.
8057 (tramp-advice-file-expand-wildcards): Remove it.
8058
8059 * net/tramp-compat.el (top): Autoload `tramp-handle-file-remote-p'.
8060 (tramp-advice-file-expand-wildcards): Move from tramp.el.
8061 Activate advice for older GNU Emacs versions. (Bug#5237)
8062
8063 2009-12-17 Juanma Barranquero <lekktu@gmail.com>
8064
8065 Some doc fixes (more needed).
8066
8067 * find-cmd.el (find-constituents): Reflow docstring.
8068 (find-cmd, find-prune, find-command): Fix typos in docstrings.
8069 (find-generic): Doc fix.
8070
8071 2009-12-17 Juri Linkov <juri@jurta.org>
8072
8073 Fix regression from 23.1 to allow multiple modes in Local Variables.
8074
8075 * files.el (hack-local-variables-filter): While ignoring duplicates,
8076 don't take `mode' into account.
8077 (hack-local-variables-filter, hack-dir-local-variables):
8078 Don't remove duplicate `mode' from local-variables-alist (like `eval').
8079
8080 2009-12-17 Juri Linkov <juri@jurta.org>
8081
8082 Make `dired-diff' safer. (Bug#5225)
8083
8084 * dired-aux.el (dired-diff): Signal an error when `file' equals to
8085 `current' or when `file' is a directory of the `current' file.
8086
8087 2009-12-17 Andreas Schwab <schwab@linux-m68k.org>
8088
8089 * emacs-lisp/autoload.el (batch-update-autoloads): Only exclude
8090 unconditionally preloaded files.
8091
8092 2009-12-16 Juri Linkov <juri@jurta.org>
8093
8094 Revert to old 23.1 logic of using the file at the mark as default.
8095 * dired-aux.el (dired-diff): Use the file at the mark as default
8096 if it's not the same as the current file, and the target dir is
8097 the current dir or the mark is active. Add the current file
8098 as the arg of `dired-dwim-target-defaults'. Use the default file
8099 in the prompt. (Bug#5225)
8100
8101 2009-12-15 Michael Albinus <michael.albinus@gmx.de>
8102
8103 * net/tramp.el (tramp-echo-mark-marker-length): New defconst.
8104 (tramp-echo-mark, tramp-echoed-echo-mark-regexp): Use it.
8105 (tramp-check-for-regexp): Check also, when an echoing shell stops
8106 to echo sent commands.
8107
8108 2009-12-14 Chong Yidong <cyd@stupidchicken.com>
8109
8110 * Makefile.in: Revert last change (Bug#5191).
8111
8112 2009-12-14 Dan Nicolaescu <dann@ics.uci.edu>
8113
8114 * vc-hg.el (vc-hg-print-log): Fix argument order.
8115 (vc-hg-working-revision): Make sure the command is executed in a
8116 known environment so that we can parse the output. (Bug#4417)
8117
8118 2009-12-14 Chong Yidong <cyd@stupidchicken.com>
8119
8120 * progmodes/python.el (python-symbol-completions): Remove text
8121 properties from symbol string before calling python-send-receive.
8122
8123 2009-12-14 Nick Roberts <nickrob@snap.net.nz>
8124
8125 * progmodes/gdb-mi.el (gdb-frame-handler): Only set gud-lat-frame
8126 when there are values for both file and line. (Bug#5060)
8127
8128 2009-12-14 Juri Linkov <juri@jurta.org>
8129
8130 * ediff-ptch.el (ediff-context-diff-label-regexp): Don't match
8131 whitespace after the file name of the first line of unified format,
8132 because git-diff doesn't output whitespace and file modification time
8133 after the file name.
8134
8135 2009-12-14 David Kastrup <dak@gnu.org>
8136
8137 * info.el (Info-hide-cookies-node): Before hiding a cookie,
8138 check if it already has the `display' property added by
8139 `Info-display-images-node', and not put the `invisible' property
8140 in this case.
8141
8142 2009-12-14 Chong Yidong <cyd@stupidchicken.com>
8143
8144 * cedet/semantic/mru-bookmark.el (global-semantic-mru-bookmark-mode)
8145 (semantic-mru-bookmark-mode): Doc fixes.
8146
8147 * cedet/semantic/db.el (semanticdb-cache-get): Use error instead
8148 of assert.
8149
8150 2009-12-13 Glenn Morris <rgm@gnu.org>
8151
8152 * mail/emacsbug.el (message-sort-headers): Define for compiler.
8153 (report-emacs-bug): In message-mode, sort manually before storing
8154 original report text. (Bug#5178)
8155 Remove superfluous save-excursion.
8156
8157 2009-12-12 Michael Albinus <michael.albinus@gmx.de>
8158
8159 * net/dbus.el (dbus-property-handler): Filter lambda forms out
8160 when responding to "GetAll" properties.
8161
8162 2009-12-12 Chong Yidong <cyd@stupidchicken.com>
8163
8164 * simple.el (compose-mail): Remove mail-setup-with-from from
8165 customization checks.
8166
8167 2009-12-12 Eli Zaretskii <eliz@gnu.org>
8168
8169 * arc-mode.el (archive-rar-summarize): Support Attribute fields in
8170 RAR archives created on Unix systems.
8171
8172 2009-12-12 Stefan Monnier <monnier@iro.umontreal.ca>
8173
8174 * minibuffer.el (minibuffer-local-must-match-filename-map): Re-instate
8175 the varalias that was accidentally removed by the 2009-11-19 change
8176 (bug#5186).
8177
8178 2009-12-12 Kenichi Handa <handa@m17n.org>
8179
8180 * language/indian.el (indian-compose-regexp): New function.
8181 (malayalam-composable-pattern): Fix the pattern.
8182 (composition-function-table): Set malayalam-composable-pattern for
8183 Malayalam characters.
8184
8185 2009-12-11 Chong Yidong <cyd@stupidchicken.com>
8186
8187 * progmodes/bug-reference.el (bug-reference-map): Bind mouse-2
8188 rather than down-mouse-1, based on follow-link conventions.
8189
8190 * makefile.w32-in: Ensure that Lisp files in CEDET subdirectories
8191 are compiled.
8192
8193 2009-12-11 Michael McNamara <mac@mail.brushroad.com>
8194
8195 * progmodes/verilog-mode.el (verilog-vmm-begin-re, verilog-vmm-end-re)
8196 (verilog-vmm-statement-re, verilog-ovm-statement-re)
8197 (verilog-defun-level-not-generate-re, verilog-calculate-indent)
8198 (verilog-leap-to-head, verilog-backward-token):
8199 Fix indenting VMM macros. Reported by Jonathan Ashbrook.
8200
8201 2009-12-11 Wilson Snyder <wsnyder@wsnyder.org>
8202
8203 * progmodes/verilog-mode.el (verilog-auto-lineup)
8204 (verilog-nameable-item-re): Cleanup user-visible spelling and
8205 documentation errors. One reported by Gary Delp.
8206 (verilog-submit-bug-report): Mention bug tracking and CC co-author.
8207 (verilog-read-decls): Fix AUTOWIRE with types declared in a
8208 package, bug195. Reported by Pierre-David Pfister.
8209
8210 2009-12-11 Glenn Morris <rgm@gnu.org>
8211
8212 * progmodes/cc-engine.el (safe-pos-list): Define for compiler.
8213
8214 * mail/emacsbug.el: No longer require sendmail.
8215 Replace sendmail's `mail-text' by `rfc822-goto-eoh'. (Bug#5174)
8216 (report-emacs-bug-orig-text): Doc fix.
8217 (report-emacs-bug-send-command, report-emacs-bug-send-hook):
8218 New local variables, to adapt to different mail-user-agents.
8219 (report-emacs-bug): Fix test for a gnu.org address.
8220 Use overlays for emphasis, since font-lock defeats 'face property.
8221 Pretest bugs also end up at the newsgroup these days.
8222 Stop message-mode stripping text properties.
8223 Set and use the new buffer-local variables.
8224 (report-emacs-bug-hook): Add doc-string.
8225 Remove some unnecessary save-excursions and simplify.
8226 Use the appropriate hook and send-command.
8227
8228 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Standardize the
8229 capitalization of some menu entries.
8230
8231 2009-12-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8232
8233 * whitespace.el (whitespace-display-char-on):
8234 Ensure `buffer-display-table' is unique when two or more windows are
8235 visible. Reported by Martin Pohlack <mp26@os.inf.tu-dresden.de>.
8236 New version 12.1.
8237
8238 2009-12-10 Eli Zaretskii <eliz@gnu.org>
8239
8240 * arc-mode.el (archive-rar-summarize): Allow between 6 and 7
8241 characters in the Attribute field.
8242
8243 2009-12-10 Dan Nicolaescu <dann@ics.uci.edu>
8244
8245 * vc-svn.el (vc-svn-after-dir-status): Fix regexp. (Bug#4741)
8246
8247 2009-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
8248
8249 Let loaddefs.el adjust to changes in autoload-excludes (bug#5162).
8250 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
8251 Disregard autoload-excludes.
8252 (update-directory-autoloads): Obey autoload-excludes here instead.
8253 But don't store its contents in no-autoloads and remove entries that
8254 refer to excludes files.
8255
8256 2009-12-10 Glenn Morris <rgm@gnu.org>
8257
8258 * mail/feedmail.el (top-level): Move require 'mail-utils to start.
8259 (expand-mail-aliases): Define for compiler.
8260
8261 * vc-annotate.el (log-view-vc-backend, log-view-vc-fileset):
8262 Define for compiler.
8263
8264 * mail/emacsbug.el (report-emacs-bug): Use whichever send command is
8265 appropriate for the mail-user-agent in use.
8266
8267 2009-12-09 Michael Albinus <michael.albinus@gmx.de>
8268
8269 * net/tramp.el (tramp-handle-insert-directory): Suppress error messages.
8270
8271 2009-12-09 Dan Nicolaescu <dann@ics.uci.edu>
8272
8273 Fix short log parsing and fontification.
8274 * vc-bzr.el (vc-bzr-log-view-mode): Match dot in revision number.
8275 Fix fontification for the [merge] label.
8276
8277 2009-12-09 Vivek Dasmohapatra <vivek@etla.org>
8278
8279 Drop some properties to avoid surprises (bug#5002).
8280 * htmlfontify.el (hfy-ignored-properties): New defcustom.
8281 (hfy-fontify-buffer): Use it.
8282
8283 2009-12-09 Stefan Monnier <monnier@iro.umontreal.ca>
8284
8285 Minor cleanup.
8286 * ffap.el (ffap-symbol-value): Replace ffap-soft-value.
8287 Adjust all callers.
8288 (ffap-locate-file): Remove unused arg `dir-ok' and make other
8289 args compulsory. Adjust callers.
8290 (ffap-gopher-at-point): Remove unused var `name'.
8291
8292 Get rid of the ELCFILES abomination.
8293 * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
8294 (compile-elcfiles): New phony target.
8295 (compile-main): Compute ELCFILES dynamically.
8296 (compile-clean): New target to remove left-over elc files.
8297 (compile, all): Use it.
8298
8299 2009-12-09 Kenichi Handa <handa@etlken>
8300
8301 * international/mule-diag.el: Require help-mode instead of help-fns.
8302
8303 2009-12-09 Kenichi Handa <handa@m17n.org>
8304
8305 * international/mule-cmds.el (ucs-names): Supply sufficiently
8306 fine ranges instead of pre-calculating accurate ranges.
8307 Iterate with bigger gc-cons-threshold.
8308
8309 2009-12-08 Dan Nicolaescu <dann@ics.uci.edu>
8310
8311 Add support for stashing a snapshot of the current tree.
8312 * vc-git.el (vc-git-stash-snapshot): New function.
8313 (vc-git-stash-map, vc-git-extra-menu-map): Add a mapping for it.
8314
8315 2009-12-08 Jose E. Marchesi <jemarch@gnu.org>
8316
8317 * play/gomoku.el (gomoku-mode-map): Remap `move-(beginning|end)-of-line'
8318 instead of `(beginning|end)-of-line'.
8319
8320 2009-12-08 Glenn Morris <rgm@gnu.org>
8321
8322 * vc-mtn.el (vc-mtn-print-log): Fix typo in previous.
8323
8324 * Makefile.in (ELCFILES): Regenerate.
8325
8326 2009-12-07 Juri Linkov <juri@jurta.org>
8327
8328 Don't lazy-highlight the comint output in history Isearch mode.
8329
8330 * comint.el (comint-history-isearch-search): Instead of
8331 `comint-line-beginning-position', use `comint-after-pmark-p'
8332 to check if point if before the process mark, and go to
8333 `process-mark' in this case.
8334
8335 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
8336
8337 * textmodes/tex-mode.el (latex-complete)
8338 (latex-indent-or-complete): Remove.
8339 (latex-mode): Set completion-at-point-functions instead.
8340
8341 Provide a standard completion command and hook it into TAB.
8342 * minibuffer.el (completion-at-point-functions): New var.
8343 (completion-at-point): New command.
8344 * indent.el (indent-for-tab-command): Handle the `complete' behavior.
8345 * progmodes/python.el (python-mode-map): Use completion-at-point.
8346 (python-completion-at-point): Rename from python-partial-symbol and
8347 adjust for use in completion-at-point-functions.
8348 (python-mode): Setup completion-at-point for Python completion.
8349 * emacs-lisp/lisp.el (lisp-completion-at-point): New function
8350 extracted from lisp-complete-symbol.
8351 (lisp-complete-symbol): Use it.
8352 * emacs-lisp/lisp-mode.el (emacs-lisp-mode): Use define-derived-mode,
8353 setup completion-at-point for Elisp completion.
8354 (emacs-lisp-mode-map, lisp-interaction-mode-map):
8355 Use completion-at-point.
8356 * ielm.el (ielm-map): Use completion-at-point.
8357 (inferior-emacs-lisp-mode): Setup completion-at-point-functions.
8358 * progmodes/sym-comp.el: Move to...
8359 * obsolete/sym-comp.el: Move from progmodes.
8360
8361 2009-12-07 Eli Zaretskii <eliz@gnu.org>
8362
8363 Prevent save-buffer in Rmail buffers from using the coding-system
8364 of the current message, and from clobbering the encoding mnemonics
8365 in the mode line (Bug#4623).
8366
8367 * mail/rmail.el (rmail-swap-buffers): Swap encoding and modified
8368 flag, too.
8369 (rmail-message-encoding): New variable.
8370 (rmail-write-region-annotate): Record the encoding of the current
8371 message in rmail-message-encoding.
8372 (rmail-after-save-hook): New function, restores the encoding of
8373 the current message after the message collection is saved.
8374
8375 2009-12-07 Juri Linkov <juri@jurta.org>
8376
8377 * progmodes/grep.el (grep-read-files): Use `completing-read'
8378 instead of `read-string'. Set its `collection' arg to
8379 `read-file-name-internal'. (Bug#4301)
8380
8381 2009-12-07 Juri Linkov <juri@jurta.org>
8382
8383 Correctly restore original Isearch point. (Bug#4994)
8384
8385 * isearch.el (isearch-mode): Move `isearch-push-state' after
8386 `(run-hooks 'isearch-mode-hook)'.
8387 (isearch-cancel): When `isearch-push-state-function' is defined,
8388 let-bind `isearch-cmds' to the first state (the last element of
8389 `isearch-cmds') and call `isearch-top-state' (it calls pop-state
8390 function and restores the original point). Otherwise, move point
8391 to `isearch-opoint'.
8392
8393 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
8394
8395 * international/mule-cmds.el (ucs-names): Weed out at compile-time the
8396 chars that don't have names, so the table can be built much faster at
8397 run-time.
8398
8399 2009-12-07 Chong Yidong <cyd@stupidchicken.com>
8400
8401 * vc-bzr.el (vc-bzr-annotate-command): More elegant form for last
8402 change. Suggested by David Kastrup.
8403
8404 * simple.el (compose-mail): Check for incompatibilities and warn.
8405 (compose-mail-user-agent-warnings): New option.
8406
8407 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
8408
8409 Support showing a single log entry from vc-annotate.
8410 * vc.el (print-log): Add a new argument: START-REVISION.
8411 (vc-print-log-internal): Add a new optional argument and
8412 pass it to the backend.
8413 (vc-print-log, vc-print-root-log): Adjust callers.
8414 * vc-annotate.el (vc-annotate-show-log-revision-at-line): If a
8415 buffer already displays the requested log entry, use it.
8416 Otherwise display only the log entry in question.
8417 * vc-svn.el (vc-svn-print-log):
8418 * vc-mtn.el (vc-mtn-print-log):
8419 * vc-hg.el (vc-hg-state):
8420 * vc-git.el (vc-git-print-log): Add support for new argument START-REVISION.
8421 (vc-git-show-log-entry): Return t on success.
8422 * vc-bzr.el (vc-bzr-print-log): Add support new argument START-REVISION.
8423 (vc-bzr-show-log-entry): Return t on success.
8424 * vc-rcs.el (vc-rcs-print-log):
8425 * vc-sccs.el (vc-sccs-print-log):
8426 * vc-cvs.el (vc-cvs-print-log): Add new argument, ignore it.
8427
8428 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
8429
8430 * ediff-mult.el (ediff-setup-meta-map, ediff-prepare-meta-buffer):
8431 Add menus to the meta mode. (Bug#5043)
8432
8433 2009-12-07 Michael Kifer <kifer@cs.stonybrook.edu>
8434
8435 * ediff-init.el (ediff-event-key): Use event-to-character instead of
8436 event-key.
8437
8438 * ediff.el (ediff-buffers-internal): Add unwind-protect.
8439
8440 2009-12-07 Michael Albinus <michael.albinus@gmx.de>
8441
8442 Handle prompt rules of ksh in OpenBSD 4.5. Reported by Raphaël
8443 Berbain <raphael.berbain@gmail.com>.
8444
8445 * net/tramp.el (tramp-end-of-output): Move up. Use `#' and `$'
8446 characters.
8447 (tramp-initial-end-of-output): New defconst.
8448 (tramp-methods, tramp-find-shell)
8449 (tramp-open-connection-setup-interactive-shell)
8450 (tramp-maybe-open-connection): Use it.
8451 (tramp-shell-prompt-pattern, tramp-wait-for-output): Handle
8452 existence of `#' and `$'.
8453
8454 * net/tramp-fish.el (tramp-fish-maybe-open-connection): Use
8455 `tramp-initial-end-of-output'.
8456
8457 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
8458
8459 Get the background mode from the terminal for xterm, and set
8460 faces accordingly.
8461 * term/xterm.el (xterm-set-background-mode): New function.
8462 (terminal-init-xterm): Use it in case xterm supports background
8463 color queries. Recompute faces after getting the background
8464 color.
8465
8466 2009-12-07 Ulrich Mueller <ulm@gentoo.org>
8467
8468 * emacs-lisp/bytecomp.el (byte-compile-insert-header): Put the version
8469 number comment back on its own line, for easier parsing.
8470
8471 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
8472
8473 Make it work for non-file buffers (bug#5102).
8474 * doc-view.el (doc-view-current-cache-dir):
8475 Use doc-view-buffer-file-name rather than buffer-file-name.
8476 (doc-view-mode): Use buffer-name when buffer-file-name is nil.
8477
8478 2009-12-06 Óscar Fuentes <ofv@wanadoo.es>
8479
8480 * vc-bzr.el (vc-bzr-annotate-command): Handle the case where the
8481 author field is too short.
8482
8483 2009-12-06 Dan Nicolaescu <dann@ics.uci.edu>
8484
8485 * vc-git.el (vc-git-print-log): Handle a limit argument.
8486 Display the short log in graph form and with labels.
8487 (vc-git-log-view-mode): Handle labels.
8488
8489 Make vc-revert change VC state from 'added to 'unregistered.
8490 * vc-git.el (vc-git-revert): Call git reset first.
8491
8492 2009-12-06 Ulf Jasper <ulf.jasper@web.de>
8493
8494 * net/newst-backend.el, net/newst-plainview.el:
8495 * net/newst-reader.el, net/newst-ticker.el:
8496 * net/newst-treeview.el, net/newsticker.el:
8497 Require/provide newst-... (instead of newsticker-...). (Bug#5096)
8498
8499 2009-12-06 Chong Yidong <cyd@stupidchicken.com>
8500
8501 * log-view.el (log-view-mode-map): Bind "=" to log-view-diff too.
8502
8503 * vc-bzr.el (vc-bzr-annotate-command): Show author in annotation.
8504 Handle empty author field (Bug#4144). Suggested by Óscar Fuentes.
8505 (vc-bzr-annotate-time, vc-bzr-annotate-extract-revision-at-line):
8506 Update annotation regexp.
8507
8508 * simple.el (beginning-of-visual-line): Constrain to field
8509 boundaries (Bug#5106).
8510
8511 2009-12-06 Ulf Jasper <ulf.jasper@web.de>
8512
8513 * xml.el (xml-substitute-numeric-entities): Move
8514 newsticker--decode-numeric-entities in newst-backend.el to
8515 xml-substitute-numeric-entities in xml.el. (Bug#5008)
8516 * net/newst-backend.el (newsticker--parse-generic-feed)
8517 (newsticker--parse-generic-items)
8518 (newsticker--decode-numeric-entities): Move
8519 newsticker--decode-numeric-entities in newst-backend.el to
8520 xml-substitute-numeric-entities in xml.el. (Bug#5008)
8521
8522 2009-12-06 Daniel Colascione <dan.colascione@gmail.com>
8523
8524 * progmodes/js.el (js--js-not): Add null to the list of values.
8525
8526 2009-12-06 Chong Yidong <cyd@stupidchicken.com>
8527
8528 * ansi-color.el (ansi-color-for-comint-mode): Add :version keyword.
8529
8530 2009-12-06 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
8531
8532 * textmodes/bibtex.el (bibtex-enclosing-field): Exclude entry
8533 delimiter if it is at the end of the current line.
8534 (bibtex-generate-url-list): Fix docstring.
8535
8536 2009-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
8537
8538 * minibuffer.el (minibuffer-complete-and-exit): Don't replace the
8539 minibuffer's content with itself.
8540 Fold the confirm-after-completion case into the `confirm' case.
8541 (completion-pcm-word-delimiters): Add : and / to the delimiters.
8542
8543 2009-12-06 Kevin Ryde <user42@zip.com.au>
8544
8545 * ffap.el (ffap-rfc-path): Make this a defcustom since
8546 `ffap-rfc-directories' is also a defcustom. (Bug#4514.)
8547
8548 * info-look.el: Add setup for apropos-mode to use emacs-lisp-mode
8549 manuals, similar to existing setup for help-mode. (Bug#3913.)
8550
8551 2009-12-05 Juri Linkov <juri@jurta.org>
8552
8553 Save and restore dired buffer's point positions too. (Bug#4880)
8554
8555 * dired.el (dired-save-positions): Return in the first element
8556 buffer's position in format (BUFFER DIRED-FILENAME BUFFER-POINT).
8557 Doc fix.
8558 (dired-restore-positions): First restore buffer's position.
8559 While restoring window's positions, check if window still displays
8560 the original buffer.
8561
8562 2009-12-05 Chong Yidong <cyd@stupidchicken.com>
8563
8564 * bindings.el (complete-symbol): Call semantic-ia-complete-symbol
8565 if possible.
8566
8567 * cedet/semantic/ia.el (semantic-ia-complete-symbol):
8568 Make argument optional.
8569
8570 * shell.el (shell): Require ansi-color (Bug#5113).
8571
8572 * ansi-color.el (ansi-color-for-comint-mode): Default to t.
8573
8574 * hl-line.el (global-hl-line-highlight): Minor doc fix (Bug#4925).
8575
8576 2009-12-05 Alan Mackenzie <acm@muc.de>
8577
8578 * progmodes/cc-mode.el (c-before-hack-hook)
8579 (c-postprocess-file-styles): Revert change 2009-07-18T21:03:43Z!acm@muc.de to permit
8580 `c-file-style' to work again. This reversion restores the current
8581 software to its state in Emacs 23.1. (Bug#4146)
8582
8583 2009-12-05 Kevin Ryde <user42@zip.com.au>
8584
8585 * textmodes/sgml-mode.el (sgml-lexical-context): Recognise
8586 comment-start-skip to comment-end-skip as comment (Bug#4781).
8587
8588 2009-12-05 Juri Linkov <juri@jurta.org>
8589
8590 * info.el (Info-find-node-2): Set `Info-current-subfile' to nil
8591 for virtual nodes. (Bug#4147)
8592 (Info-find-node-2): Set `Info-current-node-virtual' to nil
8593 when moving from a virtual node.
8594 (Info-mode-menu): Add `Info-virtual-index' to the menu.
8595 (Info-mode): Add `Info-virtual-index' to the docstring.
8596
8597 2009-12-05 Eric Ludlam <zappo@gnu.org>
8598
8599 * cedet/semantic/bovine/c.el (semantic-c-describe-environment):
8600 Describe project macro symbols.
8601
8602 * cedet/semantic/complete.el (semantic-complete-do-completion):
8603 Don't call semantic-collector-current-exact-match.
8604
8605 * cedet/ede.el (ede-apply-preprocessor-map): Accept lists of
8606 ede-objects as targets.
8607
8608 * cedet/ede/pmake.el (ede-proj-makefile-insert-variables): Output
8609 a target's object list even if compiler vars are already in the
8610 Makefile.
8611
8612 * cedet/ede/emacs.el (ede-preprocessor-map): Add config.h to the
8613 list of headers producing necessary macros.
8614
8615 2009-12-05 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
8616
8617 * textmodes/bibtex.el (bibtex-map-entries): Use marker to keep
8618 track of the buffer position of the end of a BibTeX entry as this
8619 position may change during reformatting.
8620 (bibtex-format-entry): Remove whitespace before processing
8621 numerical fields so that we recognize the latter properly.
8622 (bibtex-reformat): Do not use push which changes the global value
8623 of bibtex-entry-format.
8624 (bibtex-field-braces-alist, bibtex-field-strings-alist)
8625 (bibtex-field-re-init): Replace only space characters by regexp
8626 for whitespace.
8627 (bibtex-generate-url-list, bibtex-cite-matcher-alist): Fix docstring.
8628 (bibtex-initialize): Also update bibtex-strings.
8629 (bibtex-kill-field): Preserve white space at end of entry.
8630 (bibtex-kill-entry, bibtex-yank-pop, bibtex-insert-kill):
8631 Update bibtex-reference-keys.
8632
8633 2009-12-05 Stefan Monnier <monnier@iro.umontreal.ca>
8634
8635 * minibuffer.el (completion-pcm--merge-try): Also consider placing
8636 point after a star, if that's the only place where modifications can
8637 make progress.
8638
8639 2009-12-05 Dan Nicolaescu <dann@ics.uci.edu>
8640
8641 * vc-dir.el (vc-dir): Use the correct markup for showing keymaps
8642 in docstrings.
8643
8644 2009-12-04 Juri Linkov <juri@jurta.org>
8645
8646 * proced.el (proced): Call `(proced-update t)' to update process
8647 information instead of only running proced-post-display-hook.
8648 (proced-send-signal): Add a leading space to the buffer name
8649 " *Marked Processes*" to make this buffer ephemeral.
8650
8651 2009-12-04 Juri Linkov <juri@jurta.org>
8652
8653 * dired.el (dired-auto-revert-buffer): New defcustom.
8654 (dired-internal-noselect): Use it.
8655
8656 2009-12-04 Juri Linkov <juri@jurta.org>
8657
8658 Change roles of modes and functions in image-mode.el (Bug#5062).
8659
8660 * image-mode.el: Replace `image-mode-maybe' with `image-mode'
8661 in `auto-mode-alist'.
8662 (image-mode-previous-major-mode): New variable.
8663 (image-minor-mode-map): Rename from `image-mode-text-map'.
8664 (image-mode): Move graceful error-handling code from
8665 `image-minor-mode' to here. On errors call `image-mode-as-text'.
8666 (image-minor-mode): Remove all image-handling code.
8667 Replace `image-mode-text-map' with `image-minor-mode-map'.
8668 Check for `image-type' in mode-line format string.
8669 (image-mode-maybe): Make obsolete with an alias to `image-mode'.
8670 (image-mode-as-text): New function with most code from
8671 `image-mode-maybe'.
8672 (image-toggle-display-text): Move code that removes image
8673 properties from `image-toggle-display' to here.
8674 (image-toggle-display-image): New function with code that adds
8675 image properties copied from `image-toggle-display'.
8676 (image-toggle-display): Remove most code with leaving only code
8677 that toggles between `image-mode-as-text' and `image-mode'.
8678
8679 2009-12-04 Ulf Jasper <ulf.jasper@web.de>
8680
8681 * net/newst-treeview.el
8682 (newsticker--treeview-list-highlight-start): Restored call to
8683 save-excursion: Selected item was stuck.
8684 (newsticker--treeview-list-select): New.
8685 (newsticker--treeview-item-show-text)
8686 (newsticker--treeview-item-show)
8687 (newsticker--treeview-item-update): Use new
8688 newsticker-treeview-item-mode.
8689 (newsticker-treeview-update): Keep current item.
8690 (newsticker-treeview-next-new-or-immortal-item): Doc change.
8691 (newsticker--treeview-first-feed): Doc change.
8692 (newsticker-treeview-list-menu)
8693 (newsticker-treeview-item-menu): Added menu entries.
8694 (newsticker-treeview-item-mode): New.
8695
8696 * net/newst-backend.el (newsticker-customize): Delete other
8697 windows.
8698
8699 2009-12-04 Sam Steingold <sds@gnu.org>
8700
8701 * log-view.el (log-view-mode-map): "q" calls quit-window,
8702 like in all the other non-self-insert buffers.
8703
8704 2009-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
8705
8706 Minor cleanup.
8707 * term.el (term-send-raw, term-send-raw-meta): Use read-key-sequence's
8708 key decoding rather than do it manually via last-input-event +
8709 ascii-character.
8710 (term-exec): Use delete-and-extract-region.
8711 (term-handle-ansi-terminal-messages): Remove unused var `end'.
8712 (term-process-pager): Remove unused var `i'.
8713 (term-dynamic-simple-complete): Make obsolete.
8714 (serial-update-config-menu): Remove unused vars `y' and `str'.
8715 (term-update-mode-line): Remove unused var `temp'.
8716
8717 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
8718
8719 Limit the number of log entries displayed by default.
8720 * vc.el (vc-print-log-internal): Fix check for limit-unsupported.
8721 (vc-print-log, vc-print-root-log): Use vc-log-show-limit when not
8722 using a prefix argument.
8723
8724 2009-12-03 Glenn Morris <rgm@gnu.org>
8725
8726 * progmodes/idlwave.el (class): Restore still useful declaration.
8727
8728 2009-12-03 Alan Mackenzie <acm@muc.de>
8729
8730 Enhance `c-parse-state' to run efficiently in "brace deserts".
8731
8732 * progmodes/cc-mode.el (c-basic-common-init):
8733 Call c-state-cache-init.
8734 (c-neutralize-syntax-in-and-mark-CPP): Rename from
8735 c-extend-and-neutralize-syntax-in-CPP. Mark each CPP construct by
8736 placing `category' properties value 'c-cpp-delimiter at its boundaries.
8737
8738 * progmodes/cc-langs.el (c-before-font-lock-function):
8739 c-extend-and-neutralize-syntax-in-CPP has been renamed
8740 c-neutralize-syntax-in-and-mark-CPP.
8741
8742 * progmodes/cc-fonts.el (c-cpp-matchers): Mark template brackets
8743 with `category' properties now, not `syntax-table' ones.
8744
8745 * progmodes/cc-engine.el (c-syntactic-end-of-macro): A new
8746 enhanced (but slower) version of c-end-of-macro that won't land
8747 inside a literal or on another awkward character.
8748 (c-state-cache-too-far, c-state-cache-start)
8749 (c-state-nonlit-pos-interval, c-state-nonlit-pos-cache)
8750 (c-state-nonlit-pos-cache-limit, c-state-point-min)
8751 (c-state-point-min-lit-type, c-state-point-min-lit-start)
8752 (c-state-min-scan-pos, c-state-brace-pair-desert)
8753 (c-state-old-cpp-beg, c-state-old-cpp-end): New constants and
8754 buffer local variables.
8755 (c-state-literal-at, c-state-lit-beg)
8756 (c-state-cache-non-literal-place, c-state-get-min-scan-pos)
8757 (c-state-mark-point-min-literal, c-state-cache-top-lparen)
8758 (c-state-cache-top-paren, c-state-cache-after-top-paren)
8759 (c-get-cache-scan-pos, c-get-fallback-scan-pos)
8760 (c-state-balance-parens-backwards, c-parse-state-get-strategy)
8761 (c-renarrow-state-cache)
8762 (c-append-lower-brace-pair-to-state-cache)
8763 (c-state-push-any-brace-pair, c-append-to-state-cache)
8764 (c-remove-stale-state-cache)
8765 (c-remove-stale-state-cache-backwards, c-state-cache-init)
8766 (c-invalidate-state-cache-1, c-parse-state-1)
8767 (c-invalidate-state-cache): New defuns/defmacros/defsubsts.
8768 (c-parse-state): Enhance and refactor.
8769 (c-debug-parse-state): Amend to deal with all the new variables.
8770
8771 * progmodes/cc-defs.el (c-<-as-paren-syntax, c-mark-<-as-paren)
8772 (c->-as-paren-syntax, c-mark->-as-paren, c-unmark-<->-as-paren):
8773 modify to use category text properties rather than syntax-table ones.
8774 (c-suppress-<->-as-parens, c-restore-<->-as-parens): New defsubsts
8775 to switch off/on the syntactic paren property of C++ template
8776 delimiters using the category property.
8777 (c-with-<->-as-parens-suppressed): Macro to invoke code with
8778 template delims suppressed.
8779 (c-cpp-delimiter, c-set-cpp-delimiters, c-clear-cpp-delimiters):
8780 New constant/macros which apply category properties to the start
8781 and end of preprocessor constructs.
8782 (c-comment-out-cpps, c-uncomment-out-cpps): Defsubsts which
8783 "comment out" the syntactic value of characters in preprocessor
8784 constructs.
8785 (c-with-cpps-commented-out)
8786 (c-with-all-but-one-cpps-commented-out): Macros to invoke code
8787 with characters in all or all but one preprocessor constructs
8788 "commented out".
8789
8790 2009-12-03 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
8791
8792 * proced.el (proced-filter-alist): Use regexp-quote.
8793
8794 2009-12-03 Michael Albinus <michael.albinus@gmx.de>
8795
8796 Cleanup.
8797 * eshell/em-unix.el (top): Require 'esh-opt and 'pcomplete.
8798 (eshell/su, eshell/sudo): Require 'tramp. Fix problems reading
8799 arguments. Expand `default-directory'.
8800
8801 * net/tramp.el (tramp-handle-file-remote-p): Expand FILENAME for
8802 the benefit of returning an expanded localname.
8803 (tramp-tramp-file-p): Handle the case NAME is not a string.
8804
8805 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
8806
8807 Add support for bzr shelve/unshelve.
8808 * vc-bzr.el (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
8809 (vc-bzr-extra-menu-map): New variables.
8810 (vc-bzr-extra-menu, vc-bzr-extra-status-menu, vc-bzr-shelve)
8811 (vc-bzr-shelve-apply, vc-bzr-shelve-list)
8812 (vc-bzr-shelve-get-at-point, vc-bzr-shelve-delete-at-point)
8813 (vc-bzr-shelve-apply-at-point, vc-bzr-shelve-menu): New functions.
8814 (vc-bzr-dir-extra-headers): Display shelves.
8815
8816 * vc-bzr.el (vc-bzr-print-log): Deal with nil arguments better.
8817
8818 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
8819
8820 * textmodes/bibtex.el (bibtex-complete-internal):
8821 Use completion-in-region.
8822 (bibtex-text-in-field-bounds): Remove unused var `opoint'.
8823
8824 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
8825
8826 Support applying stashes. Improve UI.
8827 * vc-git.el (vc-git-dir-extra-headers): Add tooltips.
8828 (vc-git-stash-apply, vc-git-stash-pop)
8829 (vc-git-stash-apply-at-point, vc-git-stash-pop-at-point)
8830 (vc-git-stash-menu): New functions.
8831 (vc-git-stash-menu-map): New variable.
8832 (vc-git-stash-map): Add bindings to popup a menu and to apply stashes.
8833
8834 2009-12-03 Glenn Morris <rgm@gnu.org>
8835
8836 * vc.el (log-view-vc-backend, log-view-vc-fileset): Declare.
8837 (vc-print-log-internal): Fix previous change.
8838 (vc-revert): Correct pluralization.
8839
8840 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
8841
8842 * progmodes/make-mode.el (makefile-special-targets-list): No need for
8843 it to be an alist any more.
8844 (makefile-complete): Use completion-in-region.
8845
8846 * progmodes/octave-mod.el (octave-complete-symbol):
8847 Use completion-in-region.
8848
8849 Misc cleanup.
8850 * progmodes/idlwave.el (idlwave-comment-hook): Simplify with `or'.
8851 (idlwave-code-abbrev, idlwave-display-user-catalog-widget)
8852 (idlwave-complete-class): Don't quote lambda.
8853 (idlwave-find-symbol-syntax-table, idlwave-mode-syntax-table)
8854 (idlwave-mode-map): Move initialization into declaration.
8855 (idlwave-action-and-binding): Use backquotes.
8856 (idlwave-in-quote, idlwave-reset-sintern, idlwave-complete-in-buffer):
8857 Simplify.
8858 (idlwave-is-pointer-dereference): Remove unused var `pos'.
8859 (idlwave-xml-create-rinfo-list): Remove unused var `entry'.
8860 (idlwave-convert-xml-clean-sysvar-aliases): Remove unused vars `new',
8861 `parts', and `all-parts'.
8862 (idlwave-xml-create-sysvar-alist): Remove unused var `fields'.
8863 (idlwave-convert-xml-system-routine-info): Remove unused string
8864 `version-string'.
8865 (idlwave-display-user-catalog-widget): Use dolist.
8866 (idlwave-scanning-lib): Declare dynamically-scoped var.
8867 (idlwave-scan-library-catalogs): Remove unused var `flags'.
8868 (completion-highlight-first-word-only): Declare to silence bytecomp.
8869 (idlwave-popup-select): Tighten scope of `resp'.
8870 (idlwave-find-struct-tag): Remove unused var `beg'.
8871 (idlwave-after-load-rinfo-hook): Declare.
8872 (idlwave-sintern-class-info): Remove unused var `taglist'.
8873 (idlwave-find-class-definition): Remove unused var `list'.
8874 (idlwave-complete-sysvar-tag-help): Remove unused var `main-base'.
8875 (idlwave-what-module-find-class): Remove unused var `classes'.
8876
8877 2009-12-03 Juanma Barranquero <lekktu@gmail.com>
8878
8879 * progmodes/pascal.el: Require CL when compiling (for lexical-let).
8880
8881 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
8882
8883 * hippie-exp.el (try-expand-dabbrev-visible): Preserve point in the
8884 buffers visited. Remove redundant current-buffer-saving.
8885
8886 2009-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
8887
8888 Use completion-in-buffer and remove uses of dynamic scoping.
8889 * progmodes/pascal.el (pascal-str, pascal-all, pascal-pred)
8890 (pascal-buffer-to-use, pascal-flag): Don't declare.
8891 (pascal-func-completion, pascal-type-completion, pascal-var-completion)
8892 (pascal-get-completion-decl, pascal-keyword-completion):
8893 Add `pascal-str' argument, save-excursion,
8894 return the found completions, and don't filter with pascal-pred.
8895 (pascal-completion-cache): New var.
8896 (pascal-completion): Don't switch buffer any more (it was never
8897 necessary). Don't save-excursion any more (it's done by the called
8898 subroutines). Use a cache to avoid redundant computations.
8899 Use complete-with-action rather than pascal-completion-response and
8900 let it apply the predicate as well.
8901 (pascal-complete-word): Use completion-in-buffer when
8902 pascal-toggle-completions is nil.
8903 (pascal-show-completions): Don't bind pascal-buffer-to-use since it's
8904 not used any more.
8905 (pascal-comp-defun): Don't change buffer any more.
8906 Use complete-with-action rather than pascal-completion-response and
8907 let it apply the predicate as well.
8908 (pascal-goto-defun): Change buffer before calling pascal-comp-defun
8909 when neded.
8910
8911 2009-12-02 Kenichi Handa <handa@m17n.org>
8912
8913 * language/indian.el: Include ZWJ and ZWNJ in the patterns to
8914 shape for all Indic scripts.
8915
8916 2009-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
8917
8918 Use completion-in-buffer.
8919 * wid-edit.el (widget-field-text-end): New function.
8920 (widget-field-value-get): Use it.
8921 (widget-string-complete, widget-file-complete)
8922 (widget-color-complete): Use it and completion-in-region.
8923 (widget-complete): Don't narrow the buffer.
8924
8925 2009-12-02 Glenn Morris <rgm@gnu.org>
8926
8927 * mail/rmail.el (rmail-pop-to-buffer): New function. (Bug#2282)
8928 (rmail-select-summary): Use rmail-pop-to-buffer.
8929 * mail/rmailsum.el: Replace all pop-to-buffer calls with
8930 rmail-pop-to-buffer, to prevent horizontal splits.
8931
8932 * calendar/diary-lib.el (diary-list-entries): Replace superfluous
8933 save-excursion with save-current-buffer.
8934 Widen before searching. (Bug#5093)
8935 (diary-list-sexp-entries): Remove superfluous save-excursion.
8936
8937 2009-12-02 Michael Welsh Duggan <mwd@cert.org>
8938
8939 * woman.el (woman-make-bufname): Handle man-pages with "." in the
8940 name. (Bug#5038)
8941
8942 2009-12-02 Andreas Politz <politza@fh-trier.de> (tiny change)
8943
8944 * ido.el (ido-file-internal): Handle filenames at point that do
8945 not have a directory part. (Bug#5049)
8946
8947 2009-12-02 Juanma Barranquero <lekktu@gmail.com>
8948
8949 * mpc.el (mpc-intersection, mpc-host, mpc-songs-playlist)
8950 (mpc-songs-jump-to, mpc-resume): Doc fixes.
8951
8952 2009-12-01 Rob Riepel <riepel@networking.Stanford.EDU>
8953
8954 * emulation/tpu-extras.el (tpu-cursor-free-mode): Emit message.
8955 (tpu-set-cursor-free, tpu-set-cursor-bound): Don't emit a message
8956 any more.
8957
8958 2009-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
8959
8960 * comint.el (comint-insert-input): Ignore clicks to the right of
8961 the field. Reported by Bob Nnamtrop <bobnnamtrop@gmail.com>.
8962
8963 * vc.el (vc-print-log-internal): Don't wait for the process to
8964 terminate before setting up the major mode.
8965
8966 * pcmpl-unix.el (pcomplete/cd): Complete more than one argument, just
8967 in case.
8968
8969 * pcomplete.el (pcomplete-std-complete): Don't try to complete past
8970 the last element.
8971
8972 * simple.el (normal-erase-is-backspace-mode): Fix thinko in message.
8973
8974 2009-12-01 Glenn Morris <rgm@gnu.org>
8975
8976 * window.el (window--display-buffer-2): Fix previous changes.
8977
8978 2009-12-01 Chong Yidong <cyd@stupidchicken.com>
8979
8980 * mail/sendmail.el (mail-setup-hook, mail-send-hook): Doc fixes.
8981
8982 2009-12-01 Glenn Morris <rgm@gnu.org>
8983
8984 * Makefile.in (ELCFILES): Add mpc.elc.
8985
8986 2009-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
8987
8988 * mpc.el: New file.
8989
8990 2009-12-01 Glenn Morris <rgm@gnu.org>
8991
8992 * window.el (window-to-use): Define for compiler.
8993
8994 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Make message
8995 consistent with others (no final period).
8996
8997 * mail/rmailmm.el (rmail-mime-handle): Doc fix.
8998 (rmail-mime-show): Downcase the encoding. (Bug#5070)
8999
9000 2009-12-01 Dan Nicolaescu <dann@ics.uci.edu>
9001
9002 Make vc-print-log buttons work.
9003 * log-view.el (log-view-mode-map): Inherit from widget-keymap.
9004
9005 2009-11-30 Ryan C. Thompson <rct@thompsonclan.org> (tiny change)
9006
9007 * savehist.el (savehist-autosave-interval): Allow setting to nil
9008 through customize. (Bug#5056)
9009
9010 2009-11-30 Juanma Barranquero <lekktu@gmail.com>
9011
9012 Fix references to jit-lock properties.
9013 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
9014 Refer to jit-lock-defer-multiline, not jit-lock-multiline.
9015 (perl-font-lock-special-syntactic-constructs):
9016 Quote jit-lock-defer-multiline property.
9017
9018 2009-11-30 Dan Nicolaescu <dann@ics.uci.edu>
9019
9020 * vc-git.el (vc-git-registered): Call vc-git-root only once.
9021
9022 2009-11-30 Juri Linkov <juri@jurta.org>
9023
9024 * misearch.el (multi-isearch-search-fun): Always provide a non-nil
9025 value `buffer' of `multi-isearch-next-buffer-current-function'.
9026 Use `(current-buffer)' when `buffer' is nil.
9027 (multi-isearch-next-buffer-from-list): Don't fallback to
9028 `(current-buffer)' when `buffer' is nil. (Bug#4947)
9029
9030 2009-11-30 Juri Linkov <juri@jurta.org>
9031
9032 * misearch.el (multi-isearch-read-buffers): Move canonicalization
9033 of buffers with `get-buffer' to `multi-isearch-buffers'.
9034 (multi-isearch-buffers, multi-isearch-buffers-regexp):
9035 Canonicalize BUFFERS with `get-buffer'. Doc fix.
9036 (multi-isearch-files, multi-isearch-files-regexp): Canonicalize
9037 FILES with `expand-file-name' converting relative file names
9038 to absolute. Doc fix. (Bug#4727)
9039
9040 2009-11-30 Juri Linkov <juri@jurta.org>
9041
9042 * misearch.el (multi-isearch-read-buffers)
9043 (multi-isearch-read-matching-buffers): New functions.
9044 (multi-isearch-buffers, multi-isearch-buffers-regexp):
9045 Use them in the `interactive' spec. Doc fix.
9046 (multi-isearch-read-files, multi-isearch-read-matching-files):
9047 New functions.
9048 (multi-isearch-files, multi-isearch-files-regexp):
9049 Use them in the `interactive' spec. Doc fix. (Bug#4725)
9050
9051 2009-11-30 Juri Linkov <juri@jurta.org>
9052
9053 * doc-view.el (doc-view-continuous):
9054 Rename from `doc-view-continuous-mode'.
9055 (doc-view-menu): Move "Toggle display" to the top.
9056 Add submenu "Continuous" with radio buttons "Off"/"On"
9057 and "Save as Default".
9058 (doc-view-scroll-up-or-next-page)
9059 (doc-view-scroll-down-or-previous-page)
9060 (doc-view-next-line-or-next-page)
9061 (doc-view-previous-line-or-previous-page): Rename
9062 `doc-view-continuous-mode' to `doc-view-continuous'. (Bug#4896)
9063
9064 2009-11-30 Juri Linkov <juri@jurta.org>
9065
9066 * comint.el (comint-mode-map): Rebind `M-r' from
9067 `comint-previous-matching-input' to
9068 `comint-history-isearch-backward-regexp'.
9069 Unbind `M-s' to allow global key binding `M-s'.
9070 Add menu items for `comint-history-isearch-backward' and
9071 `comint-history-isearch-backward-regexp'. (Bug#3746)
9072
9073 2009-11-30 Juri Linkov <juri@jurta.org>
9074
9075 * replace.el (perform-replace): Let-bind recenter-last-op to nil.
9076 For def=recenter, replace `recenter' with `recenter-top-bottom'
9077 that is called with `this-command' and `last-command' let-bound
9078 to `recenter-top-bottom'. When the last `def' was not `recenter',
9079 set `recenter-last-op' to nil. (Bug#4981)
9080
9081 2009-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
9082
9083 Minor cleanup and simplification.
9084 * filecache.el (file-cache-add-directory)
9085 (file-cache-add-directory-recursively)
9086 (file-cache-add-from-file-cache-buffer)
9087 (file-cache-delete-file-regexp, file-cache-delete-directory)
9088 (file-cache-files-matching-internal, file-cache-display): Use dolist.
9089 (file-cache-temp-minibuffer-message): Delete function.
9090 (file-cache-minibuffer-complete): Use minibuffer-message instead.
9091
9092 * progmodes/perl-mode.el (perl-font-lock-special-syntactic-constructs):
9093 Don't signal an error when bumping into EOB in tr, s, or y.
9094
9095 2009-11-29 Juri Linkov <juri@jurta.org>
9096
9097 * startup.el (fancy-about-text): Fix wording of Guided Tour.
9098 (Bug#4960)
9099
9100 * descr-text.el (describe-char-unidata-list): Use lowercase name
9101 for "Unicode name" like in other tags.
9102
9103 2009-11-29 Juri Linkov <juri@jurta.org>
9104
9105 * ediff-util.el (ediff-minibuffer-with-setup-hook):
9106 New compatibility macro.
9107 (ediff-read-file-name): Use it instead of `minibuffer-with-setup-hook'.
9108
9109 2009-11-29 Juri Linkov <juri@jurta.org>
9110
9111 Add defcustom to define the cycling order of `recenter-top-bottom'.
9112 (Bug#4981)
9113
9114 * window.el (recenter-last-op): Doc fix.
9115 (recenter-positions): New defcustom.
9116 (recenter-top-bottom): Rewrite to use `recenter-positions'.
9117 (move-to-window-line-top-bottom): Rewrite to use `recenter-positions'.
9118
9119 2009-11-29 Michael Albinus <michael.albinus@gmx.de>
9120
9121 Improve integration of Tramp and ange-ftp in eshell.
9122
9123 * eshell/em-unix.el (eshell/whoami): Make it a defun but a defalias.
9124 (eshell/su): Flatten args. Apply better args parsing. Use "cd".
9125 (eshell/sudo): Flatten args. Let-bind `default-directory'.
9126
9127 * eshell/esh-util.el (top): Require also Tramp when compiling.
9128 (eshell-directory-files-and-attributes): Check for FTP remote
9129 connection.
9130 (eshell-parse-ange-ls): Let-bind `ange-ftp-name-format',
9131 `ange-ftp-ftp-name-arg', `ange-ftp-ftp-name-res'.
9132 (eshell-file-attributes): Handle ".". Return `entry'.
9133
9134 * net/ange-ftp.el (ange-ftp-parse-filename): Use `save-match-data'.
9135 (ange-ftp-directory-files-and-attributes)
9136 (ange-ftp-real-directory-files-and-attributes): New defuns.
9137
9138 * net/tramp.el (tramp-maybe-open-connection): Open the remote
9139 shell with "exec" when possible. This prevents trailing prompts
9140 in `start-file-process'.
9141
9142 2009-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
9143
9144 Try and remove assumptions about point-min==1.
9145 * nxml/rng-valid.el (rng-validate-mode): Don't hardcode point-min==1.
9146 (rng-compute-mode-line-string): Show the validation percentage in
9147 terms of the narrowed text, not the widened text.
9148 (rng-do-some-validation): Don't catch internal errors when debugging.
9149 (rng-first-error): Simplify.
9150 (rng-after-change-function): Remove work around. AFAIK the bug has
9151 been fixed a while ago.
9152
9153 * image-mode.el (image-minor-mode): Exit more gracefully when the image
9154 cannot be displayed (e.g. when doing C-x C-f some-new-file.svg RET).
9155
9156 * man.el (Man-completion-table): Make it easier to enter "<sec> <name>".
9157
9158 * eshell/em-prompt.el (eshell-prompt-function): Abbreviate pwd, since
9159 `cd' doesn't always do it for us (bug#5067).
9160
9161 * pcomplete.el (pcomplete-entries): Revert change installed mistakenly
9162 on 2009-10-25 as part of some other change (bug#5067).
9163
9164 2009-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
9165
9166 * emacs-lisp/bytecomp.el (byte-compile-warning-types): New type
9167 `suspicious'.
9168 (byte-compile-warnings): Use byte-compile-warning-types.
9169 (byte-compile-save-excursion): Warn about use of set-buffer right
9170 after save-excursion.
9171
9172 * progmodes/gud.el (gud-basic-call): Don't only save the buffer but
9173 the excursion as well.
9174
9175 2009-11-27 Michael Albinus <michael.albinus@gmx.de>
9176
9177 * eshell/em-unix.el (eshell/su, eshell/sudo): New defuns,
9178 providing a Tramp related implementation of "su" and "sudo".
9179 (eshell-unix-initialize): Add "su" and "sudo".
9180
9181 2009-11-27 Daiki Ueno <ueno@unixuser.org>
9182
9183 * net/socks.el (socks-send-command): Convert binary request to
9184 unibyte before sending. This fixes mishandling of some port
9185 numbers such as 129.
9186
9187 2009-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
9188
9189 * help.el (describe-bindings-internal): Remove `interactive'.
9190
9191 * man.el (Man-completion-table): Trim a terminating "(".
9192 Remove the space between name page a section.
9193 Add the command's description on the `help-echo' property.
9194 Remove `process-connection-type' binding since it's unused by
9195 call-process.
9196 Provide completion for the "<section> <name>" format as well.
9197 (Man-default-man-entry): Remove spurious var shadowing the argument.
9198
9199 2009-11-26 Kevin Ryde <user42@zip.com.au>
9200
9201 * log-view.el: Add "Keywords: tools", since its other keywords
9202 aren't in finder-known-keywords, and following vc.el.
9203
9204 * sha1.el (sha1-string-external): default-directory "/" in case
9205 otherwise non-existent. process-connection-type pipe for touch of
9206 efficiency recommended by elisp manual. (An aside in Bug#3911.)
9207
9208 2009-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
9209
9210 Misc coding convention cleanups.
9211 * htmlfontify.el (hfy-init-kludge-hook): Rename from
9212 hfy-init-kludge-hooks.
9213 (hfy-etags-cmd, hfy-flatten-style, hfy-invisible-name, hfy-face-at)
9214 (hfy-fontify-buffer, hfy-prepare-index-i, hfy-subtract-maps)
9215 (hfy-save-kill-buffers, htmlfontify-copy-and-link-dir): Use dolist
9216 and push.
9217 (hfy-slant, hfy-weight): Use tables rather than code.
9218 (hfy-box-to-border-assoc, hfy-box-to-style, hfy-decor)
9219 (hfy-face-to-style-i, hfy-fontify-buffer): Use `case'.
9220 (hfy-face-attr-for-class): Initialize `face-spec' directly.
9221 (hfy-face-to-css): Remove `nconc' with single arg.
9222 (hfy-p-to-face-lennart): Use `or'.
9223 (hfy-face-at): Hoist common code. Remove spurious quotes in `case'.
9224 (hfy-overlay-props-at, hfy-mark-tag-hrefs): Eta-reduce.
9225 (hfy-compile-stylesheet, hfy-merge-adjacent-spans)
9226 (hfy-compile-face-map, hfy-parse-tags-buffer): Use push.
9227 (hfy-force-fontification): Use run-hooks.
9228
9229 2009-11-26 Vivek Dasmohapatra <vivek@etla.org>
9230
9231 Various minor fixes.
9232 * htmlfontify.el (hfy-default-header): Add toggle_invis since
9233 Javascript belongs in the header, not the body.
9234 (hfy-javascript): Remove.
9235 (hfy-fontify-buffer): Don't insert it any more.
9236 (hfy-face-at): Handle (face0 face1 face2) style face properties.
9237 Fix bug in invis handling when there were no invis props in a chunk.
9238
9239 2009-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
9240
9241 * vc-bzr.el (vc-bzr-annotate-command): Make operation asynchronous.
9242
9243 2009-11-26 Dan Nicolaescu <dann@ics.uci.edu>
9244
9245 * finder.el (finder-mode-map): Add a menu.
9246
9247 2009-11-26 Michael McNamara <mac@mail.brushroad.com>
9248
9249 * progmodes/verilog-mode.el (verilog-at-struct-p): Support "signed" and
9250 "unsigned" structs.
9251
9252 (verilog-leap-to-head, verilog-backward-token): Handle "disable
9253 fork" statement better.
9254
9255 2009-11-26 Wilson Snyder <wsnyder@wsnyder.org>
9256
9257 * progmodes/verilog-mode.el (verilog-auto-insert-lisp)
9258 (verilog-delete-auto, verilog-delete-empty-auto-pair)
9259 (verilog-library-filenames): Fix AUTOINSERTLISP to support insert-file.
9260 Reported by Clay Douglass.
9261
9262 (verilog-auto-inst, verilog-auto-star-safe)
9263 (verilog-delete-auto-star-implicit, verilog-read-sub-decls):
9264 Fix removing "// Interfaces" when saving .* expansions. Reported by
9265 Pierre-David Pfister.
9266
9267 2009-11-26 Glenn Morris <rgm@gnu.org>
9268
9269 * eshell/em-dirs.el (eshell/cd): Don't throw to a tag outside
9270 the scope.
9271
9272 2009-11-25 Johan Bockgård <bojohan@gnu.org>
9273
9274 * vc-annotate.el (vc-annotate-revision-previous-to-line):
9275 Really use previous revision.
9276
9277 2009-11-25 Kevin Ryde <user42@zip.com.au>
9278
9279 * man.el (Man-completion-table): default-directory "/" in case
9280 doesn't otherwise exist. process-environment COLUMNS=999 so as
9281 not to truncate long names. process-connection-type pipe to avoid
9282 any chance of hitting the pseudo-tty TIOCGWINSZ.
9283 (man): completion-ignore-case t for friendliness and since man
9284 itself is case-insensitive on the command line.
9285 Further to Bug#3717.
9286
9287 * arc-mode.el: Add "Keywords: files", so the details in its
9288 commentary can be reached from finder-by-keyword.
9289 * textmodes/dns-mode.el: Add "Keywords: comm". It's only an
9290 editing mode, but it's comms related and sgml-mode.el has "comm"
9291 on that basis too.
9292 * textmodes/bibtex-style.el: Add "Keywords: tex".
9293 * international/isearch-x.el, international/ja-dic-cnv.el:
9294 * international/ja-dic-utl.el, international/kkc.el:
9295 Add "Keywords: i18n", so they can be reached from finder-by-keyword.
9296
9297 2009-11-25 Juri Linkov <juri@jurta.org>
9298
9299 * man.el (Man-completion-table): Modify regexp to include
9300 section names to completion strings. (Bug#3717)
9301
9302 2009-11-25 Juri Linkov <juri@jurta.org>
9303
9304 Search recursively in gzipped files. (Bug#4982)
9305
9306 * progmodes/grep.el (grep-highlight-matches): Add new options
9307 `always' and `auto'. Doc fix.
9308 (grep-process-setup): Check `grep-highlight-matches' for
9309 `auto-detect' to determine the need to compute grep defaults.
9310 Move Windows/DOS specific --colors settings handling
9311 to `grep-compute-defaults'. Check `grep-highlight-matches'
9312 to get the value of "--color=".
9313 (grep-compute-defaults): Compute `grep-highlight-matches' when it
9314 has the value `auto-detect'. Move Windows/DOS specific settings
9315 from `grep-process-setup'.
9316 (zrgrep): New command with alias `rzgrep'.
9317
9318 2009-11-25 Juri Linkov <juri@jurta.org>
9319
9320 * doc-view.el (doc-view-mode): Set buffer-local `view-read-only'
9321 to nil instead of switching off view-mode. (Bug#4896)
9322
9323 2009-11-25 Juri Linkov <juri@jurta.org>
9324
9325 Mouse-wheel scrolling for DocView Continuous mode. (Bug#4896)
9326
9327 * mwheel.el (mwheel-scroll-up-function)
9328 (mwheel-scroll-down-function): New defvars.
9329 (mwheel-scroll): Funcall `mwheel-scroll-up-function' instead of
9330 `scroll-up', and `mwheel-scroll-down-function' instead of
9331 `scroll-down'.
9332
9333 * doc-view.el (doc-view-scroll-up-or-next-page)
9334 (doc-view-scroll-down-or-previous-page): Add optional ARG.
9335 Use this ARG in the call to image-scroll-up/image-scroll-down.
9336 Change `interactive' spec to "P". Goto next/previous page only
9337 when `doc-view-continuous-mode' is non-nil or ARG is nil (for the
9338 SPC/DEL case). Doc fix.
9339 (doc-view-next-line-or-next-page)
9340 (doc-view-previous-line-or-previous-page): Rename arg to ARG
9341 for consistency.
9342 (doc-view-mode): Set buffer-local `mwheel-scroll-up-function' to
9343 `doc-view-scroll-up-or-next-page', and buffer-local
9344 `mwheel-scroll-down-function' to
9345 `doc-view-scroll-down-or-previous-page'.
9346
9347 2009-11-25 Juri Linkov <juri@jurta.org>
9348
9349 Provide additional default values (directories at other Dired
9350 windows) via M-n in the minibuffer of some Dired commands.
9351
9352 * dired-aux.el (dired-diff, dired-compare-directories)
9353 (dired-do-create-files): Use `dired-dwim-target-defaults' to set
9354 `minibuffer-default' in `minibuffer-with-setup-hook'.
9355 (dired-dwim-target-directory): Find a window that displays Dired
9356 buffer instead of failing when the next window is not Dired.
9357 Use `get-window-with-predicate' to find for the next Dired window.
9358 (dired-dwim-target-defaults): New function.
9359
9360 * ediff-util.el (ediff-read-file-name):
9361 Use `dired-dwim-target-defaults' to set `minibuffer-default'
9362 in `minibuffer-with-setup-hook'.
9363
9364 2009-11-25 Juri Linkov <juri@jurta.org>
9365
9366 Provide additional default values (file name at point or at the
9367 current Dired line) via M-n for file reading minibuffers. (Bug#5010)
9368
9369 * minibuffer.el (read-file-name-defaults): New function.
9370 (read-file-name): Reset `minibuffer-default' to nil when
9371 it duplicates initial input `insdef'.
9372 Bind `minibuffer-default-add-function' to lambda that
9373 calls `read-file-name-defaults' in `minibuffer-selected-window'.
9374 (minibuffer-insert-file-name-at-point): New command.
9375
9376 * files.el (file-name-at-point-functions): New defcustom.
9377 (find-file-default): Remove defvar.
9378 (find-file-read-args): Don't use `find-file-default'.
9379 Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
9380 to `read-file-name'.
9381 (find-file-literally): Use `read-file-name' with
9382 `confirm-nonexistent-file-or-buffer'.
9383
9384 * ffap.el (ffap-guess-file-name-at-point): New autoloaded function.
9385
9386 * dired.el (dired-read-dir-and-switches):
9387 Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
9388 to `read-file-name'.
9389 (dired-file-name-at-point): New function.
9390 (dired-mode): Add hook `dired-file-name-at-point' to
9391 `file-name-at-point-functions'.
9392
9393 2009-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
9394
9395 Really make the *Completions* window soft-dedicated (bug#5030).
9396 * window.el (window--display-buffer-2): Add `dedicated' argument.
9397 (display-buffer): Pass it when needed so the dedicated flag is set
9398 after calling set-window-buffer, which would otherwise reset it.
9399
9400 2009-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
9401
9402 * progmodes/meta-mode.el (meta-complete-symbol):
9403 * progmodes/etags.el (complete-tag):
9404 * mail/mailabbrev.el (mail-abbrev-complete-alias):
9405 Use completion-in-region.
9406
9407 * dabbrev.el (dabbrev--minibuffer-origin): Use minibuffer-selected-window.
9408 (dabbrev-completion): Use completion-in-region.
9409 (dabbrev--abbrev-at-point): Simplify regexp.
9410
9411 * abbrev.el (abbrev--before-point): Use word-motion functions
9412 if :regexp is not specified (bug#5031).
9413
9414 * subr.el (string-prefix-p): New function.
9415
9416 * man.el (Man-completion-cache): New var.
9417 (Man-completion-table): Use it.
9418
9419 * vc.el (vc-print-log-internal): Make `limit' optional for better
9420 compatibility (e.g. with vc-annotate.el).
9421
9422 2009-11-24 Kevin Ryde <user42@zip.com.au>
9423
9424 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp):
9425 Build value with regexp-opt instead of explicit joining loop. (Bug#4927)
9426
9427 * emacs-lisp/elint.el (elint-add-required-env): Better error message
9428 when .el source file not found or other error.
9429
9430 2009-11-24 Markus Triska <markus.triska@gmx.at>
9431
9432 * linum.el (linum-update-window): Ignore intangible (bug#4996).
9433
9434 2009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
9435
9436 Handle the [back] button properly (bug#4979).
9437 * descr-text.el (describe-text-properties): Add a `buffer' argument.
9438 Use help-setup-xref, help-buffer, and with-help-window.
9439 (describe-char): Add `buffer' argument.
9440 Pass proper command to help-setup-xref. Don't meddle with
9441 help-xref-stack-item directly.
9442 (describe-text-category): Use with-help-window and help-buffer.
9443
9444 * emacs-lisp/shadow.el (list-load-path-shadows): Setup a major mode
9445 for the displayed buffer (bug#4887).
9446
9447 * man.el (Man-completion-table): New function.
9448 (man): Use it.
9449
9450 2009-11-24 David Reitter <david.reitter@gmail.com>
9451
9452 * vc-git.el (vc-git-registered): Use checkout directory (where
9453 .git is) rather than the file's directory and a relative path spec
9454 to work around a bug in git.
9455
9456 2009-11-24 Michael Albinus <michael.albinus@gmx.de>
9457
9458 Improve handling of processes on remote hosts.
9459
9460 * eshell/esh-util.el (eshell-path-env): New defvar.
9461 (eshell-parse-colon-path): New defun.
9462 (eshell-file-attributes): Use `eshell-parse-colon-path'.
9463
9464 * eshell/esh-ext.el (eshell-search-path):
9465 Use `eshell-parse-colon-path'.
9466 (eshell-remote-command): Remove argument HANDLER.
9467 (eshell-external-command): Check for FTP remote connection.
9468
9469 * eshell/esh-proc.el (eshell-gather-process-output):
9470 Use `file-truename', in order to start also symlinked files.
9471 Apply `start-file-process' instead of `start-process'.
9472 Shorten `command' to the local file name part.
9473
9474 * eshell/em-cmpl.el (eshell-complete-commands-list):
9475 Use `eshell-parse-colon-path'.
9476
9477 * eshell/em-unix.el (eshell/du): Check for FTP remote connection.
9478
9479 * net/tramp.el (tramp-eshell-directory-change): New defun. Add it
9480 to `eshell-directory-change-hook'.
9481
9482 2009-11-24 Tassilo Horn <tassilo@member.fsf.org>
9483
9484 * doc-view.el (doc-view-mode): Switch off view-mode explicitly,
9485 because it could be enabled automatically if view-read-only is non-nil.
9486
9487 2009-11-24 Michael Kifer <kifer@cs.stonybrook.edu>
9488
9489 * ediff-vers.el (ediff-rcs-get-output-buffer): Revert the change
9490 made on 2009-11-22.
9491
9492 2009-11-24 Glenn Morris <rgm@gnu.org>
9493
9494 * bookmark.el (bookmark-bmenu-hide-filenames): Remove assignment to
9495 deleted variable bookmark-bmenu-bookmark-column.
9496
9497 * cedet/semantic/idle.el (global-semantic-idle-scheduler-mode):
9498 Move after definition of global-semantic-idle-tag-highlight-mode.
9499
9500 2009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
9501
9502 * bookmark.el (bookmark-bmenu-search): Clear echo area when exiting.
9503
9504 2009-11-23 Ken Brown <kbrown@cornell.edu> (tiny change)
9505
9506 * net/browse-url.el (browse-url-filename-alist): On Windows, add
9507 two slashes to the "file:" prefix.
9508 (browse-url-file-url): De-munge Cygwin filenames before passing
9509 them to Windows browser.
9510 (browse-url-default-windows-browser): Use call-process.
9511
9512 2009-11-23 Juri Linkov <juri@jurta.org>
9513
9514 Implement DocView Continuous mode. (Bug#4896)
9515 * doc-view.el (doc-view-continuous-mode): New defcustom.
9516 (doc-view-mode-map): Bind C-n/<down> to
9517 `doc-view-next-line-or-next-page', C-p/<up> to
9518 `doc-view-previous-line-or-previous-page'.
9519 (doc-view-next-line-or-next-page)
9520 (doc-view-previous-line-or-previous-page): New commands.
9521
9522 2009-11-23 Juri Linkov <juri@jurta.org>
9523
9524 Implement Isearch in comint input history. (Bug#3746)
9525 * comint.el (comint-mode): Add `comint-history-isearch-setup' to
9526 `isearch-mode-hook'.
9527 (comint-history-isearch): New defcustom.
9528 (comint-history-isearch-backward)
9529 (comint-history-isearch-backward-regexp): New commands.
9530 (comint-history-isearch-message-overlay): New buffer-local variable.
9531 (comint-history-isearch-setup, comint-history-isearch-end)
9532 (comint-goto-input, comint-history-isearch-search)
9533 (comint-history-isearch-message, comint-history-isearch-wrap)
9534 (comint-history-isearch-push-state)
9535 (comint-history-isearch-pop-state): New functions.
9536
9537 2009-11-23 Michael Albinus <michael.albinus@gmx.de>
9538
9539 * net/tramp.el (tramp-shell-prompt-pattern): Use \r for carriage
9540 return.
9541 (tramp-handle-make-symbolic-link)
9542 (tramp-handle-dired-compress-file, tramp-handle-expand-file-name):
9543 Quote file names.
9544 (tramp-send-command-and-check): New argument DONT-SUPPRESS-ERR.
9545 (tramp-handle-process-file): Use it.
9546
9547 2009-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
9548
9549 * window.el (move-to-window-line-last-op): Remove.
9550 (move-to-window-line-top-bottom): Reuse recenter-last-op instead.
9551
9552 2009-11-23 Deniz Dogan <deniz.a.m.dogan@gmail.com> (tiny change)
9553
9554 Make M-r mirror the new cycling behavior of C-l.
9555 * window.el (move-to-window-line-last-op): New var.
9556 (move-to-window-line-top-bottom): New command.
9557 (global-map): Bind M-r move-to-window-line-top-bottom.
9558
9559 2009-11-23 Sven Joachim <svenjoac@gmx.de>
9560
9561 * dired-x.el (dired-guess-shell-alist-default):
9562 Support xz format. (Bug#4953)
9563
9564 2009-11-22 Chong Yidong <cyd@stupidchicken.com>
9565
9566 * cedet/srecode/map.el (srecode-get-maps):
9567 * cedet/semantic/wisent/wisent.el (wisent-parse-toggle-verbose-flag):
9568 * cedet/semantic/wisent/comp.el (wisent-toggle-verbose-flag):
9569 * cedet/semantic/decorate/mode.el (semantic-decoration-mode)
9570 (semantic-toggle-decoration-style):
9571 * cedet/semantic/decorate/include.el
9572 (semantic-decoration-include-describe)
9573 (semantic-decoration-unknown-include-describe)
9574 (semantic-decoration-unparsed-include-describe)
9575 (semantic-decoration-all-include-summary):
9576 * cedet/semantic/bovine/c.el (semantic-c-debug-mode-init):
9577 * cedet/semantic/analyze/complete.el
9578 (semantic-analyze-possible-completions):
9579 * cedet/semantic/util-modes.el (semantic-highlight-edits-mode)
9580 (semantic-show-unmatched-syntax-mode)
9581 (semantic-show-parser-state-mode, semantic-stickyfunc-mode)
9582 (semantic-highlight-func-mode):
9583 * cedet/semantic/util.el (semantic-describe-buffer):
9584 * cedet/semantic/symref.el (semantic-symref-find-references-by-name)
9585 (semantic-symref-find-tags-by-name)
9586 (semantic-symref-find-tags-by-regexp)
9587 (semantic-symref-find-tags-by-completion)
9588 (semantic-symref-find-file-references-by-name)
9589 (semantic-symref-find-text):
9590 * cedet/semantic/senator.el (senator-copy-tag, senator-kill-tag)
9591 (senator-yank-tag):
9592 * cedet/semantic/scope.el (semantic-calculate-scope):
9593 * cedet/semantic/mru-bookmark.el (semantic-mru-bookmark-mode):
9594 * cedet/semantic/idle.el (semantic-idle-scheduler-mode)
9595 (define-semantic-idle-service):
9596 * cedet/semantic/complete.el (semantic-complete-analyze-inline)
9597 (semantic-complete-analyze-inline-idle):
9598 * cedet/semantic/analyze.el (semantic-analyze-current-context):
9599 * cedet/mode-local.el (describe-mode-local-bindings)
9600 (describe-mode-local-bindings-in-mode):
9601 * cedet/ede/make.el (ede-make-check-version):
9602 * cedet/ede/locate.el (ede-enable-locate-on-project):
9603 * cedet/cedet-idutils.el (cedet-idutils-expand-filename)
9604 (cedet-idutils-version-check):
9605 * cedet/cedet-global.el (cedet-gnu-global-expand-filename)
9606 (cedet-gnu-global-version-check):
9607 * cedet/cedet-cscope.el (cedet-cscope-expand-filename)
9608 (cedet-cscope-version-check): Use called-interactively-p instead
9609 of interactive-p.
9610
9611 * cedet/semantic/ia.el (semantic-ia-completion-format-tag-function):
9612 Use semantic-format-tag-prototype.
9613
9614 2009-11-22 Michael Kifer <kifer@cs.stonybrook.edu>
9615
9616 * emulation/viper-cmd.el: Use viper-last-command-char instead of
9617 last-command-char/last-command-event.
9618 (viper-prefix-arg-value): Do correct conversion of event-char for
9619 XEmacs.
9620
9621 * emulation/viper-util.el, emulation/viper.el:
9622 Use viper-last-command-char instead of
9623 last-command-char/last-command-event.
9624
9625 * ediff-init.el, ediff-mult.el, ediff-util.el:
9626 Replace last-command-char and last-command-event
9627 with (ediff-last-command-char) everywhere.
9628
9629 * ediff-vers.el (ediff-rcs-get-output-buffer): Make sure the buffer is
9630 created in fundamental mode.
9631
9632 * ediff.el (ediff-version): Revert the change of interactive-p to
9633 called-interactively-p.
9634
9635 2009-11-22 Tassilo Horn <tassilo@member.fsf.org>
9636
9637 * progmodes/subword.el (subword-mode-map): Fix subword-mode-map
9638 generation from word-movement command names.
9639
9640 2009-11-21 Chong Yidong <cyd@stupidchicken.com>
9641
9642 * cedet/semantic/complete.el (semantic-complete-read-tag-engine)
9643 (semantic-complete-jump-local, semantic-complete-jump):
9644 Improve prompt string.
9645
9646 2009-11-21 Jan Djärv <jan.h.d@swipnet.se>
9647
9648 * cus-start.el (all): Add native condition for font-use-system-font.
9649
9650 2009-11-21 Nathaniel Flath <flat0103@gmail.com>
9651
9652 * progmodes/cc-menus.el (cc-imenu-java-generic-expression):
9653 Correct the patch from 2009-11-18. (Bug#3910)
9654
9655 2009-11-21 Tassilo Horn <tassilo@member.fsf.org>
9656
9657 * progmodes/subword.el: Rename from lisp/subword.el.
9658
9659 * subword.el: Rename to progmodes/subword.el.
9660
9661 * Makefile.in (ELCFILES): Adapt to subword.el move.
9662
9663 2009-11-21 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9664 Stefan Monnier <monnier@iro.umontreal.ca>
9665
9666 * bookmark.el (bookmark-bmenu-bookmark-column): Remove var.
9667 (bookmark-bmenu-list): Save name on `bookmark-name-prop' text-prop.
9668 (bookmark-bmenu-show-filenames): Use push.
9669 (bookmark-bmenu-hide-filenames): Use local var instead of
9670 bookmark-bmenu-bookmark-column. Use pop. Don't save window-excursion.
9671 (bookmark-bmenu-bookmark): Use the new `bookmark-name-prop' text-prop.
9672 (bookmark-bmenu-execute-deletions): Don't bother adding/removing the
9673 filenames now that the bookmark names are always available.
9674
9675 2009-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
9676
9677 * bookmark.el (bookmark-search-prompt, bookmark-search-timer): Remove.
9678 (bookmark-search-pattern): Move and leave unbound.
9679 (bookmark-bmenu-mode-map): Change binding.
9680 (bookmark-read-search-input): Simplify.
9681 Don't use text-char-description. Don't error on non-char events.
9682 (bookmark-filtered-alist-by-regexp-only): Remove by folding into the
9683 only caller (i.e. bookmark-bmenu-filter-alist-by-regexp).
9684 (bookmark-bmenu-search): Don't check we're in a bookmark-list buffer.
9685 Use a local var for the timer.
9686 (bookmark-bmenu-cancel-search): Remove by folding into the only caller
9687 (i.e. bookmark-bmenu-search).
9688
9689 2009-11-21 Glenn Morris <rgm@gnu.org>
9690
9691 * mail/rmailmm.el (rmail-mime): Decode in fundamental-mode. (Bug#4993)
9692
9693 2009-11-20 Ken Brown <kbrown@cornell.edu> (tiny change)
9694
9695 * net/browse-url.el (browse-url-default-windows-browser):
9696 Use cygstart for cygwin.
9697
9698 2009-11-20 Karl Fogel <karl.fogel@red-bean.com>
9699
9700 * bookmark.el: Formatting and doc fixes only:
9701 (bookmark-search-delay): Shorten doc string to fit in 80 columns.
9702 (bookmark-bmenu-search): Wrap to fit within 80 columns.
9703 Minor grammar and punctuation fixes in doc string.
9704 (bookmark-read-search-input): Adjust to fit within 80 columns.
9705
9706 2009-11-20 Tassilo Horn <tassilo@member.fsf.org>
9707
9708 * progmodes/cc-cmds.el (c-forward-into-nomenclature)
9709 (c-backward-into-nomenclature): Adapt to subword renaming.
9710
9711 * subword.el (subword-forward, subword-backward, subword-mark)
9712 (subword-kill, subword-backward-kill, subword-transpose)
9713 (subword-downcase, subword-upcase, subword-capitalize)
9714 (subword-forward-internal, subword-backward-internal):
9715 Rename from forward-subword, backward-subword, mark-subword,
9716 kill-subword, backward-kill-subword, transpose-subwords,
9717 downcase-subword, upcase-subword, capitalize-subword,
9718 forward-subword-internal, backward-subword-internal.
9719
9720 2009-11-20 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9721
9722 * bookmark.el (bookmark-search-delay, bookmark-search-prompt):
9723 New options.
9724 (bookmark-search-pattern, bookmark-search-timer, bookmark-quit-flag):
9725 New vars.
9726 (bookmark-read-search-input, bookmark-filtered-alist-by-regexp-only)
9727 (bookmark-bmenu-filter-alist-by-regexp)
9728 (bookmark-bmenu-goto-bookmark, bookmark-bmenu-cancel-search): New funs.
9729 (bookmark-bmenu-search): New command.
9730 (bookmark-bmenu-mode-map): Bind it.
9731
9732 2009-11-20 Chong Yidong <cyd@stupidchicken.com>
9733
9734 * cedet/semantic/complete.el (semantic-complete-inline-map): Doc fix.
9735
9736 * cedet/semantic/idle.el (define-semantic-idle-service)
9737 (semantic-idle-summary-mode, semantic-idle-completions): Doc fix.
9738
9739 2009-11-20 Tassilo Horn <tassilo@member.fsf.org>
9740
9741 * progmodes/cc-cmds.el: declare-functioned forward-subword and
9742 backward-subword to quit the byte-compiler.
9743
9744 * makefile.w32-in: Don't refer cc-subword.elc but subword.elc.
9745
9746 * Makefile.in: Don't refer cc-subword.elc but subword.elc.
9747
9748 * progmodes/cc-cmds.el (c-update-modeline)
9749 (c-forward-into-nomenclature, c-backward-into-nomenclature):
9750 Refer to subword.el functions instead of cc-subword.el.
9751
9752 * progmodes/cc-mode.el (subword-mode, c-mode-base-map): Refer to
9753 subword.el functions instead of cc-subword.el.
9754
9755 * progmodes/cc-subword.el: Rename to subword.el.
9756 * subword.el: Rename from progmodes/cc-subword.el.
9757 (subword-mode-map): Rename from c-subword-mode-map.
9758 (subword-mode): Rename from c-subword-mode.
9759 (global-subword-mode): New global minor mode.
9760 (forward-subword): Rename from c-forward-subword.
9761 (backward-subword): Rename from c-backward-subword.
9762 (mark-subword): Rename from c-mark-subword.
9763 (kill-subword): Rename from c-kill-subword.
9764 (backward-kill-subword): Rename from c-backward-kill-subword.
9765 (transpose-subwords): Rename from c-tranpose-subword.
9766 (downcase-subword): Rename from c-downcase-subword.
9767 (capitalize-subword): Rename from c-capitalize-subword.
9768 (forward-subword-internal): Rename from c-forward-subword-internal.
9769 (backward-subword-internal): Rename from c-backward-subword-internal.
9770
9771 2009-11-20 Dan Nicolaescu <dann@ics.uci.edu>
9772
9773 * vc.el (vc-deduce-fileset): Allow non-state changing operations
9774 from a dired buffer.
9775 (vc-dired-deduce-fileset): New function.
9776 (vc-root-diff, vc-print-root-log): Use it.
9777
9778 * vc-annotate.el (vc-annotate-show-log-revision-at-line): Pass a
9779 nil LIMIT argument to vc-print-log-internal.
9780
9781 2009-11-20 Glenn Morris <rgm@gnu.org>
9782
9783 * Makefile.in (ELCFILES): Regenerate.
9784
9785 2009-11-20 Chong Yidong <cyd@stupidchicken.com>
9786
9787 * cedet/cedet.el (cedet-menu-map): Re-order menu items.
9788
9789 * cedet/semantic.el: Enable idle-mode menu items only if
9790 global-semantic-idle-scheduler-mode is enabled.
9791 (semantic-default-submodes): Doc fix.
9792
9793 * cedet/semantic/idle.el (global-semantic-idle-scheduler-mode):
9794 When turning off, disable other idle modes.
9795
9796 2009-11-20 Jay Belanger <jay.p.belanger@gmail.com>
9797
9798 * calc/calc.el (calc-set-mode-line):
9799 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
9800 (math-format-number): Rename `math-format-complement-signed' to
9801 `math-format-twos-complement'.
9802
9803 * calc/calc-bin.el (math-format-twos-complement): Rename from
9804 math-format-complement-signed.
9805 (calc-radix): Rename `calc-complement-signed-mode' to
9806 `calc-twos-complement-mode'.
9807 (calc-octal-radix, calc-hex-radix): Add an argument for
9808 two's complement.
9809
9810 * calc/calc-embed.el (calc-embedded-mode-vars):
9811 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
9812
9813 * calc/calc-ext.el (calc-init-extensions):
9814 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
9815 (math-format-number-fancy): Let `calc-twos-complement-mode' be nil.
9816
9817 * calc/calc-units.el (math-build-units-table-buffer):
9818 Let `calc-twos-complement-mode' be nil.
9819
9820 * calc/calc-menu.el (calc-modes-menu): Clean up two's complement
9821 entries.
9822
9823 * calc/calc-vec.el (calcFunc-vunpack):
9824 * calc/calc-aent.el (calc-do-calc-eval):
9825 * calc/calc-forms.el (math-format-date):
9826 * calc/calc-graph.el (calc-graph-plot):
9827 * calc/calc-math.el (math-use-emacs-fn):
9828 * calc/calccomp.el (math-compose-expr):
9829 Let `calc-twos-complement-mode' be nil.
9830
9831 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
9832
9833 * abbrev.el (abbrev-with-wrapper-hook): (re)move...
9834 * simple.el (with-wrapper-hook): ...to here. Add argument `args'.
9835 * minibuffer.el (completion-in-region-functions): New hook.
9836 (completion-in-region): New function.
9837 * emacs-lisp/lisp.el (lisp-complete-symbol):
9838 * pcomplete.el (pcomplete-std-complete): Use it.
9839
9840 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
9841
9842 * textmodes/tex-mode.el (latex-complete-bibtex-cache)
9843 (latex-complete-alist): New vars.
9844 (latex-string-prefix-p, latex-complete-bibtex-keys)
9845 (latex-complete-envnames, latex-complete-refkeys)
9846 (latex-complete-data): New functions.
9847 (latex-complete, latex-indent-or-complete): New commands.
9848
9849 * window.el (display-buffer-mark-dedicated): New var.
9850 (display-buffer): Obey it.
9851 * minibuffer.el (minibuffer-completion-help): Use it.
9852
9853 * progmodes/sym-comp.el (symbol-complete): Use completion-in-region.
9854
9855 * filecache.el (file-cache-add-file): Use push and cons.
9856 (file-cache-delete-file-regexp): Use push.
9857 (file-cache-complete): Use completion-in-region.
9858
9859 * simple.el (with-wrapper-hook): Fix thinko.
9860
9861 * hfy-cmap.el (hfy-rgb-file): Use locate-file.
9862 (htmlfontify-load-rgb-file): Remove unnused var `ff'.
9863 Use with-current-buffer and string-to-number.
9864 (hfy-fallback-colour-values): Use assoc-string.
9865 * htmlfontify.el (hfy-face-to-css): Remove unused var `style'.
9866 (hfy-face-at): Remove unused var `found-face'.
9867 (hfy-compile-stylesheet): Remove unused var `css'.
9868 (hfy-fontify-buffer): Remove unused vars `in-style', `invis-button',
9869 and `orig-buffer'.
9870 (hfy-buffer, hfy-copy-and-fontify-file, hfy-parse-tags-buffer):
9871 Use with-current-buffer.
9872 (hfy-text-p): Use expand-file-name and fewer setq.
9873
9874 2009-11-19 Vivek Dasmohapatra <vivek@etla.org>
9875
9876 * htmlfontify.el, hfy-cmap.el: New files.
9877
9878 2009-11-19 Juri Linkov <juri@jurta.org>
9879
9880 * minibuffer.el (completions-format): New defcustom.
9881 (completion--insert-strings): Implement vertical format.
9882
9883 * simple.el (switch-to-completions): Move point to the first
9884 completion when point was at the beginning of the buffer.
9885
9886 2009-11-19 Juri Linkov <juri@jurta.org>
9887
9888 * find-dired.el (find-name-arg): Remove autoload. (Bug#4387)
9889
9890 * progmodes/grep.el (rgrep): Require `find-dired' for `find-name-arg'.
9891
9892 2009-11-19 Chong Yidong <cyd@stupidchicken.com>
9893
9894 * mail/sendmail.el (mail-yank-prefix): Change default to "> ".
9895 (mail-signature): Change default to t.
9896 (mail-from-style): Deprecate `system-default' value.
9897 (mail-insert-from-field): For default value of mail-from-style,
9898 default to `angles' unless `angles' needs quoting and `parens'
9899 does not.
9900 (mail-citation-prefix-regexp): Use citation regexp from
9901 message-mode.
9902
9903 2009-11-19 Michael Albinus <michael.albinus@gmx.de>
9904
9905 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
9906 Set variables for computing the prompt for reading password.
9907
9908 2009-11-19 Glenn Morris <rgm@gnu.org>
9909
9910 * dired-aux.el (dired-compress-file-suffixes): Add ".xz". (Bug#4953)
9911
9912 * textmodes/flyspell.el (sgml-lexical-context): Declare.
9913
9914 * net/newst-treeview.el (newsticker-treeview-treewindow-width)
9915 (newsticker-treeview-listwindow-height): Fix custom type.
9916
9917 2009-11-19 Kenichi Handa <handa@m17n.org>
9918
9919 * descr-text.el (describe-char-padded-string): Compose with TAB
9920 only if there's a font for CH.
9921 (describe-char): Fix the condition for detecting a trivial composition.
9922
9923 2009-11-18 Nathaniel Flath <flat0103@gmail.com>
9924
9925 * progmodes/cc-menus.el (cc-imenu-java-generic-expression): A new,
9926 more accurate version of the regexp. (Bug#3910)
9927
9928 2009-11-18 Bernhard Herzog <bernhard.herzog@intevation.de> (tiny change)
9929
9930 * vc-hg.el (vc-hg-diff): Fix last patch: do not change directory.
9931
9932 2009-11-18 Juanma Barranquero <lekktu@gmail.com>
9933
9934 * font-setting.el (font-use-system-font): Declare for byte-compiler.
9935 (font-setting-change-default-font): Fix typo in docstring.
9936
9937 2009-11-18 Alan Mackenzie <acm@muc.de>
9938
9939 * progmodes/cc-defs.el (c-version): Bump to 5.31.8.
9940
9941 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
9942
9943 * font-setting.el (font-use-system-font): Move ...
9944
9945 * cus-start.el (all): ... to here.
9946
9947 2009-11-17 Michael Albinus <michael.albinus@gmx.de>
9948
9949 * net/tramp.el (tramp-advice-file-expand-wildcards): Simplify.
9950 Don't set `ad-return-value' if `ad-do-it' doesn't.
9951
9952 * net/tramp-gvfs.el (tramp-gvfs-handle-write-region): Set file
9953 modification time.
9954
9955 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
9956
9957 * menu-bar.el: Put "Use system font" in Option-menu.
9958 (menu-bar-options-save): Add font-use-system-font.
9959
9960 * loadup.el: If feature system-font-setting or font-render-setting is
9961 there, load font-setting.
9962
9963 * Makefile.in (ELCFILES): Add font-settings.el.
9964 * font-setting.el: New file.
9965
9966 2009-11-17 Glenn Morris <rgm@gnu.org>
9967
9968 * vc-svn.el (vc-svn-print-log): Fix typo in previous.
9969
9970 * net/newst-treeview.el (newsticker--treeview-list-update-faces):
9971 Preserve point in the list buffer. (Bug#4939)
9972 Use point-at-eol.
9973 (newsticker--treeview-list-update-highlight)
9974 (newsticker--treeview-tree-update-highlight): Use point-at-bol/eol.
9975
9976 2009-11-16 Jay Belanger <jay.p.belanger@gmail.com>
9977
9978 * calc/calc-bin.el (math-symclip, calcFunc-symclip, calc-symclip):
9979 Remove.
9980
9981 * calc/calc-ext.el (calc-init-extensions): Remove references to
9982 symclip.
9983
9984 * calc/calc-menu.el (calc-arithmetic-menu): Remove `calc-symclip'.
9985
9986 * calc/calc-map.el (calc-get-operator, calc-b-oper-keys):
9987 * calc/calc-help.el (calc-b-prefix-help): Remove references to
9988 `calc-symclip'.
9989
9990 2009-11-16 Kevin Ryde <user42@zip.com.au>
9991
9992 * textmodes/flyspell.el (sgml-mode-flyspell-verify):
9993 Use `sgml-lexical-context' instead of own parse for tag (Bug#4511).
9994
9995 * emacs-lisp/lisp-mnt.el (lm-keywords): Allow multi-line keywords.
9996 (lm-keywords-list): Allow comma-only separator like "foo,bar".
9997 Ignore trailing spaces by omit-nulls to split-string (fixing
9998 regression from Emacs 21 due to the incompatible split-string
9999 change). (Bug #4928.)
10000
10001 2009-11-16 Dan Nicolaescu <dann@ics.uci.edu>
10002
10003 * vc.el (vc-log-show-limit): Default to 2000.
10004 (vc-print-log-internal): Insert buttons to request more entries
10005 when limiting the output.
10006
10007 * vc-sccs.el (vc-sccs-print-log):
10008 * vc-rcs.el (vc-rcs-print-log):
10009 * vc-cvs.el (vc-cvs-print-log):
10010 * vc-git.el (vc-git-print-log): Return 'limit-unsupported when
10011 LIMIT is non-nil.
10012
10013 2009-11-16 Michael Albinus <michael.albinus@gmx.de>
10014
10015 * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error): Raise only an
10016 error when `tramp-gvfs-dbus-event-vector' is set.
10017 (tramp-gvfs-maybe-open-connection): Loop over `read-event'.
10018
10019 2009-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
10020
10021 * vc-rcs.el (vc-rcs-consult-headers): Add missing save-excursion.
10022
10023 2009-11-16 Michael Albinus <michael.albinus@gmx.de>
10024
10025 * net/dbus.el (dbus-unregister-service): New defun.
10026 (dbus-register-property): Register the handlers of
10027 "org.freedesktop.DBus.Properties" for SERVICE.
10028 (dbus-property-handler): Fix docstring.
10029
10030 2009-11-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10031
10032 * emacs-lisp/bytecomp.el (byte-compile-output-file-form):
10033 Quote doc string reference in defvaralias as it is not in special form.
10034 (byte-compile-output-docform): Doc fix.
10035
10036 2009-11-16 Jay Belanger <jay.p.belanger@gmail.com>
10037
10038 * calc/calc.el (math-2-word-size, math-half-2-word-size)
10039 (calc-complement-signed-mode): New variables.
10040 (calc-set-mode-line): Add indicator for twos-complements.
10041 (math-format-number): Format twos-complement notation.
10042
10043 * calc/calc-bin.el (calc-word-size): Reset the variables
10044 `math-2-word-size' and `math-half-2-word-size'.
10045 (math-format-complement-signed, math-symclip, calcFunc-symclip)
10046 (calc-symclip): New functions.
10047
10048 * calc/calc-aent.el (math-read-token): Read complement signed numbers.
10049
10050 * calc/calc-embed.el (calc-embedded-mode-vars):
10051 Add `calc-complement-signed-mode' to the list of modes.
10052
10053 * calc/calc-map.el (calc-get-operator): Add `calc-symclip'.
10054 (calc-b-oper-keys): Add `calc-symclip' to list.
10055
10056 * calc/calc-ext.el (math-read-number-fancy): Read complement
10057 signed numbers.
10058 (calc-init-extensions): Add binding for `calc-symclip'.
10059 Add autoload for `calcFunc-symclip' and `calc-symclip'.
10060
10061 * calc/calc-menu.el (calc-arithmetic-menu): Add item for
10062 `calc-symclip'.
10063 (calc-modes-menu): Add item for twos complement mode.
10064
10065 * calc/calc-help.el (calc-b-prefix-help): Add help for `calc-symclip'.
10066
10067 2009-11-15 Chong Yidong <cyd@stupidchicken.com>
10068
10069 * register.el (jump-to-register, insert-register): Handle Semantic
10070 tags. From commented-out advice in semantic/senator.el.
10071
10072 2009-11-15 Dan Nicolaescu <dann@ics.uci.edu>
10073
10074 * vc.el (vc-log-show-limit): New variable.
10075 (vc-print-log, vc-print-root-log): Add new argument LIMIT. Set it
10076 when using a prefix argument.
10077 (vc-print-log-internal): Add new argument LIMIT.
10078
10079 * vc-svn.el (vc-svn-print-log):
10080 * vc-mtn.el (vc-mtn-print-log):
10081 * vc-hg.el (vc-hg-print-log):
10082 * vc-bzr.el (vc-bzr-print-log): Add new optional argument LIMIT,
10083 pass it to the log command when set. Make the BUFFER argument
10084 non-optional.
10085
10086 * vc-sccs.el (vc-sccs-print-log):
10087 * vc-rcs.el (vc-rcs-print-log):
10088 * vc-git.el (vc-git-print-log):
10089 * vc-cvs.el (vc-cvs-print-log): Add new optional argument LIMIT,
10090 ignore it. Make the BUFFER argument non-optional
10091
10092 * bindings.el (mode-line-buffer-identification): Do not purecopy.
10093
10094 2009-11-15 Chong Yidong <cyd@stupidchicken.com>
10095
10096 * dired.el (dired-mode-map): Move encryption items to "Operate"
10097 menu (Bug#4703).
10098
10099 * strokes.el (strokes-update-window-configuration): Make strokes
10100 buffer current before erasing (Bug#4906).
10101
10102 * cedet/semantic/idle.el (semantic-idle-summary-mode)
10103 (semantic-idle-summary-mode): Define using define-minor-mode
10104 instead of define-semantic-idle-service.
10105 (semantic-idle-summary-mode): New function.
10106 (semantic-idle-summary-mode-setup): Use pre-command-hook to ensure
10107 that mouse motion does not reset the echo area.
10108
10109 2009-11-15 Juri Linkov <juri@jurta.org>
10110
10111 * simple.el (set-mark-default-inactive): Add :type, :group
10112 and :version. (Bug#4876)
10113
10114 2009-11-15 Michael Albinus <michael.albinus@gmx.de>
10115
10116 * arc-mode.el (archive-maybe-copy): Move creation of directory ...
10117 (archive-unique-fname): ... here. (Bug#4929)
10118
10119 2009-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
10120
10121 * help-mode.el (help-make-xrefs): Undo the last revert, and replace it
10122 with a real fix.
10123
10124 * novice.el (disabled-command-function): Add useful args.
10125 Setup the help buffer so that [back] works.
10126 Remove redundant call to help-mode.
10127 (disabled-command-function): Use `case'.
10128 (en/disable-command): New function extracted from enable-command.
10129 (enable-command, disable-command): Use it.
10130
10131 2009-11-14 Glenn Morris <rgm@gnu.org>
10132
10133 * menu-bar.el (menu-bar-tools-menu): Read and send mail entries are not
10134 constants. (Bug#4913)
10135
10136 * emacs-lisp/elint.el (elint-standard-variables): Doc fix.
10137
10138 2009-11-14 Shigeru Fukaya <shigeru.fukaya@gmail.com>
10139
10140 * emacs-lisp/elint.el (elint-standard-variables): Add some variables
10141 defined in C that have no doc-strings. (Bug#1063)
10142
10143 2009-11-14 Francis Wright <F.J.Wright@qmul.ac.uk>
10144
10145 * cus-edit.el (data, files):
10146 * ps-print.el (postscript): Doc fixes for custom groups. (Bug#3327)
10147
10148 2009-11-14 Chong Yidong <cyd@stupidchicken.com>
10149
10150 * simple.el (shell-command): Doc fix (Bug#4891).
10151
10152 * help-mode.el (help-make-xrefs): Revert 2009-11-13 change.
10153
10154 2009-11-14 Glenn Morris <rgm@gnu.org>
10155
10156 * emulation/viper.el (viper-set-hooks): Remove duplicate advice
10157 statements for vc-diff, emerge-quit, and rmail-cease-edit.
10158 If they are already loaded, eval-after-load will do the right thing.
10159
10160 * speedbar.el (top-level): Remove unnecessary load of ange-ftp when
10161 compiling.
10162
10163 * emacs-lisp/bytecomp.el (byte-compile-single-version): Remove, unused.
10164
10165 * simple.el (x-selection-owner-p): Declare.
10166 (read-mail-command): Use custom radio type rather than choice.
10167 (completion-no-auto-exit): Doc fix.
10168
10169 * custom.el (defgroup):
10170 * epg-config.el (epg): Doc fixes.
10171
10172 2009-11-14 Dan Nicolaescu <dann@ics.uci.edu>
10173
10174 * bindings.el (mode-line-buffer-identification): Purecopy only the string.
10175 * international/ccl.el (define-ccl-program): Do not purecopy the
10176 docstring, defconst does it anyway.
10177
10178 2009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
10179
10180 * add-log.el (add-change-log-entry): Avoid displaying the changelog
10181 a second time.
10182
10183 * x-dnd.el (x-dnd-maybe-call-test-function):
10184 * window.el (split-window-vertically):
10185 * whitespace.el (whitespace-help-on):
10186 * vc-rcs.el (vc-rcs-consult-headers):
10187 * userlock.el (ask-user-about-lock-help)
10188 (ask-user-about-supersession-help):
10189 * type-break.el (type-break-force-mode-line-update):
10190 * time-stamp.el (time-stamp-conv-warn):
10191 * terminal.el (te-set-output-log, te-more-break, te-filter)
10192 (te-sentinel, terminal-emulator):
10193 * term.el (make-term, term-exec, term-sentinel, term-read-input-ring)
10194 (term-write-input-ring, term-check-source, term-start-output-log):
10195 (term-display-buffer-line, term-dynamic-list-completions):
10196 (term-ansi-make-term, serial-term):
10197 * subr.el (selective-display):
10198 * strokes.el (strokes-xpm-to-compressed-string, strokes-decode-buffer)
10199 (strokes-encode-buffer, strokes-xpm-for-compressed-string):
10200 * speedbar.el (speedbar-buffers-tail-notes, speedbar-buffers-item-info)
10201 (speedbar-reconfigure-keymaps, speedbar-add-localized-speedbar-support)
10202 (speedbar-remove-localized-speedbar-support)
10203 (speedbar-set-mode-line-format, speedbar-create-tag-hierarchy)
10204 (speedbar-update-special-contents, speedbar-buffer-buttons-engine)
10205 (speedbar-buffers-line-directory):
10206 * simple.el (shell-command-on-region, append-to-buffer)
10207 (prepend-to-buffer):
10208 * shadowfile.el (shadow-save-todo-file):
10209 * scroll-bar.el (scroll-bar-set-window-start, scroll-bar-drag-1)
10210 (scroll-bar-maybe-set-window-start):
10211 * sb-image.el (speedbar-image-dump):
10212 * saveplace.el (save-place-alist-to-file, save-places-to-alist)
10213 (load-save-place-alist-from-file):
10214 * ps-samp.el (ps-print-message-from-summary):
10215 * ps-print.el (ps-flush-output, ps-insert-file, ps-get-boundingbox)
10216 (ps-background-image, ps-begin-job, ps-do-despool):
10217 * ps-bdf.el (bdf-find-file, bdf-read-font-info):
10218 * printing.el (pr-interface, pr-ps-file-print, pr-find-buffer-visiting)
10219 (pr-ps-message-from-summary, pr-lpr-message-from-summary):
10220 (pr-call-process, pr-file-list, pr-interface-save):
10221 * novice.el (disabled-command-function)
10222 (enable-command, disable-command):
10223 * mouse.el (mouse-buffer-menu-alist):
10224 * mouse-copy.el (mouse-kill-preserving-secondary):
10225 * macros.el (kbd-macro-query):
10226 * ledit.el (ledit-go-to-lisp, ledit-go-to-liszt):
10227 * informat.el (batch-info-validate):
10228 * ido.el (ido-copy-current-word, ido-initiate-auto-merge):
10229 * hippie-exp.el (try-expand-dabbrev-visible):
10230 * help-mode.el (help-make-xrefs):
10231 * help-fns.el (describe-variable):
10232 * generic-x.el (bat-generic-mode-run-as-comint):
10233 * finder.el (finder-mouse-select):
10234 * find-dired.el (find-dired-sentinel):
10235 * filesets.el (filesets-file-close):
10236 * files.el (list-directory):
10237 * faces.el (list-faces-display, describe-face):
10238 * facemenu.el (list-colors-display):
10239 * ezimage.el (ezimage-image-association-dump, ezimage-image-dump):
10240 * epg.el (epg--process-filter, epg-cancel):
10241 * epa.el (epa--marked-keys, epa--select-keys, epa-display-info)
10242 (epa--read-signature-type):
10243 * emerge.el (emerge-copy-as-kill-A, emerge-copy-as-kill-B)
10244 (emerge-file-names):
10245 * ehelp.el (electric-helpify):
10246 * ediff.el (ediff-regions-wordwise, ediff-regions-linewise):
10247 * ediff-vers.el (rcs-ediff-view-revision):
10248 * ediff-util.el (ediff-setup):
10249 * ediff-mult.el (ediff-append-custom-diff):
10250 * ediff-diff.el (ediff-exec-process, ediff-process-sentinel)
10251 (ediff-wordify):
10252 * echistory.el (Electric-command-history-redo-expression):
10253 * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
10254 * disp-table.el (describe-display-table):
10255 * dired.el (dired-find-buffer-nocreate):
10256 * dired-aux.el (dired-rename-subdir, dired-dwim-target-directory):
10257 * dabbrev.el (dabbrev--same-major-mode-p):
10258 * chistory.el (list-command-history):
10259 * apropos.el (apropos-documentation):
10260 * allout.el (allout-obtain-passphrase):
10261 (allout-copy-exposed-to-buffer):
10262 (allout-verify-passphrase): Use with-current-buffer.
10263
10264 2009-11-13 Glenn Morris <rgm@gnu.org>
10265
10266 * Makefile.in (ELCFILES): Regenerate.
10267
10268 2009-11-13 Michael Albinus <michael.albinus@gmx.de>
10269
10270 * net/dbus.el (dbus-registered-objects-table): Rename from
10271 `dbus-registered-functions-table', because it contains also properties.
10272 (dbus-unregister-object): Unregister also properties.
10273 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
10274 Use a timeout of 500 msec, in order to not block.
10275 (dbus-register-property, dbus-property-handler): New defuns.
10276
10277 2009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
10278
10279 * simple.el (minibuffer-default-add-completions): Drop deprecated
10280 4th arg.
10281
10282 2009-11-13 Tomas Abrahamsson <tab@lysator.liu.se>
10283
10284 * textmodes/artist.el (artist-mouse-choose-operation):
10285 Call `tmm-prompt' instead of `x-popup-menu' if we cannot popup
10286 menus. Bug noticed by Eli Zaretskii <eliz@gnu.org>.
10287 (artist-compute-up-event-key): New function.
10288 (artist-mouse-choose-operation, artist-down-mouse-1): Call it.
10289
10290 2009-11-13 Kenichi Handa <handa@m17n.org>
10291
10292 * language/japan-util.el: Make sure that the value of jisx0208
10293 property is jisx0208 character.
10294
10295 2009-11-13 Dan Nicolaescu <dann@ics.uci.edu>
10296
10297 * international/mule.el (auto-coding-regexp-alist): Only purecopy
10298 car or each item, not the whole list.
10299
10300 2009-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
10301
10302 * minibuffer.el (minibuffer-completion-help):
10303 Use minibuffer-hide-completions.
10304
10305 2009-11-12 Per Starbäck <per@starback.se> (tiny change)
10306
10307 * dired.el (dired-save-positions, dired-restore-positions): New funs.
10308 (dired-revert): Use them (bug#4880).
10309
10310 2009-11-12 Dan Nicolaescu <dann@ics.uci.edu>
10311
10312 * tooltip.el (tooltip-frame-parameters): Undo previous change.
10313
10314 2009-11-12 Juri Linkov <juri@jurta.org>
10315
10316 * ffap.el (ffap-alternate-file-other-window, ffap-literally):
10317 New functions.
10318 (find-file-literally-at-point): Alias of `ffap-literally'.
10319
10320 2009-11-12 Dan Nicolaescu <dann@ics.uci.edu>
10321
10322 * textmodes/ispell.el (ispell-skip-region-alist):
10323 * textmodes/css-mode.el (auto-mode-alist):
10324 * progmodes/compile.el (auto-mode-alist):
10325 * international/mule.el (ctext-non-standard-encodings-alist)
10326 (ctext-non-standard-encodings-regexp):
10327 * simple.el (shell-command-switch, text-read-only):
10328 * replace.el (occur-mode-map):
10329 * paths.el (rmail-file-name):
10330 * jka-cmpr-hook.el (jka-compr-build-file-regexp):
10331 * find-file.el (ff-special-constructs):
10332 * files.el (file-name-handler-alist):
10333 * composite.el: Purecopy strings.
10334
10335 * emacs-lisp/cl-macs.el (define-compiler-macro): Purecopy the file name.
10336
10337 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
10338
10339 * widget.el (define-widget): Purecopy the docstring.
10340 * international/mule-cmds.el (charset): Do not purecopy the
10341 docstring here, define-widget does it.
10342
10343 * textmodes/texinfo.el (texinfo-open-quote, texinfo-close-quote):
10344 * textmodes/bibtex-style.el (auto-mode-alist):
10345 * progmodes/inf-lisp.el (inferior-lisp-prompt):
10346 * progmodes/compile.el (compile-command):
10347 * language/korea-util.el (default-korean-keyboard):
10348 * international/mule-conf.el (file-coding-system-alist):
10349 * emacs-lisp/eldoc.el (eldoc-minor-mode-string):
10350 * tooltip.el (tooltip-frame-parameters):
10351 * newcomment.el (comment-end, comment-padding):
10352 * dired.el (dired-trivial-filenames):
10353 * comint.el (comint-file-name-prefix): Purecopy initial values.
10354
10355 2009-11-11 Michael Albinus <michael.albinus@gmx.de>
10356
10357 * net/tramp.el (tramp-advice-minibuffer-electric-separator)
10358 (tramp-advice-minibuffer-electric-tilde): Unload advices via
10359 `tramp-unload'.
10360 (tramp-advice-make-auto-save-file-name)
10361 (tramp-advice-file-expand-wildcards): Apply also `ad-activate'
10362 after removing the advice.
10363
10364 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
10365
10366 * progmodes/grep.el (grep-regexp-alist):
10367 * international/mule-cmds.el (iso-2022-control-alist):
10368 * emacs-lisp/timer.el (timer-duration-words):
10369 * subr.el (version-separator, version-regexp-alist):
10370 * minibuffer.el (completion-styles-alist):
10371 * faces.el (face-attribute-name-alist, list-faces-sample-text):
10372 Change defvars to defconsts.
10373
10374 * Makefile.in (ELCFILES): Add international/mule-conf.elc.
10375 * loadup.el ("international/mule-conf"): Load the byte compiled version.
10376 * international/mule-conf.el: Allow to be byte compiled.
10377
10378 * international/mule.el (define-charset): Purecopy props.
10379 (load-with-code-conversion): Purecopy doc string and file name.
10380 (put-charset-property): Purecopy strings.
10381 (auto-coding-alist, auto-coding-regexp-alist): Purecopy initial value.
10382
10383 * international/mule-cmds.el (register-input-method): Purecopy arguments.
10384 (define-char-code-property): Correctly purecopy the table.
10385
10386 * international/ccl.el (define-ccl-program): Purecopy the docstring.
10387
10388 * emacs-lisp/easy-mmode.el (define-minor-mode): Purecopy :lighter.
10389
10390 * subr.el (add-hook): Purecopy strings.
10391 (eval-after-load): Purecopy load-history-regexp and the form.
10392
10393 * custom.el (custom-declare-group): Purecopy load-file-name.
10394
10395 * subr.el (menu-bar-separator): New defconst.
10396 * net/eudc.el (eudc-tools-menu):
10397 * international/mule-cmds.el (set-coding-system-map)
10398 (mule-menu-keymap):
10399 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
10400 * vc-hooks.el (vc-menu-map):
10401 * replace.el (occur-mode-map):
10402 * menu-bar.el (menu-bar-file-menu, menu-bar-search-menu)
10403 (menu-bar-edit-menu, menu-bar-goto-menu)
10404 (menu-bar-custom-menu, menu-bar-showhide-menu)
10405 (menu-bar-options-menu, menu-bar-tools-menu)
10406 (menu-bar-encryption-decryption-menu, menu-bar-describe-menu)
10407 (menu-bar-search-documentation-menu, menu-bar-manuals-menu)
10408 (menu-bar-help-menu):
10409 * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu):
10410 * buff-menu.el (Buffer-menu-mode-map): Use menu-bar-separator.
10411
10412 * term/x-win.el (x-gtk-stock-map):
10413 * progmodes/vera-mode.el (auto-mode-alist):
10414 * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
10415 (inferior-lisp-program, inferior-lisp-load-command):
10416 * progmodes/hideshow.el (hs-special-modes-alist):
10417 * progmodes/gud.el (same-window-regexps):
10418 * progmodes/grep.el (grep-program, find-program, xargs-program):
10419 * net/telnet.el (same-window-regexps):
10420 * net/rlogin.el (same-window-regexps):
10421 * language/ethiopic.el (font-ccl-encoder-alist):
10422 * vc-sccs.el (vc-sccs-master-templates):
10423 * vc-rcs.el (vc-rcs-master-templates):
10424 * subr.el (cl-assertion-failed):
10425 * simple.el (next-error-overlay-arrow-position):
10426 * lpr.el (lpr-command):
10427 * locate.el (locate-ls-subdir-switches):
10428 * info.el (same-window-regexps, info)
10429 (Info-goto-emacs-command-node, Info-goto-emacs-key-command-node):
10430 * image-mode.el (image-mode, auto-mode-alist):
10431 * hippie-exp.el (hippie-expand-ignore-buffers):
10432 * format.el (format-alist):
10433 * find-dired.el (find-ls-subdir-switches, find-grep-options)
10434 (find-name-arg):
10435 * facemenu.el (facemenu-keybindings):
10436 * dired.el (dired-listing-switches, dired-chown-program):
10437 * diff.el (diff-switches, diff-command):
10438 * cus-edit.el (same-window-regexps):
10439 * bindings.el (mode-line-mule-info)
10440 (mode-line-buffer-identification): Purecopy strings.
10441
10442 2009-11-11 Juri Linkov <juri@jurta.org>
10443
10444 * simple.el (dired-get-filename) <declare-function>:
10445 Tell the byte-compiler about dired-get-filename.
10446 (shell-command): In Dired mode, get filename from the current line
10447 as the default value.
10448
10449 2009-11-10 Glenn Morris <rgm@gnu.org>
10450
10451 * dired.el, hi-lock.el, calendar/cal-menu.el, calendar/calendar.el:
10452 * calendar/holidays.el, progmodes/cperl-mode.el:
10453 Update x-popup-menu declarations.
10454
10455 * emacs-lisp/shadow.el (find-emacs-lisp-shadows)
10456 (list-load-path-shadows): Use dolist.
10457 (list-load-path-shadows): Use with-current-buffer.
10458
10459 2009-11-10 Juri Linkov <juri@jurta.org>
10460
10461 * minibuffer.el (read-file-name): Support a list of default values
10462 in `default-filename'. Use the first file name where only one
10463 element is required. Doc fix.
10464
10465 2009-11-09 Michael Albinus <michael.albinus@gmx.de>
10466
10467 * net/dbus.el (dbus-unregister-object): Release service, if no
10468 other method is registered for it.
10469
10470 2009-11-08 Markus Rost <rost@math.uni-bielefeld.de>
10471
10472 * bookmark.el (bookmark-completing-read): Sort bookmark names if
10473 bookmark-sort-flag is non-nil (Bug#4653).
10474
10475 2009-11-08 Chong Yidong <cyd@stupidchicken.com>
10476
10477 * cedet/semantic/ctxt.el (semantic-get-local-variables): Disable
10478 the progress reporter entirely.
10479
10480 * emulation/cua-base.el: Add CUA property to some CC mode commands
10481 (Bug#4100).
10482
10483 2009-11-08 Kevin Ryde <user42@zip.com.au>
10484
10485 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp): Match noun
10486 at end of sentence (Bug#4818).
10487
10488 2009-11-08 Jared Finder <jfinder@crypticstudios.com>
10489
10490 * progmodes/compile.el (compilation-error-regexp-alist-alist):
10491 Handle "see declaration of" MSFT statements (Bug#4100).
10492
10493 2009-11-08 Michael Albinus <michael.albinus@gmx.de>
10494
10495 * net/tramp.el (tramp-advice-make-auto-save-file-name)
10496 (tramp-advice-file-expand-wildcards): Unload via
10497 `ad-remove-advice'.
10498
10499 * net/trampver.el: Update release number.
10500
10501 2009-11-08 Kevin Ryde <user42@zip.com.au>
10502
10503 * net/tramp.el (tramp-advice-file-expand-wildcards): Don't rely on
10504 `ad-do-it'.
10505
10506 2009-11-08 Andr <m00naticus@gmail.com> (tiny change)
10507
10508 * net/tramp.el (tramp-handle-write-region): Copy but rename temp file,
10509 in order to keep context in SELinux.
10510
10511 2009-11-08 Chong Yidong <cyd@stupidchicken.com>
10512
10513 * dired-aux.el (dired-query): Place cursor in echo area and allow
10514 C-g.
10515
10516 * dired.el (dired-mode-map): Disable dired-maybe-insert-subdir
10517 menu item if not on a directory (Bug#4701).
10518
10519 2009-11-07 Michael Albinus <michael.albinus@gmx.de>
10520
10521 Sync with Tramp 2.1.17.
10522
10523 * net/tramp.el (tramp-handle-copy-directory): Don't use
10524 `file-remote-p' (due to compatibility).
10525
10526 * net/tramp-compat.el (tramp-compat-copy-directory)
10527 (tramp-compat-delete-directory): New defuns.
10528
10529 * net/tramp-fish.el (tramp-fish-handle-delete-directory):
10530 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory): Use
10531 `tramp-compat-delete-directory'.
10532
10533 * net/tramp-smb.el (tramp-smb-handle-copy-directory)
10534 (tramp-smb-handle-delete-directory): Use
10535 `tramp-compat-copy-directory' and `tramp-compat-delete-directory'.
10536
10537 * net/trampver.el: Update release number.
10538
10539 2009-11-07 Chong Yidong <cyd@stupidchicken.com>
10540
10541 * tar-mode.el (tar-copy): Call write-region on the right buffer
10542 (Bug#4857).
10543
10544 * mail/rmailsum.el (rmail-summary-rmail-update): Call linum-update
10545 by hand, if necessary (Bug#4878).
10546
10547 2009-11-06 Chong Yidong <cyd@stupidchicken.com>
10548
10549 * buff-menu.el (Buffer-menu-buffer+size): Use display property to
10550 align size column (Bug#4839).
10551
10552 * emacs-lisp/autoload.el (autoload-rubric): Always issue a provide
10553 statement.
10554
10555 2009-11-05 Dan Nicolaescu <dann@ics.uci.edu>
10556
10557 * progmodes/ld-script.el (auto-mode-alist):
10558 * vc-hooks.el (vc-directory-exclusion-list): Purecopy strings.
10559
10560 * cus-face.el (custom-declare-face): Purecopy face spec.
10561
10562 2009-11-06 Kenichi Handa <handa@m17n.org>
10563
10564 * international/uni-bidi.el: Re-generated.
10565 * international/uni-category.el: Re-generated.
10566 * international/uni-combining.el: Re-generated.
10567 * international/uni-mirrored.el: Re-generated.
10568
10569 2009-11-05 Dan Nicolaescu <dann@ics.uci.edu>
10570
10571 * textmodes/tex-mode.el (tex-alt-dvi-print-command)
10572 (tex-dvi-print-command, tex-bibtex-command, tex-start-commands)
10573 (tex-start-options, slitex-run-command, latex-run-command)
10574 (tex-run-command, tex-directory):
10575 * textmodes/ispell.el (ispell-html-skip-alists)
10576 (ispell-tex-skip-alists, ispell-tex-skip-alists):
10577 * textmodes/fill.el (adaptive-fill-first-line-regexp):
10578 (adaptive-fill-regexp):
10579 * textmodes/dns-mode.el (auto-mode-alist):
10580 * progmodes/python.el (interpreter-mode-alist):
10581 * progmodes/etags.el (tags-compression-info-list):
10582 * progmodes/etags.el (tags-file-name):
10583 * net/browse-url.el (browse-url-galeon-program)
10584 (browse-url-firefox-program):
10585 * mail/sendmail.el (mail-signature-file)
10586 (mail-citation-prefix-regexp):
10587 * international/mule-conf.el (eight-bit):
10588 * international/latexenc.el (latex-inputenc-coding-alist):
10589 * international/fontset.el (x-pixel-size-width-font-regexp):
10590 * emacs-lisp/warnings.el (warning-type-format):
10591 * emacs-lisp/trace.el (trace-buffer):
10592 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-map)
10593 (emacs-lisp-mode-map):
10594 * calendar/holidays.el (holiday-solar-holidays)
10595 (holiday-bahai-holidays, holiday-islamic-holidays)
10596 (holiday-christian-holidays, holiday-hebrew-holidays)
10597 (hebrew-holidays-4, hebrew-holidays-3, hebrew-holidays-2)
10598 (hebrew-holidays-1, holiday-oriental-holidays)
10599 (holiday-general-holidays):
10600 * x-dnd.el (x-dnd-known-types):
10601 * tool-bar.el (tool-bar):
10602 * startup.el (site-run-file):
10603 * shell.el (shell-dumb-shell-regexp):
10604 * rfn-eshadow.el (file-name-shadow-tty-properties)
10605 (file-name-shadow-properties):
10606 * paths.el (remote-shell-program, news-directory):
10607 * mouse.el ([C-down-mouse-3]):
10608 * menu-bar.el (menu-bar-tools-menu):
10609 * jka-cmpr-hook.el (jka-compr-load-suffixes)
10610 (jka-compr-mode-alist-additions, jka-compr-compression-info-list)
10611 (jka-compr-compression-info-list):
10612 * isearch.el (search-whitespace-regexp):
10613 * image-file.el (image-file-name-extensions):
10614 * find-dired.el (find-ls-option):
10615 * files.el (directory-listing-before-filename-regexp)
10616 (directory-free-space-args, insert-directory-program)
10617 (list-directory-brief-switches, magic-fallback-mode-alist)
10618 (magic-fallback-mode-alist, auto-mode-interpreter-regexp)
10619 (automount-dir-prefix):
10620 * faces.el (face-x-resources, x-font-regexp, x-font-regexp-head)
10621 (x-font-regexp-slant, x-font-regexp-weight, face-x-resources)
10622 (face-font-registry-alternatives, face-font-registry-alternatives)
10623 (face-font-family-alternatives):
10624 * facemenu.el (facemenu-add-new-face, facemenu-background-menu)
10625 (facemenu-foreground-menu, facemenu-face-menu):
10626 * epa-hook.el (epa-file-name-regexp):
10627 * dnd.el (dnd-protocol-alist):
10628 * textmodes/rst.el (auto-mode-alist):
10629 * button.el (default-button): Purecopy strings.
10630
10631 2009-11-06 Glenn Morris <rgm@gnu.org>
10632
10633 * Makefile.in (ELCFILES): Update.
10634
10635 2009-11-05 Stefan Monnier <monnier@iro.umontreal.ca>
10636
10637 * emacs-lisp/lucid.el: Move to obsolete/lucid.el.
10638 * emacs-lisp/levents.el: Move to obsolete/levents.el.
10639
10640 * nxml/xsd-regexp.el (xsdre-gen-categories):
10641 * nxml/xmltok.el (xmltok-parse-entity):
10642 * nxml/rng-parse.el (rng-parse-validate-file):
10643 * nxml/rng-maint.el (rng-format-manual)
10644 (rng-manual-output-force-new-line):
10645 * nxml/rng-loc.el (rng-save-schema-location-1):
10646 * nxml/rng-cmpct.el (rng-c-parse-file):
10647 * nxml/nxml-maint.el (nxml-insert-target-repertoire-glyph-set):
10648 * nxml/nxml-parse.el (nxml-parse-file): Use with-current-buffer.
10649
10650 2009-11-05 Wilson Snyder <wsnyder@wsnyder.org>
10651
10652 * progmodes/verilog-mode.el (verilog-getopt-file, verilog-set-define):
10653 Remove extra save-excursions and make-variable-buffer-local's.
10654 Suggested by Stefan Monnier.
10655
10656 (verilog-getopt-file, verilog-module-inside-filename-p)
10657 (verilog-set-define): Merge GNU 1.35 and repair changes from
10658 switching to using with-current-buffer.
10659
10660 (verilog-read-always-signals-recurse): Fix "a == 2'b00 ? b : c"
10661 being treated as a number and confusing AUTORESET.
10662 Reported by Dan Dever.
10663
10664 (verilog-auto-ignore-concat, verilog-read-sub-decls-expr):
10665 Add verilog-auto-ignore-concat to fix backward compatibility with
10666 older verilog-modes. Reported by Dan Katz.
10667
10668 (verilog-read-auto-template): Fix AUTO_TEMPLATEs with regexps
10669 containing closing anchors "...$".
10670
10671 (verilog-read-decls): Fix AUTOREG not detecting "assign {a,b}".
10672 Reported by Wade Smith.
10673
10674 (verilog-batch-execute-func): Comment on function usage.
10675
10676 2009-11-05 Michael McNamara <mac@mail.brushroad.com>
10677
10678 * progmodes/verilog-mode.el (verilog-label-re): Fix regular expression
10679 for labels.
10680
10681 (verilog-label-re, verilog-calc-1): Support proper indent of named
10682 asserts.
10683
10684 (verilog-backward-token, verilog-basic-complete-re)
10685 (verilog-beg-of-statement, verilog-indent-re): Support proper
10686 indent of the assert statement at the beginning of a block of text.
10687
10688 (verilog-beg-block-re, verilog-ovm-begin-re): Support the
10689 `ovm_object_param_utils_begin and `ovm_component_param_utils_begin
10690 tokens as begins.
10691
10692 2009-11-05 Glenn Morris <rgm@gnu.org>
10693
10694 * emacs-lisp/bytecomp.el (byte-compile-insert-header): Drop test for
10695 Emacs 19. (Bug#1531)
10696 (byte-compile-fix-header): Update for the above change.
10697 Drop test for epoch::version.
10698
10699 * emacs-lisp/autoload.el (autoload-rubric): Add optional feature arg.
10700 * cus-dep.el (custom-make-dependencies):
10701 * finder.el (finder-compile-keywords):
10702 Use autoload-rubric's feature argument.
10703
10704 * calendar/diary-lib.el (top-level): Make load behave more like require.
10705
10706 * vc-git.el (vc-git-stash-map): Move definition before use.
10707
10708 2009-11-04 Dan Nicolaescu <dann@ics.uci.edu>
10709
10710 * custom.el (custom-declare-group): Purecopy standard-value.
10711 (custom-declare-group): Purecopy custom-prefix.
10712
10713 * international/mule.el (load-with-code-conversion):
10714 Call do-after-load-evaluation unconditionally.
10715
10716 * emacs-lisp/bytecomp.el (byte-compile-output-file-form): Handle defvaralias.
10717
10718 2009-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
10719
10720 * descr-text.el: Require help-mode rather than help-fns (bug#4861).
10721
10722 2009-11-04 Glenn Morris <rgm@gnu.org>
10723
10724 * emacs-lisp/bytecomp.el (byte-compile-version-cond): Remove macro.
10725 (byte-compile-compatibility): Remove option.
10726 (byte-compile-close-variables, byte-compile-fix-header)
10727 (byte-compile-insert-header, byte-compile-output-docform)
10728 (byte-compile-file-form-defmumble, byte-compile-byte-code-maker)
10729 (byte-compile-lambda, byte-compile-form, byte-defop-compiler19)
10730 (byte-compile-list, byte-compile-concat, byte-compile-function-form)
10731 (byte-compile-insert, byte-compile-defun):
10732 Remove support for byte-compile-compatibility and Emacs 18. (Bug#4571)
10733 (byte-defop-compiler19): Remove.
10734 Without byte-compile-compatibility, the 'emacs19-opcode property is not
10735 used by anything. Replace all calls with byte-defop-compiler.
10736
10737 2009-11-04 Juri Linkov <juri@jurta.org>
10738
10739 * menu-bar.el (menu-bar-make-mm-toggle): Quote each element of `props'.
10740 (menu-bar-options-menu): Don't quote the `prop' arg of
10741 `menu-bar-make-mm-toggle'.
10742
10743 2009-11-04 Juanma Barranquero <lekktu@gmail.com>
10744
10745 * calendar/calendar.el (cal-loaddefs):
10746 * calendar/diary-lib.el (diary-loaddefs):
10747 * calendar/holidays.el (hol-loaddefs):
10748 * eshell/esh-module.el (esh-groups): Load rather than require.
10749
10750 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
10751
10752 * calendar/todo-mode.el (todo-add-category): Don't hardcode
10753 point-min==1.
10754 (todo-top-priorities): Only display-buffer when called interactively.
10755 (todo-item-start): Don't save excursion point.
10756 (todo-item-end): Be slightly more careful. Add `include-sep' arg.
10757 (todo-insert-item-here, todo-file-item, todo-remove-item):
10758 Adjust uses of todo-item-start and todo-item-end.
10759
10760 * emacs-lisp/autoload.el (generated-autoload-feature): Remove.
10761 (autoload-rubric): Don't use any more.
10762 * cedet/semantic/fw.el (semantic/loaddefs):
10763 * cedet/srecode.el (srecode/loaddefs):
10764 * cedet/ede.el (ede/loaddefs): Load rather than require.
10765 * cedet/ede/cpp-root.el:
10766 * cedet/ede/emacs.el:
10767 * cedet/ede/files.el:
10768 * cedet/ede/linux.el:
10769 * cedet/ede/locate.el:
10770 * cedet/ede/make.el:
10771 * cedet/ede/shell.el:
10772 * cedet/ede/speedbar.el:
10773 * cedet/ede/system.el:
10774 * cedet/ede/util.el:
10775 * cedet/semantic/analyze.el:
10776 * cedet/semantic/bovine.el:
10777 * cedet/semantic/complete.el:
10778 * cedet/semantic/ctxt.el:
10779 * cedet/semantic/db-file.el:
10780 * cedet/semantic/db-find.el:
10781 * cedet/semantic/db-global.el:
10782 * cedet/semantic/db-mode.el:
10783 * cedet/semantic/db-typecache.el:
10784 * cedet/semantic/db.el:
10785 * cedet/semantic/debug.el:
10786 * cedet/semantic/dep.el:
10787 * cedet/semantic/doc.el:
10788 * cedet/semantic/edit.el:
10789 * cedet/semantic/find.el:
10790 * cedet/semantic/format.el:
10791 * cedet/semantic/html.el:
10792 * cedet/semantic/ia-sb.el:
10793 * cedet/semantic/ia.el:
10794 * cedet/semantic/idle.el:
10795 * cedet/semantic/lex-spp.el:
10796 * cedet/semantic/lex.el:
10797 * cedet/semantic/mru-bookmark.el:
10798 * cedet/semantic/scope.el:
10799 * cedet/semantic/senator.el:
10800 * cedet/semantic/sort.el:
10801 * cedet/semantic/symref.el:
10802 * cedet/semantic/tag-file.el:
10803 * cedet/semantic/tag-ls.el:
10804 * cedet/semantic/tag-write.el:
10805 * cedet/semantic/tag.el:
10806 * cedet/semantic/util-modes.el:
10807 * cedet/semantic/analyze/complete.el:
10808 * cedet/semantic/analyze/refs.el:
10809 * cedet/semantic/bovine/c.el:
10810 * cedet/semantic/bovine/gcc.el:
10811 * cedet/semantic/bovine/make.el:
10812 * cedet/semantic/bovine/scm.el:
10813 * cedet/semantic/decorate/include.el:
10814 * cedet/semantic/decorate/mode.el:
10815 * cedet/semantic/symref/cscope.el:
10816 * cedet/semantic/symref/global.el:
10817 * cedet/semantic/symref/grep.el:
10818 * cedet/semantic/symref/idutils.el:
10819 * cedet/semantic/symref/list.el:
10820 * cedet/semantic/wisent/java-tags.el:
10821 * cedet/semantic/wisent/javascript.el:
10822 * cedet/srecode/compile.el:
10823 * cedet/srecode/cpp.el:
10824 * cedet/srecode/document.el:
10825 * cedet/srecode/el.el:
10826 * cedet/srecode/expandproto.el:
10827 * cedet/srecode/getset.el:
10828 * cedet/srecode/insert.el:
10829 * cedet/srecode/java.el:
10830 * cedet/srecode/map.el:
10831 * cedet/srecode/mode.el:
10832 * cedet/srecode/template.el:
10833 * cedet/srecode/texi.el: Remove the file-local setting of
10834 generated-autoload-feature.
10835
10836 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Use dolist,
10837 and only put a prop if it is non-nil.
10838
10839 2009-11-03 Juri Linkov <juri@jurta.org>
10840
10841 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle)
10842 (menu-bar-options-menu): Fix list quoting (Bug#4429).
10843
10844 * buff-menu.el (Buffer-menu-mode-map): Add hyphen between "Buffer"
10845 and "Menu" to make top-level menu item visually one unit (like
10846 it's done for "Lisp-Interaction", "Emacs-Lisp" and other
10847 multi-word menu items). Fix :help string for quit-window.
10848
10849 2009-11-03 Glenn Morris <rgm@gnu.org>
10850
10851 * cedet/mode-local.el (with-mode-local): Doc fix.
10852
10853 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar)
10854 (byte-compile-file-form-define-abbrev-table)
10855 (byte-compile-file-form-custom-declare-variable)
10856 (byte-compile-variable-ref, byte-compile-defvar):
10857 Whether or not a warning is enabled should only affect whether we issue
10858 the warning, not whether or not we collect the relevant data.
10859 Eg warnings can be turned on and off throughout the course of a file.
10860
10861 * eshell/esh-mode.el (ansi-color-apply-on-region): Autoload it...
10862 (eshell-handle-ansi-color): ... Rather than requiring ansi-color.
10863
10864 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
10865
10866 * term/ns-win.el (ns-scroll-bar-move, ns-face-at-pos):
10867 * play/mpuz.el (mpuz-create-buffer):
10868 * play/landmark.el (lm-prompt-for-move, lm-print-wts, lm-print-smell)
10869 (lm-print-y,s,noise, lm-print-w0, lm-init):
10870 * play/gomoku.el (gomoku-prompt-for-move):
10871 * play/fortune.el (fortune-in-buffer):
10872 * play/dissociate.el (dissociated-press):
10873 * play/decipher.el (decipher-adjacency-list, decipher-display-regexp)
10874 (decipher-analyze-buffer, decipher-stats-buffer, decipher-stats-buffer):
10875 * mail/supercite.el (sc-eref-show):
10876 * mail/smtpmail.el (smtpmail-send-it):
10877 * mail/rmailsum.el (rmail-summary-next-labeled-message)
10878 (rmail-summary-previous-labeled-message, rmail-summary-wipe)
10879 (rmail-summary-undelete-many, rmail-summary-rmail-update)
10880 (rmail-summary-goto-msg, rmail-summary-expunge)
10881 (rmail-summary-get-new-mail, rmail-summary-search-backward)
10882 (rmail-summary-add-label, rmail-summary-output-menu)
10883 (rmail-summary-output-body):
10884 * mail/rfc822.el (rfc822-addresses):
10885 * mail/reporter.el (reporter-dump-variable, reporter-dump-state):
10886 * mail/mailpost.el (post-mail-send-it):
10887 * mail/hashcash.el (hashcash-generate-payment):
10888 * mail/feedmail.el (feedmail-run-the-queue)
10889 (feedmail-queue-send-edit-prompt-help-first)
10890 (feedmail-send-it-immediately, feedmail-give-it-to-buffer-eater)
10891 (feedmail-deduce-address-list):
10892 * eshell/esh-ext.el (eshell-remote-command):
10893 * eshell/em-unix.el (eshell-occur-mode-mouse-goto):
10894 * emulation/viper-util.el (viper-glob-unix-files, viper-save-setting)
10895 (viper-wildcard-to-regexp, viper-glob-mswindows-files)
10896 (viper-save-string-in-file, viper-valid-marker):
10897 * emulation/viper-keym.el (viper-toggle-key):
10898 * emulation/viper-ex.el (ex-expand-filsyms, viper-get-ex-file)
10899 (ex-edit, ex-global, ex-mark, ex-next-related-buffer, ex-quit)
10900 (ex-get-inline-cmd-args, ex-tag, ex-command, ex-compile):
10901 * emulation/viper-cmd.el (viper-exec-form-in-vi)
10902 (viper-exec-form-in-emacs, viper-brac-function):
10903 * emulation/viper.el (viper-delocalize-var):
10904 * emulation/vip.el (vip-mode, vip-get-ex-token, vip-ex, vip-get-ex-pat)
10905 (vip-get-ex-command, vip-get-ex-opt-gc, vip-get-ex-buffer)
10906 (vip-get-ex-count, vip-get-ex-file, ex-edit, ex-global, ex-mark)
10907 (ex-map, ex-unmap, ex-quit, ex-read, ex-tag, ex-command):
10908 * emulation/vi.el (vi-switch-mode, vi-ex-cmd):
10909 * emulation/edt.el (edt-electric-helpify):
10910 * emulation/cua-rect.el (cua--rectangle-aux-replace):
10911 * emulation/cua-gmrk.el (cua--insert-at-global-mark)
10912 (cua--delete-at-global-mark, cua--copy-rectangle-to-global-mark)
10913 (cua-indent-to-global-mark-column):
10914 * calendar/diary-lib.el (calendar-mark-1):
10915 * calendar/cal-hebrew.el (calendar-hebrew-mark-date-pattern):
10916 Use with-current-buffer.
10917 * emulation/viper.el (viper-delocalize-var): Use dolist.
10918
10919 2009-11-03 Chong Yidong <cyd@stupidchicken.com>
10920
10921 * comint.el (comint-replace-by-expanded-history-before-point):
10922 Replace !! with the previous input string literally (Bug#1795).
10923
10924 2009-11-02 Jay Belanger <jay.p.belanger@gmail.com>
10925
10926 * calc/calc-forms.el (calc-date-notation): Allow a "blank string"
10927 to be made up of whitespace.
10928
10929 2009-11-02 Chong Yidong <cyd@stupidchicken.com>
10930
10931 * minibuffer.el (read-file-name): Don't use file dialogs for
10932 remote directories (Bug#99).
10933
10934 2009-11-01 Chong Yidong <cyd@stupidchicken.com>
10935
10936 * progmodes/sh-script.el (sh-font-lock-paren): Fix last change.
10937
10938 2009-11-01 Andreas Schwab <schwab@linux-m68k.org>
10939
10940 * view.el (view-mode-exit): If OLD-BUF is dead bury the buffer
10941 instead of deleting the window or frame.
10942
10943 2009-10-31 Chong Yidong <cyd@stupidchicken.com>
10944
10945 * textmodes/sgml-mode.el (sgml-mode-facemenu-add-face-function):
10946 Support face colors.
10947
10948 * textmodes/tex-mode.el (tex-facemenu-add-face-function):
10949 New function. Support face colors (Bug#1168).
10950 (tex-common-initialization): Use it.
10951
10952 * facemenu.el (facemenu-enable-faces-p): Enable facemenu if the
10953 mode allows it (Bug#1168).
10954
10955 2009-10-31 Juri Linkov <juri@jurta.org>
10956
10957 * facemenu.el (list-colors-display): Don't mark buffer as
10958 modified (Bug#3948).
10959
10960 2009-10-31 Chong Yidong <cyd@stupidchicken.com>
10961
10962 * international/mule-diag.el (list-character-sets-1): Minor
10963 message fix (Bug#3526).
10964
10965 * progmodes/etags.el (etags-list-tags, etags-tags-apropos): Fix
10966 face property (Bug#4834).
10967 (etags-list-tags, etags-tags-apropos-additional)
10968 (etags-tags-apropos, tags-select-tags-table): Add follow-link
10969 property.
10970
10971 * menu-bar.el (menu-bar-tools-menu): Add Semantic and EDE menu
10972 items.
10973
10974 * cedet/cedet.el (cedet-menu-map): Remove Semantic and EDE menu
10975 items.
10976
10977 * cedet/ede.el (ede-minor-mode):
10978 * cedet/semantic.el (semantic-mode): Toggle menu separators.
10979
10980 2009-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
10981
10982 * textmodes/two-column.el (2C-split):
10983 * textmodes/texnfo-upd.el (texinfo-multi-file-included-list):
10984 * textmodes/tex-mode.el (tex-set-buffer-directory):
10985 * textmodes/spell.el (spell-region, spell-string):
10986 * textmodes/reftex.el (reftex-erase-buffer):
10987 (reftex-get-file-buffer-force, reftex-kill-temporary-buffers):
10988 * textmodes/reftex-toc.el (reftex-toc-promote-action):
10989 * textmodes/reftex-sel.el (reftex-get-offset, reftex-insert-docstruct)
10990 (reftex-select-item):
10991 * textmodes/reftex-ref.el (reftex-label-info-update)
10992 (reftex-offer-label-menu):
10993 * textmodes/reftex-index.el (reftex-index-change-entry)
10994 (reftex-index-phrases-info):
10995 * textmodes/reftex-global.el (reftex-create-tags-file)
10996 (reftex-save-all-document-buffers, reftex-ensure-write-access):
10997 * textmodes/reftex-dcr.el (reftex-echo-ref, reftex-echo-cite)
10998 (reftex-view-crossref-from-bibtex):
10999 * textmodes/reftex-cite.el (reftex-bibtex-selection-callback)
11000 (reftex-extract-bib-entries-from-thebibliography)
11001 (reftex-all-used-citation-keys, reftex-create-bibtex-file):
11002 * textmodes/refbib.el (r2b-capitalize-title):
11003 (r2b-convert-buffer, r2b-help):
11004 * textmodes/page-ext.el (pages-directory)
11005 (pages-directory-goto-with-mouse):
11006 * textmodes/bibtex.el (bibtex-validate-globally):
11007 * textmodes/bib-mode.el (bib-capitalize-title):
11008 * textmodes/artist.el (artist-clear-buffer, artist-system):
11009 * progmodes/xscheme.el (global-set-scheme-interaction-buffer):
11010 (local-set-scheme-interaction-buffer, xscheme-process-filter)
11011 (verify-xscheme-buffer, xscheme-enter-interaction-mode)
11012 (xscheme-enter-debugger-mode, xscheme-debugger-mode-p)
11013 (xscheme-send-control-g-interrupt, xscheme-start-process)
11014 (xscheme-process-sentinel, xscheme-cd):
11015 * progmodes/verilog-mode.el (verilog-read-always-signals)
11016 (verilog-set-define, verilog-getopt-file)
11017 (verilog-module-inside-filename-p):
11018 * progmodes/sh-script.el:
11019 * progmodes/python.el (python-pdbtrack-get-source-buffer)
11020 (python-pdbtrack-grub-for-buffer, python-execute-file):
11021 * progmodes/octave-inf.el (inferior-octave):
11022 * progmodes/idlwave.el (idlwave-scan-user-lib-files)
11023 (idlwave-shell-compile-helper-routines, idlwave-set-local)
11024 (idlwave-display-completion-list-xemacs, idlwave-list-abbrevs)
11025 (idlwave-display-completion-list-emacs, idlwave-list-load-path-shadows)
11026 (idlwave-completion-fontify-classes, idlwave-display-calling-sequence):
11027 * progmodes/idlw-shell.el (idlwave-shell-examine-display-clear)
11028 (idlwave-shell-filter, idlwave-shell-examine-highlight)
11029 (idlwave-shell-sentinel, idlwave-shell-filter-directory)
11030 (idlwave-shell-display-line, idlwave-shell-set-bp-in-module)
11031 (idlwave-shell-examine-display, idlwave-shell-run-region)
11032 (idlwave-shell-filter-bp, idlwave-shell-save-and-action)
11033 (idlwave-shell-sources-filter, idlwave-shell-goto-next-error):
11034 * progmodes/idlw-help.el (idlwave-help-get-special-help)
11035 (idlwave-help-get-help-buffer):
11036 * progmodes/gud.el (gud-basic-call, gud-find-class)
11037 (gud-tooltip-activate-mouse-motions-if-enabled):
11038 * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
11039 * progmodes/ebrowse.el (ebrowse-member-table, ebrowse-save-tree-as)
11040 (ebrowse-view-exit-fn, ebrowse-tags-list-members-in-file)
11041 (ebrowse-tags-next-file):
11042 * progmodes/ebnf2ps.el (ebnf-generate-eps, ebnf-generate-eps)
11043 (ebnf-eps-production-list, ebnf-begin-file, ebnf-log)
11044 (ebnf-eps-finish-and-write):
11045 * progmodes/cpp.el (cpp-edit-save):
11046 * progmodes/cperl-mode.el (cperl-pod-to-manpage):
11047 * progmodes/cc-defs.el (c-emacs-features):
11048 * progmodes/antlr-mode.el (antlr-invalidate-context-cache)
11049 (antlr-directory-dependencies):
11050 * progmodes/ada-xref.el (ada-gnat-parse-gpr, ada-get-ali-file-name)
11051 (ada-run-application, ada-find-in-src-path, ada-goto-parent)
11052 (ada-find-any-references, ada-make-filename-from-adaname)
11053 (ada-make-body-gnatstub):
11054 * obsolete/rnews.el (news-list-news-groups):
11055 * obsolete/resume.el (resume-suspend-hook, resume-write-buffer-to-file):
11056 * obsolete/iso-acc.el (iso-acc-minibuf-setup):
11057 * net/rcirc.el (rcirc-debug):
11058 * net/newst-treeview.el (newsticker--treeview-list-add-item)
11059 (newsticker--treeview-list-clear, newsticker-treeview-browse-url)
11060 (newsticker--treeview-list-update-faces, newsticker-treeview-save)
11061 (newsticker--treeview-item-show-text, newsticker--treeview-item-show)
11062 (newsticker--treeview-tree-update-tag, newsticker--treeview-buffer-init)
11063 (newsticker-treeview-show-item, newsticker--treeview-unfold-node)
11064 (newsticker--treeview-list-clear-highlight)
11065 (newsticker--treeview-list-update-highlight)
11066 (newsticker--treeview-list-highlight-start)
11067 (newsticker--treeview-tree-update-highlight)
11068 (newsticker--treeview-get-selected-item)
11069 (newsticker-treeview-mark-list-items-old)
11070 (newsticker--treeview-set-current-node):
11071 * net/newst-plainview.el (newsticker--buffer-set-uptodate):
11072 * net/newst-backend.el (newsticker--get-news-by-funcall)
11073 (newsticker--get-news-by-wget, newsticker--image-get)
11074 (newsticker--image-sentinel):
11075 * net/mairix.el (mairix-rmail-fetch-field, mairix-gnus-fetch-field):
11076 * net/eudcb-ph.el (eudc-ph-do-request, eudc-ph-open-session):
11077 (eudc-ph-close-session):
11078 * net/eudc.el (eudc-save-options):
11079 * language/thai-word.el (thai-update-word-table):
11080 * language/japan-util.el (japanese-string-conversion):
11081 * international/titdic-cnv.el (tsang-quick-converter)
11082 (ziranma-converter, ctlau-converter):
11083 * international/mule-cmds.el (describe-language-environment):
11084 * international/ja-dic-cnv.el (skkdic-convert-okuri-ari)
11085 (skkdic-convert-postfix, skkdic-convert-prefix):
11086 (skkdic-convert-okuri-nasi, skkdic-convert):
11087 * emacs-lisp/re-builder.el (reb-update-overlays):
11088 * emacs-lisp/pp.el (pp-to-string, pp-display-expression):
11089 * emacs-lisp/gulp.el (gulp-send-requests):
11090 * emacs-lisp/find-gc.el (trace-call-tree):
11091 * emacs-lisp/eieio-opt.el (eieio-browse, eieio-describe-class)
11092 (eieio-describe-generic):
11093 * emacs-lisp/eieio-base.el (eieio-persistent-read):
11094 * emacs-lisp/edebug.el (edebug-outside-excursion):
11095 * emacs-lisp/debug.el (debugger-make-xrefs):
11096 * emacs-lisp/cust-print.el (custom-prin1-to-string):
11097 * emacs-lisp/chart.el (chart-new-buffer):
11098 * emacs-lisp/authors.el (authors-scan-el, authors-scan-change-log):
11099 Use with-current-buffer.
11100 * textmodes/artist.el (artist-system): Don't call
11101 copy-sequence on a fresh string.
11102 * progmodes/idlw-shell.el (easymenu setup): Use dolist.
11103
11104 2009-10-31 Stephen Berman <stephen.berman@gmx.net>
11105
11106 * calendar/todo-mode.el (todo-edit-item): Signal an error if there
11107 is no item to edit. (Bug#4820)
11108 (todo-top-priorities): Restore point and restore narrowing in Todo
11109 buffer. (Bug#4820)
11110
11111 2009-10-31 Glenn Morris <rgm@gnu.org>
11112
11113 * net/ange-ftp.el (top-level): Don't require dired when compiling.
11114 (comint-last-output-start, comint-last-input-start)
11115 (comint-last-input-end): Don't defvar when compiling.
11116 (ange-ftp-process-file): Use bound-and-true-p.
11117
11118 * pcmpl-rpm.el (top-level): Move provide statement to end.
11119 (pcmpl-rpm): Remove unused custom group.
11120
11121 * pcmpl-gnu.el (tar-parse-info, tar-header-name): Declare for compiler.
11122
11123 * mail/emacsbug.el (report-emacs-bug): Request `emacs -Q' recipes.
11124
11125 * emacs-lisp/bytecomp.el (byte-compile-warning-types)
11126 (byte-compile-warnings): Add `constants' as an option.
11127 (byte-compile-callargs-warn, byte-compile-arglist-warn)
11128 (display-call-tree): Update for byte-compile-fdefinition possibly
11129 returning `(macro lambda ...)'. (Bug#4778)
11130 (byte-compile-variable-ref, byte-compile-setq-default):
11131 Respect `constants' member of byte-compile-warnings.
11132
11133 * cedet/semantic/tag.el (semantic--tag-link-list-to-buffer):
11134 Use mapc rather than mapcar because the return value is never used.
11135
11136 * cedet/srecode/template.el, cedet/semantic/wisent/javascript.el:
11137 * cedet/semantic/wisent/java-tags.el, cedet/semantic/texi.el:
11138 * cedet/semantic/html.el:
11139 Suppress harmless warnings about setting up semantic-imenu (not
11140 part of Emacs) variables.
11141
11142 2009-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
11143
11144 * vc-bzr.el (vc-bzr-revision-keywords): New var.
11145 (vc-bzr-revision-completion-table): Use it to fix completion of "s:"
11146 to "submit:".
11147
11148 * cedet/srecode/srt-mode.el (semantic-analyze-possible-completions):
11149 * cedet/semantic/symref/list.el (semantic-symref-rb-toggle-expand-tag):
11150 * cedet/semantic/symref/grep.el (semantic-symref-perform-search):
11151 * cedet/semantic/bovine/gcc.el (semantic-gcc-query):
11152 * cedet/semantic/bovine/c.el (semantic-c-parse-lexical-token):
11153 * cedet/semantic/analyze/debug.el (semantic-analyzer-debug-add-buttons)
11154 (semantic-analyzer-debug-global-symbol)
11155 (semantic-analyzer-debug-missing-innertype)
11156 (semantic-analyzer-debug-insert-include-summary):
11157 * cedet/semantic/util.el (semantic-file-tag-table):
11158 (semantic-describe-buffer-var-helper, semantic-something-to-tag-table)
11159 (semantic-recursive-find-nonterminal-by-name):
11160 * cedet/semantic/tag-ls.el (semantic-tag-calculate-parent-default):
11161 * cedet/semantic/tag-file.el (semantic-prototype-file):
11162 * cedet/semantic/symref.el (semantic-symref-parse-tool-output):
11163 * cedet/semantic/sb.el (semantic-sb-fetch-tag-table):
11164 * cedet/semantic/lex-spp.el (semantic-lex-spp-lex-text-string):
11165 * cedet/semantic/idle.el (semantic-idle-work-for-one-buffer):
11166 (semantic-idle-summary-maybe-highlight):
11167 * cedet/semantic/ia-sb.el (semantic-ia-speedbar)
11168 (semantic-ia-sb-tag-info):
11169 * cedet/semantic/grammar.el (semantic-analyze-possible-completions):
11170 * cedet/semantic/find.el (semantic-brute-find-tag-by-position):
11171 * cedet/semantic/ede-grammar.el (project-compile-target):
11172 (ede-proj-makefile-insert-variables):
11173 * cedet/semantic/debug.el (semantic-debug-set-parser-location):
11174 (semantic-debug-set-source-location, semantic-debug-interface-layout)
11175 (semantic-debug-mode, semantic-debug):
11176 * cedet/semantic/db.el (semanticdb-needs-refresh-p):
11177 * cedet/semantic/db-typecache.el (semanticdb-typecache-refresh-for-buffer):
11178 * cedet/semantic/db-javascript.el (semanticdb-equivalent-mode):
11179 * cedet/semantic/db-find.el (semanticdb-find-log-new-search)
11180 (semanticdb-find-translate-path-includes--internal)
11181 (semanticdb-reset-log, semanticdb-find-log-activity):
11182 * cedet/semantic/db-file.el (object-write):
11183 * cedet/semantic/db-el.el (semanticdb-equivalent-mode):
11184 * cedet/semantic/db-ebrowse.el (semanticdb-ebrowse-C-file-p)
11185 (semanticdb-create-ebrowse-database):
11186 * cedet/semantic/db-debug.el (semanticdb-table-sanity-check):
11187 * cedet/semantic/complete.el (semantic-displayor-focus-request)
11188 (semantic-collector-calculate-completions-raw)
11189 (semantic-complete-read-tag-analyzer):
11190 * cedet/semantic/analyze.el (semantic-analyze-pulse):
11191 * cedet/ede/util.el (ede-update-version-in-source):
11192 * cedet/ede/proj.el (project-delete-target):
11193 * cedet/ede/proj-elisp.el (ede-update-version-in-source)
11194 (ede-proj-flush-autoconf):
11195 * cedet/ede/pconf.el (ede-proj-configure-synchronize)
11196 (ede-proj-configure-synchronize):
11197 * cedet/ede/locate.el (ede-locate-file-in-project-impl):
11198 * cedet/ede/linux.el (ede-linux-version):
11199 * cedet/ede/emacs.el (ede-emacs-version):
11200 * cedet/ede/dired.el (ede-dired-add-to-target):
11201 * cedet/ede.el (ede-buffer-header-file, ede-find-target)
11202 (ede-buffer-documentation-files, ede-project-buffers, ede-set)
11203 (ede-target-buffers, ede-buffers, ede-make-project-local-variable):
11204 * cedet/cedet-idutils.el (cedet-idutils-fnid-call):
11205 (cedet-idutils-lid-call, cedet-idutils-expand-filename)
11206 (cedet-idutils-version-check):
11207 * cedet/cedet-global.el (cedet-gnu-global-call):
11208 (cedet-gnu-global-expand-filename, cedet-gnu-global-root)
11209 (cedet-gnu-global-version-check, cedet-gnu-global-scan-hits):
11210 * cedet/cedet-cscope.el (cedet-cscope-call)
11211 (cedet-cscope-expand-filename, cedet-cscope-version-check):
11212 Use with-current-buffer.
11213 * cedet/ede.el (ede-make-project-local-variable)
11214 (ede-set-project-variables, ede-set): Use dolist.
11215
11216 2009-10-30 Dan Nicolaescu <dann@ics.uci.edu>
11217
11218 * textmodes/ispell.el (ispell-skip-region-alist):
11219 * international/mule-conf.el (eight-bit):
11220 * international/fontset.el (font-encoding-alist):
11221 * startup.el (pure-space-overflow-message):
11222 * simple.el (overwrite-mode-textual, overwrite-mode-binary):
11223 * paths.el (gnus-nntp-service, rmail-spool-directory)
11224 (term-file-prefix):
11225 * files.el (save-some-buffers-action-alist):
11226 * cmuscheme.el (same-window-buffer-names):
11227 * ielm.el (same-window-buffer-names):
11228 * shell.el (same-window-buffer-names):
11229 * mail/sendmail.el (same-window-buffer-names):
11230 * progmodes/inf-lisp.el (same-window-buffer-names):
11231 * bindings.el (mode-line-client)
11232 (mode-line-column-line-number-mode-map):
11233 * language/tibetan.el (tibetan-precomposition-rule-regexp)
11234 (tibetan-precomposed-regexp): Purecopy string arguments.
11235
11236 2009-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
11237
11238 * calc/calc.el (calc, calc-refresh, calc-trail-buffer, calc-record)
11239 (calcDigit-nondigit):
11240 * calc/calc-yank.el (calc-copy-to-buffer):
11241 * calc/calc-units.el (calc-invalidate-units-table):
11242 * calc/calc-trail.el (calc-trail-yank):
11243 * calc/calc-store.el (calc-insert-variables):
11244 * calc/calc-rewr.el (math-rewrite, math-rewrite-phase):
11245 * calc/calc-prog.el (calc-read-parse-table):
11246 * calc/calc-keypd.el (calc-do-keypad, calc-keypad-right-click):
11247 * calc/calc-help.el (calc-describe-bindings, calc-describe-key):
11248 * calc/calc-graph.el (calc-graph-delete, calc-graph-add-curve)
11249 (calc-graph-juggle, calc-graph-count-curves, calc-graph-plot)
11250 (calc-graph-plot, calc-graph-format-data, calc-graph-set-styles)
11251 (calc-graph-name, calc-graph-find-command, calc-graph-view)
11252 (calc-graph-view, calc-gnuplot-command, calc-graph-init):
11253 * calc/calc-ext.el (calc-realign):
11254 * calc/calc-embed.el (calc-do-embedded, calc-do-embedded)
11255 (calc-embedded-finish-edit, calc-embedded-make-info)
11256 (calc-embedded-finish-command, calc-embedded-stack-change):
11257 * calc/calc-aent.el (calcAlg-enter): Use with-current-buffer.
11258
11259 * cedet/mode-local.el (make-obsolete-overload): Add `when' argument.
11260 (overload-docstring-extension): Use that info.
11261 * cedet/semantic/fw.el (semantic-alias-obsolete): Pass the `when' info.
11262 * cedet/semantic/idle.el (semantic-eldoc-current-symbol-info):
11263 * cedet/semantic/tag-ls.el (semantic-nonterminal-protection)
11264 (semantic-nonterminal-abstract, semantic-nonterminal-leaf)
11265 (semantic-nonterminal-full-name): Add the new `when' info.
11266 * cedet/semantic/decorate/mode.el (semantic/decorate): Require CL for
11267 `assert'.
11268
11269 * pcomplete.el (pcomplete-comint-setup): If there's a choice, replace
11270 shell-dynamic-complete-filename in preference to
11271 comint-dynamic-complete-filename.
11272
11273 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
11274 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
11275 Don't consider whether the display supports colors.
11276 (bookmark-import-new-list): Use dolist.
11277 (bookmark-bmenu-mode-map): Move initialization into declaration.
11278 (bookmark-bmenu-list): Use dolist, simplify.
11279 (bookmark-show-all-annotations): Use save-selected-window and dolist.
11280 (menu-bar-final-items): Use push.
11281
11282 2009-10-28 Bernhard Herzog <bernhard.herzog@intevation.de> (tiny change)
11283
11284 * vc-hg.el (vc-hg-state, vc-hg-working-revision): Use process-file so
11285 it works on remote files.
11286 (vc-hg-diff): Don't pass any `--cwd' argument.
11287
11288 2009-10-27 Kevin Ryde <user42@zip.com.au>
11289
11290 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
11291 Use help-xref-info-regexp and help-xref-url-regexp to identify links.
11292 (Further to Bug#3921).
11293
11294 2009-10-27 Michael Albinus <michael.albinus@gmx.de>
11295
11296 * net/tramp-imap.el (top): Add `X-Size' to `imap-hash-headers'.
11297 (tramp-imap-do-copy-or-rename-file): Don't use the inode, when
11298 calling `tramp-imap-put-file'. Add file size to the call.
11299 (tramp-imap-get-file-entries): Compute also user name, file size,
11300 and date.
11301 (tramp-imap-handle-insert-directory): Insert uid and gid.
11302 (tramp-imap-handle-file-attributes): Transform uid and gid
11303 according to `id-format'.
11304 (tramp-imap-put-file): New optional parameter SIZE. Encode file
11305 size in header X-Size.
11306
11307 2009-10-26 Juanma Barranquero <lekktu@gmail.com>
11308
11309 * simple.el (transpose-subr): Give clearer error when the mark
11310 is not set. (Bug#4807)
11311
11312 2009-10-26 Michael Albinus <michael.albinus@gmx.de>
11313
11314 * net/tramp.el (tramp-perl-file-truename): New defconst.
11315 Perl code contributed by yary <not.com@gmail.com> (tiny change).
11316 (tramp-handle-file-truename, tramp-get-remote-perl): Use it.
11317 Check also for "perl-file-spec" and "perl-cwd-realpath" properties.
11318 (tramp-handle-write-region): In case of APPEND, reuse the tmpfile name.
11319
11320 * net/tramp-imap.el (tramp-imap-file-name-handler-alist):
11321 Ignore `dired-call-process'.
11322 (tramp-imap-make-iht): Use `user' and `ssl' with `imap-hash-make'.
11323
11324 2009-10-26 Julian Scheid <julians37@gmail.com>
11325
11326 * net/tramp.el (tramp-perl-file-name-all-completions): New defconst.
11327 (tramp-get-remote-readlink): New defun.
11328 (tramp-handle-file-truename): Use it.
11329 (tramp-handle-file-exists-p): Check file-attributes cache, assume
11330 file exists if cache value present.
11331 (tramp-check-cached-permissions): New defun.
11332 (tramp-handle-file-readable-p): Use it.
11333 (tramp-handle-file-writable-p): Likewise.
11334 (tramp-handle-file-executable-p): Likewise.
11335 (tramp-handle-file-name-all-completions): Try using Perl to get
11336 partial completions. When perl not available, combine `cd' and
11337 `ls' into single remote operation and use shell expansion to get
11338 partial remote directory contents. Set `file-exists-p' cache for
11339 directory and any files returned by ls. Change cache handling to
11340 support partial directory contents. Use error message emitted by
11341 remote `cd' or Perl code for local tramp-error.
11342 (tramp-do-copy-or-rename-file-directly): Avoid separate
11343 tramp-send-command-and-check call.
11344 (tramp-handle-process-file): Merge three remote ops into one.
11345 Do not flush all caches when `process-file-side-effects' is set.
11346 (tramp-handle-write-region): Avoid tramp-set-file-uid-gid if
11347 file-attributes shows uid/gid to be set already.
11348
11349 2009-10-26 Dan Nicolaescu <dann@ics.uci.edu>
11350
11351 * textmodes/tex-mode.el (tex-dvi-view-command)
11352 (tex-show-queue-command, tex-open-quote):
11353 * progmodes/ruby-mode.el (auto-mode-alist)
11354 (interpreter-mode-alist): Purecopy strings.
11355
11356 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Purecopy item names.
11357
11358 * emacs-lisp/derived.el (define-derived-mode): Purecopy the doc
11359 string for the hook, keymap and abbrev table.
11360
11361 * emacs-lisp/byte-run.el (make-obsolete): Purecopy the current name.
11362
11363 * x-dnd.el (x-dnd-xdnd-to-action):
11364 * startup.el (fancy-startup-text, fancy-about-text): Change to
11365 defconst from defvar.
11366
11367 * ps-print.el (ps-page-dimensions-database): Purecopy initial value.
11368
11369 * mouse.el (mouse-buffer-menu-mode-groups, x-fixed-font-alist):
11370 Purecopy initialization strings.
11371
11372 * mail/sendmail.el (mail-header-separator)
11373 (mail-personal-alias-file):
11374 * mail/rmail.el (rmail-default-dont-reply-to-names)
11375 (rmail-ignored-headers, rmail-retry-ignored-headers)
11376 (rmail-highlighted-headers, rmail-secondary-file-directory)
11377 (rmail-secondary-file-regexp):
11378 * files.el (null-device, file-name-invalid-regexp)
11379 (locate-dominating-stop-dir-regexp)
11380 (inhibit-first-line-modes-regexps): Purecopy initialization strings.
11381 (interpreter-mode-alist): Use mapcar instead of mapc.
11382
11383 * buff-menu.el (Buffer-menu-mode-map): Purecopy name.
11384
11385 * bindings.el (mode-line-major-mode-keymap): Purecopy name.
11386 (completion-ignored-extensions):
11387 (debug-ignored-errors): Purecopy strings.
11388
11389 2009-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
11390
11391 * pcomplete.el (pcomplete-std-complete): Obey pcomplete-use-paring.
11392 (pcomplete, pcomplete-parse-buffer-arguments, pcomplete-opt)
11393 (pcomplete--here): Use push.
11394
11395 * subr.el (all-completions): Declare the 4th arg obsolete.
11396
11397 2009-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
11398
11399 * pcomplete.el (pcomplete-unquote-argument-function): New var.
11400 (pcomplete-unquote-argument): New function.
11401 (pcomplete--common-suffix): Always pay attention to case.
11402 (pcomplete--table-subvert): Quote and unquote the text.
11403 (pcomplete--common-quoted-suffix): New function.
11404 (pcomplete-std-complete): Use it and pcomplete-begin.
11405
11406 * bookmark.el (bookmark-bmenu-list): Don't use switch-to-buffer if
11407 we're inside a dedicated or minibuffer window.
11408
11409 2009-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
11410
11411 * cedet/semantic/fw.el (semantic-alias-obsolete)
11412 (semantic-varalias-obsolete): Make the `when' arg mandatory.
11413 (define-mode-overload-implementation):
11414 * cedet/semantic/decorate/mode.el (semantic-decorate-pending-decoration-hooks):
11415 * cedet/semantic/wisent.el (wisent-lex-make-token-table):
11416 * cedet/semantic/util.el (semantic-file-token-stream)
11417 (semantic-something-to-stream):
11418 * cedet/semantic/tag.el (semantic-tag-make-assoc-list)
11419 (semantic-expand-nonterminal):
11420 * cedet/semantic/tag-file.el (semantic-find-nonterminal)
11421 (semantic-find-dependency, semantic-find-nonterminal)
11422 (semantic-find-dependency):
11423 * cedet/semantic/lex.el (semantic-flex-start, semantic-flex-end)
11424 (semantic-flex-text, semantic-flex-make-keyword-table)
11425 (semantic-flex-keyword-p, semantic-flex-keyword-put)
11426 (semantic-flex-keyword-get, semantic-flex-map-keywords)
11427 (semantic-flex-keywords, semantic-flex-buffer, semantic-flex-list):
11428 * cedet/semantic/java.el (semantic-java-prototype-nonterminal):
11429 * cedet/semantic/idle.el (semantic-before-idle-scheduler-reparse-hooks)
11430 (semantic-after-idle-scheduler-reparse-hooks):
11431 * cedet/semantic/edit.el (semantic-edits-incremental-reparse-failed-hooks):
11432 * cedet/semantic/db-mode.el (semanticdb-mode-hooks):
11433 * cedet/semantic.el (semantic-toplevel-bovine-table)
11434 (semantic-toplevel-bovine-cache)
11435 (semantic-before-toplevel-bovination-hook, semantic-init-hooks)
11436 (semantic-init-mode-hooks, semantic-init-db-hooks)
11437 (semantic-bovination-working-type): Provide the `when' arg.
11438
11439 2009-10-24 Karl Fogel <kfogel@red-bean.com>
11440
11441 * bookmark.el: Update documentation, especially documentation
11442 of `bookmark-alist' and of the bookmark file format.
11443 Patch by Drew Adams, with minor tweaks from me. (Bug#4195)
11444
11445 2009-10-24 Chong Yidong <cyd@stupidchicken.com>
11446
11447 * mail/emacsbug.el (report-emacs-bug): Clarify that the
11448 keybindings apply to the mail buffer (Bug#4003). Shrink help
11449 window to buffer.
11450
11451 * whitespace.el (whitespace-mode, whitespace-newline-mode)
11452 (global-whitespace-mode, global-whitespace-newline-mode)
11453 (whitespace-toggle-options, global-whitespace-toggle-options):
11454 Doc fix (Bug#3660).
11455
11456 * nxml/nxml-mode.el (nxml-balanced-close-start-tag): Use the value
11457 of xmltok-start before the end tag was inserted (Bug#2840).
11458
11459 * progmodes/sh-script.el (sh-font-lock-paren): Handle case
11460 patterns that are preceded by an open-paren (Bug#1320).
11461
11462 2009-10-24 Sven Joachim <svenjoac@gmx.de>
11463
11464 * files.el (delete-directory): Delete symlinks to directories with
11465 delete-file (Bug#4739).
11466
11467 2009-10-24 Chong Yidong <cyd@stupidchicken.com>
11468
11469 * cedet/semantic/util.el (semantic-recursive-find-nonterminal-by-name):
11470 * cedet/semantic/tag.el (semantic-token-type-parent): Add WHEN
11471 argument to make-obsolete.
11472
11473 * cedet/semantic/fw.el (semantic-alias-obsolete)
11474 (semantic-varalias-obsolete): Add optional WHEN argument.
11475
11476 2009-10-24 Dan Nicolaescu <dann@ics.uci.edu>
11477
11478 * vc.el (vc-backend-for-registration): Rename from
11479 vc-get-backend-for-registration. Update callers.
11480
11481 * international/mule-cmds.el (set-language-info-alist):
11482 Purecopy lang-env.
11483 (leim-list-header, leim-list-entry-regexp): Change defvars to defconst.
11484 (charset): Purecopy the name.
11485 (define-char-code-property): Purecopy string arguments.
11486
11487 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
11488 Purecopy string arguments.
11489
11490 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
11491 * ediff-hook.el (menu-bar-ediff-menu):
11492 * buff-menu.el (Buffer-menu-mode-map): Purecopy names and tooltips.
11493 * bookmark.el (menu-bar-bookmark-map): Add :help and purecopy the name.
11494
11495 2009-10-24 Glenn Morris <rgm@gnu.org>
11496
11497 * comint.el (comint-dynamic-list-completions):
11498 * term.el (term-dynamic-list-completions): Use choose-completion rather
11499 than obsolete alias mouse-choose-completion.
11500
11501 * filecache.el (file-cache-completions-keymap): Bind mouse-2 to
11502 file-cache-choose-completion.
11503 (file-cache-choose-completion): Handle an optional event argument.
11504 (file-cache-mouse-choose-completion): Make it an obsolete alias.
11505
11506 * progmodes/octave-mod.el (octave-complete-symbol):
11507 Use choose-completion if mouse-choose-completion is ever removed.
11508
11509 * textmodes/sgml-mode.el (sgml-looking-back-at): Move definition before
11510 use.
11511
11512 * emacs-lisp/checkdoc.el (generate-autoload-cookie): Define for
11513 compiler.
11514
11515 * vc-hooks.el (vc-responsible-backend): Fix declaration.
11516
11517 2009-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
11518
11519 * minibuffer.el (completion--embedded-envvar-table): Fix last change.
11520 Ignore `pred' now that we receive one.
11521 Handle test-completion specially.
11522
11523 2009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
11524
11525 * vc.el (vc-responsible-backend): Throw an error if not backend is
11526 found. Remove the REGISTER argument. Move the code dealing with
11527 REGISTER ...
11528 (vc-get-backend-for-registration): ... here. New function.
11529 (vc-deduce-fileset): Call vc-get-backend-for-registration instead
11530 of vc-responsible-backend, pass the file name instead of the
11531 directory name.
11532
11533 2009-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
11534
11535 * pcomplete.el (pcomplete-common-suffix, pcomplete-table-subvert):
11536 New funs.
11537 (pcomplete-std-complete): Use them. Obey pcomplete-termination-string.
11538 (pcomplete-comint-setup): Don't modify a global var via
11539 accidental side-effects.
11540 (pcomplete-shell-setup): Adjust call accordingly.
11541 (pcomplete-parse-comint-arguments): Use push.
11542
11543 2009-10-23 Chong Yidong <cyd@stupidchicken.com>
11544
11545 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
11546 Allow uncapitalized info node names (Bug#3921).
11547
11548 * mail/emacsbug.el (report-emacs-bug): Tweak the sentence pointing
11549 to the DEBUG file (Bug#3781).
11550
11551 2009-10-23 Jari Aalto <jari.aalto@cante.net>
11552
11553 * textmodes/ispell.el (ispell-dictionary-base-alist): Add finnish
11554 dictionary entry (Bug#4579).
11555
11556 2009-10-23 Michael Albinus <michael.albinus@gmx.de>
11557
11558 * net/tramp.el (top): Remove `tramp-rfn-eshadow-update-overlay'
11559 from `rfn-eshadow-update-overlay-hook' when unloading.
11560 (tramp-methods): Add `tramp-copy-keep-tmpfile' for "rsync" and
11561 "rsyncc". Adjust doc string.
11562 (tramp-temp-buffer-file-name): New buffer-local defvar.
11563 (tramp-handle-insert-file-contents, tramp-handle-write-region):
11564 Keep temporary file when indicated by method ("rsync" and
11565 "rsyncc").
11566 (tramp-handle-write-region): Handle APPEND.
11567 (tramp-delete-temp-file-function): New defun. Added to
11568 `kill-buffer-hook'.
11569
11570 2009-10-23 Juanma Barranquero <lekktu@gmail.com>
11571
11572 * menu-bar.el (cua-enable-cua-keys): Declare for the byte-compiler.
11573
11574 2009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
11575
11576 * term/tty-colors.el (msdos-color-values): Remove declaration, unused.
11577 (color-name-rgb-alist, tty-standard-colors)
11578 (tty-color-mode-alist): Change to defconst.
11579
11580 * simple.el (mark-inactive): Purecopy message.
11581
11582 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle): Fix macro.
11583 (global-map, yank-menu):
11584 * textmodes/ispell.el (ispell-menu-map):
11585 * net/eudc.el (eudc-tools-menu):
11586 * international/mule-cmds.el (describe-language-environment-map)
11587 (setup-language-environment-map, set-coding-system-map)
11588 (mule-menu-keymap):
11589 * vc-hooks.el (vc-menu-entry, vc-menu-map):
11590 * replace.el (occur-mode-map):
11591 * pcvs-defs.el (cvs-global-menu): Purecopy names and tooltips.
11592
11593 2009-10-23 Jay Belanger <jay.p.belanger@gmail.com>
11594
11595 * calc/calc.el (math-read-number, math-read-number-simple): Use
11596 `save-match-data'.
11597
11598 2009-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
11599
11600 * simple.el (normal-erase-is-backspace-mode): Use input-decode-map
11601 rather than fiddling with global-map bindings, since it should only
11602 affect per-terminal settings.
11603 See http://bugs.gentoo.org/show_bug.cgi?id=289709.
11604
11605 * minibuffer.el (completion-table-with-terminator): Allow to specify
11606 the terminator-regexp.
11607
11608 * simple.el (switch-to-completions): Look for *Completions* in other
11609 frames as well.
11610
11611 * pcomplete.el: Allow the use of completion-tables.
11612 (pcomplete-std-complete): New command.
11613 (pcomplete-dirs-or-entries): Use a single call to pcomplete-entries.
11614 (pcomplete--here): Use a function for `form' rather than an expression,
11615 so it can be byte-compiled.
11616 (pcomplete-here, pcomplete-here*): Adjust accordingly.
11617 Add edebug declaration.
11618 (pcomplete-show-completions): Remove unused var `curbuf'.
11619 (pcomplete-do-complete, pcomplete-stub):
11620 Don't assume `completions' is a list of strings any more.
11621
11622 2009-10-22 Juanma Barranquero <lekktu@gmail.com>
11623
11624 * find-dired.el (find-name-arg): Fix typo in docstring.
11625
11626 2009-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
11627
11628 * pcmpl-linux.el (pcomplete/kill): Don't abuse pcomplete-entries.
11629 (pcmpl-linux-fs-types): Same, and update to new modules layout.
11630
11631 * pcmpl-gnu.el (pcmpl-gnu-makefile-names): Use a single call to
11632 pcomplete-entries.
11633
11634 * comint.el (comint-read-input-ring, comint-write-input-ring)
11635 (comint-substitute-in-file-name)
11636 (comint-dynamic-complete-as-filename)
11637 (comint-dynamic-simple-complete)
11638 (comint-dynamic-list-filename-completions)
11639 (comint-dynamic-list-completions)
11640 (comint-redirect-results-list-from-process): Minor simplifications.
11641
11642 2009-10-21 Kevin Ryde <user42@zip.com.au>
11643
11644 * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
11645 When inserting ";;; Code" put it before any ";;;###autoload" cookie on
11646 the first form. And insert a blank line after ";;; Code" since
11647 that's usual style. (Bug#4612)
11648
11649 * net/dns.el: Add "Keywords: comm", as per net/net-utils.el.
11650
11651 2009-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
11652
11653 * minibuffer.el (completion-table-with-terminator): Properly implement
11654 boundaries, in case `terminator' appears in the suffix.
11655 (completion--embedded-envvar-table): Don't return boundaries if
11656 there's no valid completion. Simplify.
11657 (completion-file-name-table): New completion table extracted from
11658 completion--file-name-table.
11659 (completion--file-name-table): Use it.
11660 (read-file-name-predicate): Declare obsolete.
11661 (read-file-name): Use the pred arg i.s.o read-file-name-predicate.
11662 * vc-bzr.el (vc-bzr-revision-completion-table): Use the new
11663 completion-file-name-table, and use the `pred' argument.
11664 * files.el (locate-file-completion-table): Use the `pred' arg rather
11665 than read-file-name-predicate.
11666 (abbreviate-file-name): Use \` rather than ^ for BOS.
11667
11668 2009-10-21 Dan Nicolaescu <dann@ics.uci.edu>
11669
11670 * vc.el (vc-deduce-fileset): Undo previous change, do not tell
11671 vc-responsible-backend to register, it causes problems.
11672
11673 2009-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
11674
11675 * help-fns.el: Don't require help-mode (to avoid bootstrap issues).
11676
11677 2009-10-21 Eric Ludlam <zappo@gnu.org>
11678
11679 * cedet/semantic/bovine/c.el (semantic-c-debug-mode-init)
11680 (semantic-c-debug-mode-init-pch): New functions.
11681 (semantic-c-debug-mode-init-last-mode): New var.
11682 (semantic-c-parse-lexical-token): Use them.
11683
11684 * cedet/semantic/lex-spp.el (semantic-lex-spp-anlyzer-do-replace):
11685 When extracting the argument list, limit only by point-max.
11686
11687 2009-10-21 Michael Albinus <michael.albinus@gmx.de>
11688
11689 * net/tramp-smb.el (tramp-smb-get-stat-capability): New defun.
11690 (tramp-smb-handle-file-attributes): Use it.
11691 (tramp-smb-do-file-attributes-with-stat): Don't raise an error.
11692 (tramp-smb-handle-insert-directory): Use `mapc' rather than
11693 `mapcar'. Use `tramp-smb-get-stat-capability'.
11694 Add `dired-filename' text properties.
11695 (tramp-smb-get-cifs-capabilities): Apply `save-match-data'.
11696 (tramp-smb-maybe-open-connection): Simplify check for smbclient
11697 version.
11698
11699 2009-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
11700
11701 * subr.el (read-key-delay): Reduce to 0.01.
11702 (read-key): Use read-key-sequence-vector to avoid turning M-t into 244
11703 (bug#4751).
11704
11705 2009-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
11706
11707 * bindings.el (function-key-map): Map C-@ to C-SPC if C-@ is unbound.
11708
11709 * info.el (Info-complete-menu-item): Handle `boundaries' explicitly.
11710 (Info-menu): Remove unused vars `last' and `completions'.
11711 (Info-index-nodes): Remove unused var `node'.
11712
11713 * info.el (Info-complete-menu-item): Use complete-with-action.
11714
11715 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
11716
11717 Make vc-annotate work through copies and renames.
11718 * vc-annotate.el (vc-annotate-extract-revision-at-line):
11719 Return the file name too.
11720 (vc-annotate-revision-at-line)
11721 (vc-annotate-find-revision-at-line)
11722 (vc-annotate-revision-previous-to-line)
11723 (vc-annotate-show-log-revision-at-line): Update to get the file
11724 name from vc-annotate-extract-revision-at-line.
11725 (vc-annotate-show-diff-revision-at-line-internal): Change the
11726 argument to mean whether to show a file diff or not. Get the file
11727 name from vc-annotate-extract-revision-at-line.
11728 (vc-annotate-show-diff-revision-at-line):
11729 Update vc-annotate-show-diff-revision-at-line call.
11730 (vc-annotate-warp-revision): Add an optional file argument.
11731
11732 * vc-git.el (vc-git-annotate-command): Pass -C -C to the blame command.
11733 (vc-git-annotate-extract-revision-at-line): Also return the file
11734 name if found.
11735
11736 * vc-hg.el (vc-hg-annotate-command): Pass --follow to the annotate
11737 command. Remove unused code.
11738 (vc-hg-annotate-re): Update to match --follow output.
11739 (vc-hg-annotate-extract-revision-at-line): Also return the file
11740 name if found.
11741
11742 * vc.el: Update annotate-extract-revision-at-line documentation.
11743
11744 2009-10-18 Kevin Ryde <user42@zip.com.au>
11745
11746 * ibuffer.el (ibuffer-confirm-operation-on): Correction to error
11747 re-throw, `err' is a pair not a list so can't use apply (Bug#4740).
11748
11749 * net/browse-url.el (browse-url): Identify alist with "consp and
11750 not functionp" and let all other things go down the `apply' leg,
11751 as suggested by Stefan. (Further to bug#4531.)
11752
11753 2009-10-18 Chong Yidong <cyd@stupidchicken.com>
11754
11755 * minibuffer.el (read-file-name): Check for repeat before putting
11756 a default argument in file-name-history (Bug#4657).
11757
11758 * emacs-lisp/lisp-mode.el (preceding-sexp): Recognize hash table
11759 read syntax (Bug#4737).
11760
11761 * textmodes/sgml-mode.el (sgml-delete-tag): Use sgml-looking-back-at.
11762
11763 2009-10-18 Aaron S. Hawley <aaron.s.hawley@gmail.com>
11764
11765 * textmodes/sgml-mode.el (sgml-tag-help): Prompt user for tag.
11766 (html-tag-alist, html-tag-help): Add descriptions for undocumented
11767 entries and make note of obsolete tags.
11768
11769 2009-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
11770
11771 * net/ange-ftp.el (ange-ftp-file-size): Use unwind-protect.
11772
11773 2009-10-18 Glenn Morris <rgm@gnu.org>
11774
11775 * Makefile.in (compile-last): Ensure GREP_OPTIONS is null before calling
11776 grep, so that binary files (eg international/uni-bidi.el) can match.
11777 Remove test for "UnicodeData" files, since it is hopefully unnecessary
11778 now, and in any case the file header format has changed.
11779
11780 2009-10-17 Glenn Morris <rgm@gnu.org>
11781
11782 * textmodes/flyspell.el (flyspell-large-region, flyspell-word)
11783 (flyspell-get-word, flyspell-large-region)
11784 (flyspell-auto-correct-previous-word): Doc/error message fixes.
11785
11786 2009-10-17 Chong Yidong <cyd@stupidchicken.com>
11787
11788 * Makefile.in (ELCFILES): Add ede/shell.
11789
11790 2009-10-17 Dan Nicolaescu <dann@ics.uci.edu>
11791
11792 * term/common-win.el (x-colors): Purecopy it.
11793
11794 2009-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
11795
11796 * tar-mode.el (tar-data-swapped-p): Make the assertion a bit more
11797 permissive for when the buffer is empty.
11798 (tar-header-block-tokenize): Decode the username and groupname.
11799 (tar-chown-entry, tar-chgrp-entry): Encode the names (bug#4730).
11800
11801 2009-10-17 Chong Yidong <cyd@stupidchicken.com>
11802
11803 * cedet/srecode/srt.el:
11804 * cedet/srecode/compile.el:
11805 * cedet/semantic/mru-bookmark.el:
11806 * cedet/semantic/debug.el:
11807 * cedet/semantic/complete.el:
11808 * cedet/semantic/analyze.el: Require CL when compiling.
11809
11810 2009-10-17 Eric Ludlam <zappo@gnu.org>
11811
11812 * cedet/semantic/scope.el
11813 (semantic-analyze-scoped-inherited-tag-map): Wrap calculation of
11814 tmpscope so that the regular scope will continue to work.
11815
11816 * cedet/semantic/idle.el (semantic-idle-tag-highlight):
11817 Use semantic-idle-summary-highlight-face as the highlighting.
11818
11819 * emacs-lisp/eieio-base.el (eieio-persistent-save): If buffer
11820 contains multibyte characters, choose first applicable coding
11821 system automatically.
11822
11823 * cedet/ede/project-am.el (project-run-target): New method.
11824 (project-run-target): New method.
11825
11826 * cedet/ede.el (ede-target): Add run target menu item.
11827 (ede-project, ede-minor-keymap): Add ede-run-target binding.
11828 (ede-run-target): New function.
11829 (ede-target::project-run-target): New method.
11830
11831 * cedet/ede/proj.el (project-run-target): New method.
11832
11833 * cedet/ede/proj-shared.el (ede-gcc-libtool-shared-compiler)
11834 (ede-g++-libtool-shared-compiler): Remove SHELL. Remove COMMANDS.
11835 Add :rules.
11836 (ede-proj-target-makefile-shared-object): Only libtool compilers
11837 now available. Add linkers for libtool.
11838 (ede-cc-linker-libtool, ede-g++-linker-libtool): New.
11839 (ede-proj-makefile-target-name): Always use .la extension.
11840
11841 * cedet/ede/proj-prog.el (project-run-target): New method.
11842
11843 * cedet/ede/proj-obj.el (ede-cc-linker): Rename from ede-gcc-linker.
11844 (ede-g++-linker): Change Change link lines.
11845
11846 * cedet/ede/pmake.el (ede-pmake-insert-variable-shared):
11847 When searching for old variables, go to the end of the buffer and
11848 search backward from there.
11849 (ede-proj-makefile-automake-insert-subdirs)
11850 (ede-proj-makefile-automake-insert-extradist): New methods.
11851 (ede-proj-makefile-create): Use them.
11852
11853 * cedet/ede/pconf.el (ede-proj-configure-test-required-file):
11854 Force FILE to expand to the current target. Use file-exists-p to
11855 check that it exists.
11856
11857 * cedet/ede/linux.el (ede-linux-version): Don't call "head".
11858 (ede-linux-load): Wrap dir in file-name-as-directory.
11859 Set :version slot.
11860
11861 * cedet/ede/files.el (ede-get-locator-object): When enabling
11862 locate, do so on "top".
11863
11864 * cedet/ede/emacs.el (ede-emacs-file-existing): Wrap "dir" in
11865 file-name-as-directory during compare.
11866 (ede-emacs-version): Return Emacs/XEmacs differentiator.
11867 Get version number from different places. Don't call egrep.
11868 (ede-emacs-load): Set :version slot. Call file-name-as-directory
11869 to set the directory.
11870
11871 * cedet/ede/shell.el: New file.
11872
11873 * cedet/inversion.el (inversion-decoders): Allow for stray . in
11874 alpha/beta variants.
11875
11876 2009-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
11877
11878 * international/mule-cmds.el (select-safe-coding-system): If the file
11879 has a coding cookie, use it regardless of any other setting (bug#4712).
11880
11881 2009-10-17 Glenn Morris <rgm@gnu.org>
11882
11883 * cedet/semantic/grammar.el (semantic-grammar--lex-delim-spec):
11884 All errors should have messages.
11885
11886 * foldout.el (foldout-mouse-swallow-events):
11887 * gs.el (gs-load-image): Replace obsolete forms of sit-for, sleep-for.
11888
11889 * dired.el (dired-ls-F-marks-symlinks, dired-keep-marker-rename)
11890 (dired-keep-marker-copy, dired-keep-marker-hardlink)
11891 (dired-keep-marker-symlink, dired-dwim-target)
11892 (dired-copy-preserve-time): Do not autoload these defcustoms.
11893
11894 * mail/rmail.el (rmail-write-region-annotate): Prevent viewing different
11895 messages from messing up the file coding. (Bug#4623)
11896
11897 2009-10-17 Jari Aalto <jari.aalto@cante.net>
11898
11899 * textmodes/ispell.el (ispell-get-decoded-string): Give an error
11900 if no match is found for the current dictionary. (Bug#4578)
11901
11902 * textmodes/flyspell.el (flyspell-get-word): Make `following' argument
11903 optional, since that is how it is documented, and this is often called
11904 with a nil argument. (Bug#4577)
11905 (flyspell-external-point-words, flyspell-auto-correct-word)
11906 (flyspell-correct-word-before-point, flyspell-word-search-forward)
11907 (flyspell-word-search-backward): Remove nil argument in calls to
11908 flyspell-get-word, since it is not needed now.
11909
11910 2009-10-17 Ulrich Mueller <ulm@gentoo.org>
11911
11912 * play/doctor.el (doctor-adverbp): Exclude some nouns. (Bug#4565)
11913
11914 2009-10-16 Glenn Morris <rgm@gnu.org>
11915
11916 * net/rcirc.el (rcirc-authenticate): Simplify previous change.
11917
11918 2009-10-16 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
11919
11920 * net/ange-ftp.el (ange-ftp-send-cmd): Handle `size' like `mdtm'.
11921 (ange-ftp-file-size): New function.
11922 (ange-ftp-file-attributes): Use it.
11923
11924 2009-10-16 Michael Albinus <michael.albinus@gmx.de>
11925
11926 * net/tramp-smb.el (tramp-smb-version): New defvar.
11927 (tramp-smb-maybe-open-connection): Use it, in order to avoid
11928 repeated checks.
11929
11930 2009-10-16 Glenn Morris <rgm@gnu.org>
11931
11932 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Doc fix.
11933 Maybe copy some custom properties from old to new name. (Bug#4706)
11934
11935 2009-10-16 Juanma Barranquero <lekktu@gmail.com>
11936
11937 * subr.el (error, sit-for, start-process-shell-command)
11938 (start-file-process-shell-command): Set the calling convention
11939 after the function definition.
11940
11941 2009-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
11942
11943 * subr.el (error, sit-for, start-process-shell-command)
11944 (start-file-process-shell-command): Use the new
11945 set-advertised-calling-convention feature.
11946
11947 2009-10-16 Taichi Kawabata <kawabata.taichi@gmail.com>
11948
11949 * international/ucs-normalize.el (ucs-normalize-version):
11950 Change to 1.2.
11951 (check-range): Adjust for Unicode 5.2.
11952
11953 2009-10-15 Juri Linkov <juri@jurta.org>
11954
11955 * menu-bar.el (menu-bar-file-menu): Convert `separator-exit'
11956 to the `menu-item' format.
11957
11958 2009-10-15 Michael Albinus <michael.albinus@gmx.de>
11959
11960 * net/tramp.el (tramp-replace-environment-variables): Do not fail
11961 if the environment variable does not exist.
11962
11963 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
11964 (tramp-smb-get-share, tramp-smb-get-localname): Use only VEC as
11965 parameter.
11966 (tramp-smb-handle-add-name-to-file)
11967 (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
11968 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
11969 (tramp-smb-handle-file-attributes)
11970 (tramp-smb-do-file-attributes-with-stat)
11971 (tramp-smb-handle-file-local-copy)
11972 (tramp-smb-handle-insert-directory)
11973 (tramp-smb-handle-make-directory)
11974 (tramp-smb-handle-make-directory-internal)
11975 (tramp-smb-handle-make-symbolic-link)
11976 (tramp-smb-handle-rename-file, tramp-smb-handle-set-file-modes)
11977 (tramp-smb-handle-write-region, tramp-smb-get-file-entries)
11978 (tramp-smb-maybe-open-connection): Apply the changed parameters.
11979 (tramp-smb-read-file-entry): Read Disk names in compressed format.
11980 Handle long file names.
11981 (tramp-smb-get-cifs-capabilities): Check, whether the connection
11982 process is running.
11983 (tramp-smb-maybe-open-connection): Trace "smbclient -V" command.
11984 Read share names with "-g" option.
11985
11986 2009-10-15 Ryan Yeske <rcyeske@gmail.com>
11987
11988 * net/rcirc.el (rcirc-view-log-file): New command.
11989 (rcirc-track-minor-mode-map): Remove C-c ` binding.
11990 (rcirc-authenticate, rcirc-authinfo): Allow nickserv-nick to be
11991 specified.
11992
11993 2009-10-15 Glenn Morris <rgm@gnu.org>
11994
11995 * w32-fns.el (w32-batch-update-autoloads): Take autoload-make-program
11996 from the second command-line argument.
11997 * makefile.w32-in (autoloads, $(lisp)/calendar/cal-loaddefs.el)
11998 ($(lisp)/calendar/diary-loaddefs.el, $(lisp)/calendar/hol-loaddefs.el)
11999 ($(lisp)/mh-e/mh-loaddefs.el): Pass $(MAKE) as second argument to
12000 w32-batch-update-autoloads.
12001 * emacs-lisp/autoload.el (autoload-make-program): New variable.
12002 (batch-update-autoloads): Handle autoload-excludes on windows-nt.
12003
12004 * mail/rmailedit.el (rmail-cease-edit): Give an error if the end of
12005 the headers cannot be located. Simplify, subtracting superflous
12006 save-excursions.
12007
12008 2009-10-15 Stefan Monnier <monnier@iro.umontreal.ca>
12009
12010 Replace completion-base-size by completion-base-position to fix bugs
12011 such as (bug#4699).
12012 * simple.el (completion-base-position): New var.
12013 (completion-base-size): Mark as obsolete.
12014 (choose-completion): Make it work for mouse events as well.
12015 Pass the new base-position to choose-completion-string.
12016 (choose-completion-guess-base-position): New function, extracted from
12017 choose-completion-delete-max-match.
12018 (choose-completion-delete-max-match): Use it. Make obsolete.
12019 (choose-completion-string): Use the new base-position info.
12020 (completion-root-regexp): Delete.
12021 (completion-setup-function): Preserve completion-base-position.
12022 Eliminate obsolete base-size manipulation.
12023 * minibuffer.el (display-completion-list): Don't mess with base-size.
12024 (minibuffer-completion-help): Set completion-base-position instead.
12025 * mouse.el (mouse-choose-completion): Redefine as a mere alias to
12026 choose-completion.
12027 * textmodes/bibtex.el (bibtex-complete):
12028 * emacs-lisp/crm.el (crm--choose-completion-string):
12029 Adjust to new calling convention.
12030 * complete.el (partial-completion-mode): Use minibufferp to avoid
12031 bumping into incompatible change to choose-completion-string-functions.
12032 * ido.el (ido-choose-completion-string): Make its calling convention
12033 more permissive.
12034 * comint.el (comint-dynamic-list-input-ring-select): Remove obsolete
12035 base-size manipulation.
12036 (comint-dynamic-list-input-ring): Use dotimes and push.
12037 * iswitchb.el (iswitchb-completion-help): Remove dead-code call to
12038 fundamental-mode. Use `or'.
12039
12040 2009-10-14 Juri Linkov <juri@jurta.org>
12041
12042 * misearch.el (multi-isearch-next-buffer-from-list)
12043 (multi-isearch-next-file-buffer-from-list): Doc fix. (Bug#4723)
12044
12045 2009-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
12046
12047 * Makefile.in (compile-onefile): Load `bytecomp' rather than
12048 `bytecomp.el'.
12049
12050 * minibuffer.el (completion-pcm--merge-completions): Make sure the
12051 string we return is all made up of text from the completions rather
12052 than part from the completions and part from the input (bug#4219).
12053
12054 * ido.el (ido-everywhere): Use define-minor-mode.
12055
12056 * buff-menu.el (list-buffers, ctl-x-map):
12057 Mark the entry points with ;;;###autoload cookies.
12058
12059 2009-10-14 Dan Nicolaescu <dann@ics.uci.edu>
12060
12061 * vc-git.el (vc-git-dir-extra-headers): Set the branch name
12062 correctly in the detached head case.
12063 (vc-git-print-log): Remove unused binding.
12064
12065 * vc.el (vc-responsible-backend): When a directory is passed for
12066 for registration create a VC repository if no backend is
12067 responsible for the directory argument.
12068 (vc-deduce-fileset): Tell vc-responsible-backend to register.
12069
12070 * vc.el: Move comments about RCS and SCCS ...
12071 * vc-rcs.el:
12072 * vc-sccs.el: ... here, respectively.
12073
12074 2009-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
12075
12076 * minibuffer.el (completion--file-name-table): Return nil if there's
12077 no file completion, even if substitute-in-file-name changed
12078 the string (bug#4708).
12079
12080 2009-10-13 Juri Linkov <juri@jurta.org>
12081
12082 * files-x.el (read-file-local-variable-value): Don't filter out
12083 minor modes from mode name completion (bug#4664).
12084
12085 2009-10-13 Juanma Barranquero <lekktu@gmail.com>
12086
12087 * international/mule-cmds.el (ucs-names): Remove exclusion of
12088 "Enclosed Ideographic Supplement" range (U+1F200..U+1F2FF).
12089
12090 2009-10-13 Kenichi Handa <handa@m17n.org>
12091
12092 * international/uni-name.el: Regenerated.
12093
12094 2009-10-13 Juanma Barranquero <lekktu@gmail.com>
12095
12096 * bs.el (bs-mode): Fix last change. (`revert-buffer-function'
12097 should be automatically buffer-local, but isn't.)
12098
12099 2009-10-12 Sam Steingold <sds@gnu.org>
12100
12101 * progmodes/compile.el (compilation-next-error-function): Fix the
12102 timestamps if the buffer has been visited before.
12103 (compilation-mode-font-lock-keywords): Do not prepend "^ *" to
12104 non-anchored patterns, like the perl one (bug#3928).
12105
12106 2009-10-12 Glenn Morris <rgm@gnu.org>
12107
12108 * net/tramp-smb.el (tramp-smb-do-file-attributes-with-stat):
12109 Let-bind `size'.
12110
12111 2009-10-12 Juanma Barranquero <lekktu@gmail.com>
12112
12113 * proced.el (proced-unload-function): New function.
12114
12115 * bs.el (bs-mode): Set `revert-buffer-function' to `bs-refresh'.
12116 (bs-refresh): Add IGNORED arg for `revert-buffer' compatibility.
12117 Doc fix.
12118
12119 * menu-bar.el (menu-bar-file-menu): Fix format of `separator-exit' item.
12120
12121 2009-10-11 Juri Linkov <juri@jurta.org>
12122
12123 * files-x.el (read-file-local-variable-value):
12124 Provide default value only for bound variables (bug#4664).
12125
12126 2009-10-11 Michael Albinus <michael.albinus@gmx.de>
12127
12128 * net/tramp.el (tramp-local-host-p): Function shall return nil for
12129 connection methods like smb.
12130
12131 * net/tramp-cache.el (tramp-flush-connection-property): The hash
12132 can be empty.
12133
12134 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
12135 (tramp-smb-file-name-handler-alist): Add handlers for
12136 `add-name-to-file', `make-symbolic-link'.
12137 (tramp-smb-handle-add-name-to-file)
12138 (tramp-smb-do-file-attributes-with-stat)
12139 (tramp-smb-handle-make-symbolic-link)
12140 (tramp-smb-get-cifs-capabilities): New defuns.
12141 (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
12142 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
12143 (tramp-smb-handle-file-local-copy)
12144 (tramp-smb-handle-make-directory-internal)
12145 (tramp-smb-handle-rename-file, tramp-smb-handle-write-region):
12146 The file name syntax depends on cifs capabilities.
12147 (tramp-smb-handle-file-attributes):
12148 Call `tramp-smb-do-file-attributes-with-stat' if possible.
12149 (tramp-smb-handle-insert-directory): Use posix attributes if possible.
12150 (tramp-smb-handle-set-file-modes): It is applicable for posix only.
12151
12152 2009-10-11 Chong Yidong <cyd@stupidchicken.com>
12153
12154 * emacs-lisp/eieio.el: Avoid requiring cl at runtime.
12155 (eieio-defclass): Apply deftype handler and setf-method properties
12156 directly.
12157 (eieio-add-new-slot): Avoid union function from cl library.
12158 (eieio--typep): New function.
12159 (eieio-perform-slot-validation): Use it.
12160
12161 2009-10-10 Karl Fogel <kfogel@red-bean.com>
12162
12163 * bookmark.el (bookmark-yank-word, bookmark-insert-current-bookmark):
12164 Update documentation to refer to the variables documented in r1.135.
12165 (Bug#4188)
12166
12167 2009-10-10 Karl Fogel <kfogel@red-bean.com>
12168
12169 * bookmark.el (Info-suffix-list): Remove this unused variable.
12170 (bookmark-current-point): Remove this obsolete variable.
12171 (bookmark-set, bookmark-rename, bookmark-send-edited-annotation):
12172 Adjust for removal of bookmark-current-point.
12173
12174 (bookmarks-already-loaded, bookmark-current-buffer)
12175 (bookmark-yank-point): Document. (Bug#4188)
12176
12177 2009-10-10 Glenn Morris <rgm@gnu.org>
12178
12179 * frame.el (frame-height): Doc fix.
12180
12181 * calendar/calendar.el (calendar-split-width-threshold): New option.
12182 (calendar-basic-setup): Use calendar-split-width-threshold.
12183
12184 2009-10-10 Sascha Wilde <wilde@sha-bang.de>
12185
12186 * cedet/ede/proj-shared.el (ede-proj-makefile-target-name):
12187 Use .la for Automake.
12188
12189 2009-10-09 Chong Yidong <cyd@stupidchicken.com>
12190
12191 * cedet/ede/pconf.el (ede-proj-configure-synchronize):
12192 Use "autoreconf -i". Suggested by Andreas Schwab.
12193
12194 2009-10-09 Juanma Barranquero <lekktu@gmail.com>
12195
12196 * international/mule-cmds.el (ucs-names): Exclude new "Enclosed
12197 Ideographic Supplement" range (U+1F200..U+1F2FF).
12198
12199 2009-10-09 Karl Fogel <kfogel@red-bean.com>
12200
12201 * bookmark.el (bookmark-bmenu-rename): Don't call bookmark-bmenu-list,
12202 since the list will have been rebuilt anyway. (Bug#4349)
12203
12204 2009-10-09 Karl Fogel <kfogel@red-bean.com>
12205
12206 * bookmark.el (bookmark-delete): Don't let batch arg prevent saving.
12207 (bookmark-bmenu-execute-deletions): Don't save here, as
12208 bookmark-delete will now do so if necessary.
12209 Suggested by Thierry Volpiatto <thierry.volpiatto {_AT_} gmail.com>.
12210 (Bug#4348)
12211
12212 2009-10-09 Glenn Morris <rgm@gnu.org>
12213
12214 * mail/emacsbug.el (report-emacs-bug): Also print `features'.
12215
12216 2009-10-09 Karl Fogel <kfogel@red-bean.com>
12217
12218 * bookmark.el (bookmark-jump): Add new `display-func' parameter.
12219 (bookmark-jump-other-window): Just invoke bookmark-jump with new
12220 argument now, so the two function's behaviors will match. (Bug#3645)
12221
12222 2009-10-08 Chong Yidong <cyd@stupidchicken.com>
12223
12224 * cedet/ede/proj.el (project-make-dist, project-compile-project):
12225 Fix filename test.
12226 (ede-proj-dist-makefile): Use expand-file-name instead of concat
12227 to expand file names.
12228
12229 2009-10-08 Michael Albinus <michael.albinus@gmx.de>
12230
12231 * net/tramp.el (tramp-file-name-real-user, tramp-file-name-domain)
12232 (tramp-file-name-real-host, tramp-file-name-port):
12233 Apply `save-match-data'.
12234
12235 * net/tramp-smb.el (tramp-smb-handle-copy-directory): Handle the
12236 case both directories are remote.
12237 (tramp-smb-handle-expand-file-name): Implement "~" expansion.
12238 (tramp-smb-maybe-open-connection): Flush the cache only if necessary.
12239
12240 2009-10-08 Chong Yidong <cyd@stupidchicken.com>
12241
12242 * cedet/ede/proj-obj.el (ede-gcc-linker): New var.
12243 (ede-proj-target-makefile-objectcode): Use it.
12244
12245 * cedet/ede/source.el (ede-want-any-source-files-p)
12246 (ede-want-any-auxiliary-files-p, ede-want-any-files-p):
12247 Return search result. This error was introduced while merging.
12248
12249 2009-10-07 Juanma Barranquero <lekktu@gmail.com>
12250
12251 * makefile.w32-in (WINS_UPDATES): Fix typo in previous change.
12252
12253 2009-10-07 Glenn Morris <rgm@gnu.org>
12254
12255 * emacs-lisp/autoload.el (batch-update-autoloads): Remove useless use
12256 of concat.
12257
12258 2009-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
12259
12260 * files-x.el (read-file-local-variable): Include some
12261 non-user-variables in the completion table (bug#4664).
12262
12263 2009-10-07 Michael Albinus <michael.albinus@gmx.de>
12264
12265 * net/tramp-cache.el (tramp-flush-connection-property): Add trace
12266 message.
12267
12268 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
12269 (tramp-smb-file-name-handler-alist): Add handler for
12270 `copy-directory', `expand-file-name', `set-file-modes'.
12271 (tramp-smb-handle-copy-directory)
12272 (tramp-smb-handle-expand-file-name)
12273 (tramp-smb-handle-set-file-modes): New defuns.
12274 (tramp-smb-handle-copy-file): Handle KEEP-DATE.
12275 (tramp-smb-handle-file-attributes): Simplify check for retrieving
12276 entry.
12277 (tramp-smb-handle-insert-directory): Don't flush the cache.
12278 (tramp-smb-maybe-open-connection): Check for samba client and
12279 server versions.
12280
12281 2009-10-07 Eli Zaretskii <eliz@gnu.org>
12282
12283 * emacs-lisp/autoload.el (batch-update-autoloads): Fix last change
12284 to not error out of search for "^lisp=" fails.
12285
12286 2009-10-07 Juanma Barranquero <lekktu@gmail.com>
12287
12288 * makefile.w32-in (WINS_UPDATES): New macro.
12289 (custom-deps, finder-data, autoloads): Use it.
12290
12291 2009-10-07 Glenn Morris <rgm@gnu.org>
12292
12293 * Makefile.in (autoloads): Revert previous change.
12294 * emacs-lisp/autoload.el (batch-update-autoloads): Rather than having
12295 the list of preloaded files passed on the command-line, get
12296 it from src/Makefile.
12297
12298 * calendar/calendar.el (calendar-basic-setup): In the wide frame case,
12299 show the original buffer rather than a random one.
12300
12301 2009-10-07 Markus Rost <rost@math.uni-bielefeld.de>
12302
12303 * help.el (describe-no-warranty): Place point in a slightly better
12304 position in the GPLv3 text.
12305
12306 2009-10-06 Sam Steingold <sds@gnu.org>
12307
12308 * net/tramp-compat.el (tramp-compat-process-running-p): Check that
12309 the comm attribute is present before calling regexp-quote.
12310
12311 2009-10-06 Juanma Barranquero <lekktu@gmail.com>
12312
12313 * play/animate.el (animate-string): For good effect, make sure
12314 `indent-tabs-mode' and `show-trailing-whitespace' are nil.
12315
12316 * play/animate.el (animate-sequence, animate-birthday-present):
12317 * misc.el (butterfly): Don't set `indent-tabs-mode'.
12318
12319 2009-10-06 Glenn Morris <rgm@gnu.org>
12320
12321 * emacs-lisp/byte-run.el (define-obsolete-face-alias): Doc fix.
12322
12323 * emacs-lisp/autoload.el (autoload-excludes): New variable.
12324 (autoload-generate-file-autoloads): Skip files in autoload-excludes.
12325 (batch-update-autoloads): Process a string value of autoload-excludes,
12326 set during the build process.
12327 * Makefile.in (autoloads): Skip preloaded files. (Bug#4446)
12328
12329 * net/tramp.el (tramp-handle-start-file-process): Move tramp-error call
12330 inside with-parsed... macro so that `v' is defined.
12331
12332 * progmodes/f90.el (f90-end-of-block, f90-beginning-of-block):
12333 * progmodes/fortran.el (fortran-end-of-block)
12334 (fortran-beginning-of-block):
12335 Also push mark in the macro case.
12336
12337 * emerge.el (emerge-show-file-name):
12338 * calc/calc.el (calc-quit):
12339 * calc/calc-misc.el (calc-big-or-small):
12340 * calc/calc-graph.el (calc-graph-view):
12341 * calc/calc-ext.el (calc-reset):
12342 * calendar/calendar.el (calendar-basic-setup):
12343 Use window-full-height-p.
12344
12345 * mail/rmailedit.el (rmail-cease-edit): If there is a Content-Type
12346 header we don't understand, don't insert another. (Bug#4624)
12347 If changing mime charset, insert the new one in the right place.
12348
12349 2009-10-06 Matthew Junker <matthew.junker@sbcglobal.net> (tiny change)
12350
12351 * calendar/cal-tex.el (cal-tex-cursor-month-landscape)
12352 (cal-tex-cursor-month): Correctly increment the end date for diary and
12353 holiday listing. (Bug#4626)
12354
12355 2009-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
12356
12357 * help-fns.el (describe-function-1): Don't burp if the function is not
12358 a symbol.
12359
12360 2009-10-05 Juanma Barranquero <lekktu@gmail.com>
12361
12362 * emacs-lisp/chart.el (chart-face-pixmap-list, chart-new-buffer, chart)
12363 (chart-axis-range, chart-axis-names, chart-sequece, chart-bar)
12364 (chart-draw, chart-axis-draw, chart-sort, chart-sort-matchlist)
12365 (chart-draw-line, chart-bar-quickie): Fix typos in docstrings.
12366
12367 * emacs-lisp/eieio.el (generic-p, eieiomt-next, eieio-generic-form)
12368 (eieio-default-superclass): Reflow docstrings.
12369 (this, class-option-assoc, defclass, eieio-class-un-autoload)
12370 (eieio-unbind-method-implementations, defmethod)
12371 (eieio-validate-slot-value, eieio-validate-class-slot-value)
12372 (oref-default, eieio-oref-default, eieio-oset, eieio-oset-default)
12373 (with-slots, eieio-add-new-slot, object-assoc, object-remove-from-list)
12374 (eieio-slot-originating-class-p, eieio-slot-name-index)
12375 (eieio-pre-method-execution-hooks, eieio-initarg-to-attribute)
12376 (constructor, initialize-instance, no-next-method, object-print)
12377 (object-write, eieio-override-prin1, eieio-edebug-prin1-to-string):
12378 Fix typos in docstrings.
12379 (eieio-defclass, eieio-perform-slot-validation-for-default, defgeneric)
12380 (child-of-class-p, object-slots, slot-boundp, slot-exists-p)
12381 (next-method-p): Doc fixes.
12382 (eieio-add-new-slot, call-next-method, eieiomt-add, change-class):
12383 Fix typos in error messages.
12384 (eieio-defmethod): Fix typo in description of generic method.
12385
12386 * emacs-lisp/eieio-base.el (eieio-instance-inheritor, slot-unbound)
12387 (eieio-persistent-save-interactive, slot-missing):
12388 Fix typos in docstrings.
12389 (eieio-instance-inheritor-slot-boundp): Doc fix.
12390
12391 * emacs-lisp/eieio-comp.el (byte-compile-file-form-defmethod)
12392 (byte-compile-defmethod-param-convert): Fix typos in docstrings.
12393
12394 * emacs-lisp/eieio-custom.el (eieio-done-customizing)
12395 (eieio-custom-object-apply-reset):
12396 Fix typos in docstrings and error messages.
12397
12398 * emacs-lisp/eieio-datadebug.el (data-debug-show):
12399 Fix typo in docstring.
12400
12401 * emacs-lisp/eieio-opt.el (top): Fix typo in error message.
12402 (eieio-browse-tree): Doc fix.
12403 (eieio-all-generic-functions, eieio-class-speedbar): Reflow docstrings.
12404 (eieio-help-mode-augmentation-maybee, eieio-class-speedbar-make-map):
12405 Fix typos in docstrings.
12406
12407 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-file-button): Doc fix.
12408 (eieio-speedbar-key-map, eieio-speedbar-create-engine)
12409 (eieio-speedbar-buttons, eieio-speedbar, eieio-speedbar-object-children)
12410 (eieio-speedbar-make-tag-line, eieio-speedbar-object-expand):
12411 Reflow docstrings.
12412
12413 2009-10-05 Dan Nicolaescu <dann@ics.uci.edu>
12414
12415 * vc-hg.el (log-view-vc-backend): Declare for compiler.
12416 (vc-hg-outgoing-mode, vc-hg-incoming-mode):
12417 Set log-view-vc-backend so that diff can work.
12418
12419 * log-view.el (log-view-diff): Use vc-diff-internal instead of
12420 vc-version-diff.
12421 (vc-diff-internal): Autoload this instead of vc-version-diff.
12422
12423 2009-10-05 Eli Zaretskii <eliz@gnu.org>
12424
12425 * simple.el (eval-expression): Doc fix.
12426
12427 * progmodes/cwarn.el (cwarn-mode): Doc fix.
12428
12429 2009-10-05 Michael Albinus <michael.albinus@gmx.de>
12430
12431 * files.el (directory-files-no-dot-files-regexp): New defconst.
12432 (delete-directory): Use it.
12433 (copy-directory): Use it. Remove parameter PRESERVE-UID-GID.
12434
12435 * net/tramp.el (tramp-verbose): Fix docstring.
12436 (tramp-methods): Add recursive option to `tramp-copy-args'.
12437 Add `tramp-copy-recursive'. Valid for "rcp", "scp", "scp1", "scp2",
12438 "scp1_old", "scp2_old", "rsync", "rsyncc".
12439 (tramp-default-method): Check also for `auth-source-user-or-password'.
12440 (tramp-file-name-handler-alist, tramp-file-name-for-operation):
12441 Add handler for `copy-directory'.
12442 (tramp-handle-copy-directory): New defun.
12443 (tramp-do-copy-or-rename-file-out-of-band): Handle directory case.
12444 (tramp-handle-start-file-process): Raise an error when PROGRAM is nil.
12445 Optimize sent command.
12446
12447 2009-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
12448
12449 * calendar/diary-lib.el (diary-show-all-entries): Re-fit the calendar
12450 window if necessary.
12451
12452 * calendar/calendar.el (calendar-basic-setup): Don't call
12453 switch-to-buffer in a dedicated window.
12454
12455 2009-10-05 Karl Fogel <kfogel@red-bean.com>
12456
12457 * bookmark.el (bookmark-handle-bookmark): If bookmark has no file,
12458 don't do anything related to relocating, just return nil.
12459 (bookmark-error-no-filename): New error.
12460 (bookmark-default-handler): Signal `bookmark-error-no-filename' if
12461 bookmark has no file. Don't even attempt to handle things that
12462 are not files; the whole point of custom handlers is to keep that
12463 knowledge elsewhere anyway. Tighten some comments.
12464 (bookmark-file-or-variation-thereof): Remove now-unused function.
12465 (bookmark-location): Doc string fix.
12466 (Bug#4250)
12467
12468 2009-10-04 Karl Fogel <kfogel@red-bean.com>
12469
12470 * bookmark.el (bookmark-handle-bookmark): When relocating a bookmark,
12471 don't use a file dialog, because they usually don't know how to read
12472 a directory target from the user. (Bug#4230)
12473 Also, make sure the prompt can display directories as well as files.
12474
12475 2009-10-04 Karl Fogel <kfogel@red-bean.com>
12476
12477 * bookmark.el (bookmark-set, bookmark-buffer-name):
12478 Improve doc strings. (Bug#1193)
12479
12480 2009-10-04 Karl Fogel <kfogel@red-bean.com>
12481
12482 * bookmark.el (bookmark-get-bookmark, bookmark-get-bookmark-record)
12483 (bookmark-set-name, bookmark-prop-get, bookmark-prop-set)
12484 (bookmark-get-annotation, bookmark-set-annotation)
12485 (bookmark-get-filename, bookmark-set-filename, bookmark-get-position)
12486 (bookmark-set-position, bookmark-get-front-context-string)
12487 (bookmark-set-front-context-string, bookmark-get-rear-context-string)
12488 (bookmark-set-rear-context-string, bookmark-location, bookmark-jump)
12489 (bookmark-jump-other-window, bookmark-handle-bookmark)
12490 (bookmark-relocate, bookmark-insert-location, bookmark-rename)
12491 (bookmark-insert, bookmark-delete, bookmark-time-to-save-p)
12492 (bookmark-edit-annotation-mode, bookmark-edit-annotation):
12493 Improve doc strings to say whether bookmark can be a string or
12494 a record or both, and make other consistency and clarity fixes.
12495 (bookmark-get-handler, bookmark--jump-via, bookmark-write-file)
12496 (bookmark-default-annotation-text, bookmark-yank-word)
12497 (bookmark-maybe-load-default-file, bookmark-maybe-sort-alist)
12498 (bookmark-import-new-list, bookmark-maybe-rename)
12499 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
12500 (bookmark-bmenu-bookmark): Give these doc strings.
12501 (bookmark-bmenu-check-position): Give this a doc string, but also
12502 add a FIXME comment about how the function may be pointless.
12503 (bookmark-default-handler): Rework doc string and change a
12504 parameter name, to clarify that this takes a bookmark record
12505 not a bookmark name.
12506 (bookmark-set): Change a parameter name to indicate its meaning,
12507 and improve the doc string a bit.
12508 (Bug#4188)
12509
12510 2009-10-04 Karl Fogel <kfogel@red-bean.com>
12511
12512 * bookmark.el (bookmark-alist): Document the new `handler' element
12513 in the param alist.
12514 (bookmark-make-record-function): Adjust documentation for above.
12515 (Bug#4193)
12516
12517 2009-10-04 Karl Fogel <kfogel@red-bean.com>
12518
12519 * info.el (Info-bookmark-make-record): Document this function.
12520 (Info-bookmark-jump): Document with a doc string, not just a comment.
12521 (Bug#4203)
12522
12523 2009-10-04 Chong Yidong <cyd@stupidchicken.com>
12524
12525 * cedet/semantic.el (semantic-new-buffer-setup-functions): New option.
12526 (semantic-new-buffer-fcn): Call parser setup functions here.
12527 (semantic-mode): Don't call parser setup functions here, it's done
12528 in semantic-new-buffer-fcn now.
12529 (semantic-mode): Parse all existing buffers when enabled.
12530
12531 * cedet/srecode/compile.el (srecode-compile-file):
12532 Call semantic-new-buffer-fcn if the buffer has not been parsed.
12533
12534 2009-10-04 Chong Yidong <cyd@stupidchicken.com>
12535
12536 * cedet/ede/pmake.el (ede-pmake-insert-variable-once): Delete.
12537
12538 * cedet/ede/proj-comp.el: Don't require ede/pmake at toplevel.
12539 (proj-comp-insert-variable-once): New macro, renamed from
12540 ede-pmake-insert-variable-once in ede/pmake.edl.
12541 (ede-proj-makefile-insert-variables): Use it.
12542
12543 2009-10-04 Michael Albinus <michael.albinus@gmx.de>
12544
12545 * files.el (copy-directory): New defun.
12546
12547 * dired-aux.el (dired-copy-file-recursive): Use it.
12548
12549 2009-10-04 Juanma Barranquero <lekktu@gmail.com>
12550
12551 * cedet/ede/makefile-edit.el (makefile-beginning-of-command)
12552 (makefile-end-of-command):
12553 * cedet/srecode/srt-mode.el (semantic-beginning-of-context)
12554 (semantic-end-of-context): Fix previous change. Doc fixes.
12555
12556 2009-10-04 Juanma Barranquero <lekktu@gmail.com>
12557
12558 * files-x.el (modify-dir-local-variable)
12559 (copy-dir-locals-to-file-locals-prop-line):
12560 * cedet/ede/makefile-edit.el (makefile-beginning-of-command)
12561 (makefile-end-of-command):
12562 * cedet/semantic/lex.el (semantic-lex-token):
12563 * cedet/semantic/analyze/fcn.el
12564 (semantic-analyze-dereference-metatype-1):
12565 * cedet/semantic/bovine/c.el (semantic-lex-cpp-define)
12566 (semantic-lex-cpp-undef):
12567 * cedet/semantic/wisent/wisent.el (wisent-skip-block):
12568 * cedet/srecode/srt-mode.el (semantic-beginning-of-context)
12569 (semantic-end-of-context): Fix typos in docstrings.
12570
12571 * recentf.el (recentf-unload-function): New function.
12572
12573 2009-10-04 Chong Yidong <cyd@stupidchicken.com>
12574
12575 * cedet/ede.el (ede-project-placeholder-cache-file):
12576 * cedet/semantic/db-file.el (semanticdb-default-save-directory):
12577 * cedet/srecode/map.el (srecode-map-save-file):
12578 Use locate-user-emacs-file. Suggested by Juanma Barranquero.
12579
12580 2009-10-04 Glenn Morris <rgm@gnu.org>
12581
12582 * window.el (window-full-height-p): Add doc string.
12583
12584 2009-10-04 Martin Rudalics <rudalics@gmx.at>
12585
12586 * window.el (window-full-height-p): New function. (Bug#4543)
12587
12588 2009-10-03 Chong Yidong <cyd@stupidchicken.com>
12589
12590 * cedet/srecode/insert.el: Require srecode/args.
12591
12592 * cedet/srecode/args.el: Require srecode/dictionary instead of
12593 srecode/insert.
12594
12595 * cedet/srecode/srt-mode.el (srecode-template-mode): Doc fix.
12596
12597 * files.el (auto-mode-alist): Add .srt and Project.ede.
12598
12599 * cedet/semantic.el (semantic-mode):
12600 Handle srecode-template-mode-hook as well.
12601 (semantic-mode): Use js-mode-hook for Javascript hook.
12602
12603 * cedet/srecode/template.el: Remove hook variable.
12604
12605 * cedet/ede/proj-comp.el: Require ede/pmake when compiling.
12606
12607 * cedet/ede.el (ede-target-forms-menu): Don't enable if no
12608 projects exist.
12609 (ede-project-placeholder-cache-file): Default to a file in
12610 user-emacs-directory.
12611
12612 * cedet/srecode/map.el (srecode-map-base-template-dir): Look for
12613 templates in data-directory.
12614 (srecode-map-save-file): Default to a file in user-emacs-directory.
12615
12616 * cedet/ede/srecode.el (ede-srecode-setup): Use default templates
12617 directory.
12618
12619 2009-09-30 Eric Ludlam <zappo@gnu.org>
12620
12621 * cedet/semantic/util-modes.el (semantic-highlight-func-mode):
12622 Doc fix.
12623
12624 * cedet/ede/proj-comp.el (ede-proj-makefile-insert-variables):
12625 Only insert each variable once.
12626
12627 * cedet/ede/pmake.el (ede-pmake-insert-variable-once): New macro.
12628 (ede-pmake-insert-variable-shared): Use it.
12629
12630 * cedet/ede/cpp-root.el (ede-preprocessor-map): Do not deref table
12631 for lexical table iff table is nil.
12632
12633 2009-10-03 Dan Nicolaescu <dann@ics.uci.edu>
12634
12635 * vc.el: Remove commented out code.
12636 (vc-derived-from-dir-mode): Remove, unused.
12637 (vc-version-diff, vc-diff): Consistently pass t to vc-deduce-fileset.
12638
12639 2009-10-03 Michael Albinus <michael.albinus@gmx.de>
12640
12641 * net/tramp-ftp.el (tramp-ftp-file-name-handler):
12642 Disable `file-name-handler-alist' when loading 'ange-ftp. Otherwise,
12643 there could be recursive loading when `default-directory' is a
12644 remote file name. (Bug#4614)
12645
12646 2009-10-03 Glenn Morris <rgm@gnu.org>
12647
12648 * calendar/calendar.el (calendar-basic-setup): Handle the case where
12649 the frame is wide.
12650 (calendar-generate-window): Test for shrinkability rather than width.
12651
12652 * cedet/semantic/db-find.el (data-debug-insert-tag-list): Comment out
12653 declaration, currently false.
12654
12655 * mail/rmail.el (rmail-generate-viewer-buffer): Be more careful about
12656 reusing existing buffers, in case we happen to visit two files with the
12657 same basename. (Bug#4593)
12658
12659 2009-10-02 Eli Zaretskii <eliz@gnu.org>
12660
12661 * makefile.w32-in (update-subdirs-CMD): Add cedet to $(WINS_SUBDIR).
12662 (WINS_CEDET_SUBDIRS): List of subdirectories of cedet.
12663 (bootstrap-clean-CMD, bootstrap-clean-SH): Remove *.elc files in
12664 subdirs of cedet as well.
12665 (AUTOGENEL): Add loaddefs.el files in cedet subdirectories.
12666
12667 2009-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
12668
12669 * emacs-lisp/eldoc.el (eldoc-get-fnsym-args-string):
12670 Obey advertised-signature-table.
12671
12672 * help-fns.el (help-function-arglist): Don't check
12673 advertised-signature-table.
12674 (describe-function-1): Do it here instead so it also applies to subrs.
12675
12676 2009-10-02 Michael Albinus <michael.albinus@gmx.de>
12677
12678 * simple.el (start-file-process): Say in the doc-string, that file
12679 handlers might not support pty association, if PROGRAM is nil.
12680
12681 * net/ange-ftp.el (ange-ftp-generate-passwd-key): Check, whether
12682 HOST and USER are strings. They are nil, when there are
12683 incomplete entries in ~/.netrc, for example.
12684 (ange-ftp-delete-directory): Implement RECURSIVE case. Change to
12685 root directory ("device busy" error otherwise).
12686
12687 * net/tramp-smb.el (tramp-smb-handle-make-directory-internal):
12688 Flush file properties of created directory.
12689
12690 2009-10-02 Eli Zaretskii <eliz@gnu.org>
12691
12692 * makefile.w32-in (WINS_BASIC): Remove cedet.
12693 (WINS_CEDET): Add cedet.
12694 (update-subdirs-SH): Use $(WINS_SUBDIR), not $(WINS).
12695
12696 2009-10-02 Kevin Ryde <user42@zip.com.au>
12697
12698 * net/browse-url.el (browse-url): Pass any symbol in
12699 browse-url-browser-function to `apply', since if you've mistakenly put
12700 an unbound symbol then the error is clearer. (Bug#4531)
12701
12702 2009-10-02 Juanma Barranquero <lekktu@gmail.com>
12703
12704 * allout.el (allout-init, allout-back-to-current-heading)
12705 (allout-beginning-of-current-entry, allout-ascend-to-depth)
12706 (allout-ascend, allout-up-current-level, allout-end-of-level)
12707 (allout-previous-visible-heading, allout-forward-current-level)
12708 (allout-backward-current-level, allout-show-children):
12709 * apropos.el (apropos-describe-plist):
12710 * bookmark.el (bookmark-maybe-historicize-string, bookmark-bmenu-list):
12711 * comint.el (comint-strip-ctrl-m, comint-goto-process-mark):
12712 * completion.el (add-completion, add-permanent-completion):
12713 * descr-text.el (describe-text-category, describe-char):
12714 * desktop.el (desktop-lazy-abort):
12715 * dired-x.el (dired-omit-expunge, dired-x-bind-find-file):
12716 * dired.el (dired-build-subdir-alist):
12717 * ediff.el (ediff-version):
12718 * elide-head.el (elide-head, elide-head-show):
12719 * emerge.el (emerge-version):
12720 * env.el (getenv):
12721 * face-remap.el (variable-pitch-mode):
12722 * faces.el (describe-face):
12723 * ffap.el (ffap-next-url, find-file-at-point, ffap-at-mouse)
12724 (dired-at-point):
12725 * files.el (find-file-existing, auto-save-mode):
12726 * font-lock.el (font-lock-fontify-buffer):
12727 * help-fns.el (describe-function, describe-variable)
12728 (describe-syntax, describe-categories):
12729 * help.el (view-lossage, describe-bindings, describe-key)
12730 (describe-mode):
12731 * hexl.el (hexl-current-address):
12732 * hi-lock.el (hi-lock-mode, hi-lock-find-patterns):
12733 * info.el (Info-goto-emacs-key-command-node):
12734 * log-edit.el (log-edit-insert-cvs-template)
12735 (log-edit-insert-cvs-rcstemplate):
12736 * menu-bar.el (menu-bar-mode):
12737 * mouse.el (mouse-appearance-menu):
12738 * newcomment.el (comment-indent-new-line):
12739 * pgg.el (pgg-save-coding-system, pgg-encrypt-region)
12740 (pgg-encrypt-symmetric-region, pgg-encrypt-symmetric)
12741 (pgg-encrypt, pgg-decrypt-region, pgg-decrypt)
12742 (pgg-sign-region, pgg-sign, pgg-verify-region, pgg-verify):
12743 * recentf.el (recentf-mode):
12744 * savehist.el (savehist-mode, savehist-save):
12745 * shadowfile.el (shadow-copy-files):
12746 * simple.el (kill-ring-save, next-line, previous-line)
12747 (normal-erase-is-backspace-mode):
12748 * strokes.el (strokes-update-window-configuration)
12749 (strokes-load-user-strokes, strokes-prompt-user-save-strokes)
12750 (strokes-xpm-for-stroke):
12751 * time.el (emacs-uptime, emacs-init-time):
12752 * tutorial.el (tutorial--describe-nonstandard-key)
12753 (tutorial--detailed-help):
12754 * type-break.el (type-break-mode)
12755 (type-break-mode-line-message-mode, type-break-query-mode)
12756 (type-break-guesstimate-keystroke-threshold):
12757 * vc.el (vc-version-diff, vc-diff, vc-root-diff):
12758 * version.el (emacs-version):
12759 * vt-control.el (vt-keypad-on, vt-keypad-off, vt-numlock):
12760 * winner.el (winner-mode):
12761 * calendar/timeclock.el (timeclock-in, timeclock-out)
12762 (timeclock-status-string, timeclock-change)
12763 (timeclock-workday-remaining-string)
12764 (timeclock-workday-elapsed-string)
12765 (timeclock-when-to-leave-string):
12766 * calendar/todo-mode.el (todo-add-category):
12767 * emacs-lisp/advice.el (ad-enable-regexp, ad-disable-regexp):
12768 * emacs-lisp/autoload.el (update-file-autoloads):
12769 * emacs-lisp/checkdoc.el (checkdoc-current-buffer)
12770 (checkdoc-start, checkdoc-continue, checkdoc-rogue-spaces)
12771 (checkdoc-message-text, checkdoc-defun):
12772 * emacs-lisp/debug.el (debugger-list-functions):
12773 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
12774 * emacs-lisp/eieio-opt.el (eieio-describe-class)
12775 (eieio-describe-generic):
12776 * emacs-lisp/lisp-mnt.el (lm-synopsis):
12777 * emacs-lisp/shadow.el (list-load-path-shadows):
12778 * emulation/cua-base.el (cua-mode):
12779 * emulation/edt.el (edt-set-scroll-margins):
12780 * emulation/tpu-edt.el (tpu-toggle-newline-and-indent)
12781 (tpu-toggle-regexp, tpu-toggle-search-direction)
12782 (tpu-toggle-rectangle, tpu-toggle-control-keys):
12783 * emulation/tpu-extras.el (tpu-set-scroll-margins):
12784 * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
12785 (viper-set-parsing-style-toggling-macro)
12786 (viper-set-emacs-state-searchstyle-macros):
12787 * emulation/viper.el (viper-set-hooks):
12788 * eshell/esh-mode.el (eshell-truncate-buffer):
12789 * international/mule-cmds.el (prefer-coding-system)
12790 (describe-input-method, describe-language-environment):
12791 * international/mule-diag.el (list-character-sets)
12792 (describe-character-set, describe-coding-system)
12793 (describe-fontset, list-fontsets, list-input-methods):
12794 * mail/sendmail.el (mail-signature):
12795 * net/ange-ftp.el (ange-ftp-copy-file):
12796 * net/browse-url.el (browse-url):
12797 * net/eudc.el (eudc-set-server, eudc-get-attribute-list):
12798 * net/quickurl.el (quickurl-add-url):
12799 * net/rcirc.el (names, topic):
12800 * net/xesam.el (xesam-mode):
12801 * play/5x5.el (5x5-new-game):
12802 * play/yow.el (apropos-zippy):
12803 * progmodes/ada-mode.el (ada-mode-version):
12804 * progmodes/f90.el (f90-beginning-of-subprogram, f90-end-of-subprogram)
12805 (f90-end-of-block)
12806 (f90-beginning-of-block):
12807 * progmodes/fortran.el (fortran-end-of-block)
12808 (fortran-beginning-of-block):
12809 * progmodes/js.el (js-syntactic-context, js-gc, js-eval):
12810 * progmodes/python.el (python-describe-symbol, python-shell):
12811 * term/ns-win.el (ns-print-buffer):
12812 * textmodes/bibtex.el (bibtex-end-of-entry, bibtex-url):
12813 * textmodes/flyspell.el (flyspell-mode-on):
12814 * textmodes/page-ext.el (set-page-delimiter, pages-directory)
12815 (pages-directory-for-addresses):
12816 * textmodes/table.el (table-recognize-cell)
12817 (table-query-dimension, table-generate-source)
12818 (table-insert-sequence, table--warn-incompatibility):
12819 * textmodes/tex-mode.el (tex-validate-buffer):
12820 * textmodes/texinfmt.el (texinfmt-version)
12821 (texinfo-format-buffer):
12822 Use `called-interactively-p' instead of `interactive-p'.
12823
12824 2009-10-02 Juanma Barranquero <lekktu@gmail.com>
12825
12826 * image-mode.el (image-toggle-display):
12827 * emacs-lisp/elp.el (elp-instrument-function):
12828 * emacs-lisp/advice.el (ad-make-advised-definition):
12829 * emacs-lisp/easy-mmode.el (define-minor-mode):
12830 * net/browse-url.el (browse-url-maybe-new-window):
12831 * progmodes/sh-script.el (sh-learn-buffer-indent):
12832 Pass new argument 'any to `called-interactively-p'.
12833
12834 2009-10-01 Juanma Barranquero <lekktu@gmail.com>
12835
12836 * international/uni-bidi.el:
12837 * international/uni-category.el:
12838 * international/uni-combining.el:
12839 * international/uni-comment.el:
12840 * international/uni-decimal.el:
12841 * international/uni-decomposition.el:
12842 * international/uni-digit.el:
12843 * international/uni-lowercase.el:
12844 * international/uni-mirrored.el:
12845 * international/uni-name.el:
12846 * international/uni-numeric.el:
12847 * international/uni-old-name.el:
12848 * international/uni-titlecase.el:
12849 * international/uni-uppercase.el:
12850 Regenerate from Unicode 5.2.0 data.
12851
12852 2009-10-01 Glenn Morris <rgm@gnu.org>
12853
12854 * Makefile.in (ELCFILES): Regenerate.
12855
12856 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
12857
12858 * subr.el (interactive-p): Mark obsolete.
12859 (called-interactively-p): Make the optional-ness of `kind' obsolete.
12860 * emacs-lisp/bytecomp.el (byte-compile-fdefinition): Make it obey
12861 advertised-signature-table for subroutines as well.
12862
12863 * emacs-lisp/byte-run.el (advertised-signature-table): New var.
12864 (set-advertised-calling-convention): New function.
12865 (make-obsolete, define-obsolete-function-alias)
12866 (make-obsolete-variable, define-obsolete-variable-alias):
12867 Make the optional-ness of `when' obsolete.
12868 (define-obsolete-face-alias): Make `when' non-optional.
12869 * help-fns.el (help-function-arglist):
12870 * emacs-lisp/bytecomp.el (byte-compile-fdefinition):
12871 Use advertised-signature-table.
12872
12873 2009-10-01 Michael Albinus <michael.albinus@gmx.de>
12874
12875 * files.el (delete-directory): New defun. The original function
12876 in fileio.c has been renamed to `delete-directory-internal'.
12877
12878 * dired.el (dired-delete-file): Call `delete-directory' with
12879 RECURSIVE parameter.
12880
12881 * net/ange-ftp.el (ange-ftp-delete-directory): Add optional
12882 parameter RECURSIVE. Implementation is missing.
12883
12884 * net/tramp.el (tramp-handle-make-directory): Flush upper
12885 directory's file properties.
12886 (tramp-handle-delete-directory): Handle optional parameter RECURSIVE.
12887 (tramp-handle-dired-recursive-delete-directory): Flush directory
12888 properties after the remove command only.
12889
12890 * net/tramp-fish.el (tramp-fish-handle-delete-directory):
12891 Handle optional parameter RECURSIVE.
12892
12893 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory):
12894 Handle optional parameter RECURSIVE.
12895
12896 * net/tramp-smb.el (tramp-smb-errors): Add error message for
12897 connection timeout.
12898 (tramp-smb-handle-delete-directory): Handle optional parameter
12899 RECURSIVE.
12900
12901 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
12902
12903 * emacs-lisp/bytecomp.el (byte-compile-defmacro-declaration): New fun.
12904 (byte-compile-file-form-defmumble, byte-compile-defmacro): Use it.
12905 (byte-compile-defmacro): Use backquotes.
12906
12907 * files.el (cd-absolute): Don't abbreviate-file-name (bug#4599).
12908
12909 * vc-dispatcher.el (vc-resynch-window): Don't revert a buffer which
12910 has no associated file.
12911 (vc-resynch-buffer): Use vc-dir-buffers.
12912
12913 2009-10-01 Glenn Morris <rgm@gnu.org>
12914
12915 * emacs-lisp/chart.el (chart-zap-chars, chart-bar-quickie)
12916 (chart-file-count):
12917 * emacs-lisp/eieio-comp.el (byte-compile-defmethod-param-convert):
12918 * emacs-lisp/eieio-datadebug.el (data-debug-insert-object-button):
12919 * emacs-lisp/eieio-opt.el (eieio-describe-class):
12920 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-create):
12921 * emacs-lisp/eieio.el (defclass, eieio-defclass-autoload)
12922 (eieio-copy-parents-into-subclass, make-instance, class-children)
12923 (eieio-generic-form):
12924 * cedet/cedet-files.el (cedet-directory-name-to-file-name):
12925 * cedet/cedet-idutils.el (cedet-idutils-search)
12926 (cedet-idutils-expand-filename, cedet-idutils-support-for-directory)
12927 (cedet-idutils-version-check):
12928 * cedet/cedet.el (cedet-version):
12929 * cedet/data-debug.el (data-debug-insert-overlay-button)
12930 (data-debug-insert-overlay-list-button)
12931 (data-debug-insert-buffer-button)
12932 (data-debug-insert-buffer-list-button)
12933 (data-debug-insert-process-button, data-debug-insert-ring-button)
12934 (data-debug-insert-widget, data-debug-insert-stuff-list-button)
12935 (data-debug-insert-stuff-vector-button)
12936 (data-debug-insert-symbol-button, data-debug-insert-string)
12937 (data-debug-insert-number, data-debug-insert-lambda-expression)
12938 (data-debug-insert-nil, data-debug-insert-simple-thing)
12939 (data-debug-insert-custom, data-debug-edebug-expr):
12940 * cedet/ede.el (ede-auto-add-method, ede-project-class-files)
12941 (global-ede-mode-map, ede-new, ede-debug-target)
12942 (ede-customize-current-target, ede-buffers, ede-map-buffers, ede-set):
12943 * cedet/semantic.el (semantic-minimum-working-buffer-size)
12944 (semantic-fetch-tags, semantic-submode-list)
12945 (semantic-default-submodes):
12946 * cedet/ede/source.el (ede-source-match):
12947 * cedet/ede/project-am.el (project-am-type-alist, project-add-file)
12948 (project-am-package-info):
12949 * cedet/ede/proj.el (ede-proj-target, project-new-target):
12950 * cedet/ede/proj-elisp.el (ede-proj-tweak-autoconf):
12951 * cedet/ede/proj-comp.el (ede-current-build-list):
12952 * cedet/ede/makefile-edit.el (makefile-move-to-macro):
12953 * cedet/ede/files.el (ede-toplevel-project-or-nil):
12954 * cedet/ede/cpp-root.el (initialize-instance):
12955 * cedet/ede/autoconf-edit.el (autoconf-find-last-macro)
12956 (autoconf-parameter-strip, autoconf-insert-new-macro):
12957 * cedet/semantic/wisent.el (wisent-lex-eoi):
12958 * cedet/semantic/util-modes.el (global-semantic-show-parser-state-mode)
12959 (semantic-show-parser-state-mode):
12960 * cedet/semantic/texi.el (semantic-texi-environment-regexp):
12961 * cedet/semantic/tag.el (semantic-tag-new-variable)
12962 (semantic-tag-class, semantic-tag-new-variable, semantic-tag-copy)
12963 (semantic--tag-deep-copy-attributes, semantic--tag-deep-copy-value)
12964 (semantic--tag-deep-copy-tag-list)
12965 (semantic-tag-components-with-overlays-default):
12966 * cedet/semantic/symref.el (semantic-symref-find-text):
12967 * cedet/semantic/senator.el (senator-yank-tag)
12968 (senator-transpose-tags-up):
12969 * cedet/semantic/scope.el (semantic-analyze-scoped-tags-default)
12970 (semantic-analyze-scoped-inherited-tags, semantic-scope-find):
12971 * cedet/semantic/sb.el (semantic-sb-autoexpand-length):
12972 * cedet/semantic/lex.el (semantic-lex-comment-regex)
12973 (semantic-lex-maximum-depth, define-lex, semantic-lex-token)
12974 (semantic-lex-unterminated-syntax-protection, define-lex-analyzer):
12975 * cedet/semantic/lex-spp.el
12976 (semantic-lex-spp-dynamic-macro-symbol-obarray-stack)
12977 (semantic-lex-spp-symbol, semantic-lex-spp-one-token-to-txt):
12978 * cedet/semantic/idle.el
12979 (semantic-idle-summary-current-symbol-info-brutish)
12980 (semantic-idle-summary-current-symbol-info-default):
12981 * cedet/semantic/grammar.el (semantic-grammar-recreate-package)
12982 (semantic--grammar-macro-compl-dict):
12983 * cedet/semantic/grammar-wy.el (semantic-grammar-wy--parse-table):
12984 * cedet/semantic/format.el (semantic-format-tag-custom-list)
12985 (semantic-format-tag-canonical-name-default):
12986 * cedet/semantic/find.el (semantic-find-tag-by-overlay-in-region)
12987 (semantic-find-tags-for-completion)
12988 (semantic-find-tags-by-scope-protection-default)
12989 (semantic-deep-find-tags-for-completion):
12990 * cedet/semantic/edit.el
12991 (semantic-edits-incremental-reparse-failed-hook)
12992 (semantic-edits-verbose-flag, semantic-edits-assert-valid-region)
12993 (semantic-edits-splice-remove, semantic-edits-splice-replace):
12994 * cedet/semantic/doc.el (semantic-documentation-comment-preceeding-tag):
12995 * cedet/semantic/dep.el (semantic-dependency-include-path):
12996 * cedet/semantic/db.el (semanticdb-default-find-index-class)
12997 (semanticdb-match-any-mode, semanticdb-with-match-any-mode)
12998 (semanticdb-project-roots):
12999 * cedet/semantic/db-find.el (semanticdb-implied-include-tags)
13000 (semanticdb-find-adebug-insert-scanned-tag-cons)
13001 (semanticdb-find-log-buffer-name, semanticdb-find-result-mapc)
13002 (semanticdb-brute-deep-find-tags-for-completion):
13003 * cedet/semantic/db-ebrowse.el (semanticdb-ebrowse-add-tree-to-table):
13004 * cedet/semantic/ctxt.el (semantic-beginning-of-context-default)
13005 (semantic-end-of-context-default)
13006 (semantic-ctxt-current-function-default)
13007 (semantic-ctxt-scoped-types-default):
13008 * cedet/semantic/complete.el (semantic-complete-read-tag-engine)
13009 (semantic-complete-inline-tag-engine)
13010 (semantic-complete-inline-custom-type)
13011 (semantic-complete-read-tag-analyzer):
13012 * cedet/semantic/chart.el (semantic-chart-tags-by-class)
13013 (semantic-chart-database-size):
13014 * cedet/semantic/analyze.el (semantic-analyze-current-symbol)
13015 (semantic-analyze-current-context):
13016 * cedet/semantic/symref/list.el (semantic-symref)
13017 (semantic-symref-hide-buffer, semantic-symref-symbol):
13018 * cedet/semantic/symref/grep.el (semantic-symref-grep-use-template):
13019 * cedet/semantic/symref/filter.el (semantic-symref-hits-in-region):
13020 * cedet/semantic/bovine/el.el (semantic-elisp-form-to-doc-string):
13021 * cedet/semantic/bovine/c.el (semantic-lex-c-preprocessor-symbol-map)
13022 (semantic-c-parse-token-hack-depth, semantic-c--template-name-1)
13023 (semantic-c-dereference-template):
13024 * cedet/semantic/analyze/refs.el (semantic--analyze-refs-full-lookup)
13025 (semantic--analyze-refs-full-lookup-with-parents)
13026 (semantic--analyze-refs-full-lookup-simple):
13027 * cedet/semantic/analyze/complete.el
13028 (semantic-analyze-possible-completions):
13029 * cedet/srecode/table.el (srecode-mode-table-new):
13030 * cedet/srecode/srt.el (srecode-read-variable-name):
13031 * cedet/srecode/srt-mode.el (srecode-macro-help, srecode-in-macro-p):
13032 * cedet/srecode/semantic.el (srecode-semantic-handle-:tag)
13033 (srecode-semantic-handle-:tagtype, srecode-semantic-insert-tag):
13034 * cedet/srecode/map.el (srecode-current-map):
13035 * cedet/srecode/insert.el (srecode-insert)
13036 (srecode-insert-variable-secondname-handler, srecode-insert-method)
13037 (srecode-template-inserter-point-override)
13038 (srecode-insert-include-lookup):
13039 * cedet/srecode/getset.el (srecode-auto-choose-class):
13040 * cedet/srecode/extract.el (srecode-inserter-extract):
13041 * cedet/srecode/document.el
13042 (srecode-document-autocomment-return-last-alist)
13043 (srecode-document-autocomment-param-type-alist)
13044 (srecode-document-insert-function-comment)
13045 (srecode-document-insert-variable-one-line-comment)
13046 (srecode-document-function-name-comment):
13047 * cedet/srecode/dictionary.el (srecode-create-dictionary)
13048 (srecode-compound-toString):
13049 * cedet/srecode/compile.el (srecode-flush-active-templates):
13050 * cedet/srecode/args.el (srecode-semantic-handle-:blank):
13051 Doc/message fixes.
13052
13053 * vc-cvs.el (vc-cvs-parse-entry): Be more careful with the
13054 match-data. (Bug#4555).
13055
13056 * cedet/semantic/bovine/gcc.el
13057 (semantic-c-reset-preprocessor-symbol-map): Fix declaration.
13058 (semantic-gcc-get-include-paths, semantic-gcc-setup-data): Doc fixes.
13059
13060 * emacs-lisp/check-declare.el (check-declare-scan): Read the declaration
13061 rather than parsing it as a regexp. This relaxes the layout
13062 requirements and makes errors easier to detect.
13063 (check-declare-verify): Check file is regular.
13064 (check-declare-directory): Doc fix.
13065 * subr.el (declare-function): Doc fix.
13066
13067 * ibuffer.el (ibuffer-format-qualifier):
13068 * isearch.el (hi-lock-regexp-okay):
13069 * calc/calc.el (math-zerop):
13070 * mail/uce.el (rmail-msgbeg, rmail-msgend):
13071 * term/w32-win.el (setup-default-fontset, set-fontset-font):
13072 Remove unused declarations.
13073
13074 2009-10-01 Juanma Barranquero <lekktu@gmail.com>
13075
13076 * cedet/semantic/wisent/javat-wy.el
13077 (wisent-java-tags-wy--keyword-table): Use \000 instead of literal ^@.
13078
13079 2009-09-30 Juanma Barranquero <lekktu@gmail.com>
13080
13081 * cedet/srecode/expandproto.el: Fix provide statement.
13082
13083 2009-09-30 Eric Ludlam <zappo@gnu.org>
13084
13085 * emacs-lisp/eieio.el (boolean-p): Delete.
13086
13087 2009-09-30 Sascha Wilde <wilde@sha-bang.de>
13088
13089 * cedet/ede/srecode.el: Fix provide statement.
13090
13091 2009-09-30 Glenn Morris <rgm@gnu.org>
13092
13093 * cedet/ede/proj.el (ede-proj-target-makefile-miscelaneous):
13094 * cedet/ede/proj-aux.el (ede-aux-source):
13095 * cedet/ede/proj-misc.el (ede-proj-target-makefile-miscelaneous)
13096 (ede-misc-source):
13097 * cedet/semantic/mru-bookmark.el (semantic-mrub-completing-read)
13098 (semantic-mrub-switch-tags): Fix doc typos.
13099
13100 * cedet/semantic/db-global.el (data-debug-new-buffer)
13101 (data-debug-insert-thing): Remove unneeded declarations (one broken).
13102 (semanticdb-enable-gnu-global-databases): Fix prompt typo.
13103
13104 * cedet/semantic/analyze/fcn.el (semantic-scope-find): Fix declaration.
13105
13106 * cedet/semantic/bovine/gcc.el (semantic-gcc-setup): Replace runtime
13107 use of CL function `remove-if-not'.
13108
13109 * emacs-lisp/authors.el (authors-ignored-files): Add "js2-mode.el".
13110
13111 * emacs-lisp/elint.el (elint-init-form): Report declarations where the
13112 filename is not a string.
13113
13114 2009-09-29 Chong Yidong <cyd@stupidchicken.com>
13115
13116 * files.el (safe-local-eval-forms): Fix typo.
13117
13118 2009-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
13119
13120 * vc-hooks.el (vc-dir-buffers): New var.
13121 (vc-state-refresh): New function.
13122 (vc-state): Use it.
13123 (vc-after-save): Always ask the backend to recompute the new state.
13124 Always call vc-dir if necessary, using vc-dir-buffers.
13125 * vc-dir.el (vc-dir-prepare-status-buffer, vc-dir-resynch-file):
13126 Use vc-dir-buffers.
13127 (vc-dir-mode): Use vc-dir-buffers rather than after-save-hook.
13128 (vc-dir-prepare-status-buffer, vc-dir-update)
13129 (vc-dir-resync-directory-files, vc-dir-resynch-file, vc-dir-mode):
13130 Don't call expand-file-name on default-directory.
13131
13132 2009-09-29 Juanma Barranquero <lekktu@gmail.com>
13133
13134 * speedbar.el (speedbar-item-delete):
13135 * calc/calc-prog.el (calc-kbd-if):
13136 * language/hanja-util.el (hanja-init-load): Fix typos in messages.
13137
13138 * epa.el (epa-key-list-mode-map):
13139 * hi-lock.el (hi-lock-menu): Fix typos in menus.
13140
13141 * progmodes/hideshow.el (hs-allow-nesting): Reflow docstring.
13142 (hs-show-hook): Fix typo in docstring.
13143
13144 2009-09-29 Glenn Morris <rgm@gnu.org>
13145
13146 * cedet/semantic/symref/idutils.el:
13147 * cedet/semantic/symref/list.el: Relicense under GPLv3+.
13148
13149 * cedet/ede/srecode.el (srecode-resolve-arguments): Fix declaration.
13150
13151 * cedet/semantic/complete.el (semantic-displayor-focus-abstract-child-p):
13152 * cedet/semantic/tag-file.el (semanticdb-table-child-p):
13153 * cedet/srecode/compile.el (srecode-template-inserter-newline-child-p):
13154 Mark declarations not understood by check-declare.
13155
13156 * emacs-lisp/check-declare.el (check-declare-locate): Remove pointless
13157 file-name-nondirectory call preventing location of cedet files.
13158 (check-declare-verify): Use literal search rather than re-search.
13159 Add basic defmethod and defclass, and define-overloadable-function.
13160
13161 * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
13162 Use tramp-compat-file-attributes rather than nonexistent
13163 tramp-compat-handle-file-attributes.
13164
13165 * Makefile.in (lisptagsfiles4): New.
13166 (AUTOGENEL): Add cedet loaddefs files.
13167 (TAGS, TAGS-LISP): Use $lisptagsfiles4.
13168 (update-elclist, compile-always, backup-compiled-files)
13169 (bootstrap-clean): Add yet another directory level.
13170 (update-elclist): Use LC_COLLATE rather than COLLATE.
13171 (ELCFILES): Update, via `make update-elclist'.
13172
13173 2009-09-29 Juanma Barranquero <lekktu@gmail.com>
13174
13175 * makefile.w32-in (WINS_CEDET, WINS_BASIC, WINS_SUBDIR): New macros.
13176 (WINS_ALMOST): Set from WINS_BASIC and WINS_CEDET.
13177 (update-subdirs-CMD): Use WINS_SUBDIR, not WINS_ALMOST.
13178
13179 2009-09-28 Andreas Schwab <schwab@linux-m68k.org>
13180
13181 * Makefile.in (lisptagsfiles3): Define.
13182 (TAGS, TAGS-LISP): Use it.
13183 (update-elclist): Add third directory level to look for elc files.
13184 (compile-always): Likewise.
13185 (backup-compiled-files): Likewise.
13186 (bootstrap-clean): Likewise.
13187 (ELCFILES): Update.
13188
13189 2009-09-28 Chong Yidong <cyd@stupidchicken.com>
13190
13191 * Makefile.in (ELCFILES): Add CEDET files.
13192
13193 2009-09-28 Eric Ludlam <zappo@gnu.org>
13194
13195 CEDET (development tools) package merged.
13196
13197 * cedet/*.el:
13198 * cedet/ede/*.el:
13199 * cedet/semantic/*.el:
13200 * cedet/srecode/*.el: New files.
13201
13202 2009-09-28 Michael Albinus <michael.albinus@gmx.de>
13203
13204 * Makefile.in (ELCFILES): Add net/tramp-imap.elc.
13205
13206 * net/tramp.el (top): Require tramp-imap.
13207
13208 * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
13209 Use `tramp-compat-handle-file-attributes'.
13210
13211 2009-09-28 Teodor Zlatanov <tzz@lifelogs.com>
13212
13213 * net/tramp-imap.el: New package.
13214
13215 2009-09-28 Eric Ludlam <zappo@gnu.org>
13216
13217 * emacs-lisp/chart.el:
13218 * emacs-lisp/eieio-base.el:
13219 * emacs-lisp/eieio-comp.el:
13220 * emacs-lisp/eieio-custom.el:
13221 * emacs-lisp/eieio-datadebug.el:
13222 * emacs-lisp/eieio-opt.el:
13223 * emacs-lisp/eieio-speedbar.el:
13224 * emacs-lisp/eieio.el: New files.
13225
13226 * cedet/cedet-cscope.el:
13227 * cedet/cedet-files.el:
13228 * cedet/cedet-global.el:
13229 * cedet/cedet-idutils.el:
13230 * cedet/data-debug.el:
13231 * cedet/inversion.el:
13232 * cedet/mode-local.el:
13233 * cedet/pulse.el: New files.
13234
13235 2009-09-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
13236
13237 * whitespace.el (whitespace-trailing-regexp)
13238 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
13239 Fix doc string.
13240
13241 2009-09-27 Chong Yidong <cyd@stupidchicken.com>
13242
13243 * menu-bar.el: Remove menu-bar-ediff-misc-menu from the Tools
13244 menu.
13245
13246 * ediff-hook.el: Move menu-bar-ediff-misc-menu into
13247 menu-bar-ediff-menu.
13248
13249 * emacs-lisp/lisp-mode.el: Add doc-string-elt property to
13250 define-overloadable-function.
13251
13252 * progmodes/autoconf.el: Provide autoconf as well, so that this
13253 file can be `require'd.
13254
13255 * emacs-lisp/cl-macs.el (deftype): Add to cl-loaddefs.
13256
13257 * emacs-lisp/autoload.el (generated-autoload-feature)
13258 (generated-autoload-load-name): New vars.
13259 (autoload-rubric, autoload-generate-file-autoloads): Use them.
13260 (make-autoload): Recognize define-overloadable-function and
13261 defclass forms (for EIEIO).
13262
13263 * Makefile.in (update-subdirs): Exclude cedet directory.
13264
13265 2009-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
13266
13267 * term/ns-win.el: Don't set the region face background. (Bug#4381)
13268
13269 * faces.el: Default light-background background for region face to
13270 ns_selection_color under NS.
13271
13272 2009-09-27 Teodor Zlatanov <tzz@lifelogs.com>
13273
13274 * net/imap-hash.el: New library, see NEWS.
13275
13276 * Makefile.in (ELCFILES): Add imap-hash.el.
13277
13278 2009-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
13279
13280 * help.el (help-for-help-internal): Don't purecopy the text (bug#4560).
13281 * isearch.el (isearch-help-for-help-internal): Purecopy the second arg.
13282 * help-macro.el (make-help-screen): Avoid using an ambiguous function
13283 definition where the docstring could be taken for the return value.
13284
13285 2009-09-26 Glenn Morris <rgm@gnu.org>
13286
13287 * mail/rmailmm.el (rmail-mime-show-images, rmail-mime-bulk-handler):
13288 Add option to only show images below a certain size.
13289 (rmail-mime-multipart-handler): Remove unnecessary save-match-data and
13290 save-excursion calls.
13291
13292 2009-09-26 Eli Zaretskii <eliz@gnu.org>
13293
13294 * makefile.w32-in (WINS_ALMOST): Add cedet (with its
13295 subdirectories) and eieio.
13296
13297 2009-09-26 Alan Mackenzie <acm@muc.de>
13298
13299 * progmodes/cc-engine.el (c-beginning-of-statement-1): Correct
13300 buggy bracketing. (Bug#4289)
13301
13302 * progmodes/cc-langs.el (c-nonlabel-token-key): Allow quoted
13303 character constants (as case labels). (Bug#4289)
13304
13305 2009-09-25 Juri Linkov <juri@jurta.org>
13306
13307 * files.el (safe-local-eval-forms): Allow time-stamp in
13308 before-save-hook (Bug#4554).
13309
13310 2009-09-25 Drew Adams <drew.adams@oracle.com>
13311
13312 * menu-bar.el (list-buffers-directory): Doc fix.
13313
13314 2009-09-25 Stefan Monnier <monnier@iro.umontreal.ca>
13315
13316 * log-edit.el (log-edit-changelog-entries): Avoid inf-loops.
13317 Try and avoid copying twice the same paragraph.
13318 (log-edit-changelog-paragraph, log-edit-changelog-subparagraph):
13319 Remove save-excursion.
13320 (log-edit-changelog-entry): Do it here instead.
13321
13322 2009-09-25 Juanma Barranquero <lekktu@gmail.com>
13323
13324 * bs.el (bs--get-file-name): Use `list-buffers-directory'
13325 when available, instead of hardcoding mode names. Doc fix.
13326
13327 * menu-bar.el (list-buffers-directory): Add docstring.
13328 Make automatically buffer-local.
13329
13330 * dired.el (dired-mode):
13331 * files.el (cd-absolute):
13332 * pcvs.el (cvs-temp-buffer):
13333 * pcvs-util.el (cvs-get-buffer-create):
13334 * shell.el (shell-mode):
13335 * vc-dir.el (vc-dir-mode):
13336 Don't make `list-buffers-directory' buffer local.
13337
13338 2009-09-25 Devon Sean McCullough <emacs-hacker@Jovi.Net>
13339
13340 * comint.el (comint-exec, comint-run, make-comint):
13341 Doc fixes (Bug#4542).
13342
13343 2009-09-25 Glenn Morris <rgm@gnu.org>
13344
13345 * mail/rmailmm.el (rmail-mime): New custom group.
13346 Move all defcustoms in this file into this group.
13347 (rmail-mime-media-type-handlers-alist): Revert previous change.
13348 (rmail-mime-show-images): New option.
13349 (rmail-mime-total-number-of-bulk-attachments): Remove variable and all
13350 references to it, since it wasn't actually used for anything.
13351 (rmail-mime-insert-image): New function.
13352 (rmail-mime-image): Use rmail-mime-insert-image.
13353 (rmail-mime-bulk-handler): Remove optional `image' argument, instead
13354 obey the value of `rmail-mime-show-images' option. Print the size of
13355 attachments.
13356
13357 2009-09-25 David Engster <deng@randomsample.de>
13358
13359 * progmodes/hideshow.el (hs-show-block): Run `hs-show-hook'. (Bug#4548)
13360
13361 2009-09-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
13362
13363 * whitespace.el: Does not highlight trailing spaces While point is
13364 at end of line. Does not highligt spaces at beginning of buffer
13365 while point is at beginning of buffer. Does not highlight spaces
13366 at end of buffer while point is at end of buffer. (Bug#4177)
13367 New version 12.0.
13368 (whitespace-display-mappings): Adjust initialization.
13369 (whitespace-point, whitespace-font-lock-refontify): New vars.
13370 (whitespace-color-on, whitespace-color-off): Adjust code.
13371 (whitespace-trailing-regexp, whitespace-empty-at-bob-regexp)
13372 (whitespace-empty-at-eob-regexp, whitespace-space-regexp)
13373 (whitespace-tab-regexp, whitespace-post-command-hook): New funs.
13374
13375 2009-09-24 Chong Yidong <cyd@stupidchicken.com>
13376
13377 * nxml/nxml-mode.el: Alias xml-mode to nxml-mode.
13378
13379 * textmodes/sgml-mode.el: Remove xml-mode alias.
13380
13381 * files.el (auto-mode-alist, conf-mode-maybe)
13382 (magic-fallback-mode-alist): Revert 2009-09-18 and 2009-09-21 changes.
13383
13384 2009-09-24 Alan Mackenzie <acm@muc.de>
13385
13386 * progmodes/cc-cmds.el (c-scan-conditionals): A new function like
13387 c-forward-conditionals, but it doesn't move point and doesn't set
13388 the mark.
13389 (c-up-conditional, c-up-conditional-with-else, c-down-conditional)
13390 (c-down-conditional-with-else, c-backward-conditional)
13391 (c-forward-conditional): Refactor to use c-scan-conditionals.
13392
13393 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
13394
13395 * help-fns.el (help-downcase-arguments): New option, defaulting to nil.
13396 (help-default-arg-highlight): Remove.
13397 (help-highlight-arg): New function.
13398 (help-do-arg-highlight): Use it.
13399 Suggested by Drew Adams <drew.adams@oracle.com>. (Bug#4510, bug#4520)
13400
13401 2009-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
13402
13403 * term.el (term-set-scroll-region, term-handle-ansi-escape):
13404 Undo last change, which didn't fix the problem and introduced others.
13405
13406 2009-09-24 Nick Roberts <nickrob@snap.net.nz>
13407
13408 * progmodes/gdb-mi.el: Don't require speedbar.
13409 (gdb-jsonify-buffer): Handle case where "=" is part of value string.
13410
13411 2009-09-24 Glenn Morris <rgm@gnu.org>
13412
13413 * calendar/diary-lib.el (diary-fancy-display): Always run the hook.
13414
13415 * term/ns-win.el (ns-reg-to-script): Define for compiler.
13416
13417 * mail/rmailmm.el (rmail-mime-multipart-handler): Accept the case where
13418 there is no newline after the final mime boundary. (Bug#4539)
13419 Move markers on insertion so that any buttons inserted don't end up in
13420 the next part of a multipart message.
13421 (rmail-mime-media-type-handlers-alist): Doc fix. Add image handler.
13422 (rmail-mime-bulk-handler): Optionally handle images.
13423 (rmail-mime-image): New button action.
13424 (rmail-mime-image-handler): New function.
13425 (rmail-mime-mode): New mode.
13426 (rmail-mime): Doc fix. Use rmail-mime-mode (for font-lock).
13427
13428 2009-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
13429
13430 * minibuffer.el (minibuffer-force-complete): Cycle the list, rather
13431 than just dropping elements from it (bug#4504).
13432
13433 * term.el (term-set-scroll-region): Don't move cursor any more.
13434 (term-handle-ansi-escape): Call term-goto here instead.
13435 Suggested by Ivan Kanis <apple@kanis.eu>.
13436
13437 * term.el: Require CL.
13438 (term-ansi-reset): New function.
13439 (term-mode, term-emulate-terminal, term-handle-colors-array): Use it.
13440 (term-handle-colors-array): Simplify.
13441
13442 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
13443
13444 * allout.el (allout-overlay-interior-modification-handler)
13445 (allout-obtain-passphrase):
13446 * epa-file.el (epa-file-write-region):
13447 * ps-print.el (ps-begin-job):
13448 * vc-hooks.el (vc-toggle-read-only):
13449 * vc-rcs.el (vc-rcs-rollback):
13450 * vc-sccs.el (vc-sccs-rollback):
13451 * vc.el (vc-deduce-fileset, vc-next-action, vc-register-with)
13452 (vc-version-diff, vc-revert, vc-rollback):
13453 * wdired.el (wdired-check-kill-buffer):
13454 * emacs-lisp/authors.el (authors):
13455 * net/socks.el (socks-open-connection):
13456 * net/zeroconf.el (zeroconf-service-add-hook):
13457 * obsolete/vc-mcvs.el (vc-mcvs-register):
13458 * progmodes/gdb-mi.el (def-gdb-thread-buffer-gud-command)
13459 (gdb-select-frame):
13460 * progmodes/grep.el (lgrep, rgrep):
13461 * progmodes/idlw-help.el (idlwave-help-check-locations)
13462 (idlwave-help-html-link, idlwave-help-assistant-open-link):
13463 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
13464 * textmodes/reftex-toc.el (reftex-toc-promote-prepare)
13465 (reftex-toc-rename-label): Fix typos in error messages.
13466
13467 * dired-aux.el (dired-do-shell-command): Reflow docstring.
13468 (dired-copy-how-to-fn): Doc fix.
13469 (dired-files-attributes, dired-read-shell-command):
13470 Fix typos in docstrings.
13471
13472 * dired-x.el (dired-enable-local-variables, dired-filename-at-point)
13473 (dired-x-find-file-other-window): Reflow docstrings.
13474 (dired-omit-marker-char, dired-read-shell-command)
13475 (dired-x-submit-report): Fix typos in docstrings.
13476
13477 * shell.el (shell-mode-hook):
13478 * view.el (View-scroll-line-forward):
13479 * progmodes/inf-lisp.el (inferior-lisp-mode-hook):
13480 Fix typos in docstrings.
13481
13482 * net/dig.el (dig-invoke): Fix typo in docstring.
13483 (query-dig): Reflow docstring.
13484
13485 * progmodes/idlwave.el (idlwave-create-user-catalog-file)
13486 (idlwave-quoted, idlwave-rinfo-max-source-lines): Doc fixes.
13487 (idlwave-abbrev-move, idlwave-auto-routine-info-updates)
13488 (idlwave-begin-block-reg, idlwave-begin-unit-reg)
13489 (idlwave-beginning-of-subprogram, idlwave-block-jump-out)
13490 (idlwave-block-match-regexp, idlwave-calculate-paren-indent)
13491 (idlwave-check-abbrev, idlwave-class-file-or-buffer)
13492 (idlwave-class-found-in, idlwave-complete, idlwave-complete-in-buffer)
13493 (idlwave-completion-map, idlwave-current-indent)
13494 (idlwave-custom-ampersand-surround, idlwave-customize)
13495 (idlwave-default-font-lock-items, idlwave-default-insert-timestamp)
13496 (idlwave-define-abbrev, idlwave-determine-class-special)
13497 (idlwave-do-action, idlwave-doc-header, idlwave-doc-modification)
13498 (idlwave-end-block-reg, idlwave-end-of-statement)
13499 (idlwave-end-of-statement0, idlwave-end-of-subprogram)
13500 (idlwave-end-unit-reg, idlwave-entry-find-keyword)
13501 (idlwave-explicit-class-listed, idlwave-file-header)
13502 (idlwave-fill-paragraph, idlwave-find-class-definition)
13503 (idlwave-fix-keywords, idlwave-hang-indent-regexp, idlwave-hard-tab)
13504 (idlwave-idlwave_routine_info-compiled, idlwave-in-comment)
13505 (idlwave-in-quote, idlwave-indent-action-table)
13506 (idlwave-indent-expand-table, idlwave-indent-line)
13507 (idlwave-indent-subprogram, idlwave-indent-to-open-paren)
13508 (idlwave-is-comment-line, idlwave-is-comment-or-empty-line)
13509 (idlwave-is-continuation-line, idlwave-is-pointer-dereference)
13510 (idlwave-kill-autoloaded-buffers, idlwave-lib-p, idlwave-look-at)
13511 (idlwave-make-tags, idlwave-mode, idlwave-mode-abbrev-table)
13512 (idlwave-mouse-active-rinfo, idlwave-newline, idlwave-no-change-comment)
13513 (idlwave-outlawed-buffers, idlwave-popup-select)
13514 (idlwave-previous-statement, idlwave-rescan-catalog-directories)
13515 (idlwave-routine-entry-compare, idlwave-routine-info.pro)
13516 (idlwave-scan-all-buffers-for-routine-info, idlwave-scan-class-info)
13517 (idlwave-shell-automatic-start, idlwave-shell-explicit-file-name)
13518 (idlwave-show-begin, idlwave-split-line, idlwave-split-link-target)
13519 (idlwave-statement-type, idlwave-struct-skip)
13520 (idlwave-substitute-link-target, idlwave-toggle-comment-region)
13521 (idlwave-update-current-buffer-info, idlwave-use-library-catalogs)
13522 (idlwave-what-module-find-class): Fix typos in docstrings.
13523 (idlwave-all-method-classes, idlwave-calc-hanging-indent)
13524 (idlwave-calculate-cont-indent, idlwave-expand-equal)
13525 (idlwave-find-module, idlwave-find-structure-definition)
13526 (idlwave-init-rinfo-when-idle-after, idlwave-insert-source-location)
13527 (idlwave-list-load-path-shadows, idlwave-next-statement)
13528 (idlwave-routine-entry-compare-twins, idlwave-routine-info)
13529 (idlwave-routines, idlwave-sintern-rinfo-list, idlwave-statement-match)
13530 (idlwave-template): Reflow docstrings.
13531
13532 * progmodes/idlw-shell.el (idlwave-shell-syntax-error): Doc fix.
13533 (idlwave-shell-batch-command, idlwave-shell-bp-alist)
13534 (idlwave-shell-bp-get, idlwave-shell-bp-overlays)
13535 (idlwave-shell-bp-query, idlwave-shell-break-here, idlwave-shell-buffer)
13536 (idlwave-shell-display-line, idlwave-shell-display-wframe)
13537 (idlwave-shell-electric-debug-mode, idlwave-shell-examine-select)
13538 (idlwave-shell-file-name-chars, idlwave-shell-filter-bp)
13539 (idlwave-shell-goto-frame, idlwave-shell-halt-messages-re)
13540 (idlwave-shell-highlighting-and-faces, idlwave-shell-idl-wframe)
13541 (idlwave-shell-mode-hook, idlwave-shell-mode-line-info)
13542 (idlwave-shell-mode-map, idlwave-shell-module-source-filter)
13543 (idlwave-shell-mouse-help, idlwave-shell-mouse-print)
13544 (idlwave-shell-pc-frame, idlwave-shell-pending-commands)
13545 (idlwave-shell-print, idlwave-shell-quit, idlwave-shell-redisplay)
13546 (idlwave-shell-scan-for-state, idlwave-shell-send-command)
13547 (idlwave-shell-sentinel-hook, idlwave-shell-separate-examine-output)
13548 (idlwave-shell-shell-command, idlwave-shell-sources-alist)
13549 (idlwave-shell-sources-bp, idlwave-shell-sources-filter)
13550 (idlwave-shell-step, idlwave-shell-use-breakpoint-glyph)
13551 (idlwave-toolbar-add-everywhere, idlwave-toolbar-toggle):
13552 Fix typos in docstrings.
13553 (idlwave-shell-bp, idlwave-shell-clear-current-bp)
13554 (idlwave-shell-hide-output, idlwave-shell-mode)
13555 (idlwave-shell-run-region, idlwave-shell-set-bp-in-module):
13556 Reflow docstrings.
13557
13558 * textmodes/bibtex.el (bibtex-sort-entry-class): Fix group name.
13559
13560 2009-09-24 Ivan Kanis <apple@kanis.eu>
13561
13562 * term.el (term-bold-attribute): New var.
13563 (term-handle-colors-array): Use it.
13564
13565 2009-09-23 Nick Roberts <nickrob@snap.net.nz>
13566
13567 * progmodes/gdb-mi.el (gdb-version): New variable.
13568 (gdb-non-stop-handler): Set gdb-version.
13569 (gdb-gud-context-command, gdb-current-context-command, gdb-stopped):
13570 Condition "--thread" option on gdb-version.
13571 (gdb-invalidate-threads): Remove unused argument.
13572
13573 2009-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
13574
13575 * textmodes/flyspell.el (sgml-mode-flyspell-verify): Pass limit args
13576 to looking-back to avoid ridiculous slow down in large files (bug#4511).
13577
13578 2009-09-23 Glenn Morris <rgm@gnu.org>
13579
13580 * mail/rmail.el (rmail-reply): Don't try to add a References header when
13581 replying to mail without References or Message-Id. (Bug#4525)
13582
13583 2009-09-23 Adrian Robert <Adrian.B.Robert@gmail.com>
13584
13585 * term/ns-win.el (ns-reg-to-script): New variable.
13586
13587 2009-09-23 Daiki Ueno <ueno@unixuser.org>
13588
13589 * epg.el (epg-wait-for-status): Preserve existing 'error results.
13590
13591 2009-09-22 Sam Steingold <sds@gnu.org>
13592
13593 * vc-hg.el (vc-hg-print-log): Fix shortlog arg passing.
13594 (vc-hg-outgoing, vc-hg-incoming): Bump okstatus in `vc-hg-command'
13595 to 1 because hg returns status 1 when nothing is found.
13596 Bind `vc-short-log' for the sake of `vc-hg-log-view-mode'.
13597
13598 2009-09-22 Stefan Monnier <monnier@iro.umontreal.ca>
13599
13600 * textmodes/fill.el: Convert to utf-8 encoding.
13601 (fill-french-nobreak-p): Remove redundant » and « inherited from our
13602 pre-Unicode days.
13603
13604 * add-log.el (change-log-fill-forward-paragraph): New function.
13605 (change-log-mode): Use it so fill-region DTRT.
13606 Set fill-indent-according-to-mode here rather than in
13607 change-log-fill-paragraph.
13608 (change-log-fill-paragraph): Remove.
13609
13610 2009-09-22 Juanma Barranquero <lekktu@gmail.com>
13611
13612 * info.el (Info-try-follow-nearest-node): Use the URL extracted by
13613 `Info-get-token', instead of `browse-url-url-at-point'. (Bug#4508)
13614
13615 2009-09-22 Glenn Morris <rgm@gnu.org>
13616
13617 * calendar/calendar.el (calendar-mode-map): Make mouse-1 and 3 clicks on
13618 the scroll-bar scroll the calendar window rather than the buffer.
13619
13620 * calendar/cal-menu.el (cal-menu-scroll-menu): Add a sub-section with
13621 commands that move point (as opposed to scrolling).
13622
13623 * emulation/tpu-edt.el (tpu-copy-keyfile): Fix condition-case handler.
13624
13625 * emacs-lisp/elint.el (elint): New custom group.
13626 (elint-log-buffer): Make it a defcustom.
13627 (elint-scan-preloaded, elint-ignored-warnings)
13628 (elint-directory-skip-re): New options.
13629 (elint-builtin-variables): Doc fix.
13630 (elint-preloaded-env): New variable.
13631 (elint-unknown-builtin-args): Add an entry for encode-time.
13632 (elint-extra-errors): Make it a variable rather than a constant.
13633 (elint-preloaded-skip-re): New constant.
13634 (elint-directory): Skip files matching elint-directory-skip-re.
13635 (elint-features): New variable, local to linted buffers.
13636 (elint-update-env): Initialize elint-features. Possibly add
13637 elint-preloaded-env to the buffer's environment.
13638 (elint-get-top-forms): Bind elint-current-pos, for log messages.
13639 Skip quoted forms.
13640 (elint-init-form): New function, extracted from elint-init-env.
13641 Make non-list forms a warning rather than an error.
13642 Add the mode-map for define-derived-mode. Handle define-minor-mode,
13643 easy-menu-define, put that adds an error-condition, and provide.
13644 When requiring cl, also require cl-macs. Really require cl, to handle
13645 some cl macros. Store required libraries in the list elint-features,
13646 so as not to re-load them. Treat cc-require like require.
13647 (elint-init-env): Call elint-init-form to do the work.
13648 Handle eval-and-compile and such like.
13649 (elint-add-required-env): Do not clear messages.
13650 (elint-special-forms): Add handlers for function, defalias, if, when,
13651 unless, and, or.
13652 (elint-form): Add optional argument to ignore elint-special-forms,
13653 useful to prevent recursive calls from handlers. Doc fix.
13654 Respect elint-ignored-warnings.
13655 (elint-form): Respect elint-ignored-warnings.
13656 (elint-bound-variable, elint-bound-function): New variables.
13657 (elint-unbound-variable): Respect elint-bound-variable.
13658 (elint-get-args): Respect elint-bound-function.
13659 (elint-check-cond-form): Add some simple handling for (f)boundp and
13660 featurep tests.
13661 (elint-check-defalias-form): New handler.
13662 (elint-check-let-form): Make an empty let a warning rather than an
13663 error.
13664 (elint-check-setq-form): Make an empty setq a warning rather than an
13665 error. Respect elint-ignored-warnings.
13666 (elint-check-defvar-form): Accept null doc-strings.
13667 (elint-check-conditional-form): New handler. Does some simple-minded
13668 checking of featurep and (f)boundp tests.
13669 (elint-put-function-args): New function.
13670 (elint-initialize): Use elint-scan-doc-file rather than
13671 elint-find-builtin-variables. Use elint-put-function-args.
13672 Possibly scan preloaded-file-list.
13673 (elint-scan-doc-file): Rename from elint-find-builtin-variables and
13674 extend to handle functions as well.
13675
13676 2009-09-22 Lennart Borgman <lennart.borgman@gmail.com>
13677
13678 * linum.el (linum-delete-overlays, linum-update-window):
13679 Do not modify the right margin. (Bug#3971)
13680
13681 2009-09-21 Chong Yidong <cyd@stupidchicken.com>
13682
13683 * files.el (conf-mode-maybe, magic-fallback-mode-alist): Use
13684 nxml-mode instead of xml-mode.
13685
13686 2009-09-21 Kevin Ryde <user42@zip.com.au>
13687
13688 * net/dig.el: Add "Keywords: comm", as per net-utils.el. (Bug#4501)
13689
13690 2009-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
13691
13692 * net/dig.el (dig-mode): Use define-derived-mode.
13693
13694 2009-09-20 Dan Nicolaescu <dann@ics.uci.edu>
13695
13696 * vc-dispatcher.el (vc-do-command): Return the process object in
13697 the asynchronous case. Use when instead of if. Do not run
13698 vc-exec-after to display a message if not enabled. (Bug#4463)
13699
13700 * vc-git.el (vc-git-dir-extra-headers): Add keymap and mouse-face
13701 properties to the stash strings.
13702 (vc-git-stash-list): Return a list of strings.
13703 (vc-git-stash-get-at-point, vc-git-stash-delete-at-point)
13704 (vc-git-stash-show-at-point): New functions.
13705 (vc-git-stash-map): New keymap.
13706
13707 * register.el (ctl-x-r-map): Define the keys here instead of
13708 using autoload.
13709
13710 2009-09-20 Thierry Volpiatto <thierry.volpiatto@gmail.com> (tiny change)
13711
13712 * bookmark.el (bookmark-write-file): Avoid calling `pp' with large
13713 list, to workaround performance problem (bug#4485).
13714
13715 2009-09-20 Nick Roberts <nickrob@snap.net.nz>
13716
13717 * progmodes/gud.el (gud-sentinel): Revert indavertant change.
13718
13719 2009-09-20 Daiki Ueno <ueno@unixuser.org>
13720
13721 * epa-file.el (epa-file-cache-passphrase-for-symmetric-encryption):
13722 Document that this option is not recommended to use.
13723
13724 2009-09-19 Glenn Morris <rgm@gnu.org>
13725
13726 * calc/calc-graph.el (calc-graph-lookup): Avoid assignment to free
13727 variable `var'.
13728
13729 * calc/calc-alg.el (var):
13730 * calc/calcalg2.el (var): Define for compiler.
13731
13732 2009-09-19 Chong Yidong <cyd@stupidchicken.com>
13733
13734 * emacs-lisp/advice.el (ad-get-argument, ad-set-argument):
13735 Doc fix (Bug#3932).
13736
13737 * subr.el (baud-rate): Remove long-obsolete function (Bug#4372).
13738
13739 * time-stamp.el (time-stamp-month-dd-yyyy)
13740 (time-stamp-dd/mm/yyyy, time-stamp-mon-dd-yyyy)
13741 (time-stamp-dd-mon-yy, time-stamp-yy/mm/dd)
13742 (time-stamp-yyyy/mm/dd, time-stamp-yyyy-mm-dd)
13743 (time-stamp-yymmdd, time-stamp-hh:mm:ss, time-stamp-hhmm):
13744 Remove functions that have been obsolete since 1995 (Bug#4436).
13745
13746 * progmodes/sh-script.el (sh-learn-buffer-indent): Pop to the
13747 indent buffer only if called interactively (Bug#4452).
13748
13749 2009-09-19 Juanma Barranquero <lekktu@gmail.com>
13750 Eli Zaretskii <eliz@gnu.org>
13751
13752 This fixes bug#4197 (merged to bug#865, though not identical).
13753 * server.el (server-auth-dir): Add docstring note about FAT32.
13754 (server-ensure-safe-dir): Accept FAT32 directories as "safe",
13755 but warn against using them.
13756
13757 2009-09-19 Nick Roberts <nickrob@snap.net.nz>
13758
13759 * progmodes/gdb-mi.el (gdb-var-update-handler-1): Include case of
13760 older GDB where there is no has_more field.
13761
13762 2009-09-19 Glenn Morris <rgm@gnu.org>
13763
13764 * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
13765
13766 2009-09-18 Chong Yidong <cyd@stupidchicken.com>
13767
13768 * files.el (auto-mode-alist): Change default for XML files to nXML
13769 mode (Bug#4169).
13770
13771 2009-09-18 Juanma Barranquero <lekktu@gmail.com>
13772
13773 * server.el (server-ensure-safe-dir): Pass 'integer
13774 to `file-attributes', as suggested.
13775
13776 2009-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
13777
13778 * dired-aux.el (dired-query-alist): Remove spurious backslash.
13779 (dired-query): Use read-key.
13780
13781 2009-09-18 Adrian Robert <Adrian.B.Robert@gmail.com>
13782
13783 * cus-start.el (ns-use-qd-smoothing): Remove.
13784
13785 2009-09-18 Glenn Morris <rgm@gnu.org>
13786
13787 * allout.el (top-level): Remove unnecessary progn.
13788
13789 * progmodes/js.el (js-end-of-defun): Remove malformed and unneeded let.
13790
13791 * emacs-lisp/derived.el (define-derived-mode): Fix paren typo in
13792 definition of abbrev table.
13793
13794 * speedbar.el (speedbar-track-mouse):
13795 * net/eudc-bob.el (eudc-bob-pipe-object-to-external-program):
13796 * net/eudc.el (eudc-expand-inline):
13797 * net/newst-backend.el (newsticker--cache-read-feed):
13798 * nxml/nxml-outln.el (nxml-end-of-heading): Fix typos in
13799 condition-case handlers.
13800
13801 2009-09-18 Nick Roberts <nickrob@snap.net.nz>
13802
13803 * progmodes/gdb-mi.el (gdb-frame-address): New variable.
13804 (gdb-var-list): Add an element for has_more field.
13805 (gdb-non-stop-handler): Enable pretty printing for STL containers.
13806 (gdb-var-create-handler, gdb-var-list-children-handler-1)
13807 (gdb-var-update-handler-1): Parse output of dynamic variable
13808 objects (STL containers).
13809 (gdb-var-delete-1): Pass var1 as an explicit second argument.
13810 (gdb-get-field): Delete alias. Use bindat-get-field directly.
13811
13812 * progmodes/gud.el (gud-speedbar-item-info): Adjust for change to
13813 gdb-var-list.
13814 (gud-speedbar-buttons): Make node expandable if expression "has more"
13815 children.
13816
13817 2009-09-17 Juanma Barranquero <lekktu@gmail.com>
13818
13819 * startup.el (emacs-quick-startup): Remove variable and all uses.
13820 (command-line): Set `inhibit-x-resources' instead.
13821 (command-line-1): Use `inhibit-x-resources' instead.
13822
13823 2009-09-17 Chong Yidong <cyd@stupidchicken.com>
13824
13825 * subr.el: Fix last change to avoid using the `unless' macro,
13826 which breaks bootstrapping.
13827
13828 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
13829
13830 * subr.el (push, pop, dolist, dotimes, declare): Don't overwrite CL's
13831 extended definitions, in case we reload subr.el after having
13832 loaded CL.
13833 (eval-next-after-load): Mark as obsolete.
13834
13835 2009-09-17 Juri Linkov <juri@jurta.org>
13836
13837 * menu-bar.el (menu-bar-search-menu, menu-bar-edit-menu)
13838 (menu-bar-options-menu, menu-bar-showhide-fringe-menu)
13839 (menu-bar-showhide-menu, menu-bar-tools-menu)
13840 (menu-bar-describe-menu, menu-bar-help-menu)
13841 (minibuffer-local-completion-map, minibuffer-local-map):
13842 Fix list quoting.
13843
13844 2009-09-17 Glenn Morris <rgm@gnu.org>
13845
13846 * emacs-lisp/bytecomp.el (byte-compile-form): Always check the function
13847 arguments, whether or not it has a handler.
13848
13849 * ansi-color.el (ansi-color-get-face-1): Fix typo in handler.
13850
13851 * simple.el (hard-newline): Give it a doc-string.
13852
13853 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
13854 (lisp-mode-syntax-table): Give them doc-strings.
13855
13856 2009-09-17 Dan Nicolaescu <dann@ics.uci.edu>
13857
13858 * menu-bar.el (menu-bar-file-menu, menu-bar-file-menu)
13859 (menu-bar-i-search-menu, menu-bar-edit-menu, menu-bar-custom-menu)
13860 (menu-bar-options-menu, menu-bar-showhide-menu)
13861 (menu-bar-showhide-fringe-ind-menu, menu-bar-showhide-fringe-menu)
13862 (menu-bar-showhide-scroll-bar-menu, menu-bar-showhide-menu)
13863 (menu-bar-options-menu, menu-bar-line-wrapping-menu)
13864 (menu-bar-options-menu, menu-bar-tools-menu)
13865 (menu-bar-describe-menu, menu-bar-search-documentation-menu)
13866 (menu-bar-help-menu):
13867 (menu-bar-make-mm-toggle, menu-bar-make-toggle): Purecopy the
13868 string arguments.
13869
13870 * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu)
13871 (menu-bar-epatch-menu, menu-bar-ediff-misc-menu): Add purecopy
13872 calls for the menu names and :help.
13873
13874 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
13875
13876 * mouse.el (minor-mode-menu-from-indicator): Pay attention
13877 to :minor-mode-function (bug#4455).
13878
13879 2009-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
13880
13881 * startup.el (command-line): Initialize the window-system after
13882 processing the command-line.
13883
13884 * textmodes/page.el (what-page): Make sure we don't inf-loop if
13885 page-delimiter matches the empty string.
13886
13887 2009-09-16 Glenn Morris <rgm@gnu.org>
13888
13889 * emacs-lisp/bytecomp.el (byte-compile-not-obsolete-vars): Rename from
13890 byte-compile-not-obsolete-var. It's a list now.
13891 (byte-compile-not-obsolete-funcs): New variable.
13892 (byte-compile-warn-obsolete): Don't warn about functions if they are in
13893 byte-compile-not-obsolete-funcs.
13894 (byte-compile-variable-ref, byte-compile-defvar): Update for
13895 byte-compile-not-obsolete-vars name-change and list nature.
13896 (byte-compile-maybe-guarded): Suppress warnings about obsolete functions
13897 and variables behind (f)boundp tests.
13898 * net/tramp-compat.el (byte-compile-not-obsolete-vars): Set if bound.
13899
13900 2009-09-15 Dan Nicolaescu <dann@ics.uci.edu>
13901
13902 * vc-git.el (vc-git-log-view-mode): Undo inadvertent change.
13903
13904 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
13905
13906 * Makefile.in (compile-onefile): Use byte-compile-refresh-preloaded.
13907 * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded):
13908 Don't autoload.
13909
13910 2009-09-15 Stephen Eglen <stephen@gnu.org>
13911
13912 * iswitchb.el (iswitchb-read-buffer): When selecting a match from
13913 the virtual-buffers, use the name of the buffer specified by
13914 find-file-noselect, as the match may be a symlink. (This was a
13915 problem if the target and the symlink had different names.)
13916
13917 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
13918
13919 * custom.el (custom-initialize-default, custom-initialize-set): CSE.
13920
13921 * desktop.el (desktop-path): Check user-emacs-directory.
13922
13923 * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded): New function.
13924
13925 * loadup.el: Use after-load-functions to GC after loading each file.
13926 Remove the explicit GC calls that used to be sprinkled around.
13927
13928 * subr.el (after-load-functions): New hook.
13929 (do-after-load-evaluation): Run it. Use string-match-p to detect
13930 `obsolete' packages, rather than painfully extracting the relevant
13931 directory name.
13932
13933 2009-09-15 Glenn Morris <rgm@gnu.org>
13934
13935 * apropos.el (apropos-documentation-check-doc-file): Avoid assignment to
13936 free variable `doc'.
13937
13938 * dired.el (dired-mode-map): Add menu entry for async shell command.
13939
13940 * help-fns.el (find-lisp-object-file-name): When looking for autoloaded
13941 variables, also consider the .elc files, since the .el files are
13942 normally gzipped (subsequent code locates the .el.gz from the .elc).
13943
13944 * calc/calc-prog.el (arglist): Define for compiler.
13945
13946 * calendar/diary-lib.el (diary-display-function): Change the default to
13947 fancy display.
13948 (body): Define for compiler.
13949
13950 * emacs-lisp/bytecomp.el (byte-compile-keep-pending)
13951 (byte-compile-file-form, byte-compile-lambda)
13952 (byte-compile-top-level-body, byte-compile-form)
13953 (byte-compile-variable-ref, byte-compile-setq)
13954 (byte-compile-setq-default, byte-compile-body)
13955 (byte-compile-body-do-effect, byte-compile-and, byte-compile-or)
13956 (batch-byte-compile): Give some more local variables with common names
13957 a "bytecomp-" prefix to avoid masking warnings about free variables.
13958
13959 * startup.el (command-line-1): Give local variables with common names a
13960 distinguishing prefix, so as not to hide free variable warnings during
13961 bootstrap.
13962
13963 * mail/rmailmm.el (rmail-mime-save): If file exists, don't try to be
13964 clever and add a suffix to make a unique name, just let the user decide
13965 whether or not to overwrite it. If the input is a directory, write the
13966 default filename to that directory. (Bug#4388)
13967 (rmail-mime-bulk-handler): Ensure the save button's 'directory property
13968 is a filename-as-a-directory.
13969
13970 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
13971
13972 * textmodes/page.el (what-page): Don't move to beginning of line.
13973 See <87tyz5ajte.fsf@x2.delysid.org> in emacs-devel.
13974
13975 2009-09-15 Dan Nicolaescu <dann@ics.uci.edu>
13976
13977 * vc-git.el (vc-git-dir-extra-headers): Show the remote location.
13978
13979 2009-09-14 Dan Nicolaescu <dann@ics.uci.edu>
13980
13981 * bindings.el (mode-line-mode-menu): Add purecopy calls for :help.
13982 * help.el (help-for-help-internal): Add purecopy calls for text.
13983
13984 * vc.el (top): print-log method now takes an optional SHORTLOG
13985 argument. Add a new method: root.
13986 (vc-root-diff, vc-print-root-log): New functions.
13987 (vc-log-short-style): New variable.
13988 (vc-print-log-internal): Add support for showing short logs.
13989
13990 * vc-hooks.el (vc-prefix-map, vc-menu-map): Add bindings for
13991 vc-print-root-log and vc-print-root-diff.
13992
13993 * vc-bzr.el (vc-bzr-log-view-mode, vc-bzr-print-log):
13994 * vc-git.el (vc-git-print-log, vc-git-log-view-mode):
13995 * vc-hg.el (vc-hg-print-log, vc-hg-log-view-mode): Add support for
13996 short logs.
13997
13998 * vc-cvs.el (vc-cvs-print-log):
13999 * vc-mtn.el (vc-mtn-print-log):
14000 * vc-rcs.el (vc-rcs-print-log):
14001 * vc-sccs.el (vc-sccs-print-log):
14002 * vc-svn.el (vc-svn-print-log): Add an optional argument shortlog
14003 that is ignored for now.
14004
14005 * vc-mtn.el (vc-mtn-annotate-command):
14006 * vc-svn.el (vc-svn-annotate-command): Run asynchronously.
14007
14008 2009-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
14009
14010 * simple.el: Add mapping for backspace/delete/clear/tab/escape/return
14011 to function-key-map, and give them ascii-character property.
14012 * term/x-win.el (x-alternatives-map):
14013 * term/ns-win.el (ns-alternatives-map):
14014 * term/internal.el (msdos-key-remapping-map):
14015 * w32-fns.el (x-alternatives-map): Remove redundant mappings.
14016
14017 2009-09-14 Glenn Morris <rgm@gnu.org>
14018
14019 * emacs-lisp/elint.el (elint-add-required-env): Revert to not using
14020 temp-buffers (2009-09-12).
14021
14022 2009-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
14023
14024 * textmodes/ispell.el (ispell-command-loop): Improve last fix, using
14025 the new read-key function.
14026
14027 2009-09-13 Chong Yidong <cyd@stupidchicken.com>
14028
14029 * term/x-win.el (x-menu-bar-open): Only call accelerate-menu if it
14030 is defined (Bug#4405).
14031
14032 2009-09-13 Vincent Belaïche <vincent.belaiche@gmail.com>
14033
14034 * recentf.el (recentf-cleanup): Use a hash table to find
14035 duplicates (Bug#4407).
14036
14037 2009-09-13 Per Starbäck <per@starback.se> (tiny change)
14038
14039 * textmodes/ispell.el (ispell-command-loop): Convert keys such as
14040 kp-0 to ascii equivalents (Bug#4325).
14041
14042 2009-09-13 Chong Yidong <cyd@stupidchicken.com>
14043
14044 * progmodes/cperl-mode.el (cperl-init-faces): Revert last change.
14045
14046 * eshell/em-hist.el:
14047 * eshell/em-dirs.el (eshell-complete-user-reference):
14048 Declare pcomplete functions and variables to avoid compiler warnings.
14049
14050 2009-09-13 Leo <sdl.web@gmail.com> (tiny change)
14051
14052 * eshell/em-script.el (eshell-login-script, eshell-rc-script):
14053 * eshell/em-dirs.el (eshell-last-dir-ring-file-name):
14054 * eshell/em-alias.el (eshell-aliases-file):
14055 * eshell/em-hist.el (eshell-history-file-name):
14056 Use expand-file-name instead of concat to make file names (Bug#4308).
14057
14058 2009-09-13 Glenn Morris <rgm@gnu.org>
14059
14060 * ediff-merg.el (ediff-do-merge):
14061 * filesets.el (filesets-run-cmd):
14062 * emulation/ws-mode.el (ws-show-markers, ws-move-block, ws-delete-block)
14063 (ws-find-marker-0, ws-find-marker-1, ws-find-marker-2, ws-find-marker-3)
14064 (ws-find-marker-4, ws-find-marker-5, ws-find-marker-6, ws-find-marker-7)
14065 (ws-find-marker-8, ws-find-marker-9, ws-goto-block-begin)
14066 (ws-goto-block-end, ws-goto-last-cursorposition, ws-copy-block):
14067 Replace empty `let's with `progn'.
14068
14069 2009-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
14070
14071 * mail/sendmail.el (send-mail-function):
14072 * tooltip.el (tooltip-mode):
14073 * simple.el (transient-mark-mode):
14074 * rfn-eshadow.el (file-name-shadow-mode):
14075 * frame.el (blink-cursor-mode):
14076 * font-core.el (global-font-lock-mode):
14077 * files.el (temporary-file-directory)
14078 (small-temporary-file-directory, auto-save-file-name-transforms):
14079 * epa-hook.el (auto-encryption-mode):
14080 * composite.el (global-auto-composition-mode):
14081 Use custom-initialize-delay.
14082 * startup.el (command-line): Don't explicitly call
14083 custom-reevaluate-setting for all the above vars.
14084 * custom.el (custom-initialize-safe-set)
14085 (custom-initialize-safe-default): Delete.
14086
14087 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
14088
14089 * term/x-win.el (x-initialize-window-system):
14090 * term/w32-win.el (w32-initialize-window-system):
14091 * term/ns-win.el (ns-initialize-window-system): Don't call
14092 mouse-wheel-mode since it's enabled globally by default already.
14093
14094 * mwheel.el (mouse-wheel-mode): Make sure the new defvar doesn't
14095 actually define the variable, but only silences the byte-compiler.
14096 (mouse-wheel-change-button): Check whether mouse-wheel-mode is bound
14097 before looking it up.
14098 (mouse-wheel-scroll-amount): Also reset the bindings if this value
14099 is changed.
14100
14101 2009-09-12 Glenn Morris <rgm@gnu.org>
14102
14103 * emacs-lisp/elint.el (elint-file): Make max-lisp-eval-depth at least
14104 1000.
14105 (elint-add-required-env): Don't beep on error.
14106 (elint-forms): In case of error, return ENV unchanged.
14107 (elint-init-env): Skip non-list forms.
14108 (elint-log): Handle unknown file positions.
14109
14110 2009-09-12 Daiki Ueno <ueno@unixuser.org>
14111
14112 * epg.el (epg-make-context): Add autoload cookie.
14113 (epg-list-keys, epg-cancel, epg-start-decrypt, epg-decrypt-file)
14114 (epg-decrypt-string, epg-start-verify, epg-verify-file)
14115 (epg-verify-string, epg-start-sign, epg-sign-file)
14116 (epg-sign-string, epg-start-encrypt, epg-encrypt-file)
14117 (epg-encrypt-string, epg-start-export-keys)
14118 (epg-export-keys-to-file, epg-export-keys-to-string)
14119 (epg-start-import-keys, epg-import-keys-from-file)
14120 (epg-import-keys-from-string, epg-start-receive-keys)
14121 (epg-receive-keys, epg-import-keys-from-server)
14122 (epg-start-delete-keys, epg-delete-keys, epg-start-sign-keys)
14123 (epg-sign-keys, epg-start-generate-key)
14124 (epg-generate-key-from-file, epg-generate-key-from-string):
14125 Remove autoload cookie.
14126
14127 2009-09-12 Eli Zaretskii <eliz@gnu.org>
14128
14129 * dos-fns.el (dos-reevaluate-defcustoms): Comment out the
14130 reevaluation of trash-directory.
14131
14132 * mwheel.el: Fix last change.
14133 (mouse-wheel-mode): New defvar.
14134 (mouse-wheel-mode): Remove autoload cookie.
14135
14136 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
14137
14138 * mwheel.el (mwheel-installed-bindings): New var.
14139 (mouse-wheel-mode): Use it, so as to make sure we really remove all
14140 the bindings we set last time. Use custom-initialize-delay.
14141 * loadup.el: Load mwheel after term/*-win.el.
14142 * startup.el (command-line): Don't reevaluate mouse-wheel-down-event
14143 and mouse-wheel-up-event now that their first evaluation is done
14144 sufficiently late to be correct.
14145
14146 * startup.el (tutorial-directory): Make it a defcustom.
14147 Use custom-initialize-delay rather than eval-at-startup to set it.
14148 * image.el (image-load-path): Make it a defcustom.
14149 Use custom-initialize-delay rather than eval-at-startup to set it.
14150 * subr.el (eval-at-startup): Remove.
14151 * font-lock.el (lisp-font-lock-keywords-2): Remove eval-at-startup.
14152
14153 * subr.el (do-after-load-evaluation): Warn the user after loading an
14154 obsolete package.
14155
14156 2009-09-12 Glenn Morris <rgm@gnu.org>
14157
14158 * proced.el (proced-mark-alt): Remove alias.
14159 (proced-mode-map): Remove proced-mark-alt.
14160
14161 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries to
14162 Elint file and directory. Remove initialization entry.
14163
14164 * emacs-lisp/elint.el (elint-file, elint-directory): New autoloaded
14165 commands.
14166 (elint-current-buffer): Set mode-line-process.
14167 (elint-init-env): Handle define-derived-mode.
14168 Fix declare-function with unspecified arglist. Guard against odd
14169 defalias statements (eg iso-insert's 8859-1-map).
14170 (elint-add-required-env): Use a temp buffer.
14171 (elint-form): Just print the function/macro name, not the whole form.
14172 Return env unchanged if we fail to parse a macro.
14173 (elint-forms): Guard against parse errors.
14174 (elint-output): New function, to handle batch mode.
14175 (elint-log-message): Add optional argument. Use elint-output.
14176 (elint-set-mode-line): New function.
14177
14178 2009-09-12 Andreas Politz <politza@fh-trier.de> (tiny change)
14179
14180 * emacs-lisp/elp.el (elp-not-profilable): Add more
14181 functions (Bug#4233).
14182
14183 2009-09-12 Chong Yidong <cyd@stupidchicken.com>
14184
14185 * emulation/pc-select.el (scroll-down-mark, scroll-down-nomark)
14186 (scroll-up-mark, scroll-up-nomark): Doc fix (Bug#4190).
14187
14188 2009-09-11 Nick Roberts <nickrob@snap.net.nz>
14189
14190 * progmodes/gdb-mi.el (gdb-var-list-children-regexp): Delete.
14191 (gdb-var-list-children): Use json parsing.
14192
14193 2009-09-11 Daniel Colascione <dan.colascione@gmail.com>
14194
14195 * progmodes/js.el (js--proper-indentation): Handle the case where
14196 char-before is null. Reported by Deniz Dogan.
14197
14198 2009-09-11 Juanma Barranquero <lekktu@gmail.com>
14199
14200 * emacs-lisp/cl-macs.el (help-add-fundoc-usage): Declare.
14201
14202 2009-09-11 Daiki Ueno <ueno@unixuser.org>
14203
14204 * epg.el (epg-cipher-algorithm-alist): Add CAMELLIA.
14205 (epg-digest-algorithm-alist): Add SHA224.
14206 (epg-context-set-passphrase-callback)
14207 (epg-context-set-progress-callback): Add description about
14208 callback function.
14209
14210 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
14211
14212 * custom.el (custom-delayed-init-variables): New var.
14213 (custom-initialize-delay): New function.
14214 * startup.el (command-line): "Re"evaluate all vars in
14215 custom-delayed-init-variables. Don't reevaluate abbrev-file-name
14216 explicitly any more.
14217 * abbrev.el (abbrev-file-name): Use custom-initialize-delay
14218 to avoid creating a ~/.emacs.d at build-time (bug#4347).
14219
14220 * proced.el (proced-mode-map): Prefer "m" for proced-mark (bug#4362).
14221
14222 2009-09-11 Nick Roberts <nickrob@snap.net.nz>
14223
14224 * progmodes/gdb-mi.el (gdb-var-update-regexp): Delete.
14225 (gdb-var-update-handler): Use json parsing.
14226
14227 2009-09-11 Juanma Barranquero <lekktu@gmail.com>
14228
14229 * vc-annotate.el (vc-annotate): Use the main file's coding-system to
14230 decode annotated text, regardless of language environment. (Bug#2741)
14231
14232 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
14233
14234 * Makefile.in (autoloads): Make rmail.el writable as well.
14235
14236 2009-09-11 Glenn Morris <rgm@gnu.org>
14237
14238 * dired-aux.el, dired-x.el: Put autoloads in dired.el rather than
14239 loaddefs.el.
14240 * dired.el: Regenerate with extracted autoloads.
14241 * Makefile.in (autoloads): Make dired.el writable.
14242
14243 * ibuf-ext.el: Put autoloads in ibuffer.el rather than loaddefs.el.
14244 * ibuffer.el: Regenerate with extracted autoloads.
14245 * Makefile.in (autoloads): Make ibuffer.el writable.
14246
14247 * paths.el (prune-directory-list, gnus-nntp-service, rmail-file-name):
14248 * version.el (emacs-copyright, emacs-major-version)
14249 (emacs-minor-version): Reformat doc-strings for make-docfile.
14250
14251 * apropos.el (apropos-documentation-check-doc-file): Exclude unbound
14252 functions and variables, since they must be stuff specific to some other
14253 platform.
14254 (apropos-print): Make mouse-click message less specific about button.
14255
14256 * emacs-lisp/cl-macs.el (define-compiler-macro): Add a property
14257 that records where a macro was defined.
14258 * help-fns.el (describe-function-1): Mention if a function has a
14259 compiler-macro.
14260 * help-mode.el (help-function-cmacro): New button.
14261
14262 * locate.el (top-level): Always require dired.
14263 (locate-mode-map): Initialize inside the defvar.
14264
14265 * net/ange-ftp.el (dired-compress-file): Declare.
14266 (ange-ftp-dired-compress-file): Add doc string.
14267
14268 * term/ns-win.el (x-display-name, x-setup-function-keys):
14269 Unify doc-strings with X versions.
14270
14271 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
14272
14273 * emulation/crisp.el (crisp-mode-map): Move initialization
14274 into declaration.
14275 (crisp-mode): Use define-minor-mode.
14276
14277 * progmodes/xscheme.el (xscheme-evaluation-commands):
14278 Put a :advertised-binding property rather than using
14279 advertised-xscheme-send-previous-expression.
14280 (advertised-xscheme-send-previous-expression): Declare obsolete.
14281 * emulation/crisp.el (crisp-mode-map): Use `undo' rather than
14282 `advertised-undo'.
14283 (crisp-mode): Add corresponding bindings to
14284 undo's :advertised-binding instead.
14285 * dired.el (dired-mode-map): Put a :advertised-binding property rather
14286 than using dired-advertised-find-file.
14287 (dired-advertised-find-file):
14288 * simple.el (advertised-undo):
14289 * wid-edit.el (advertised-widget-backward): Declare obsolete.
14290 (widget-keymap): Put a :advertised-binding property rather
14291 than using advertised-widget-backward.
14292 * bindings.el (ctl-x-map): Put a :advertised-binding property rather
14293 than using advertised-undo.
14294 * tutorial.el (tutorial--default-keys): Adjust accordingly.
14295
14296 2009-09-10 Simon South <ssouth@slowcomputing.org>
14297
14298 * progmodes/delphi.el (delphi-tab): Indent region when Transient
14299 Mark mode is enabled and region is active; otherwise indent or
14300 insert TAB as usual.
14301 (delphi-mode): Update description of TAB-key binding.
14302
14303 2009-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
14304
14305 * subr.el (define-key-rebound-commands): Mark obsolete.
14306 * startup.el (precompute-menubar-bindings): Remove.
14307 (normal-top-level): Remove obsolete code that tried to precompute
14308 menubar bindings.
14309 * loadup.el (define-key-rebound-commands): Don't bother fiddling with
14310 define-key-rebound-commands and precompute-menubar-bindings.
14311
14312 2009-09-10 Teodor Zlatanov <tzz@lifelogs.com>
14313
14314 * net/imap.el (imap-interactive-login): Better messages.
14315 (imap-open): Fix bug with renamed buffer on reconnect.
14316 (imap-authenticate): Add buffer-local imap-last-authenticator variable
14317 for easier debugging and cleaner code. On successful (guessed based on
14318 server capabilities) secondary authentication, set imap-state
14319 correctly.
14320 (imap-last-authenticator): Define imap-last-authenticator as a variable
14321 to avoid warnings.
14322
14323 2009-09-10 Glenn Morris <rgm@gnu.org>
14324
14325 * pcvs.el (cvs-mode-find-file): Use forward-line rather than goto-line.
14326
14327 * emacs-lisp/bytecomp.el (byte-compile-function-environment): Doc fix.
14328 (byte-compile-file-form-autoload): Don't warn about unknown functions
14329 where the autoload statement comes after the use.
14330 (with-no-warnings): Give it a byte-hunk-handler like than of progn, so
14331 that any handlers inside the body (eg require) are in turn respected.
14332
14333 * emacs-lisp/byte-opt.el (degrees-to-radians): Mark as free from side
14334 effects.
14335
14336 * emacs-lisp/derived.el (define-derived-mode): Give the mode's map,
14337 and syntax and abbrev tables basic docs, if they don't have any.
14338
14339 * emacs-lisp/easy-mmode.el (easy-mmode-defmap): Add doc-string.
14340
14341 * international/mule-cmds.el (top-level): Require cl when compiling.
14342 (view-hello-file): Use default-value rather than
14343 default-enable-multibyte-characters.
14344
14345 * progmodes/fortran.el: Move all safe and risky properties into the
14346 defcustoms.
14347
14348 * mail/rmailedit.el, mail/rmailkwd.el, mail/rmailmm.el:
14349 * mail/rmailmsc.el, mail/rmailsort.el, mail/rmailsum.el:
14350 * mail/undigest.el:
14351 Put autoloads in rmail.el rather than loaddefs.el.
14352 * mail/rmail.el: Regenerate with extracted autoloads.
14353
14354 * mail/rmailsum.el (rmail-user-mail-address-regexp): Move to rmail.el.
14355 * mail/rmail.el (rmail-user-mail-address-regexp): Move from rmailsum.el.
14356
14357 2009-09-10 Nick Roberts <nickrob@snap.net.nz>
14358
14359 Reported in thread for Bug#4375.
14360 * progmodes/gud.el (gud-tooltip-print-command): Use MI command
14361 "-data-evaluate-expression" instead of print.
14362 * progmodes/gdb-mi.el (gdb-tooltip-print-1): Ditto.
14363 (gdb-tooltip-print): Parse output from above MI command.
14364 (gdb): Revert 2009-08-11 change. User should detach inferior
14365 manually.
14366
14367 Remove the word "separate" from IO functions as inferior
14368 output is now never displayed in the GUD buffer.
14369
14370 2009-09-10 Juanma Barranquero <lekktu@gmail.com>
14371
14372 * startup.el (command-line-normalize-file-name): On Windows and
14373 MS-DOS, also convert C:\/ and C:\\ (two backslashes) into C:/.
14374
14375 2009-09-10 Juri Linkov <juri@jurta.org>
14376
14377 * isearch.el (isearch-text-char-description): Propertize escape
14378 character sequences with the `escape-glyph' face. (Bug#4344)
14379
14380 * simple.el (shell-command): Set asynchronous process filter to
14381 `comint-output-filter'. (Bug#4343)
14382
14383 * progmodes/grep.el (grep-template): Add "<X>" to docstring.
14384 (grep-files-aliases): Add "all". Move "el" and "ch" to the top of
14385 the list. Move "asm" to the bottom.
14386 (grep-find-ignored-directories): Add `choice' with nil value
14387 to empty the list easily.
14388 (grep-find-ignored-files): New option.
14389 (grep-files-history): Set to nil by default instead of '("ch" "el").
14390 (grep-compute-defaults): Add "<X>" to `grep-template'.
14391 (grep-read-files): Bind new local variables `default-alias' and
14392 `default-extension'. Use a list of default values for the file prompt.
14393 (lgrep): Add `--exclude=' command line options composed from
14394 `grep-find-ignored-files'.
14395 (rgrep): Add `-name' command line options composed from
14396 `grep-find-ignored-files'. (Bug#4301)
14397
14398 2009-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
14399
14400 * diff-mode.el (diff-hunk-kill): Fix the search of the next hunk
14401 (bug#4368).
14402
14403 2009-09-09 Katsumi Yamaoka <yamaoka@jpl.org>
14404
14405 * calendar/time-date.el (autoload):
14406 Expand define-obsolete-function-alias into defalias and make-obsolete
14407 for old Emacsen that Gnus supports.
14408 (with-no-warnings): Define it for old Emacsen.
14409 (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
14410 is available.
14411 (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
14412 float-time is available; suppress compile warning for time-to-seconds.
14413
14414 2009-09-09 Teodor Zlatanov <tzz@lifelogs.com>
14415
14416 * net/imap.el (imap-message-map): Docstring fix.
14417
14418 2009-09-09 Glenn Morris <rgm@gnu.org>
14419
14420 * ffap.el (ffap-file-at-point): Handle absolute (non-remote) files with
14421 line numbers too. (Bug#4374)
14422
14423 2009-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
14424
14425 * smerge-mode.el (smerge-remove-props, smerge-refine):
14426 Use with-silent-modifications (bug#4342).
14427
14428 * subr.el (with-silent-modifications): New macro.
14429
14430 2009-09-07 Juanma Barranquero <lekktu@gmail.com>
14431
14432 * files.el (top-level): Require `cl' when compiling.
14433
14434 2009-09-07 Glenn Morris <rgm@gnu.org>
14435
14436 * files.el (auto-mode-alist): Use delphi-mode for .dpr files.
14437
14438 * proced.el (proced-mode-map): Bind "d" to proced-mark-alt.
14439 (proced-mark-alt): New alias, to control the advertised key. (Bug#4362)
14440
14441 2009-09-06 Nick Roberts <nickrob@snap.net.nz>
14442
14443 * vc-git.el (vc-git-annotate-command): Use separator to parse
14444 arguments correctly.
14445
14446 2009-09-06 Eli Zaretskii <eliz@gnu.org>
14447
14448 * proced.el (proced-mode): Doc fix.
14449
14450 2009-09-06 Julian Scheid <julians37@gmail.com> (tiny change)
14451
14452 * net/tramp.el (tramp-perl-file-attributes): Print "nil" when
14453 lstat fails.
14454 (tramp-do-file-attributes-with-ls): Check for file existence at
14455 remote end.
14456 (tramp-do-file-attributes-with-stat): Likewise.
14457 (tramp-convert-file-attributes): Return nil when attr is nil.
14458
14459 2009-09-05 Glenn Morris <rgm@gnu.org>
14460
14461 * calendar/diary-lib.el (diary-entry): Add help-echo and follow-link
14462 properties to this button.
14463 (diary-fancy-display): Don't extend the button to the final newline.
14464 (diary-fancy-display-mode): Continue to define "q" as a local key.
14465
14466 * calendar/cal-china.el (holiday-chinese): Make it slightly more
14467 efficient.
14468
14469 * font-lock.el (lisp-font-lock-keywords-2): Add letf.
14470
14471 * emacs-lisp/bytecomp.el (emacs-lisp-file-regexp): Doc fix.
14472 (byte-compile-dest-file-function): New option.
14473 (byte-compile-dest-file): Doc fix.
14474 Obey byte-compile-dest-file-function.
14475 (byte-compile-cl-file-p): New function.
14476 (byte-compile-eval): Only suppress noruntime warnings about cl functions
14477 if the cl-functions warning is enabled. Use byte-compile-cl-file-p.
14478 (byte-compile-eval): Check for non-nil byte-compile-cl-functions rather
14479 than for file being previously loaded.
14480 (byte-compile-find-cl-functions): Use byte-compile-cl-file-p.
14481 (byte-compile-file-form-require): Handle the case where requiring a file
14482 indirectly causes CL to be loaded.
14483
14484 2009-09-05 Karl Fogel <kfogel@red-bean.com>
14485
14486 * files.el (find-alternate-file): Run `kill-buffer-hook' manually
14487 before killing the old buffer, since by the time `kill-buffer' is
14488 run so many buffer variables have been set to nil that it may not
14489 behave as expected. (Bug#4061)
14490
14491 2009-09-05 Karl Fogel <kfogel@red-bean.com>
14492
14493 * files.el (find-alternate-file): If the old buffer is modified
14494 and visiting a file, behave similarly to `kill-buffer' when
14495 killing it, thus reverting to the pre-1.878 behavior; see
14496 http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00101.html
14497 for discussion. Also, consult `buffer-file-name' as a variable
14498 not as a function, for consistency with the rest of the code.
14499
14500 2009-09-04 Michael Albinus <michael.albinus@gmx.de>
14501
14502 * net/tramp.el (tramp-handle-insert-directory): Handle "--dired"
14503 also when adding a new directory.
14504
14505 * net/tramp-compat.el (tramp-compat-line-beginning-position): New
14506 defun.
14507
14508 2009-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
14509
14510 * files.el (locate-file-completion-table): Make it provide boundary
14511 information, so partial-completion works better.
14512
14513 2009-09-04 Leo <sdl.web@gmail.com> (tiny change)
14514
14515 * mail/footnote.el (Footnote-text-under-cursor):
14516 Check footnote-text-marker-alist before using it (bug#4324).
14517
14518 2009-09-04 Glenn Morris <rgm@gnu.org>
14519
14520 * play/5x5.el, play/decipher.el, play/gametree.el, play/handwrite.el:
14521 * play/hanoi.el, play/landmark.el, play/mpuz.el, play/pong.el:
14522 * play/solitaire.el, play/tetris.el:
14523 Remove leading * from defcustom and defface docs.
14524
14525 * calendar/diary-lib.el (diary-fancy-display): Only switch modes if
14526 necessary.
14527 (diary-fancy-overriding-map): New variable.
14528 (diary-fancy-display-mode): Set minor-mode-overriding-map-alist.
14529 Use view-mode.
14530
14531 * vc-rcs.el (vc-rcs-annotate-command): Use forward-line rather than
14532 goto-line.
14533
14534 2009-09-03 Glenn Morris <rgm@gnu.org>
14535
14536 * arc-mode.el (archive-mode):
14537 * dos-fns.el (set-default-process-coding-system):
14538 * man.el (Man-getpage-in-background):
14539 * menu-bar.el (menu-bar-describe-menu):
14540 * server.el (server-process-filter):
14541 * startup.el (command-line):
14542 * tar-mode.el (tar-header-block-tokenize, tar-extract):
14543 * w32-fns.el (set-default-process-coding-system):
14544 * x-dnd.el (x-dnd-handle-file-name):
14545 * international/mule-cmds.el (mule-menu-keymap)
14546 (set-default-coding-systems, language-info-alist, set-language-info)
14547 (set-language-environment, standard-display-european-internal)
14548 (set-locale-environment):
14549 * international/mule-diag.el (mule-diag):
14550 * mail/emacsbug.el (report-emacs-bug):
14551 * mail/rmail.el (rmail-mode):
14552 * mail/sendmail.el (mail-setup):
14553 Use default-value rather than default-enable-multibyte-characters.
14554
14555 * progmodes/f90.el: Move all safe properties into the defcustoms.
14556 (f90-get-correct-indent, f90-indent-region, f90-abbrev-start): Use memq.
14557
14558 * calendar/appt.el (appt-check):
14559 * calendar/diary-lib.el (diary-set-header, diary-live-p)
14560 (diary-check-diary-file, diary-list-entries)
14561 (diary-include-other-diary-files, diary-simple-display)
14562 (diary-fancy-display, diary-print-entries)
14563 (diary-mark-included-diary-files, diary-make-entry):
14564 Don't call substitute-in-file-name on diary-file.
14565
14566 2009-09-03 Eduard Wiebe <usenet@pusto.de>
14567 Stefan Monnier <monnier@iro.umontreal.ca>
14568
14569 * mail/footnote.el (footnote-prefix): Make it a defcustom.
14570 (footnote-mode-map): Move initialization into the declaration.
14571 (footnote-minor-mode-map): Define it rather than changing global-map.
14572 (footnote-mode): Use define-minor-mode.
14573
14574 2009-09-02 Michael Albinus <michael.albinus@gmx.de>
14575
14576 * net/tramp.el (tramp-handle-file-attributes-with-ls)
14577 (tramp-do-file-attributes-with-perl)
14578 (tramp-do-file-attributes-with-stat): Rename from
14579 `tramp-handle-file-attributes-with-*'.
14580 (tramp-handle-file-attributes): Use them.
14581 (tramp-do-directory-files-and-attributes-with-perl)
14582 (tramp-do-directory-files-and-attributes-with-stat): Rename from
14583 `tramp-handle-directory-files-and-attributes-with-*'.
14584 (tramp-handle-directory-files-and-attributes): Use them.
14585 (tramp-method-out-of-band-p): Additional parameter SIZE.
14586 (tramp-do-copy-or-rename-file, tramp-handle-file-local-copy)
14587 (tramp-handle-write-region): Use it.
14588 (tramp-handle-insert-directory): Use "?\ " for compatibility reasons.
14589 (tramp-handle-vc-registered): Check, whether the first run did
14590 return files to be tested.
14591 (tramp-advice-make-auto-save-file-name): Do not call directly
14592 `tramp-handle-make-auto-save-file-name', because this would bypass
14593 the locking mechanism.
14594
14595 * net/tramp-compat.el (top): Autoload used functions from tramp.el.
14596 (file-remote-p, process-file, start-file-process, set-file-times)
14597 (tramp-compat-file-attributes): Compatibility functions shall not
14598 call directly `tramp-handle-*', because this would bypass the
14599 locking mechanism.
14600 (tramp-compat-number-sequence): New defun.
14601
14602 2009-09-02 Glenn Morris <rgm@gnu.org>
14603
14604 * calendar/time-date.el (time-to-seconds): In Emacs, make it an obsolete
14605 alias for float-time.
14606 (time-to-number-of-days): In Emacs, use float-time.
14607 * net/newst-backend.el (time-add): Suppress warnings from compat
14608 function.
14609 * time.el (emacs-uptime, emacs-init-time):
14610 * net/rcirc.el (rcirc-keepalive, rcirc-handler-ctcp-KEEPALIVE):
14611 Use float-time rather than time-to-seconds.
14612
14613 * minibuffer.el (completion-initials-expand): Fix typo.
14614
14615 * faces.el (modeline, modeline-inactive, modeline-highlight)
14616 (modeline-buffer-id):
14617 * info.el (info-menu-5): Mark these face aliases as obsolete.
14618
14619 2009-09-01 Nick Roberts <nickrob@snap.net.nz>
14620
14621 * progmodes/gdb-mi.el (gdb-current-context-command): Move the
14622 space ...
14623 (gdb-gud-context-call): ... to here for pre GDB 7.0 when there is
14624 no "--thread" option.
14625 (gdb-stopped): Don't print "Switched to thread" message when it is
14626 unchanged.
14627
14628 2009-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
14629
14630 * minibuffer.el (completion-try-completion)
14631 (completion-all-completions): Remove ill-defined (and
14632 mistakenly installed and luckily never used nor documented)
14633 `completion-styles' property.
14634 (completion-initials-expand, completion-initials-all-completions)
14635 (completion-initials-try-completion): New functions.
14636 (completion-styles-alist): Add doc to each entry.
14637 Add new `initials' entry.
14638
14639 2009-09-01 Nick Roberts <nickrob@snap.net.nz>
14640
14641 * progmodes/gdb-mi.el (gdb-var-create-handler): Remove redundant
14642 MI command -var-evaluate-expression.
14643 (gdb-var-list-children-regexp): Update from regexp-1 in gdb-ui.el
14644 and tweak for case of string child.
14645 (gdb-var-list-children-handler): Update from handler-1 in gdb-ui.el.
14646
14647 2009-09-01 Glenn Morris <rgm@gnu.org>
14648
14649 * add-log.el (change-log-date-face, change-log-name-face)
14650 (change-log-email-face, change-log-file-face, change-log-list-face)
14651 (change-log-conditionals-face, change-log-function-face)
14652 (change-log-acknowledgement-face):
14653 * cus-edit.el (custom-invalid-face, custom-rogue-face)
14654 (custom-modified-face, custom-set-face, custom-changed-face)
14655 (custom-saved-face, custom-button-face, custom-button-pressed-face)
14656 (custom-documentation-face, custom-state-face, custom-comment-face)
14657 (custom-comment-tag-face, custom-variable-tag-face)
14658 (custom-variable-button-face, custom-face-tag-face)
14659 (custom-group-tag-face-1, custom-group-tag-face):
14660 * diff-mode.el (diff-header-face, diff-file-header-face)
14661 (diff-index-face, diff-hunk-header-face, diff-removed-face)
14662 (diff-added-face, diff-changed-face, diff-function-face)
14663 (diff-context-face, diff-nonexistent-face):
14664 * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
14665 * hilit-chg.el (highlight-changes-face, highlight-changes-delete-face):
14666 * info.el (Info-title-1-face, Info-title-2-face, Info-title-3-face)
14667 (Info-title-4-face):
14668 * isearch.el (isearch-lazy-highlight-face):
14669 * log-view.el (log-view-file-face, log-view-message-face):
14670 * paren.el (show-paren-match-face, show-paren-mismatch-face):
14671 * pcvs-info.el (cvs-header-face, cvs-filename-face, cvs-unknown-face)
14672 (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
14673 (cvs-msg-face):
14674 * smerge-mode.el (smerge-mine-face, smerge-other-face)
14675 (smerge-base-face, smerge-markers-face):
14676 * wid-edit.el (widget-documentation-face, widget-button-face)
14677 (widget-field-face, widget-single-line-field-face)
14678 (widget-inactive-face, widget-button-pressed-face):
14679 * woman.el (woman-italic-face, woman-bold-face, woman-unknown-face)
14680 (woman-addition-face):
14681 * eshell/em-ls.el (eshell-ls-directory-face, eshell-ls-symlink-face)
14682 (eshell-ls-executable-face, eshell-ls-readonly-face)
14683 (eshell-ls-unreadable-face, eshell-ls-special-face)
14684 (eshell-ls-missing-face, eshell-ls-archive-face)
14685 (eshell-ls-backup-face, eshell-ls-product-face)
14686 (eshell-ls-clutter-face):
14687 * eshell/em-prompt.el (eshell-prompt-face):
14688 * eshell/esh-test.el (eshell-test-ok-face, eshell-test-failed-face):
14689 * obsolete/old-whitespace.el (whitespace-highlight-face):
14690 * progmodes/antlr-mode.el (antlr-font-lock-default-face)
14691 (antlr-font-lock-keyword-face, antlr-font-lock-syntax-face)
14692 (antlr-font-lock-ruledef-face, antlr-font-lock-tokendef-face)
14693 (antlr-font-lock-ruleref-face, antlr-font-lock-tokenref-face)
14694 (antlr-font-lock-literal-face):
14695 * progmodes/ebrowse.el (ebrowse-tree-mark-face)
14696 (ebrowse-root-class-face, ebrowse-file-name-face)
14697 (ebrowse-default-face, ebrowse-member-attribute-face)
14698 (ebrowse-member-class-face, ebrowse-progress-face):
14699 * progmodes/make-mode.el (makefile-space-face):
14700 * progmodes/sh-script.el (sh-heredoc-face):
14701 * textmodes/flyspell.el (flyspell-incorrect-face)
14702 (flyspell-duplicate-face):
14703 * textmodes/tex-mode.el (tex-math-face, tex-verbatim-face):
14704 * textmodes/texinfo.el (texinfo-heading-face):
14705 Mark face aliases with "-face" suffix as obsolete.
14706
14707 * mail/feedmail.el (file-name-buffer-file-type-alist): Define for
14708 compiler.
14709
14710 * net/eudc-bob.el (eudc-bob-generic-menu, eudc-bob-image-menu)
14711 (eudc-bob-sound-menu): Use defvar rather than defconst, since
14712 easy-menu-define wants to modify these.
14713
14714 * net/net-utils.el (nslookup): Use make-comint rather than comint-run.
14715
14716 * net/browse-url.el (browse-url-file-url):
14717 * term/internal.el (dos-codepage-setup):
14718 Use default-value rather than default-enable-multibyte-characters.
14719
14720 * progmodes/etags.el (etags-goto-tag-location):
14721 * progmodes/flymake.el (flymake-highlight-line)
14722 (flymake-goto-file-and-line, flymake-goto-line):
14723 * progmodes/gdb-mi.el (gdb-mouse-until, gdb-mouse-jump)
14724 (gdb-goto-breakpoint):
14725 * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
14726 * progmodes/python.el (python-find-function)
14727 (python-pdbtrack-track-stack-file):
14728 * progmodes/verilog-mode.el (verilog-surelint-off):
14729 * term/ns-win.el (ns-open-file-select-line):
14730 * textmodes/bibtex.el (bibtex-validate, bibtex-validate-globally):
14731 Use forward-line rather than goto-line.
14732
14733 * textmodes/reftex-cite.el (reftex-offer-bib-menu):
14734 * textmodes/reftex-index.el (reftex-display-index):
14735 * textmodes/reftex-ref.el (reftex-offer-label-menu):
14736 * textmodes/reftex-toc.el (reftex-toc):
14737 Remove unnecessary bindings of default-major-mode (all are followed by
14738 major-mode check and possible mode switch).
14739
14740 2009-08-31 Nick Roberts <nickrob@snap.net.nz>
14741
14742 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
14743 Handle watchpoints (bug#4282).
14744 (def-gdb-thread-buffer-command): Enable thread to be selected by
14745 clicking without selecting threads buffer first.
14746 (gdb-current-context-command): Use selected frame so that "up",
14747 "down" etc work in the GUD buffer.
14748 (gdb-update): Find selected frame before rendering stack buffer.
14749 (gdb-frame-handler): Set gdb-frame-number for stack buffer.
14750
14751 2009-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
14752
14753 * progmodes/sym-comp.el (displayed-completions): Remove.
14754 (symbol-complete): Use minibuffer-complete.
14755
14756 2009-08-31 Glenn Morris <rgm@gnu.org>
14757
14758 * emacs-lisp/byte-run.el (define-obsolete-face-alias): New macro.
14759
14760 * apropos.el (apropos-symbols-internal):
14761 Handle (obsolete) face aliases.
14762
14763 * faces.el (describe-face): Adjust the output format to be more like
14764 describe-variable, and to mention (obsolete) face aliases.
14765 Adjust the whitespace so that help-setup-xref works.
14766
14767 * calendar/calendar.el (calendar-today-face, diary-face, holiday-face):
14768 * calendar/diary-lib.el (diary-button-face):
14769 Mark these face aliases as obsolete.
14770
14771 * calendar/calendar.el (calendar-today): Doc fix.
14772
14773 2009-08-31 Nick Roberts <nickrob@snap.net.nz>
14774
14775 * progmodes/gdb-mi.el (gdb-control-all-threads)
14776 (gdb-control-current-thread): Force tool bar update.
14777 (gdb-non-stop-handler): New function.
14778 (gdb-init-1): Use it to test if non-stop mode is supported.
14779 Remove unused gdbmi buffer type.
14780
14781 2009-08-30 Kevin Rodgers <kevin.d.rodgers@gmail.com>
14782
14783 * progmodes/grep.el (grep-read-files): Strip trailing <N> from
14784 buffer names not visiting a file (e.g. cloned buffers). (Bug#4210)
14785
14786 2009-08-30 Nick Roberts <nickrob@snap.net.nz>
14787
14788 * comint.el (comint-exec-1): Check command is non-null first.
14789 Part of gdb-mi.el change (2009-08-28).
14790
14791 2009-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
14792
14793 * emacs-lisp/lisp.el (lisp-complete-symbol): Use minibuffer-complete.
14794
14795 2009-08-30 Juanma Barranquero <lekktu@gmail.com>
14796
14797 * subr.el (do-after-load-evaluation): Fix last change: use `mapc'
14798 instead of `dolist' to avoid a recursive require when bootstrapping.
14799
14800 2009-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
14801
14802 * emacs-lisp/lisp.el (field-complete): Use minibuffer-complete.
14803
14804 * net/ldap.el (ldap-search-internal): Use with-current-buffer and push.
14805
14806 * net/imap.el (imap-send-command): Simplify.
14807 (imap-wait-for-tag): point-max -> buffer-size.
14808
14809 * net/ange-ftp.el (internal-ange-ftp-mode): Use define-derived-mode.
14810
14811 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't use symbol-value
14812 with constant argument.
14813
14814 * emacs-lisp/debug.el (debugger-setup-buffer): Make it multibyte.
14815
14816 * emacs-lisp/cl.el (cl-macro-environment): Don't define it here.
14817
14818 * emacs-lisp/checkdoc.el (checkdoc-force-history-flag):
14819 Change default, since most of our files don't have a history.
14820 (checkdoc-display-status-buffer): Don't use a hidden buffer to show to
14821 the user.
14822
14823 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
14824 Add comint-run.
14825
14826 * calc/calc.el: Improve commenting convention.
14827 (calc-digit-map, toplevel): Simplify.
14828
14829 * comint.el (comint-insert-input): Be careful to only set point if we
14830 don't delegate to some other command.
14831
14832 * proced.el (proced-signal-list): Make it an alist.
14833 (proced-grammar-alist): Capitalize names.
14834 (proced-send-signal): Use a non-hidden buffer (since it's displayed).
14835 Disable undo manually and make it read-only.
14836 Use completion-annotate-function.
14837
14838 * minibuffer.el (minibuffer-message): If the current buffer is not
14839 a minibuffer, insert the message in the echo area rather than at the
14840 end of the buffer.
14841 (completion-annotate-function): New variable.
14842 (minibuffer-completion-help): Use it.
14843 (completion--embedded-envvar-table): Environment vars are
14844 always case-sensitive.
14845
14846 2009-08-30 Glenn Morris <rgm@gnu.org>
14847
14848 * progmodes/fortran.el (fortran-start-prog-re): New constant, extracted
14849 from fortran-current-defun.
14850 (fortran-beginning-of-subprogram): Be more precise about finding the
14851 start, to avoid an infinite loop in end-of-defun. (Bug#4259)
14852 (fortran-end-of-subprogram): Simplify.
14853 (fortran-current-defun): Use fortran-start-prog-re.
14854
14855 2009-08-29 Juanma Barranquero <lekktu@gmail.com>
14856
14857 * subr.el (do-after-load-evaluation): Simplify.
14858
14859 2009-08-29 Dan Nicolaescu <dann@ics.uci.edu>
14860
14861 * vc.el (vc-print-log-internal): Move RCS/CVS specific code ...
14862
14863 * vc-rcs.el (vc-rcs-print-log-cleanup): ... here. New function.
14864 (vc-rcs-print-log): Use it.
14865
14866 * vc-cvs.el (vc-cvs-print-log): Use vc-rcs-print-log-cleanup.
14867
14868 2009-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
14869
14870 * paths.el (abbrev-file-name): Move to abbrev.el.
14871 * abbrev.el (abbrev-file-name): Move from paths.el.
14872 Obey user-emacs-directory.
14873 * calc/calc.el (calc-settings-file): Don't autoload and instead obey
14874 user-emacs-directory.
14875 * dos-fns.el (dos-reevaluate-defcustoms): Don't reevaluate
14876 abbrev-file-name and calc-settings-file any more.
14877 * startup.el (command-line): Recompute abbrev-file-name and
14878 abbreviated-home-dir.
14879 (normal-no-mouse-startup-screen): Improve the generic code and get rid
14880 of the special code for when C-h bindings haven't been changed.
14881 (display-startup-echo-area-message): Use with-current-buffer.
14882 (command-line-1): Use a list of strings, rather than a list of lists
14883 of strings for longopts.
14884
14885 * files.el (get-free-disk-space): Use / for default-directory.
14886
14887 * textmodes/ispell.el (ispell-accept-output, ispell-command-loop):
14888 Use with-current-buffer.
14889
14890 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p):
14891 Recognize immutable variables like most-positive-fixnum.
14892 (byte-compile-setq-default): Check and warn if trying to assign
14893 to an immutable variable, or a non-variable.
14894
14895 * progmodes/cc-vars.el (c-comment-continuation-stars):
14896 * progmodes/cc-engine.el (c-looking-at-bos):
14897 * progmodes/cc-cmds.el (c-toggle-auto-state)
14898 (c-forward-into-nomenclature, c-backward-into-nomenclature)
14899 (c-comment-line-break-function): Add version of obsolescence.
14900
14901 2009-08-28 Juri Linkov <juri@jurta.org>
14902
14903 * files.el (magic-fallback-mode-alist): Add ZIP magic number
14904 associated with `archive-mode'.
14905
14906 * image.el (image-type-header-regexps): Use only JPEG magic number
14907 to determine JPEG images, and don't use `image-jpeg-p' because
14908 Emacs can display non-JFIF non-Exif JPEG images.
14909
14910 2009-08-28 Juanma Barranquero <lekktu@gmail.com>
14911
14912 * arc-mode.el (archive-mode):
14913 * emacs-lisp/re-builder.el (re-builder-unload-function):
14914 Protect against the default value of `major-mode' being nil.
14915
14916 2009-08-28 Juanma Barranquero <lekktu@gmail.com>
14917
14918 * international/ucs-normalize.el (ucs-normalize-sort, quick-check-list):
14919 Fix typos in docstrings.
14920
14921 * progmodes/js.el (js--macro-decl-re): Doc fix.
14922 (js--plain-method-re, js--split-name): Refloc docstring.
14923 (js--class-styles, js--make-merged-item, js--splice-into-items):
14924 Fix typos in docstrings; reflow docstrings.
14925 (js--maybe-join, js--function-prologue-beginning, js--flush-caches)
14926 (js--variable-decl-matcher, js--inside-pitem-p)
14927 (js--parse-state-at-point, js--get-all-known-symbols)
14928 (js--symbol-history, js-find-symbol, js--js-references)
14929 (js--moz-interactor, js--js-encode-value, js--read-tab):
14930 Fix typos in docstrings.
14931
14932 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
14933
14934 * textmodes/reftex.el (reftex-get-file-buffer-force):
14935 * progmodes/verilog-mode.el (verilog-batch-execute-func):
14936 * emulation/viper.el (viper-go-away, viper-set-hooks):
14937 * emacs-lisp/re-builder.el (re-builder-unload-function):
14938 * emacs-lisp/bytecomp.el (byte-compile-file):
14939 * ses.el (ses-unload-function):
14940 * hexl.el (hexl-find-file):
14941 * files.el (normal-mode):
14942 * ehelp.el (with-electric-help):
14943 * autoinsert.el (auto-insert-alist):
14944 * arc-mode.el (archive-mode):
14945 Use (default-value 'major-mode) instead of default-major-mode.
14946
14947 * textmodes/ispell.el (ispell-check-version, ispell-send-string):
14948 * international/mule.el (load-with-code-conversion):
14949 * emacs-lisp/debug.el (debug):
14950 * ediff-vers.el (ediff-rcs-get-output-buffer):
14951 * dired.el (dired-internal-noselect): Don't let-bind
14952 default-major-mode around code that doesn't use it.
14953 E.g. buffer creation via get-buffer-create doesn't use it.
14954
14955 2009-08-28 Michael Albinus <michael.albinus@gmx.de>
14956
14957 * net/tramp.el (all): Replace "'(lambda" by "(lambda".
14958 (tramp-handle-file-local-copy): Unset `file-name-handler-alist'
14959 when writing the temp file. Otherwise, epa-file gets confused.
14960 (tramp-register-file-name-handlers): Make it a defun. Move also
14961 `epa-file-handler' to the front of `file-name-handler-alist'.
14962
14963 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
14964
14965 * net/tramp.el (tramp-shell-prompt-pattern): Allow a prompt to
14966 start right after a ^M.
14967 (tramp-root-regexp, tramp-completion-file-name-regexp-unified)
14968 (tramp-completion-file-name-regexp-separate)
14969 (tramp-completion-file-name-regexp-url): Use \\` and \\'.
14970 (tramp-handle-file-attributes, tramp-set-file-uid-gid):
14971 Don't modify last-coding-system-used by accident.
14972 (tramp-completion-file-name-handler): Apply the checks here,
14973 instead during registration.
14974 (tramp-register-file-name-handlers): Renamed from
14975 `tramp-register-file-name-handler'. Register both
14976 `tramp-file-name-handler' and `tramp-completion-file-name-handler'.
14977 (tramp-register-completion-file-name-handler): Remove. (Bug#4260)
14978
14979 2009-08-28 Nick Roberts <nickrob@snap.net.nz>
14980
14981 * progmodes/gdb-mi.el (gdb-use-separate-io-buffer):
14982 Remove variable ...
14983 (gdb-init-1, gdb-display-separate-io-buffer)
14984 (gdb-frame-separate-io-buffer, gdb-setup-windows): ... and
14985 references to it.
14986 (gdb-inferior-io-mode): Use make-comint-in-buffer.
14987 (gdb-inferior-filter): Use comint-output-filter to stop
14988 echoing and remove ^M characters.
14989
14990 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
14991
14992 * emulation/viper-init.el (viper-restore-cursor-type):
14993 * emulation/cua-base.el (cua--update-indications):
14994 Replace default-cursor-type with (default-value 'cursor-type).
14995
14996 * mail/sendmail.el (mail-recover-1):
14997 * international/mule-diag.el (describe-current-coding-system-briefly)
14998 (describe-current-coding-system):
14999 * international/mule-cmds.el (select-safe-coding-system)
15000 (select-message-coding-system)
15001 (set-language-environment-coding-systems, set-locale-environment):
15002 * hexl.el (hexl-insert-multibyte-char):
15003 * dos-w32.el (find-buffer-file-type-coding-system):
15004 * simple.el (what-cursor-position):
15005 Replace uses of default-buffer-file-coding-system
15006 with (default-value 'buffer-file-coding-system).
15007
15008 * emacs-lisp/edebug.el (edebug-display, edebug-outside-excursion):
15009 Replace uses of default-cursor-in-non-selected-windows
15010 with (default-value 'cursor-in-non-selected-windows).
15011 Use with-current-buffer.
15012
15013 * mail/feedmail.el: Use CL macros.
15014 (feedmail-run-the-queue, feedmail-send-it-immediately):
15015 * dos-w32.el (find-buffer-file-type): Replace uses of
15016 default-buffer-file-type with (default-value 'buffer-file-type).
15017
15018 2009-08-28 Glenn Morris <rgm@gnu.org>
15019
15020 * calendar/diary-lib.el (diary-list-entries, diary-goto-entry)
15021 (diary-show-all-entries, diary-mark-entries, diary-make-entry):
15022 Use default-value of major-mode rather than default-major-mode.
15023
15024 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
15025
15026 * Makefile.in (update-elcfiles): Report left over elc files.
15027
15028 * mail/mailalias.el (build-mail-aliases): Use with-temp-buffer,
15029 expand-file-name and with-current-buffer.
15030 (mail-get-names, mail-directory): Use with-current-buffer.
15031
15032 * vc.el (vc-read-revision): New function.
15033 (vc-version-diff, vc-merge): Use it.
15034
15035 2009-08-27 Sam Steingold <sds@gnu.org>
15036
15037 * simple.el (kill-do-not-save-duplicates): New user option.
15038 (kill-new): When it is non-nil, and the new string is the same as
15039 the latest kill, set replace to t to avoid duplicates in kill-ring.
15040
15041 2009-08-27 Julian Scheid <julians37@gmail.com> (tiny change)
15042
15043 * net/tramp.el (tramp-handle-process-file): Do not flush all
15044 caches when `process-file-side-effects' is set.
15045 (tramp-handle-vc-registered): Use `tramp-get-file-exists-command'
15046 instead of `tramp-find-file-exists-command'.
15047 Unset `process-file-side-effects'.
15048
15049 2009-08-27 Michael Albinus <michael.albinus@gmx.de>
15050
15051 * net/tramp.el (tramp-methods): New method "rsyncc".
15052 (top): Add completion function for "rsyncc".
15053 (tramp-message-show-message): New defvar.
15054 (tramp-message, tramp-error): Use it.
15055 (tramp-do-copy-or-rename-file-directly): Extend check for direct
15056 remote copying.
15057 (tramp-do-copy-or-rename-file-out-of-band): Handle new
15058 `tramp-methods' entry `copy-env' of "rsyncc".
15059 (tramp-vc-registered-read-file-names): New defconst.
15060 (tramp-vc-registered-file-names): New defvar.
15061 (tramp-handle-vc-registered): Implement optimization strategy.
15062 (tramp-run-real-handler): Add `tramp-vc-file-name-handler'.
15063 (tramp-vc-file-name-handler): New defun.
15064 (tramp-get-ls-command, tramp-get-test-command)
15065 (tramp-get-file-exists-command, tramp-get-remote-ln)
15066 (tramp-get-remote-perl, tramp-get-remote-stat)
15067 (tramp-get-remote-id): Remove superfluous `with-current-buffer'.
15068
15069 * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
15070 (tramp-cache-inhibit-cache): Extend doc string. It allows also
15071 timestamps.
15072 (tramp-get-file-property): Check for timestamps in
15073 `tramp-cache-inhibit-cache'.
15074 (tramp-set-file-property): Write timestamp.
15075
15076 2009-08-27 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
15077
15078 * language/japan-util.el (japanese-symbol-table): Add entries for
15079 cp932-2-byte.
15080
15081 * international/characters.el: Add category `j' to cp932-2-byte.
15082
15083 2009-08-27 Kenichi Handa <handa@m17n.org>
15084
15085 * international/fontset.el (build-default-fontset-data): New macro.
15086 (setup-default-fontset): Use build-default-fontset-data for CJK,
15087 tibetan, ethiopic, and ipa.
15088
15089 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
15090
15091 * cus-start.el (default-major-mode): Customize `major-mode' instead.
15092 (enable-multibyte-characters): Not customizable any more.
15093
15094 * subr.el (default-mode-line-format, default-header-line-format)
15095 (default-line-spacing, default-abbrev-mode, default-ctl-arrow)
15096 (default-direction-reversed, default-truncate-lines)
15097 (default-left-margin, default-tab-width, default-case-fold-search)
15098 (default-left-margin-width, default-right-margin-width)
15099 (default-left-fringe-width, default-right-fringe-width)
15100 (default-fringes-outside-margins, default-scroll-bar-width)
15101 (default-vertical-scroll-bar, default-indicate-empty-lines)
15102 (default-indicate-buffer-boundaries, default-fringe-indicator-alist)
15103 (default-fringe-cursor-alist, default-scroll-up-aggressively)
15104 (default-scroll-down-aggressively, default-fill-column)
15105 (default-cursor-type, default-buffer-file-type)
15106 (default-cursor-in-non-selected-windows)
15107 (default-buffer-file-coding-system, default-major-mode)
15108 (default-enable-multibyte-characters): Mark as obsolete.
15109
15110 2009-08-27 Dan Nicolaescu <dann@ics.uci.edu>
15111
15112 * vc-dir.el (vc-dir-update): Remove debug helper.
15113
15114 * vc-cvs.el (vc-cvs-update-changelog): Fix typo.
15115
15116 2009-08-26 Sam Steingold <sds@gnu.org>
15117
15118 * simple.el (save-interprogram-paste-before-kill): New user option.
15119 (kill-new): When `save-interprogram-paste-before-kill' is non-nil,
15120 save the interprogram-paste into kill-ring before overriding it
15121 with the Emacs kill.
15122
15123 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
15124
15125 * vc.el (vc-trunk-p): Rename to vc-rcs-trunk-p and move to vc-rcs.el.
15126 (vc-minor-part): Rename to vc-rcs-minor-part and move to vc-rcs.el.
15127 (vc-default-previous-revision): Rename to vc-rcs-previous-revision
15128 and move to vc-rcs.el.
15129 (vc-default-next-revision): Rename to vc-rcs-next-revision and
15130 move to vc-rcs.el.
15131 (vc-cvs-update-changelog): Move to vc-cvs.el, use vc-call-backend.
15132 (vc-rcs-update-changelog): Remove.
15133 (vc-update-changelog-rcs2log): Rename to vc-rcs-update-changelog
15134 and move to vc-rcs.el.
15135
15136 * vc-rcs.el (vc-rcs-latest-on-branch-p, vc-rcs-checkin)
15137 (vc-rcs-checkout, vc-rcs-rollback): Adjust for the vc-rcs-trunk-p
15138 renaming.
15139 (vc-rcs-trunk-p, vc-rcs-minor-part, vc-rcs-previous-revision)
15140 (vc-rcs-next-revision, vc-rcs-update-changelog): Move here from
15141 vc.el, renamed to be RCS specific.
15142
15143 * vc-cvs.el (vc-cvs-previous-revision, vc-cvs-next-revision):
15144 New functions.
15145 (vc-cvs-update-changelog): Move here from vc.el.
15146
15147 * vc-sccs.el (vc-sccs-previous-revision, vc-sccs-next-revision):
15148 New functions.
15149
15150 2009-08-26 Stefan Monnier <monnier@iro.umontreal.ca>
15151
15152 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix up last change.
15153
15154 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
15155
15156 * vc-git.el (vc-git-register): Use "git add" for directories.
15157 (vc-git-stash, vc-git-stash-show): New functions.
15158 (vc-git-extra-menu-map): Bind them.
15159
15160 * vc-dir.el (vc-dir-node-directory, vc-dir-update): Get the parent
15161 directory correctly in case the item is a directory itself.
15162
15163 * vc.el: Document the desired behavior for reverted files in the
15164 `added' state.
15165 (vc-default-prettify-state-info): Remove function, unused.
15166
15167 * vc-bzr.el (vc-bzr-prettify-state-info): Remove function, unused.
15168
15169 2009-08-26 Glenn Morris <rgm@gnu.org>
15170
15171 * bindings.el (standard-mode-line-format): Reposition dashes in
15172 which-func entry. (Bug#4217)
15173
15174 * files.el (enable-local-variables, enable-local-eval)
15175 (safe-local-variable-values, safe-local-eval-forms): Mark as risky in
15176 the defcustoms.
15177 (auto-mode-alist, ignored-local-variables)
15178 (save-some-buffers-action-alist): Move risky declarations to the
15179 definitions.
15180 (dabbrev-case-fold-search, dabbrev-case-replace, display-time-string)
15181 (font-lock-defaults, format-alist, imenu--index-alist)
15182 (imenu-generic-expression, input-method-alist, minor-mode-alist)
15183 (mode-line-buffer-identification, mode-line-client, mode-line-modes)
15184 (mode-line-modified, mode-line-mule-info, mode-line-position)
15185 (mode-line-process, mode-line-remote, outline-level)
15186 (parse-time-rules, rmail-output-file-alist)
15187 (special-display-buffer-names, vc-mode):
15188 Move risky declarations to the relevant files.
15189 * bindings.el (mode-line-client, mode-line-mule-info, mode-line-remote)
15190 (mode-line-modified, mode-line-process, mode-line-position)
15191 (mode-line-modes, mode-line-buffer-identification, minor-mode-alist)
15192 * font-core.el (font-lock-defaults):
15193 * format.el (format-alist):
15194 * vc-hooks.el (vc-mode):
15195 * window.el (special-display-buffer-names):
15196 * international/mule-cmds.el (input-method-alist):
15197 Define riskiness here (dumped file) rather than in files.el.
15198 * dabbrev.el (dabbrev-case-fold-search, dabbrev-case-replace):
15199 * imenu.el (imenu-generic-expression, imenu--index-alist):
15200 * outline.el (outline-level):
15201 * time.el (display-time-string):
15202 * calendar/parse-time.el (parse-time-rules):
15203 * mail/rmailout.el (rmail-output-file-alist):
15204 Autoload riskiness here, rather than placing in files.el.
15205
15206 2009-08-26 Andreas Schwab <schwab@linux-m68k.org>
15207
15208 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Signal overflow.
15209
15210 2009-08-25 Michael Albinus <michael.albinus@gmx.de>
15211
15212 * simple.el (process-file-side-effects): New defvar.
15213
15214 * dired-aux.el (dired-show-file-type):
15215 * vc.el (vc-diff-internal):
15216 * vc-arch.el (vc-arch-diff):
15217 * vc-bzr.el (vc-bzr-sha1, vc-bzr-revision-completion-table):
15218 * vc-cvs.el (vc-cvs-state, vc-cvs-diff, vc-cvs-revision-table):
15219 * vc-git.el (vc-git-registered, vc-git-working-revision)
15220 (vc-git-find-revision, vc-git-diff, vc-git-revision-table)
15221 (vc-git--empty-db-p):
15222 * vc-hooks.el (vc-user-login-name):
15223 * vc-svn.el (vc-svn-registered, vc-svn-state)
15224 (vc-svn-dir-extra-headers, vc-svn-find-revision):
15225 * progmodes/grep.el (grep-probe): Let-bind
15226 `process-file-side-effects' with nil.
15227
15228 * net/dbus.el (dbus-ping): Add optional parameter TIMEOUT.
15229
15230 * net/tramp-gvfs.el (top): Use timeout of 100 msec pinging GVFS
15231 daemon. Replace ping by checking for running service for bluez
15232 and zeroconf. (Bug#4239)
15233
15234 2009-08-25 Kevin Ryde <user42@zip.com.au>
15235
15236 * net/dig.el (dig): Add autoload cookie.
15237
15238 2009-08-25 Glenn Morris <rgm@gnu.org>
15239
15240 * emacs-lisp/bytecomp.el (byte-compile-eval): Fix test for cl in
15241 load-history for absolute file-names.
15242 (byte-compile-file-form-require): Warn about use of the cl package.
15243
15244 * format.el (format-alist): Doc fix.
15245
15246 * play/bubbles.el (top-level): Don't require cl at run-time.
15247
15248 * progmodes/verilog-mode.el (top-level): Don't require lucid (and hence
15249 run-time cl).
15250
15251 2009-08-24 Dmitry Dzhus <dima@sphinx.net.ru>
15252
15253 * progmodes/gdb-mi.el (gdb-mapcar*): Replacement for `mapcar*'
15254 from cl package.
15255 (gdb-table-add-row, gdb-table-string): Use `gdb-mapcar*'.
15256
15257 2009-08-24 Jay Belanger <jay.p.belanger@gmail.com>
15258
15259 * calc/calc-alg.el (math-trig-rewrite)
15260 (math-hyperbolic-trig-rewrite): New functions.
15261 (calc-simplify): Simplify trig functions when asked.
15262
15263 2009-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
15264
15265 * diff-mode.el (diff-find-source-location): Avoid goto-line.
15266
15267 2009-08-24 Kenichi Handa <handa@m17n.org>
15268
15269 * language/ind-util.el (mapthread): Delete it.
15270 (combinatorial): New function.
15271 (indian--puthash-cv): Use combinatorial instead of mapthread.
15272
15273 2009-08-22 Kevin Ryde <user42@zip.com.au>
15274
15275 * emacs-lisp/checkdoc.el (checkdoc-force-history-flag)
15276 (checkdoc-arguments-in-order-flag): Add safe-local-variable booleanp.
15277 (checkdoc-symbol-words): Add safe-local-variable for list of strings.
15278 Clarify docstring that the value is strings not symbols.
15279 (checkdoc-list-of-strings-p): New function.
15280
15281 2009-08-22 Glenn Morris <rgm@gnu.org>
15282
15283 * files.el (auto-mode-alist):
15284 * hippie-exp.el (he-concat-directory-file-name):
15285 * lpr.el (lpr-windows-system, printer-name):
15286 * ls-lisp.el (ls-lisp-emulation, ls-lisp-use-insert-directory-program):
15287 * ps-print.el (ps-windows-system):
15288 * startup.el (command-line):
15289 * emulation/viper-ex.el (viper-glob-function):
15290 * international/mule-cmds.el (set-language-environment-coding-systems):
15291 * net/ange-ftp.el (ange-ftp-write-region):
15292 * obsolete/fast-lock.el (fast-lock-cache-name):
15293 Remove code for defunct system-types emx, macos, mswindows, next-mach,
15294 unisoft-unix, vax-vms, win32, w32.
15295
15296 * calendar/diary-lib.el (diary-mark-entries-1): Only mark all days of a
15297 given name if the pattern is not more specific.
15298
15299 * calendar/lunar.el (lunar-phase-names): New option.
15300 (lunar-phase): Doc fix.
15301 (lunar-cycles-per-year): New constant.
15302 (lunar-index): New function.
15303 (lunar-phase-list, diary-lunar-phases): Use lunar-index.
15304 (lunar-phase-name): Use lunar-phase-names.
15305 (calendar-lunar-phases): Use format.
15306 (lunar-new-moon-on-or-after): Use lunar-cycles-per-year.
15307
15308 * progmodes/cperl-mode.el (cperl-imenu-name-and-position):
15309 Copy imenu-example--name-and-position function here for own use.
15310 (cperl-xsub-scan): Use cperl-imenu-name-and-position.
15311
15312 * bs.el (bs--redisplay):
15313 * cus-edit.el (custom-redraw):
15314 * ibuffer.el (ibuffer-bury-buffer):
15315 * server.el (server-goto-line-column):
15316 * startup.el (command-line-1):
15317 * strokes.el (strokes-xpm-for-stroke):
15318 * term.el (term-display-buffer-line):
15319 * view.el (View-goto-line):
15320 * calc/calc.el (calc-do, calc-trail-buffer):
15321 * play/gamegrid.el (gamegrid-add-score-insecure):
15322 * progmodes/ada-mode.el (ada-compile-goto-error):
15323 * progmodes/ada-xref.el (ada-xref-find-in-modified-ali):
15324 (ebrowse-select-1st-to-9nth):
15325 * progmodes/cperl-mode.el (cperl-time-fontification):
15326 * progmodes/ebrowse.el (ebrowse-toggle-file-name-display)
15327 * progmodes/gud.el (gud-display-line):
15328 (idlwave-shell-display-line):
15329 * progmodes/idlw-shell.el (idlwave-shell-goto-frame)
15330 * progmodes/make-mode.el (makefile-browser-toggle):
15331 (vhdl-speedbar-port-copy, vhdl-compose-components-package):
15332 * progmodes/vhdl-mode.el (vhdl-speedbar-find-file)
15333 * textmodes/picture.el (picture-draw-rectangle):
15334 * textmodes/reftex-index.el (reftex-index-goto-letter):
15335 (reftex-select-jump-to-previous):
15336 * textmodes/reftex-sel.el (reftex-find-start-point)
15337 * textmodes/reftex-toc.el (reftex-toc, reftex-toc-restore-region):
15338 (rst-straighten-deco-spacing, rst-section-tree, rst-toc):
15339 * textmodes/rst.el (rst-promote-region, rst-straighten-decorations)
15340 * textmodes/tex-mode.el (tex-compilation-parse-errors):
15341 * textmodes/two-column.el (2C-associated-buffer):
15342 Use forward-line rather than goto-line.
15343
15344 * emulation/vi.el (vi-goto-line): Don't warn about non-interactive
15345 goto-line.
15346
15347 * international/ucs-normalize.el (nfd, decomposition-translation-alist)
15348 (decomposition-char-recursively, alist-list-to-vector, quick-check-list)
15349 (quick-check-list-to-regexp): Declare.
15350
15351 * progmodes/make-mode.el (makefile-browser-insert-selection):
15352 Use goto-char rather than goto-line.
15353
15354 * progmodes/prolog.el (compilation-error-regexp-alist)
15355 (compilation-forget-errors): Declare.
15356
15357 2009-08-22 Juri Linkov <juri@jurta.org>
15358
15359 * progmodes/grep.el (lgrep, rgrep): At the beginning
15360 set `dir' to `default-directory' unless `dir' is a non-nil
15361 readable directory. (Bug#4052)
15362 (lgrep, rgrep): Change a weird way to report an error
15363 from using `read-string' to using `error'.
15364 Instead of using interactive arguments in the function body,
15365 add new argument `confirm'.
15366
15367 2009-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
15368
15369 * textmodes/remember.el (remember-buffer):
15370 * progmodes/cperl-mode.el (cperl-vc-header-alist):
15371 * calendar/icalendar.el (icalendar-convert-diary-to-ical)
15372 (icalendar-extract-ical-from-buffer):
15373 * net/newst-treeview.el (newsticker-groups-filename):
15374 * net/newst-backend.el (newsticker-cache-filename):
15375 * speedbar.el (speedbar-update-speed, speedbar-navigating-speed)
15376 (speedbar-ignored-path-expressions, speedbar-ignored-path-regexp)
15377 (speedbar-add-ignored-path-regexp, speedbar-line-path)
15378 (speedbar-buffers-line-path, speedbar-path-line)
15379 (speedbar-buffers-line-path):
15380 * epg.el (epg-passphrase-callback-function, epg-start-sign-keys)
15381 (epg-sign-keys):
15382 * epa.el (epa-display-verify-result):
15383 * progmodes/pascal.el (pascal-outline): Add version of obsolescence.
15384
15385 2009-08-21 Glenn Morris <rgm@gnu.org>
15386
15387 * progmodes/js.el (inferior-moz-process): Fix declaration.
15388
15389 * imenu.el (imenu-example--name-and-position): Fix obsolescence message.
15390
15391 * obsolete/rnewspost.el (news-mail-reply):
15392 Use goto-char rather than goto-line.
15393
15394 * term/ns-win.el (ns-open-file-select-line):
15395 Use line-beginning-position rather than goto-line.
15396
15397 * apropos.el (apropos-command):
15398 * ehelp.el (electric-helpify):
15399 * printing.el (pr-show-setup):
15400 * strokes.el (strokes-help):
15401 * tutorial.el (tutorial--describe-nonstandard-key)
15402 (tutorial--detailed-help):
15403 * woman.el (woman-mini-help, woman-display-extended-fonts):
15404 * calc/calc-help.el (calc-describe-key):
15405 * emulation/edt.el (edt-electric-helpify):
15406 * international/mule-diag.el (mule-diag):
15407 * play/yow.el (apropos-zippy):
15408 * progmodes/python.el (python-describe-symbol):
15409 * progmodes/vhdl-mode.el (vhdl-doc-variable, vhdl-doc-mode):
15410 * textmodes/table.el (*table--cell-describe-mode)
15411 (*table--cell-describe-bindings):
15412 Use help-print-return-message rather than the now obsolete alias.
15413
15414 * calendar/cal-move.el (calendar-cursor-to-nearest-date)
15415 (calendar-cursor-to-visible-date):
15416 * play/5x5.el (5x5-position-cursor):
15417 * play/decipher.el (decipher):
15418 * play/gomoku.el (gomoku-goto-xy):
15419 * play/landmark.el (lm-goto-xy):
15420 * play/mpuz.el (mpuz-paint-errors, mpuz-paint-statistics)
15421 (mpuz-paint-digit):
15422 Use forward-line, not goto-line.
15423
15424 * mail/rmail.el (rmail-obsolete): Delete custom group.
15425 (rmail-pop-password, rmail-pop-password-required): Make into aliases.
15426 (rmail-remote-password, rmail-remote-password-required):
15427 Remove unneeded :set-after and :set properties.
15428
15429 2009-08-21 Michael Albinus <michael.albinus@gmx.de>
15430
15431 * net/dbus.el (top): Initialize only when `dbusbind' is loaded.
15432
15433 2009-08-21 Dan Nicolaescu <dann@ics.uci.edu>
15434
15435 * loadup.el: Remove leftover macos code.
15436
15437 * vc-git.el (vc-git-annotate-command): Run asynchronously.
15438 Explicitly pass the date format to git blame so that user local
15439 so that the output format can be parsed.
15440
15441 2009-08-20 Michael Albinus <michael.albinus@gmx.de>
15442
15443 * net/dbus.el (top): Don't check for (getenv
15444 "DBUS_SESSION_BUS_ADDRESS"). It's done in dbusbind.c now.
15445
15446 2009-08-19 Magnus Henoch <magnus.henoch@gmail.com>
15447
15448 * log-edit.el (log-edit-strip-single-file-name): New var.
15449 (log-edit-insert-changelog): Use it. Bug#3571
15450
15451 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
15452
15453 * subr.el (read-passwd): Use read-key so keypad keys work as well.
15454 Bug#3287
15455
15456 * help.el (help-print-return-message): Rename from
15457 print-help-return-message.
15458
15459 * log-view.el (log-view-mode-map): Remove `q' binding, and unreliable
15460 cvs-mode-map parent hack.
15461 (log-view-mode): Derive from special-mode.
15462
15463 * linum.el (linum-mode): window-size-change-functions is redundant.
15464 Adapt to new window-configuration-change-hook behavior.
15465 (linum-after-size, linum-after-config): Remove.
15466
15467 * imenu.el (imenu-example--name-and-position)
15468 (imenu-example--lisp-extract-index-name)
15469 (imenu-example--create-lisp-index, imenu-example--create-c-index):
15470 Mark as obsolete.
15471
15472 * progmodes/prolog.el (inferior-prolog-error-regexp-alist): New var.
15473 (inferior-prolog-mode): Use it.
15474 (inferior-prolog-load-file): Reset list of errors.
15475
15476 2009-08-19 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
15477
15478 * language/tibetan.el ("Tibetan"): Fix sample-text entry.
15479
15480 * language/tai-viet.el ("TaiViet"): Fix sample-text entry.
15481
15482 2009-08-19 Michael Albinus <michael.albinus@gmx.de>
15483
15484 * net/dbus.el (top): Apply `dbus-init-bus' only if the session bus
15485 is running already.
15486
15487 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
15488
15489 * subr.el (listify-key-sequence-1): Use normal syntax since those
15490 integers are nowadays always represented by the same (positive) number
15491 on all platforms.
15492 (read-key-empty-map): New const.
15493 (read-key-delay): New var.
15494 (read-key): New function.
15495 (force-mode-line-update): Use with-current-buffer.
15496 (locate-user-emacs-file): Don't forget to abbreviate the file name.
15497 (start-process-shell-command, start-file-process-shell-command):
15498 Discourage the use of command-args.
15499
15500 2009-08-19 Glenn Morris <rgm@gnu.org>
15501
15502 * emacs-lisp/authors.el (authors-fixed-entries): Remove cvtmail.
15503
15504 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
15505
15506 * simple.el (choose-completion-string): Don't rely on
15507 minibuffer-completing-file-name and ad-hoc checks to decide whether
15508 to continue completion or not.
15509
15510 * minibuffer.el (minibuffer-hide-completions): New function.
15511 (completion--do-completion): Use it.
15512 (completions-annotations): New face.
15513 (completion--insert-strings): Use it.
15514 (completion-pcm--delim-wild-regex): Add docstring.
15515 (completion-pcm--string->pattern): Add support for 0-width delimiters
15516 in completion-pcm--delim-wild-regex.
15517
15518 2009-08-18 Stefan Monnier <monnier@iro.umontreal.ca>
15519
15520 * international/ucs-normalize.el (ucs-normalize-hfs-nfd-post-read-conversion):
15521 Remove unused var `buffer-modified-p'.
15522
15523 * minibuffer.el (completion--do-completion): Move point for the #b001
15524 case as well (bug#4176).
15525 (minibuffer-complete, minibuffer-complete-word): Don't move point.
15526
15527 2009-08-18 Michael Albinus <michael.albinus@gmx.de>
15528
15529 * net/dbus.el (dbus-init-bus): Declare. Apply it for the :system
15530 and :session buses.
15531
15532 2009-08-18 Kenichi Handa <handa@m17n.org>
15533
15534 * international/ucs-normalize.el (ucs-normalize-version):
15535 Change to 1.1.
15536 (ucs-normalize-hfs-nfd-pre-write-conversion): New function.
15537 (utf-8-hfs): Make it perform normalization on encoding too.
15538
15539 * textmodes/paragraphs.el: Change to utf-8. Adjust coding cookie.
15540 (sentence-end-without-space): Delete duplicated chars.
15541 (sentence-end-base): Likewise.
15542
15543 * textmodes/sgml-mode.el: Change to utf-8. Adjust coding cookie.
15544 (html-mode): Delete duplicated chars from sentence-end-base.
15545
15546 * textmodes/texinfo.el: Change to utf-8. Adjust coding cookie.
15547 (texinfo-mode): Delete duplicated chars from sentence-end-base.
15548
15549 2009-08-17 Chong Yidong <cyd@stupidchicken.com>
15550
15551 * files.el (hack-one-local-variable): If the mode function is for
15552 a minor mode, pass it an argument (Bug#4148).
15553
15554 2009-08-17 Michael Albinus <michael.albinus@gmx.de>
15555
15556 * net/tramp.el (tramp-register-completion-file-name-handler):
15557 Check also for (member 'partial-completion completion-styles).
15558
15559 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
15560
15561 * progmodes/cperl-mode.el (cperl-electric-paren): Don't expand
15562 abbrev (Bug#3943).
15563
15564 2009-08-16 Ilya Zakharevich <ilyaz@cpan.org>
15565
15566 * progmodes/cperl-mode.el: Merge upstream 6.2.
15567 (cperl-mode-syntax-table): Modify syntax entry for ["'`].
15568 (cperl-forward-re): Check cperl-brace-recursing.
15569 (cperl-highlight-charclass): New function.
15570 (cperl-find-pods-heres): Use it.
15571 (cperl-fill-paragraph): Synch to save-excursion placement used upstream.
15572 (cperl-beautify-regexp-piece): Fix column calculation.
15573 (cperl-make-regexp-x): Handle case where point is between "q" and "rs".
15574 (cperl-beautify-level): Don't process entire regexp.
15575 (cperl-build-manpage, cperl-perldoc): Bind Man-switches before
15576 calling man.
15577 (cperl-tips-faces, cperl-mode, cperl-electric-backspace): Doc fix.
15578 (cperl-init-faces): Build a list in the normal way.
15579
15580 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
15581
15582 * calendar/parse-time.el (parse-time-string-chars): Save match
15583 data.
15584
15585 2009-08-16 Stefan Monnier <monnier@iro.umontreal.ca>
15586
15587 * progmodes/sql.el (sql-product-alist): Add :name tag to entries.
15588 (sql-product): Use it.
15589 (sql-mode-menu): Auto-generate the menu based on sql-product-alist.
15590 (sql-set-product): Add completion.
15591 (sql-highlight-oracle-keywords, sql-highlight-postgres-keywords)
15592 (sql-highlight-linter-keywords, sql-highlight-ms-keywords)
15593 (sql-highlight-ansi-keywords, sql-highlight-sybase-keywords)
15594 (sql-highlight-informix-keywords, sql-highlight-interbase-keywords)
15595 (sql-highlight-ingres-keywords, sql-highlight-solid-keywords)
15596 (sql-highlight-mysql-keywords, sql-highlight-sqlite-keywords)
15597 (sql-highlight-db2-keywords): Remove.
15598 (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
15599 (sql-highlight-product): Use derived-mode-p.
15600 (sql-set-sqli-buffer): Use with-current-buffer.
15601 (sql-connect-informix, sql-connect-ingres, sql-connect-oracle):
15602 Simplify.
15603
15604 * emacs-lisp/lisp-mode.el (lisp-indent-region): Remove unused function.
15605
15606 * term.el: Fix commenting convention, turn comments into docstrings.
15607
15608 2009-08-16 E. Jay Berkenbilt <ejb@ql.org> (tiny change)
15609
15610 * whitespace.el (whitespace-style): Doc fix (Bug#3661).
15611
15612 2009-08-16 Jan Seeger <jan.seeger@thenybble.de> (tiny change)
15613
15614 * calendar/parse-time.el (parse-time-string-chars): Compute using
15615 character classes, to handle non-ascii characters (Bug#3190).
15616
15617 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
15618
15619 * progmodes/sh-script.el (sh-maybe-here-document): Avoid inserting
15620 another heredoc if the user adds another < (Bug#3226).
15621
15622 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
15623 Don't initialize based on window-system (Bug#4124).
15624
15625 * facemenu.el (facemenu-read-color): Use a completion function
15626 that accepts any defined color, such as RGB triplets (Bug#3677).
15627
15628 * files.el (get-free-disk-space): Change fallback default
15629 directory to /. Expand DIR argument before switching to fallback.
15630 Suggested by Kevin Ryde (Bug#2631, Bug#3911).
15631
15632 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
15633
15634 * files.el (load-library): Doc fix.
15635
15636 2009-08-15 Michael Kifer <kifer@cs.stonybrook.edu>
15637
15638 * emulation/viper-cmd.el (viper-insert-isearch-string): New function.
15639 (viper-if-string): Redefine C-s in the minibuffer to insert the last
15640 incremental search string.
15641
15642 * ediff-init.el (ediff-coding-system): Use escape-quoted in case of
15643 XEmacs.
15644
15645 * ediff-merg.el (ediff-merge-region-is-non-clash-to-skip)
15646 (ediff-merge-region-is-non-clash)
15647 (ediff-skip-merge-region-if-changed-from-default-p): Use defun.
15648 Also check if the job is really a merge job.
15649
15650 * ediff.el (ediff-current-file): New function.
15651
15652 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
15653
15654 * progmodes/js.el: Edit docstrings throughout to follow Emacs
15655 conventions.
15656 (js-insert-and-indent): Delete function.
15657 (js-mode-map): Don't bind keys to js-insert-and-indent.
15658 (js-beginning-of-defun): Rename from js--beginning-of-defun.
15659 (js-end-of-defun): Rename from js--end-of-defun.
15660 (js-auto-indent-flag): Delete variable.
15661
15662 2009-08-14 Chong Yidong <cyd@stupidchicken.com>
15663
15664 * progmodes/js.el: Remove proclaim statement.
15665 Defvar which-func-imenu-joiner-function to silence compiler.
15666
15667 * files.el (auto-mode-alist): Use js-mode for .js files.
15668
15669 * progmodes/js2-mode.el: Remove file.
15670
15671 * Makefile.in (ELCFILES): Add js.el, and remove js2-mode.el.
15672
15673 * speedbar.el (speedbar-supported-extension-expressions): Add .js.
15674
15675 * progmodes/hideshow.el (hs-special-modes-alist): Add js-mode entry.
15676
15677 2009-08-14 Daniel Colascione <dan.colascione@gmail.com>
15678 Karl Landstrom <karl.landstrom@brgeight.se>
15679
15680 * progmodes/js.el: New file.
15681
15682 2009-08-14 Mark A. Hershberger <mah@everybody.org>
15683
15684 * timezone.el (timezone-parse-date): Add ability to understand ISO
15685 basic format (minimal separators) dates in addition to the
15686 already-supported extended format dates.
15687
15688 2009-08-14 Eli Zaretskii <eliz@gnu.org>
15689
15690 * international/ucs-normalize.el: Add a `coding' file variable.
15691
15692 * Makefile.in (ELCFILES): Add international/ucs-normalize.elc.
15693
15694 2009-08-14 Sam Steingold <sds@gnu.org>
15695
15696 * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
15697
15698 2009-08-13 Chong Yidong <cyd@stupidchicken.com>
15699
15700 * faces.el (help-argument-name): Define it here instead of
15701 help-fns.el, because in daemon mode help-fns.el may be loaded when
15702 faces are still uninitialized (Bug#1078).
15703
15704 * help-fns.el (help-argument-name): Move defface to faces.el.
15705
15706 2009-08-13 Nick Roberts <nickrob@snap.net.nz>
15707
15708 * progmodes/gdb-mi.el (gdb-inferior-io-mode): Use start-process to
15709 create buffer with a pty but no process so that GDB can make the
15710 inferior the controlling process.
15711
15712 2009-08-13 Taichi Kawabata <kawabata.taichi@gmail.com>
15713
15714 * international/ucs-normalize.el: New file.
15715
15716 2009-08-13 Richard Stallman <rms@gnu.org>
15717
15718 * mail/rmail.el (rmail-get-attr-names):
15719 Accept an attribute header that is too short.
15720
15721 * mail/rmail.el (rmail-forget-messages):
15722 Ignore nil elt in rmail-message-vector. Use dotimes.
15723
15724 * progmodes/compile.el (compilation-goto-locus):
15725 Use next-error-move-function.
15726
15727 * simple.el (next-error-move-function): New variable.
15728
15729 2009-08-12 Juri Linkov <juri@jurta.org>
15730
15731 * progmodes/grep.el (lgrep): Ensure that `default-directory' is
15732 always non-nil. (Bug#4052)
15733
15734 * replace.el (read-regexp): Return empty string when
15735 `default-value' is nil.
15736 (keep-lines-read-args): Don't use empty string as the
15737 default value for `read-regexp'. (Bug#2495)
15738
15739 2009-08-12 Juri Linkov <juri@jurta.org>
15740
15741 * international/mule-cmds.el (ucs-insert): Change arguments
15742 from `arg' to `character', `count', `inherit' to be the same
15743 as in `insert-char'. Doc fix. (Bug#4039)
15744
15745 * international/mule-conf.el (utf-16be-with-signature): Doc fix.
15746
15747 2009-08-12 Juri Linkov <juri@jurta.org>
15748
15749 * files-x.el: New file.
15750
15751 * files.el: Move code that deals with adding/deleting
15752 file/directory-local variables to files-x.el.
15753
15754 * Makefile.in (ELCFILES): Add files-x.elc.
15755
15756 2009-08-11 Dmitry Dzhus <dima@sphinx.net.ru>
15757
15758 * progmodes/gdb-mi.el (gdb-line-posns): New helper which helps not
15759 to use `goto-line'.
15760 (gdb-place-breakpoints, gdb-get-location): Rewritten without
15761 `goto-line'.
15762 (gdb-invalidate-disassembly): Do not refresh upon receiving
15763 'update signal. Instead, update all disassembly buffers only after
15764 threads list.
15765 (gdb): Send -target-detach when buffer is killed (Bug#3794).
15766 (gdb-starting): Moved -data-list-register-names...
15767 (gdb-stopped): ...here so it's sent when first thread stops.
15768 (gdb-registers-handler-custom): Do nothing if register names are
15769 unknown yet.
15770
15771 * progmodes/gud.el (gud-stop-subjob): Rewritten without macros
15772 from `gdb-mi.el' to avoid extra tangling.
15773
15774 * progmodes/gdb-mi.el (gdb-gud-context-call): Reverting previous
15775 change which breaks `gud-def' definitions used in `gdb'.
15776 (gdb-update-gud-running): No extra fuss for updating frame number.
15777
15778 2009-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
15779
15780 * international/mule-cmds.el (mule-keymap, mule-menu-keymap)
15781 (describe-language-environment-map, setup-language-environment-map)
15782 (set-coding-system-map): Move initialization into declaration.
15783 (set-language-info-alist): Last arg to define-key-after can be skipped.
15784
15785 * international/quail.el (quail-completion-1): Simplify.
15786 (quail-define-rules): Use slightly more compact code.
15787 (quail-insert-decode-map): Propertize keys, compact columns.
15788
15789 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
15790 Add goto-line.
15791
15792 2009-08-10 Miles Bader <miles@gnu.org>
15793
15794 * progmodes/js2-mode.el (js2-warning, js2-error, js2-jsdoc-tag)
15795 (js2-jsdoc-type, js2-jsdoc-value, js2-function-param)
15796 (js2-instance-member, js2-private-member, js2-private-function-call)
15797 (js2-jsdoc-html-tag-name, js2-jsdoc-html-tag-delimiter)
15798 (js2-magic-paren, js2-external-variable):
15799 Remove "-face" suffix from face names.
15800 (js2-jsdoc-highlight-helper, js2-highlight-jsdoc)
15801 (js2-highlight-undeclared-vars, js2-peek-token)
15802 (js2-parse-function-params, js2-mode-show-errors)
15803 (js2-mode-show-warnings, js2-make-magic-delimiter)
15804 (js2-mode-highlight-magic-parens): Update to use new face names.
15805
15806 2009-08-09 Michael Albinus <michael.albinus@gmx.de>
15807
15808 * net/tramp.el (tramp-get-ls-command-with-dired): New defun.
15809 (tramp-handle-insert-directory): Handle "--dired". (Bug#4075)
15810
15811 2009-08-09 Chong Yidong <cyd@stupidchicken.com>
15812
15813 * subr.el: Provide hashtable-print-readable.
15814
15815 * progmodes/hideshow.el (hs-special-modes-alist): Don't use
15816 hs-c-like-adjust-block-beginning.
15817 (hs-hide-block-at-point): Stop hiding at the beginning of
15818 hs-block-end-regexp (Bug#700).
15819
15820 2009-08-09 Dmitry Dzhus <dima@sphinx.net.ru>
15821
15822 * progmodes/gdb-mi.el (gdb-gud-context-call): Does not need to be
15823 a macro.
15824 (gdb-registers-handler-custom): Do not fail when register names
15825 are unavailable.
15826
15827 2009-08-08 Dmitry Dzhus <dima@sphinx.net.ru>
15828
15829 * progmodes/gdb-mi.el (gdb-control-all-threads)
15830 (gdb-control-current-thread): Interactive setters for
15831 `gdb-gud-control-all-threads' to use in menu.
15832 (gdb-show-run-p): Show «Go» when process is not active.
15833 (gud-tool-bar-map): Add non-stop/A,T indicator. Uses
15834 gud/thread.xpm and gud/all.xpm.
15835
15836 2009-08-08 Yoni Rabkin <yoni@rabkins.net>
15837
15838 * net/net-utils.el (net-utils-font-lock-keywords): New var.
15839 (nslookup-font-lock-keywords): Make it a variable.
15840 (net-utils-mode): New mode for viewing diagnostic network output.
15841 (net-utils-remove-ctrl-m-filter): Set inhibit-read-only.
15842 (net-utils-run-simple): New function.
15843 (ifconfig, iwconfig, netstat, arp, route): Use it.
15844
15845 2009-08-08 Dmitry Dzhus <dima@sphinx.net.ru>
15846
15847 * progmodes/gdb-mi.el (gdb-read-memory-custom)
15848 (gdb-memory-set-address, def-gdb-set-positive-number)
15849 (def-gdb-memory-format, def-gdb-memory-unit): Update memory buffer
15850 after changing settings.
15851 (gdb-invalidate-disassembly): Update when first shown.
15852 (gdb-edit-locals-value): Fixed.
15853 (gdb-registers-handler-custom): Print registers in right order and
15854 allow changing register values (only for current thread yet).
15855 (gdb-breakpoints-mode-map): Don't assume threads buffer is present.
15856 (gdb-threads-mode-map): Don't assume breakpoints buffer is present.
15857 (gdb-disassembly-handler-custom, gdb-stack-list-frames-custom)
15858 (gdb-locals-handler-custom, gdb-registers-handler-custom): Thread
15859 info in mode name.
15860 (gdb-registers-mode-map): TAB to switch to locals.
15861
15862 2009-08-08 Eli Zaretskii <eliz@gnu.org>
15863
15864 * mail/rmail.el (rmail-add-mbox-headers)
15865 (rmail-set-message-counters-counter): Search for
15866 rmail-unix-mail-delimiter instead of just "From ". (Bug#4076)
15867
15868 2009-08-08 Glenn Morris <rgm@gnu.org>
15869
15870 * Makefile.in (ELCFILES): Update.
15871
15872 2009-08-07 Eli Zaretskii <eliz@gnu.org>
15873
15874 * mail/sendmail.el (mail-yank-original): Set
15875 buffer-file-coding-system from the one used by the message whose
15876 text is yanked.
15877
15878 * calc/calc-graph.el (calc-graph-plot): Set calc-graph-last-device
15879 to "windows" when "pgnuplot" is used.
15880 (calc-graph-command, calc-gnuplot-command, calc-graph-init): Don't
15881 call accept-process-output if "pgnuplot" is used.
15882 (calc-graph-init): Don't send -display and -geometry to
15883 "pgnuplot". If "pgnuplot" is used, glean gnuplot version by
15884 running "pgnuplot -V" with shell-command-to-string.
15885
15886 * calc/calc.el (calc-gnuplot-name) [windows-nt]: Use "pgnuplot" as
15887 the default.
15888
15889 2009-08-07 Eli Zaretskii <eliz@gnu.org>
15890
15891 * Makefile.in (ELCFILES): org/org-export-latex.elc renamed to
15892 org/org-latex.elc.
15893
15894 2009-08-07 Dan Nicolaescu <dann@ics.uci.edu>
15895
15896 * vc-dispatcher.el (vc-resynch-window): Update comment.
15897
15898 * term.el (term-handle-ansi-escape): Add comments with the
15899 terminfo capabilities implemented.
15900
15901 2009-08-06 Dmitry Dzhus <dima@sphinx.net.ru>
15902
15903 * progmodes/gdb-mi.el (gdb-var-create-regexp): Removed.
15904 (gdb-var-create-handler): Rewritten using JSON parser.
15905 (gdb-propertize-header): Moved earlier.
15906 (gdb-set-header): Removed to avoid duplication.
15907 (gdb-thread-list-handler-custom, gdb-invalidate-disassembly):
15908 Refresh disassembly buffers only after threads list have been
15909 update.
15910 (gdb-threads-header, gdb-registers-header): Per-buffer header line
15911 variables.
15912
15913 2009-08-04 Juri Linkov <juri@jurta.org>
15914
15915 * files.el: Commands to add/delete file/directory-local variables.
15916 (read-file-local-variable, read-file-local-variable-value)
15917 (read-file-local-variable-mode, modify-file-local-variable)
15918 (modify-file-local-variable-prop-line)
15919 (modify-dir-local-variable): New functions.
15920 (add-file-local-variable, delete-file-local-variable)
15921 (add-file-local-variable-prop-line, delete-file-local-variable-prop-line)
15922 (add-dir-local-variable, delete-dir-local-variable)
15923 (copy-file-locals-to-dir-locals, copy-dir-locals-to-file-locals)
15924 (copy-dir-locals-to-file-locals-prop-line): New commands.
15925
15926 2009-08-04 Chong Yidong <cyd@stupidchicken.com>
15927
15928 * abbrev.el (insert-abbrev-table-description): Prettify output.
15929 Suggested by Karl Chen.
15930
15931 2009-08-04 Dmitry Dzhus <dima@sphinx.net.ru>
15932
15933 * progmodes/gdb-mi.el (gdb-frame-number): Initialize with nil.
15934 (gdb-overlay-arrow-position): Rename to `gdb-disassembly-position'.
15935 (gdb-overlay-arrow-position, gdb-thread-position)
15936 (gdb-disassembly-position): Declare variables.
15937 (gdb-wait-for-pending): Function now.
15938 (gdb-add-subscriber, gdb-delete-subscriber, gdb-get-subscribers)
15939 (gdb-emit-signal, gdb-buf-publisher): Declare before first use so
15940 compilation goes smoothly.
15941 (gdb, gdb-non-stop, gdb-buffers): New customization groups.
15942 (gdb-non-stop-setting): New customization setting which replaces
15943 `gdb-non-stop' so changing it doesn't break active GDB session.
15944 (gdb-stack-buffer-locations, gdb-stack-buffer-addresses)
15945 (gdb-thread-buffer-verbose-names, gdb-thread-buffer-arguments)
15946 (gdb-thread-buffer-locations, gdb-thread-buffer-addresses)
15947 (gdb-show-threads-by-default): New customization options.
15948 (gdb-buffer-type, gdb-buffer-shows-main-thread-p): New helper
15949 routines.
15950 (gdb-get-buffer-create): Send buffers update signal when they are
15951 created.
15952 (gdb-invalidate-locals, gdb-invalidate-registers)
15953 (gdb-invalidate-breakpoints)
15954 (gdb-invalidate-threads, gdb-invalidate-disassembly)
15955 (gdb-invalidate-memory): Accept update signal.
15956 (gdb-current-context-command): Use --frame option.
15957 (gdb-update-gud-running, gdb-running, gdb-setq-thread-number):
15958 Implement `gdb-frame-number' selection logic.
15959 (gdb-show-run-p, gdb-show-stop-p): Helper functions which decide
15960 whether to show GUD toolbar buttons.
15961 (gdb-thread-exited): Unselect current thread when it exits.
15962 (gdb-stopped): Typo fixed (now really runs `gdb-stopped-hooks').
15963 (gdb-mark-line): Routine which sets overlay arrow or inverses
15964 video on fringeless displays.
15965 (gdb-table, gdb-table-add-row, gdb-table-string): Structure used
15966 to build aligned columns of data in GDB buffers and set text
15967 properties line-by-line.
15968 (gdb-invalidate-breakpoints)
15969 (gdb-breakpoints-list-handler-custom)
15970 (gdb-thread-list-handler-custom, gdb-disassembly-handler-custom)
15971 (gdb-stack-list-frames-custom, gdb-locals-handler-custom)
15972 (gdb-registers-handler-custom): Align data columns.
15973 (gdb-locals-handler-custom): Now prints data like in variable
15974 declarations.
15975 (gdb-jump-to, gdb-file-button, gdb-insert-file-location-button):
15976 Removed confusing buttons.
15977 (gdb-invalidate-threads): Append --frame.
15978 (gdb-threads-mode-map, gdb-breakpoints-mode-map): TAB to switch
15979 between breakpoints/threads buffers.
15980 (gdb-set-window-buffer): Now can ignore dedicated windows.
15981 (gdb-propertize-header): Use `gdb-set-window-buffer'.
15982 (def-gdb-thread-buffer-simple-command): Numerous typos fixed.
15983 (def-gdb-thread-buffer-gud-command): Replaces
15984 `def-gdb-thread-buffer-gdb-command' and uses standard GUD commands
15985 for fine thread control.
15986 (gdb-preempt-existing-or-display-buffer): New function used to
15987 display bound buffers without breaking window layout.
15988 (gdb-frame-location): Replaces `gdb-insert-frame-location'.
15989 (gdb-select-frame): New version of `gdb-frames-select' which now
15990 sets `gdb-frame-number' so commands may use --frame option instead
15991 of inner debugger state.
15992 (gdb-frame-handler): Do not set `gdb-frame-number'.
15993 (gdb-threads-mode-map): Select threads with mouse.
15994
15995 * progmodes/gud.el (gdb-gud-context-call): Declare function to
15996 avoid compilation warning.
15997 (gud-menu-map, gud-minor-mode-map): Use `gdb-show-run-p` and
15998 `gdb-show-stop-p`.
15999
16000 * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create):
16001 Argument `key' renamed to `buffer-type'.
16002 (gdb-current-context-buffer-name): Do not add thread info to
16003 buffer name when no thread is selected.
16004 (gdbmi-record-list, gdb-shell): Try to handle GDB `shell'
16005 command (bug 3794).
16006 (gdb-thread-selected): Handle `=thread-selected' notification.
16007 (gdb-wait-for-pending): New macro to deal with congestion problems.
16008 (gdb-breakpoints-list-handler-custom): Don't fail on pending
16009 breakpoints.
16010 (gdb-invalidate-disassembly): Use 'fullname instead of 'file.
16011 This fixes problem similar to one described in bug 3947.
16012 (gud-menu-map): More menu items.
16013 (gdb-init-1): Reset `gdb-thread-number' to nil.
16014
16015 * progmodes/gud.el (gud-stop-subjob, gud-menu-map): Respect GDB
16016 non-stop settings.
16017
16018 * progmodes/gdb-mi.el (gdb-thread-number): Initialize with nil.
16019 (gdb-current-context-command): Do not append --thread if
16020 `gdb-thread-number' is nil.
16021 (gdb-running-threads-count, gdb-stopped-threads-count): New
16022 variables.
16023 (gdb-non-stop, gdb-gud-control-all-threads, gdb-switch-reasons)
16024 (gdb-stopped-hooks, gdb-switch-when-another-stopped): New
16025 customization options.
16026 (gdb-gud-context-command, gdb-gud-context-call): New wrappers for
16027 GUD commands.
16028 (gdb): `gud-def' definitions changed to use `gdb-gud-context-call'.
16029 (gdb-init-1): Activate non-stop mode if `gdb-non-stop' is enabled.
16030 (gdb-setq-thread-number, gdb-update-gud-running): New functions to
16031 set `gdb-thread-number' and update `gud-running' properly.
16032 (gdb-running): Update threads list when new threads appear.
16033 (gdb-stopped): Support non-stop operation and new thread switching
16034 logic.
16035 (gdb-jsonify-buffer, gdb-json-read-buffer, gdb-json-string)
16036 (gdb-json-partial-output): New set of JSON routines.
16037 (def-gdb-auto-update-trigger): New `signal-list' optional
16038 argument.
16039 (gdb-thread-list-handler-custom): Update `gud-running',
16040 `gdb-stopped-threads-count' and `gdb-running-threads-count'.
16041 (def-gdb-thread-buffer-gdb-command, gdb-interrupt-thread)
16042 (gdb-continue-thread, gdb-step-thread): New commands for fine
16043 thread execution control.
16044 (gud-menu-map): New menu items to switch non-stop options.
16045 (gdb-reset): Cleanup `gdb-thread-position' overlay arrow marker.
16046 (gdb-send): Mimic RET properly (bug 3794).
16047
16048 * progmodes/gdb-mi.el (gdb-rules-name-maker)
16049 (gdb-rules-buffer-mode, gdb-rules-update-trigger): Accessors for
16050 gdb-buffer-rules.
16051 (def-gdb-auto-update-handler): New nopreserve optional argument.
16052 (gdb-stack-list-frames-custom): Print stack from top to bottom.
16053
16054 * progmodes/gdb-mi.el (gdb-pc-address): Removed unused variable.
16055 (gdb-threads-list, gdb-breakpoints-list): New assoc lists.
16056 (gdb-parent-mode): New mode to derive other GDB modes from.
16057 (gdb-display-disassembly-for-thread)
16058 (gdb-frame-disassembly-for-thread): New commands for threads
16059 buffer.
16060
16061 * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create)
16062 (gdb-init-1, gdb-bind-function-to-buffer, gdb-add-subscriber)
16063 (gdb-get-subscribers, gdb-emit-signal, gdb-buf-publisher)
16064 (gdb-update): We now store all GDB buffers in a list so that they
16065 can be updated by traversing a list instead of calling invalidate
16066 triggers explicitly.
16067 (def-gdb-trigger-and-handler): New macro to define trigger-handler
16068 pair for GDB buffer.
16069 (gdb-stack-buffer-name): Add thread information.
16070 (gdb-add-pending, gdb-pending-p, gdb-delete-pending): Macros to
16071 handle pending triggers.
16072 (gdb-threads-mode-map, def-gdb-thread-buffer-command)
16073 (def-gdb-thread-buffer-simple-command)
16074 (gdb-display-stack-for-thread, gdb-display-locals-for-thread)
16075 (gdb-display-registers-for-thread, gdb-frame-stack-for-thread)
16076 (gdb-frame-locals-for-thread, gdb-frame-registers-for-thread):
16077 New commands which show buffers bound to thread.
16078 (gdb-stack-list-locals-regexp): Removed unused regexp.
16079
16080 * progmodes/gdb-mi.el (gdb-breakpoints-buffer-name)
16081 (gdb-locals-buffer-name, gdb-registers-buffer-name)
16082 (gdb-memory-buffer-name, gdb-stack-buffer-name): Do not switch
16083 to (gud-comint-buffer) in *-buffer-name functions
16084 because (gdb-get-target-string) already does that.
16085 (gdb-locals-handler-custom, gdb-registers-handler-custom)
16086 (gdb-changed-registers-handler): Rewritten without regexps.
16087
16088 * progmodes/gdb-mi.el: Basic thread selection support.
16089 (gdb-thread-number): New variable.
16090 (gdb-current-context-command): New macro which adds --thread
16091 option to command.
16092 (gdb-threads-mode-map): Select thread with SPC.
16093 (gdb-thread-list-handler-custom): Mark current thread with overlay
16094 arrow. Synchronize GDB thread and Emacs thread.
16095 (gdb-select-thread): New command which selects current thread.
16096 (gdb-invalidate-frames, gdb-invalidate-locals)
16097 (gdb-invalidate-registers): Use --thread option.
16098
16099 2009-08-04 Michael Albinus <michael.albinus@gmx.de>
16100
16101 * net/tramp.el (top): Make check for tramp-gvfs loading more
16102 robust. (Bug#3977)
16103 (tramp-handle-insert-file-contents): `unwind-protect' must be
16104 inside `with-parsed-tramp-file-name'.
16105
16106 * net/tramp-gvfs.el (top): Remove superfluous message when loading
16107 fails.
16108
16109 2009-08-03 Nick Roberts <nickrob@snap.net.nz>
16110
16111 * progmodes/gud.el (jdb): Set gud-jdb-classpath-string to current
16112 directory if CLASSPATH is not set.
16113
16114 2009-08-03 Michael Albinus <michael.albinus@gmx.de>
16115
16116 * net/tramp.el (tramp-rfn-eshadow-update-overlay-regexp):
16117 New defconst.
16118 (tramp-rfn-eshadow-update-overlay): Use it. (Bug#4004)
16119
16120 2009-08-02 Kevin Ryde <user42@zip.com.au>
16121
16122 * net/newst-backend.el (newsticker--raw-url-list-defaults):
16123 Update freshmeat link. Delete newsforge.com as it seems gone.
16124
16125 2009-08-02 Chong Yidong <cyd@stupidchicken.com>
16126
16127 * select.el (x-set-selection): Doc fix (Bug#4021).
16128
16129 * w32-fns.el (x-set-selection): Doc fix (Bug#4021).
16130
16131 * help-fns.el (describe-variable): Treat list return values from
16132 dir-locals-find-file properly (Bug#4005).
16133
16134 2009-08-02 Julian Scheid <julians37@googlemail.com> (tiny change)
16135
16136 * net/tramp.el (tramp-debug-message): Print also microseconds.
16137
16138 2009-08-02 Michael Albinus <michael.albinus@gmx.de>
16139
16140 * net/tramp.el (tramp-handle-insert-file-contents): Optimize, when BEG
16141 or END is non-nil.
16142 (tramp-handle-vc-registered): Use `tramp-cache-inhibit-cache'.
16143 (tramp-get-debug-buffer): Change `outline-regexp' according to new
16144 format.
16145
16146 * net/tramp-cache.el (tramp-cache-inhibit-cache): New defvar.
16147 (tramp-get-file-property): Use it.
16148
16149 * autorevert.el (auto-revert-handler): Allow
16150 `auto-revert-tail-mode' for remote files.
16151
16152 2009-08-02 Jason Rumney <jasonr@gnu.org>
16153
16154 * minibuffer.el (read-file-name): Treat confirm options to
16155 MUSTMATCH as nil when invoking x-file-dialog. (Bug#3969)
16156
16157 2009-08-02 Chong Yidong <cyd@stupidchicken.com>
16158
16159 * font-lock.el (font-lock-string-face, font-lock-builtin-face)
16160 (font-lock-variable-name-face, font-lock-constant-face): Darken
16161 the colors for light backgrounds.
16162
16163 2009-08-01 Eli Zaretskii <eliz@gnu.org>
16164
16165 * mail/rmailsum.el (rmail-header-summary): Ignore letter-case of
16166 month names. (Bug#3987)
16167
16168 2009-07-31 Chong Yidong <cyd@stupidchicken.com>
16169
16170 * simple.el (line-move-finish): Pass whole number to
16171 line-move-to-column.
16172 (line-move-visual): Perform hscroll to the recorded position.
16173
16174 2009-07-30 Jay Belanger <jay.p.belanger@gmail.com>
16175
16176 * calc/calc-mode.el (calc-matrix-brackets): Remove "P" from prompt.
16177
16178 2009-07-29 Alan Mackenzie <acm@muc.de>
16179
16180 * progmodes/cc-defs.el (c-version): Bump to 5.31.7.
16181
16182 2009-07-29 Dmitry Dzhus <dima@sphinx.net.ru>
16183
16184 * progmodes/gdb-mi.el (gdb-goto-breakpoint)
16185 (gdb-place-breakpoints): Use full path when setting breakpoints.
16186
16187 2009-07-29 Jay Belanger <jay.p.belanger@gmail.com>
16188
16189 * calc/calc.el (calc-mode-map): Add keybinding for
16190 `calc-transpose-lines'.
16191
16192 2009-07-29 Vincent Belaïche <vincent.belaiche@gmail.com>
16193
16194 * calc/calc-misc.el (calc-transpose-lines): New function.
16195
16196 2009-07-28 Michael Albinus <michael.albinus@gmx.de>
16197
16198 * net/tramp.el (tramp-do-copy-or-rename-file): Add messages.
16199 Simplify check for out-of-band methods.
16200 (tramp-do-copy-or-rename-file-out-of-band): Allow both files to be
16201 remote. Remove messages which are in `tramp-do-copy-or-rename-file'.
16202
16203 2009-07-28 Dan Nicolaescu <dann@ics.uci.edu>
16204
16205 * vc-git.el (vc-git-checkin): Fix typo.
16206
16207 2009-07-28 Steve Yegge <steve.yegge@gmail.com>
16208
16209 * progmodes/js2-mode.el: New file.
16210
16211 2009-07-28 Nick Roberts <nickrob@snap.net.nz>
16212
16213 * progmodes/gud.el (jdb): Add gud-pstar to dump object information.
16214 (gud-menu-map): Adjust tooltip accordingly.
16215
16216 2009-07-27 Dan Nicolaescu <dann@ics.uci.edu>
16217
16218 * vc-bzr.el (vc-bzr-print-log): Pass multiple arguments to bzr log.
16219 (vc-bzr-log-view-mode): Adjust log-view-file-re.
16220
16221 * add-log.el (change-log-mode-map): Add a menu.
16222
16223 2009-07-27 Michael Albinus <michael.albinus@gmx.de>
16224
16225 * net/dbus.el (dbus-call-method-non-blocking): Handle the case the
16226 function returns nil.
16227 (dbus-handle-event): Handle special return value :ignore.
16228 Reported by Jan Moringen <jan.moringen@uni-bielefeld.de>.
16229
16230 2009-07-26 Chong Yidong <cyd@stupidchicken.com>
16231
16232 * view.el (view-mode-enable): Don't define Helper-return-blurb if
16233 it's not needed.
16234
16235 2009-07-25 Eli Zaretskii <eliz@gnu.org>
16236
16237 Fix Bug#3888:
16238
16239 * w32-vars.el (x-select-enable-clipboard): Doc fix.
16240
16241 * term/pc-win.el (x-display-name, x-colors)
16242 (x-select-enable-clipboard, x-select-text): Doc fix.
16243
16244 * term/common-win.el (x-display-name, x-colors): Doc fix.
16245
16246 * term/ns-win.el (x-select-text, x-setup-function-keys, x-colors)
16247 (xw-defined-colors): Doc fix.
16248
16249 * w32-fns.el (x-select-text, x-setup-function-keys)
16250 (x-get-selection, x-set-selection): Doc fix.
16251
16252 * term/x-win.el (x-select-text, x-setup-function-keys)
16253 (x-select-enable-clipboard, xw-defined-colors): Doc fix.
16254
16255 * select.el (x-set-selection): Doc fix.
16256
16257 2009-07-25 Michael Albinus <michael.albinus@gmx.de>
16258
16259 * net/zeroconf.el (zeroconf-init): Check for "GetVersionString"
16260 instead of "IsNSSSupportAvailable". Avahi ought to work also when
16261 "IsNSSSupportAvailable" method is not available. Reported by
16262 Steve Youngs <steve@sxemacs.org>.
16263
16264 2009-07-24 Kenichi Handa <handa@m17n.org>
16265
16266 * international/characters.el: Fix setting of category ?C, ?|, ?K,
16267 and ?H. Fix setting of case for Latin Extended and Greek Extended.
16268 (build-unicode-category-table): Fix range checks.
16269
16270 2009-07-24 Dan Nicolaescu <dann@ics.uci.edu>
16271
16272 * vc-dispatcher.el (vc-resynch-buffers-in-directory): Make sure
16273 the buffer we try to sync is current when calling
16274 vc-resynch-buffer.
16275
16276 * vc-dir.el (vc-dir-resynch-file): Make sure vc-dir-update does
16277 not show up to date files.
16278
16279 2009-07-24 Glenn Morris <rgm@gnu.org>
16280
16281 * emacs-lisp/elint.el (elint-current-buffer, elint-defun):
16282 Add autoload cookies. If necessary, initialize.
16283 (elint-log): Handle non-file buffers.
16284 (elint-initialize): Add optional argument to reinitialize.
16285 (elint-find-builtin-variables): Save excursion.
16286
16287 2009-07-23 Dan Nicolaescu <dann@ics.uci.edu>
16288
16289 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
16290 for Lint.
16291
16292 2009-07-22 Dan Nicolaescu <dann@ics.uci.edu>
16293
16294 * vc.el (vc-print-log-internal): New function, split out from ...
16295 (vc-print-log): ... here.
16296 (vc-dir-move-to-goal-column): Declare.
16297
16298 * vc-git.el (vc-git-add-signoff): New variable.
16299 (vc-git-checkin): Use it.
16300 (vc-git-toggle-signoff): New function.
16301 (vc-git-extra-menu-map): Bind it to menu.
16302 (vc-git--run-command-string): Accept a nil FILE argument.
16303 (vc-git-stash-list): New function.
16304 (vc-git-dir-extra-headers): Use it.
16305
16306 2009-07-23 Glenn Morris <rgm@gnu.org>
16307
16308 * help-fns.el (describe-variable): Describe ignored and risky local
16309 variables in a similar way to that in which we describe safe ones.
16310
16311 * emacs-lisp/bytecomp.el (byte-compile-from-buffer)
16312 (byte-compile-output-file-form, byte-compile-output-docform)
16313 (byte-compile-file-form-defmumble, byte-compile-output-as-comment):
16314 Give some more local variables with common names a "bytecomp-" prefix,
16315 so as not to shadow things during compilation.
16316 * emacs-lisp/cl-macs.el (load-time-value)
16317 * emacs-lisp/cl.el (cl-compiling-file): Update for the name-change
16318 `outbuffer' to `bytecomp-outbuffer'.
16319
16320 * emacs-lisp/elint.el (elint-standard-variables): Remove most members,
16321 since the next two variables cover them automatically now.
16322 (elint-builtin-variables, elint-autoloaded-variables): New.
16323 (elint-unknown-builtin-args): Remove all members, since they can be
16324 parsed automatically now.
16325 (elint-extra-errors): New.
16326 (elint-env-add-env, elint-env-add-macro): Use cadr.
16327 (elint-current-buffer): Use or. Change final message.
16328 (elint-get-top-forms): Use line-end-position.
16329 (elint-init-env): Use cadr. Handle autoload, declare-function,
16330 and defalias.
16331 (elint-add-required-env): Doc fix. Use or. Standardize error.
16332 (regexp-assoc): Remove unused function.
16333 (elint-top-form): Set elint-current-pos, to record the start of the
16334 top-level form, for compilation-mode.
16335 (elint-form): Trap errors in macro expansion. Use dolist.
16336 (elint-unbound-variable): Use elint-builtin-variables and
16337 elint-autoloaded-variables.
16338 (elint-get-args): Use cadr, or.
16339 (elint-check-cond-form): Use dolist, cadr.
16340 (elint-check-condition-case-form): Doc fix. Use cadr.
16341 Use elint-extra-errors.
16342 (elint-log): New function.
16343 (elint-error, elint-warning): Use elint-log for a bytecomp-style format.
16344 Distinguish errors and warnings.
16345 (elint-log-message): Use with-current-buffer. Inhibit read-only.
16346 Use a bytecomp-style format.
16347 (elint-clear-log): Preserve default-directory. Inhibit read-only.
16348 (elint-get-log-buffer): Use compilation mode. Disable undo.
16349 Don't truncate lines.
16350 (elint-initialize): Set builtin and autoloaded variable lists.
16351 Only process elint-unknown-builtin-args if non-nil.
16352 (elint-find-builtin-variables, elint-find-autoloaded-variables):
16353 New functions.
16354 (elint-find-builtin-args): Doc fix. Handle "BODY...)".
16355
16356 2009-07-22 Kevin Ryde <user42@zip.com.au>
16357
16358 * net/newst-backend.el (newsticker--parse-atom-1.0)
16359 (newsticker--parse-rss-0.91, newsticker--parse-rss-0.92)
16360 (newsticker--parse-rss-1.0):
16361 * progmodes/idlwave.el (idlwave-mode):
16362 * progmodes/idlw-shell.el (idlwave-shell-mode):
16363 * progmodes/vera-mode.el (vera-mode):
16364 * progmodes/verilog-mode.el (verilog-auto-inst, verilog-auto):
16365 * progmodes/vhdl-mode.el (vhdl-mode):
16366 * textmodes/table.el (table-generate-source)
16367 (table--warn-incompatibility):
16368 Hyperlink urls in docstrings with URL `...'.
16369
16370 2009-07-22 Glenn Morris <rgm@gnu.org>
16371
16372 * emacs-lisp/advice.el, emacs-lisp/checkdoc.el:
16373 * emacs-lisp/debug.el, emacs-lisp/elp.el, emacs-lisp/gulp.el:
16374 * emacs-lisp/lisp.el, emacs-lisp/pp.el, emacs-lisp/trace.el:
16375 Remove leading * from defcustom docs.
16376
16377 * simple.el (blink-matching-paren-distance): Bump to 100k. (Bug#3889)
16378
16379 * emacs-lisp/shadow.el (shadows-compare-text-p): Remove leading * from
16380 defcustom doc.
16381 (list-load-path-shadows): Optionally, just return shadows as a string.
16382
16383 * mail/emacsbug.el (report-emacs-bug): Include any load-path shadows.
16384
16385 2009-07-21 Chong Yidong <cyd@stupidchicken.com>
16386
16387 * mail/rmailedit.el (rmail-edit-mode): Use
16388 auto-save-include-big-deletions.
16389
16390 * mail/rmail.el (rmail-variables): Use
16391 auto-save-include-big-deletions.
16392
16393 * files.el (auto-save-mode): Revert 2009-07-21 and 2009-07-16
16394 changes.
16395
16396 2009-07-21 Jay Belanger <jay.p.belanger@gmail.com>
16397
16398 * calc/calc.el (calc-undo-length): New variable.
16399 (calc-quit): Truncate rather than eliminate `calc-undo-list'.
16400
16401 2009-07-21 Richard Stallman <rms@gnu.org>
16402
16403 * files.el (auto-save-mode): Handle buffer-save-size = -2
16404 for toggling mode.
16405
16406 2009-07-21 Glenn Morris <rgm@gnu.org>
16407
16408 * textmodes/ispell.el (ispell-looking-back): Update declaration.
16409
16410 * calendar/todo-mode.el (calendar-current-date): Update declaration.
16411
16412 * ps-print.el (ps-jitify, ps-lazify): Remove aliases only used to
16413 silence compiler. Instead...
16414 (jit-lock-fontify-now, lazy-lock-fontify-region): ...Declare.
16415 (ps-print-ensure-fontified): Update for above function name changes.
16416
16417 * printing.el (pr-mh-get-msg-num, pr-mh-show)
16418 (pr-mh-start-of-uncleaned-message): Remove aliases only used to
16419 silence compiler. Instead...
16420 (mh-get-msg-num, mh-show, mh-start-of-uncleaned-message): ...Declare.
16421 (mh-show-buffer): Only define for compiler.
16422 (pr-mh-current-message): Update for above function name changes.
16423
16424 * files.el (abort-if-file-too-large): Explicitly pass `filename'
16425 as an argument.
16426 (find-file-noselect, insert-file-1): Update for above change.
16427
16428 * mail/rmail.el (rmail-retry-ignored-headers): Bump :version.
16429
16430 * mail/mailclient.el (mailclient-send-it): Fix message.
16431
16432 * emacs-lisp/edebug.el (cl-debug-env): Only define for compiler.
16433 (edebug-eval): Check cl-debug-env is bound.
16434 (print-level, print-circle): Don't redefine built-in variables.
16435
16436 * emacs-lisp/cust-print.el: Remove leading * from defcustom docs.
16437 (custom-print-vectors): Remove old comments from doc.
16438
16439 * emerge.el (menu-bar-emerge-menu): Remove unused variable.
16440 (emerge-version): Make the variable an obsolete alias for the
16441 emacs-version variable. Make the function obsolete.
16442 (emerge-fast-keymap, emerge-edit-keymap): Make a separate menu for
16443 Emerge options, rather than merging in into the main Options menu.
16444 (emerge-options-menu): Adjust menu text. Use buttons for skip prefers
16445 and auto advance modes. Disable edit/fast items when not relevant.
16446
16447 2009-07-20 Dan Nicolaescu <dann@ics.uci.edu>
16448
16449 * term/vt420.el (terminal-init-vt420): Fix typo.
16450
16451 2009-07-20 Sam Steingold <sds@gnu.org>
16452
16453 * progmodes/ada-mode.el (compile-auto-highlight): Remove the
16454 variable (removed from compile.el on 2004-03-11).
16455
16456 2009-07-20 Chong Yidong <cyd@stupidchicken.com>
16457
16458 * files.el (hack-local-variables-filter): Fix last change.
16459
16460 2009-07-19 Juri Linkov <juri@jurta.org>
16461
16462 * files.el (ignored-local-variables): Add `dir-local-variables-alist'.
16463 (dir-local-variables-alist): New buffer-local variable.
16464 (hack-local-variables-filter): If variable is not dir-local,
16465 i.e. `dir-name' is nil, then remove it from `dir-local-variables-alist',
16466 because file-local overrides dir-local.
16467 (c-postprocess-file-styles) <declare-function>:
16468 Remove obsolete declaration.
16469 (hack-dir-local-variables): Add dir-local variable/value pair to
16470 `dir-local-variables-alist' and remove duplicates. Doc fix.
16471
16472 * help-fns.el (describe-variable): Add information about
16473 file-local and dir-local variables.
16474
16475 2009-07-19 Chong Yidong <cyd@stupidchicken.com>
16476
16477 * files.el (hack-local-variables-filter): Rewrite.
16478
16479 2009-07-19 Glenn Morris <rgm@gnu.org>
16480
16481 * progmodes/verilog-mode.el (verilog-error-regexp-add-xemacs):
16482 Silence compiler by only defining on XEmacs.
16483
16484 * international/mule.el (auto-coding-regexp-alist): Only match
16485 BABYL... at the start of buffer, not of lines. (Bug#3790)
16486
16487 * calendar/cal-menu.el (cal-menu-set-date-title): Handle calls from
16488 non-calendar buffers (Bug#3862). Restore "not on a date" message.
16489 (cal-menu-context-mouse-menu): Doc fix.
16490
16491 * desktop.el (desktop-buffers-not-to-save): Set :version tag.
16492
16493 * simple.el (mail-user-agent): Doc fix. Set :version tag.
16494
16495 2009-07-18 Juri Linkov <juri@jurta.org>
16496
16497 * info.el: Virtual Info keyword finder.
16498 (add-to-list) <Info-virtual-files>: Add "\\`\\*Finder.*\\*\\'".
16499 (Info-finder-file): New variable.
16500 (Info-finder-find-file): New function.
16501 (finder-known-keywords, finder-package-info)
16502 (find-library-name, lm-commentary): Use defvar and
16503 declare-function to silence compiler warnings.
16504 (Info-finder-find-node): New function.
16505 (info-finder): New command.
16506
16507 * subr.el (process-kill-buffer-query-function): New function.
16508 (add-hook)<kill-buffer-query-functions>: Add hook
16509 `process-kill-buffer-query-function'.
16510
16511 2009-07-18 Alan Mackenzie <acm@muc.de>
16512
16513 * progmodes/cc-mode.el (c-before-hack-hook)
16514 (c-postprocess-file-styles): Give invocation of `c-set-style'
16515 DONT-OVERRIDE parameter of t. Already set style variables will
16516 thus not be overridden by style settings given by `c-file-syle'.
16517
16518 * files.el (hack-local-variables-filter): Remove entries with
16519 duplicate keys from `file-local-variables-alist'.
16520
16521 2009-07-18 Eli Zaretskii <eliz@gnu.org>
16522
16523 * simple.el (deactivate-mark, activate-mark, set-mark): Don't call
16524 x-set-selection if display-selections-p returns nil for the
16525 current frame.
16526
16527 2009-07-18 Chong Yidong <cyd@stupidchicken.com>
16528
16529 * simple.el (region-active-p, use-region-p): Doc fix (Bug#3873).
16530
16531 2009-07-18 Eli Zaretskii <eliz@gnu.org>
16532
16533 * desktop.el (desktop-buffers-not-to-save): Default value is nil.
16534 Accept nil in addition to a regexp.
16535 (desktop-files-not-to-save): Add "(ftp)$" to the default regexp.
16536 Accept nil in addition to a regexp.
16537 (desktop-save-buffer-p): Don't use desktop-buffers-not-to-save for
16538 buffers that have an associated file. Handle nil values of
16539 desktop-buffers-not-to-save and desktop-files-not-to-save.
16540 (Bug#3833)
16541
16542 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
16543 (x-disown-selection-internal): New functions.
16544
16545 2009-07-18 Nick Roberts <nickrob@snap.net.nz>
16546
16547 * progmodes/gdb-mi.el (speedbar-frame): Declare to avoid compiler
16548 warning.
16549 (gdb-breakpoints-header): Move forward to avoid compiler warning.
16550 (gdb-make-header-line-mouse-map): Remove duplicate definition.
16551
16552 2009-07-18 David De La Harpe Golden <david@harpegolden.net>
16553
16554 * simple.el (set-mark): Revert last change.
16555
16556 2009-07-17 Tassilo Horn <tassilo@member.fsf.org>
16557
16558 * doc-view.el (doc-view-initiate-display): Add yes-or-no-p if
16559 rendering of pngs is not possible instead of messaging a long
16560 description.
16561
16562 2009-07-17 David De La Harpe Golden <david@harpegolden.net>
16563
16564 * w32-fns.el (x-selection-owner-p): New function.
16565
16566 * mouse.el (mouse-drag-track): Call deactivate-mark earlier.
16567 (mouse-yank-at-click, mouse-yank-primary): If
16568 select-active-regions is non-nil, deactivate the mark before
16569 insertion.
16570
16571 * simple.el (deactivate-mark, set-mark): Only save selection if we
16572 own it.
16573
16574 2009-07-17 Kenichi Handa <handa@m17n.org>
16575
16576 * case-table.el (describe-buffer-case-table): Fix for the case
16577 that KEY is a cons.
16578
16579 2009-07-16 Dan Nicolaescu <dann@ics.uci.edu>
16580
16581 * vc-rcs.el (vc-rcs-find-file-hook):
16582 * vc-sccs.el (vc-sccs-find-file-hook): Fix cut and paste error.
16583
16584 2009-07-16 Michael Albinus <michael.albinus@gmx.de>
16585
16586 * net/tramp.el (tramp-wait-for-output): Handle the case when
16587 commands do not return a newline but a null byte before the shell
16588 prompt. (Bug#3858)
16589
16590 2009-07-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16591
16592 * term/ns-win.el (ns-set-alpha): Don't declare.
16593 (ns-set-background-alpha): Remove function.
16594
16595 2009-07-16 Kevin Ryde <user42@zip.com.au>
16596
16597 * emacs-lisp/copyright.el (copyright-update): Save match-data across
16598 y-or-n-p, for safety.
16599
16600 2009-07-16 Richard Stallman <rms@gnu.org>
16601
16602 * files.el (auto-save-mode): If buffer-saved-size is -2,
16603 don't clobber it.
16604
16605 * mail/rmail.el (rmail-variables): Set buffer-saved-size to -2.
16606 (rmail-retry-ignored-headers): Add more uninteresting fields.
16607
16608 2009-07-15 Jari Aalto <jari.aalto@cante.net>
16609
16610 * net/rcirc.el (rcirc): Use history variables.
16611 (rcirc-server-name-history, rcirc-nick-name-history)
16612 (rcirc-server-port-history): New variables.
16613
16614 2009-07-15 Kenichi Handa <handa@m17n.org>
16615
16616 * international/mule-cmds.el (set-language-environment-charset):
16617 If coding-system-charset-list returns `iso-2022' or `emacs-mule',
16618 ignore them.
16619
16620 * language/misc-lang.el ("IPA"): Change coding systems to utf-8.
16621 Delete unibyte-display.
16622
16623 2009-07-15 Chong Yidong <cyd@stupidchicken.com>
16624
16625 * simple.el (kill-visual-line): Obey kill-whole-line (Bug#3695).
16626
16627 2009-07-15 Chong Yidong <cyd@stupidchicken.com>
16628
16629 * simple.el (deactivate-mark): Optional argument FORCE.
16630 (set-mark): Use deactivate-mark.
16631
16632 * info.el (Info-search): No need to check transient-mark-mode
16633 before calling deactivate-mark.
16634
16635 * select.el (x-set-selection): Doc fix.
16636 (x-valid-simple-selection-p): Allow buffer values.
16637 (xselect--selection-bounds): Handle buffer values. Suggested by
16638 David De La Harpe Golden.
16639
16640 * mouse.el (mouse-set-region, mouse-drag-track): Call
16641 copy-region-as-kill before setting the mark, to let
16642 select-active-regions work.
16643
16644 2009-07-15 David De La Harpe Golden <david@harpegolden.net>
16645
16646 * simple.el (deactivate-mark): If select-active-regions is
16647 non-nil, copy the selection data into a string.
16648 (activate-mark): If select-active-regions is non-nil, set the
16649 selection to the current buffer.
16650 (set-mark): Update selection if select-active-regions is non-nil.
16651
16652 * select.el (x-valid-simple-selection-p): Allow buffer values.
16653
16654 2009-07-14 Stefan Monnier <monnier@iro.umontreal.ca>
16655
16656 * simple.el (mail-user-agent): Default to the upwardly-UI-compatible
16657 and more featureful message-mode.
16658
16659 2009-07-14 Chong Yidong <cyd@stupidchicken.com>
16660
16661 * select.el (x-set-selection): Doc fix.
16662 (x-valid-simple-selection-p): Disallow selection data consisting
16663 of a list or cons of integers, since that is not used.
16664 (xselect--selection-bounds, xselect--int-to-cons): New functions.
16665 (xselect-convert-to-string, xselect-convert-to-length)
16666 (xselect-convert-to-filename, xselect-convert-to-charpos)
16667 (xselect-convert-to-lineno, xselect-convert-to-colno): Use them.
16668
16669 2009-07-14 Dmitry Dzhus <dima@sphinx.net.ru>
16670
16671 * progmodes/gdb-mi.el (json-partial-output): Fix broken GDB/MI
16672 output in -break-info command (Emacs bug #3794).
16673
16674 2009-07-14 Glenn Morris <rgm@gnu.org>
16675
16676 * emacs-lisp/edebug.el (edebug-setup-hook, edebug-all-forms)
16677 (edebug-eval-macro-args, edebug-save-displayed-buffer-points)
16678 (edebug-print-length, edebug-print-level, edebug-print-circle)
16679 (edebug-sit-for-seconds, edebug-view-outside)
16680 (edebug-bounce-point, edebug-set-global-break-condition)
16681 (edebug-Go-nonstop-mode, edebug-trace-mode)
16682 (edebug-Trace-fast-mode, edebug-continue-mode)
16683 (edebug-Continue-fast-mode, edebug-forward-sexp, edebug-help)
16684 (edebug-visit-eval-list): Doc fixes.
16685
16686 * subr.el (def-edebug-spec): Doc fix.
16687
16688 2009-07-14 Kenichi Handa <handa@m17n.org>
16689
16690 * international/characters.el: Fix setting of category ?C.
16691
16692 2009-07-13 Jan Djärv <jan.h.d@swipnet.se>
16693
16694 * term/ns-win.el (x-select-font): defalias x-select-font to
16695 ns-popup-font-panel instead of generate-fontset-menu.
16696
16697 2009-07-12 Eli Zaretskii <eliz@gnu.org>
16698
16699 * desktop.el (desktop-buffers-not-to-save): Remove ".log". (Bug#3833)
16700
16701 2009-07-12 Peter Jolly <peter@jollys.org> (tiny change)
16702
16703 * arc-mode.el (archive-find-type): Allow for a PK00 string before
16704 the PK\003\004 header (Bug#3770).
16705
16706 2009-07-12 Guanpeng Xu <herberteuler@hotmail.com>
16707
16708 * pcomplete.el (pcomplete-comint-setup): Check for
16709 shell-dynamic-complete-filename too.
16710
16711 2009-07-11 Chong Yidong <cyd@stupidchicken.com>
16712
16713 * simple.el (temporary-goal-column): Change the value for
16714 line-move-visual to a cons cell.
16715 (line-move-visual): Record or set the window hscroll, if
16716 necessary (Bug#3494).
16717 (line-move-1): Handle cons value of temporary-goal-column.
16718
16719 2009-07-11 Kenichi Handa <handa@m17n.org>
16720
16721 * international/mule-diag.el (describe-character-set): Don't show
16722 width.
16723
16724 2009-07-10 Sam Steingold <sds@gnu.org>
16725
16726 * progmodes/compile.el (compilation-mode-font-lock-keywords):
16727 Omake sometimes indents the errors it prints, so allow all
16728 regexps to start with spaces.
16729
16730 2009-07-10 Eli Zaretskii <eliz@gnu.org>
16731
16732 * cus-edit.el (customize-changed-options-previous-release):
16733 Bump value to 22.1. (Bug#3804)
16734
16735 2009-07-08 Sam Steingold <sds@gnu.org>
16736
16737 * progmodes/grep.el (rgrep): Allow grep-find-ignored-directories
16738 to be a cons cell (test . ignored-directory) to selectively ignore
16739 some directories depending on the location of the search.
16740
16741 2009-07-08 Michael Albinus <michael.albinus@gmx.de>
16742
16743 * net/tramp.el (tramp-set-file-uid-gid): Handle the case the
16744 remote user is root, on the local host.
16745 (tramp-local-host-p): Either the local user or the remote user
16746 must be root. (Bug#3771)
16747
16748 2009-07-08 Nick Roberts <nickrob@snap.net.nz>
16749
16750 * progmodes/gdb-mi.el (gdb): Remove description of
16751 gdb-use-separate-io-buffer.
16752 (menu): Don't allow toggling of or enable
16753 gdb-use-separate-io-buffer from menubar.
16754
16755 2009-07-08 E. Jay Berkenbilt <ejb@ql.org> (tiny change)
16756
16757 * mail/unrmail.el (unrmail): Make sure the message ends with two
16758 newlines (Bug#3769).
16759
16760 2009-07-08 Glenn Morris <rgm@gnu.org>
16761
16762 * calendar/calendar.el (calendar-current-date): Rework previous change.
16763
16764 2009-07-08 Ed Reingold <reingold@emr.cs.iit.edu>
16765
16766 * calendar/calendar.el (calendar-current-date):
16767 Add an optional argument giving an offset from today.
16768
16769 2009-07-08 Glenn Morris <rgm@gnu.org>
16770
16771 * tutorial.el (tutorial--describe-nonstandard-key):
16772 Adjust the message for when a key has been unbound.
16773 (help-with-tutorial): Hide the arch-tag.
16774
16775 2009-07-08 Kenichi Handa <handa@m17n.org>
16776
16777 * international/fontset.el (setup-default-fontset): For each
16778 script, append (not set) font-specs.
16779
16780 * language/japanese.el (japanese-shift-jis-2004): Fix typo in the
16781 docstring.
16782
16783 2009-07-08 Nick Roberts <nickrob@snap.net.nz>
16784
16785 * progmodes/gdb-mi.el (gdb-init-1): Move sending
16786 -data-list-register-names to ...
16787 (gdb-starting): ... here because GDB 7.0 requires execution to
16788 have started when using this MI command.
16789 (gdb-set-header): New function to distinguish select and
16790 unselected tabs in gdb buffers.
16791 (gdb-propertize-header): New macro that uses gdb-set-header.
16792 (gdb-breakpoints-header, gdb-locals-header): Use it.
16793 (gdb-disassembly-mode-map): Add keybinding to kill buffer.
16794
16795 2009-07-07 Chong Yidong <cyd@stupidchicken.com>
16796
16797 * Makefile.in (ELCFILES): Remove fadr.elc.
16798
16799 2009-07-07 Dmitry Dzhus <dima@sphinx.net.ru>
16800
16801 * progmodes/gdb-mi.el (gdb-init-1): Disassembly buffer mode name
16802 may contain frame information, so `string-match' should be used.
16803 (gdb-update): Disassembly is invalidated through
16804 `gdb-get-selected-frame'.
16805 (gdb-pad-string): New function to pad string with spaces.
16806 (gdb-invalidate-disassembly): Invalidate only if the buffer
16807 exists.
16808 (gdb-disassembly-handler-custom): Column alignment.
16809 (gdb-disassembly-place-breakpoints): Clear old breakpoints before
16810 placing new ones.
16811 (gdb-toggle-breakpoint, gdb-delete-breakpoint): Now work from the
16812 end of line, too.
16813 (gdb-frame-handler): Match convention to for disassembly buffer
16814 mode name.
16815 (gdb-stack-list-frames-handler): Rewritten without regexps.
16816 (gdb-breakpoints-list-handler-custom): y/n instead of on/off; do
16817 not highlight breakpoints without line information.
16818 (gdb-input): Add trailing newline to command.
16819
16820 * progmodes/gdb-mi.el (gdb-init-1): Set mode name for disassembly
16821 buffer properly.
16822 (gdb-breakpoints-list-handler-custom): Replacement for
16823 `gdb-break-list-handler'. Using real parser instead of regexps
16824 now.
16825 (gdb-place-breakpoints): Replacement for `gdb-break-list-custom'.
16826 Use `gdb-breakpoints-list' instead of parsing breakpoints buffer
16827 to place breakpoints.
16828 (def-gdb-memory-unit): A new macro to define gdb-memory-unit-..
16829 functions.
16830 (gdb-disassembly-handler-custom): Show overlay arrow.
16831 (gdb-disassembly-place-breakpoints): Show breakpoints in
16832 disassembly buffer.
16833 (gdb-toggle-breakpoint, gdb-delete-breakpoint)
16834 (gdb-goto-breakpoint): Using `gdb-breakpoint' text properties
16835 instead of parsing breakpoints buffer. Fixed old menu references
16836 in `gud-menu-map'.
16837
16838 * fadr.el: Remove.
16839
16840 * progmodes/gdb-mi.el: Port memory buffer from gdb-ui.el.
16841 (gdb-memory-address): New variable which holds top address of
16842 memory page shown in memory buffer.
16843 (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit): New
16844 customization variables.
16845 New functions:
16846 (gdb-display-memory-buffer, gdb-frame-memory-buffer): Functions to
16847 display the memory buffer.
16848 (gdb-memory-set-address, gdb-memory-set-repeat-count): Set memory
16849 buffer display parameters.
16850 (def-gdb-memory-format, gdb-memory-format-binary)
16851 (gdb-memory-format-octal, gdb-memory-format-unsigned)
16852 (gdb-memory-format-signed, gdb-memory-format-hexadecimal):
16853 Functions for setting memory buffer format.
16854 (gdb-memory-unit-word, gdb-memory-unit-halfword)
16855 (gdb-memory-unit-giant, gdb-memory-unit-byte): Functions to set
16856 unit size used in memory buffer.
16857 (gdb-memory-show-next-page, gdb-memory-show-previous-page): Switch
16858 to next/previous page of memory buffer.
16859 Now using (bindat-get-field) instead of fadr functions.
16860
16861 2009-07-07 Sam Steingold <sds@gnu.org>
16862
16863 * vc-cvs.el (vc-cvs-merge-news): Fix message parsing for
16864 non-top-level files.
16865
16866 2009-07-07 Kenichi Handa <handa@m17n.org>
16867
16868 * international/mule-cmds.el (reset-language-environment): Put
16869 the highset priority to the charset iso-8859-1.
16870
16871 2009-07-06 Chong Yidong <cyd@stupidchicken.com>
16872
16873 * progmodes/hideshow.el (hs-hide-block-at-point): Don't move point
16874 to the end of the line when locating the block (Bug#700).
16875
16876 2009-07-06 Michael Albinus <michael.albinus@gmx.de>
16877
16878 * net/tramp.el (tramp-handle-write-region): Flush file properties
16879 in case of short track.
16880
16881 2009-07-06 Michael McNamara <mac@mail.brushroad.com>
16882
16883 * progmodes/verilog-mode.el (verilog-error-regexp-emacs-alist):
16884 Coded custom representation of verilog error regular expressions
16885 to work with Emacs-22's new format.
16886 (verilog-error-regexp-xemacs-alist): Coded custom representation
16887 of verilog error regular expressions to work with XEmacs format.
16888 (verilog-error-regexp-add-xemacs): Hook routine to install verilog
16889 error recognition into XEmacs.
16890 (verilog-error-regexp-add-emacs): Hook routine to install verilog
16891 error recognition into Emacs-22.
16892
16893 2009-07-06 Chong Yidong <cyd@stupidchicken.com>
16894
16895 * woman.el: Remove stand-alone closing parentheses.
16896 (woman-file-name, woman2-format-paragraphs)
16897 (woman-leave-blank-lines): Code cleanup.
16898 (woman-use-own-frame): Change default to nil.
16899 (woman-italic, woman-bold, woman-unknown, woman-addition): Change
16900 defaults to inherit from default faces.
16901 (woman2-process-escapes): Consume the newline after a stand-alone
16902 filler character (Bug#3651).
16903
16904 2009-07-06 Glenn Morris <rgm@gnu.org>
16905
16906 * ffap.el (ffap-version): Make it an obsolete alias for emacs-version.
16907 (top-level): Move provide to the end.
16908 (ffap): Remove defunct URL from custom group.
16909
16910 * subr.el (eval-after-load): Doc fix.
16911
16912 2009-07-06 Vincent Belaïche <vincent.belaiche@gmail.com>
16913
16914 * calc/calc-embed.el (calc-embedded-make-info): Don't force when
16915 `calc-embedded-word' is called twice.
16916
16917 2009-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
16918
16919 * files.el (find-alternate-file-other-window, find-alternate-file):
16920 Obey confirm-nonexistent-file-or-buffer.
16921
16922 2009-07-05 Michael Albinus <michael.albinus@gmx.de>
16923
16924 * dired-aux.el (dired-show-file-type): Handle remote files.
16925
16926 2009-07-05 Jari Aalto <jari.aalto@cante.net>
16927
16928 * desktop.el (desktop-globals-to-save):
16929 Add file-name-history (Bug#2750).
16930
16931 2009-07-05 Chong Yidong <cyd@stupidchicken.com>
16932
16933 * add-log.el (add-log-current-defun-header-regexp): Doc fix (Bug#2217).
16934
16935 2009-07-04 Johan Bockgård <bojohan@gnu.org>
16936
16937 * eshell/esh-arg.el (eshell-parse-argument-hook): Put `number'
16938 property on entire argument since this is what eshell-lisp-command
16939 expects.
16940
16941 2009-07-03 Michael Albinus <michael.albinus@gmx.de>
16942
16943 * net/tramp-gvfs.el (tramp-gvfs-methods)
16944 (tramp-gvfs-zeroconf-domain)
16945 (tramp-bluez-discover-devices-timeout): Add version flag.
16946 (tramp-gvfs-handler-mounted-unmounted)
16947 (tramp-gvfs-connection-mounted-p): Polish handling of
16948 incompatibilities between GVFS 0.2 and 1.0.
16949
16950 2009-07-03 Jan Djärv <jan.h.d@swipnet.se>
16951
16952 * cus-start.el (all): Add make-pointer-invisible.
16953
16954 2009-07-03 Jay Belanger <jay.p.belanger@gmail.com>
16955
16956 * calc/calc-math.el (math-use-emacs-fn): Make sure that the number is
16957 formatted correctly.
16958
16959 2009-07-02 Juri Linkov <juri@jurta.org>
16960
16961 * info.el: Virtual Info files and nodes.
16962 (Info-virtual-files, Info-virtual-nodes): New variables.
16963 (Info-current-node-virtual): New variable.
16964 (Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
16965 New functions.
16966 (Info-file-supports-index-cookies): Use Info-virtual-file-p
16967 to check for a virtual file instead of checking a fixed list
16968 of node names.
16969 (Info-find-file): Use Info-virtual-fun and Info-virtual-call
16970 instead of ad-hoc processing of "dir" and (apropos history toc).
16971 (Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
16972 instead of ad-hoc processing of "dir" and (apropos history toc).
16973 Reread a file when moving from a virtual node.
16974 (add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
16975 (Info-directory-toc-nodes, Info-directory-find-file)
16976 (Info-directory-find-node): New functions.
16977 (add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
16978 (Info-history): Move part of code to
16979 `Info-history-find-node'.
16980 (Info-history-toc-nodes, Info-history-find-file)
16981 (Info-history-find-node): New functions.
16982 (add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
16983 (Info-toc): Move part of code to `Info-toc-find-node'.
16984 (Info-toc-find-node): New function.
16985 (Info-toc-insert): Rename from `Info-insert-toc'. Don't insert
16986 the current Info file name to references because now the node
16987 "*TOC*" belongs to the same Info manual.
16988 (Info-toc-build): Rename from `Info-build-toc'.
16989 (Info-toc-nodes): Rename input argument `file' to `filename'.
16990 Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
16991 instead of ad-hoc processing of ("dir" apropos history toc).
16992 (Info-index-nodes): Use Info-virtual-file-p
16993 to check for a virtual file instead of checking a fixed list
16994 of node names.
16995 (Info-index-node): Add check for `Info-current-node-virtual'.
16996 Raise `save-match-data' higher up the tree to contain
16997 `search-forward' too (bug fix).
16998 (add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
16999 (Info-virtual-index-nodes): New variable.
17000 (Info-virtual-index-find-node, Info-virtual-index): New functions.
17001 (add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
17002 (Info-apropos-file, Info-apropos-nodes): New variables.
17003 (Info-apropos-toc-nodes, Info-apropos-find-file)
17004 (Info-apropos-find-node, Info-apropos-matches): New functions.
17005 (info-apropos): Move part of code to `Info-apropos-find-node' and
17006 `Info-apropos-matches'.
17007 (Info-mode-map): Bind "I" to `Info-virtual-index'.
17008 (Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
17009 for a virtual file instead of checking a fixed list of node names.
17010
17011 * simple.el (async-shell-command): New command.
17012
17013 * bindings.el (esc-map): Bind "&" to `async-shell-command'.
17014
17015 * net/tramp-gvfs.el (tramp-gvfs-connection-mounted-p): Use `elt'
17016 instead of `mount-info'.
17017
17018 2009-07-02 Michael Albinus <michael.albinus@gmx.de>
17019
17020 * net/tramp-gvfs.el (tramp-gvfs-handler-mounted-unmounted)
17021 (tramp-gvfs-connection-mounted-p): Handle changed mount-info interface.
17022
17023 2009-07-02 Kenichi Handa <handa@m17n.org>
17024
17025 * international/mule.el (set-keyboard-coding-system): Force *-unix
17026 coding-system to avoid eol conversion.
17027
17028 2009-07-01 Michael Albinus <michael.albinus@gmx.de>
17029
17030 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
17031 Add handler for `process-file', `shell-command' and
17032 `start-file-process'.
17033 (tramp-gvfs-handle-shell-command)
17034 (tramp-gvfs-handle-start-file-process)
17035 (tramp-gvfs-handle-process-file): New defuns.
17036 (tramp-synce-list-devices): Simplify check for existence of property.
17037
17038 2009-07-01 Jan Djärv <jan.h.d@swipnet.se>
17039
17040 * startup.el (command-line-x-option-alist): Add -mm and --maximized.
17041
17042 2009-07-01 Eduard Wiebe <usenet@pusto.de> (tiny change)
17043
17044 * language/korean.el (set-language-info-alist): Add korean-cp949,
17045 cp949 to spec.
17046
17047 2009-07-01 Kenichi Handa <handa@m17n.org>
17048
17049 * Makefile.in (ELCFILES): Delete encoded-kb.elc.
17050
17051 * international/encoded-kb.el: Deleted.
17052
17053 * international/mule.el (set-keyboard-coding-system): Perform the
17054 necessary setup here instead of calling encoded-kbd-setup-display.
17055
17056 2009-07-01 Glenn Morris <rgm@gnu.org>
17057
17058 * progmodes/f90.el (f90-break-delimiters, f90-no-break-re): Doc fixes.
17059
17060 2009-07-01 Evangelos Evangelou <vangelis@email.unc.edu> (tiny change)
17061
17062 * progmodes/f90.el (f90-no-break-re): Add "(/" and "/)". (Bug#3730)
17063
17064 2009-06-30 Michael Albinus <michael.albinus@gmx.de>
17065
17066 * net/tramp.el (tramp-do-copy-or-rename-file-directly):
17067 Handle also the 'rename case, when setting file modes. (Bug#3712)
17068 (tramp-default-file-modes): Remove execute permissions.
17069
17070 * net/tramp-gvfs.el (tramp-gvfs-methods): Add "synce" method.
17071 (top): Add a default for "synce" in `tramp-default-user-alist'.
17072 Add completion function for "synce" method.
17073 (tramp-hal-service, tramp-hal-path-manager)
17074 (tramp-hal-interface-manager, tramp-hal-interface-device):
17075 New defconst.
17076 (tramp-gvfs-connection-mounted-p): Handle empty user name for synce.
17077 (tramp-synce-list-devices, tramp-synce-parse-device-names):
17078 New defuns.
17079
17080 * net/trampver.el: Update release number.
17081
17082 2009-06-30 Kenichi Handa <handa@m17n.org>
17083
17084 * international/fontset.el (setup-default-fontset): Add CJK fonts
17085 for symbols and the other miscellaneous characters.
17086
17087 * language/korea-util.el (setup-korean-environment-internal):
17088 Make char-width-table suitable for Korean environments.
17089 (exit-korean-environment): Cancel above.
17090
17091 * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
17092 ("Chinese-CNS", "Chinese-EUC-TW", "Chinese-GBK"): Add a
17093 setup-function to make char-width-table suitable for respective
17094 environments, and an exit-function to cancel that.
17095
17096 * language/japan-util.el (setup-japanese-environment-internal):
17097 Call use-cjk-char-width-table with arg `ja_JP'.
17098
17099 * international/characters.el (cjk-char-width-table): Delete it.
17100 (cjk-char-width-table-list): New variable.
17101 (use-cjk-char-width-table): New arg local-name.
17102 (use-default-char-width-table): Fix for the case that Emacs is
17103 already using the default char-width-table.
17104
17105 2009-06-29 Michael Albinus <michael.albinus@gmx.de>
17106
17107 * net/tramp.el (tramp-do-copy-or-rename-file-directly): Set file
17108 modes mandatory. (Bug#3712)
17109
17110 2009-06-29 Alan Mackenzie <acm@muc.de>
17111
17112 * progmodes/cc-cmds.el (c-mask-paragraph): Remove a spurious
17113 correction between the visible width of TABs and their number of bytes.
17114
17115 2009-06-29 Chong Yidong <cyd@stupidchicken.com>
17116
17117 * server.el (server-buffer-done): Prevent kill-buffer from
17118 prompting by clearing the buffer modification flag (Bug#3696).
17119
17120 2009-06-28 Michael McNamara <mac@mail.brushroad.com>
17121
17122 * progmodes/verilog-mode.el (verilog-beg-of-statement)
17123 (verilog-endcomment-reason-re): Support unique case and priority case.
17124 (verilog-basic-complete-re): Support localparam lineup.
17125 (verilog-beg-of-statement-1): Fix for robustness, unique case.
17126 (verilog-set-auto-endcomments): Fix for unique case, always_comb
17127 commenting.
17128 (verilog-leap-to-case-head): Now support *nested* unique &
17129 priority case statements.
17130 (verilog-auto-lineup): Make just declarations the default (as it
17131 had been).
17132 (verilog-leap-to-case-head): Support priority/unique case statements.
17133 (verilog-auto-lineup): Rework to give users radio buttons to
17134 select the various styles of automatic lineup.
17135 (verilog-error-regexp-alist): Rework to support the XEmacs style
17136 of error regular expressions from compilers, lint tools &
17137 simulators. Note that GNU Emacs has made it impossible for a mode
17138 to load such things.
17139 (electric-verilog-terminate-line, verilog-indent-declaration)
17140 (verilog-auto-wiure): Rework for radio button selection of
17141 auto-lineup selection of specification of auto lineup.
17142 (verilog-beg-of-statement-1): Redesign to support proper operation
17143 in additional code, based on testing with auto-lineup.
17144 (verilog-calculate-indent, assignments & declarations)
17145 (verilog-backward-token): Enhance to support auto-lineup of
17146 assignments & declarations.
17147 (verilog-in-directive-p, verilog-at-struct-p): New function for
17148 easy test of whether we are.
17149 (verilog-pretty-declarations, verilog-pretty-expr): Massive rework
17150 to support safe execution at almost anyline.
17151 (verilog-calc-1): Properly support indenting deep inside generate
17152 blocks.
17153 (verilog-init-font): Remove definition & use of verilog-init-font,
17154 as it is redundant with font-lock-defaults.
17155 (verilog-mode): Alter the definition of verilog-font-lock-defaults
17156 to avoid circular calls if syntax-ppss is a function (as is the
17157 case now in 22.x GNU Emacs) as that function would sometimes call
17158 itself, leading to (nearly) infinite recursion.
17159 (verilog-ovm-begin-re, verilog-ovm-end-re)
17160 (verilog-ovm-statement-re, verilog-leap-to-head)
17161 (verilog-backward-token): Add support for OVM macros. Some are
17162 complete statements, and others open and close scopes like begin
17163 and end.
17164 (verilog-defun-level-not-generate-re, verilog-defun-level-re)
17165 (verilog-defun-level-generate-only-re): Really fix the defun-list
17166 compilation issue.
17167 (verilog-calc-1, verilog-beg-of-statement): Enhance support for
17168 coverpoint, constraint and cross statements.
17169 (verilog-defun-level-list, verilog-generate-defun-level-list)
17170 (verilog-all-defun-level-list): Redo these specifications - it is
17171 too hard to support eval-when compile aggregation of lists also
17172 built at when-compile time.
17173 (verilog-defun-level-list): Place defconsts of variables used in
17174 building regular expressions which are built in eval-when-compile
17175 bodies in the same eval-when-compile body to facilitate compile
17176 without load.
17177 (verilog-beg-block-re-ordered): Support indenting
17178 virtual/protected tasks and functions.
17179 (verilog-defun-level-list, verilog-in-generate-region-p)
17180 (verilog-backward-ws&directives, verilog-calc-1): Speed up
17181 indentation of some module items (generate items).
17182 (verilog-forward-sexp, verilog-leap-to-head): Support stepping
17183 across virtual/protected tasks and functions.
17184
17185 2009-06-28 Wilson Snyder <wsnyder@wsnyder.org>
17186
17187 * progmodes/verilog-mode.el (verilog-auto-arg, verilog-auto-arg-sort):
17188 Allow sorting AUTOARG lists. Suggested by Andrea Fedeli.
17189 (verilog-read-sub-decls-line): Fix AUTOWIRE signals getting lost
17190 in concatenations. Reported by Yishay Belkind.
17191 (verilog-auto-ascii-enum): Support one-hot state machines in
17192 AUTOASCIIENUM. Suggested by Lloyd Gomez.
17193 (verilog-auto-inst, verilog-auto-inst-port): Include interface
17194 modport in AUTOINST and add vl-modport for users. Reported by
17195 David Rogoff.
17196 (verilog-auto-inout-module, verilog-auto-inst)
17197 (verilog-decls-get-interfaces, verilog-insert-definition)
17198 (verilog-insert-one-definition, verilog-read-decls)
17199 (verilog-read-sub-decls, verilog-read-sub-decls-sig)
17200 (verilog-sig-modport, verilog-signals-combine-bus)
17201 (verilog-subdecls-get-interfaces): Fix expansion of SystemVerilog
17202 interfaces in AUTOINOUTMODULE, AUTOINOUTCOMP, and AUTOINST.
17203 Suggested by David Rogoff.
17204 (verilog-repair-open-comma): Fix non-insertion of comma when
17205 `DEFINE occurs in V2K argument list. Reported by Lane Brooks.
17206 (verilog-make-width-expression): Simplify [A-1:0] expression
17207 widths to just {A{1'b0}}.
17208 (verilog-mode): Cleanup checkdoc warnings.
17209 (verilog-auto-inout-module, verilog-signals-matching-dir-re):
17210 Add third optional regexp to AUTOINOUTMODULE to allow selecting only
17211 inputs/outputs or data type. Suggested by Vasu Kandadi.
17212 (next-error-last-buffer): Fix byte-compiler warning.
17213 (verilog-auto, verilog-auto-insert-lisp, verilog-auto-inst)
17214 (verilog-delete-auto): Add AUTOINSERTLISP to insert arbitrary lisp
17215 or shell command text during AUTO expansion. Suggested by Tad Truex.
17216 (verilog-read-sub-decls-expr, verilog-read-sub-decls-line)
17217 (verilog-read-sub-decls-sig, verilog-symbol-detick-text):
17218 Fix dotted nets {a.b,c.d} and excaped identifiers being mis-included
17219 in AUTOINOUT. Reported by Matthew Lovell.
17220 (verilog-read-always-signals-recurse): Fix AUTORESET "if (a<=b)"
17221 causing use of <= assignments. Reported by Alex Reed.
17222 (verilog-read-decls): Fix triand, trior, wand, wor to be
17223 recognized by AUTOWIRE. Reported by Spencer Isaacson.
17224 (verilog-extended-complete-re): Support import "DPI-C" functions.
17225 (verilog-read-always-signals-recurse): Fix AUTORESET of "x <=
17226 y[a+1:a+1]" to not include a in reset list. Reported by Dan Dever.
17227 (verilog-insert-date, verilog-insert-year)
17228 (verilog-sk-header-tmpl): Fix verilog-header inserting error on
17229 Windows systems. Reported by Michael Potts.
17230 (verilog-read-module-name): Fix AUTOINST when the child module
17231 declaration's name is a tick define. Reported by Elliot Mednick.
17232 (verilog-read-decls): Fix V2K parameter bit subscripts getting
17233 passed to next parameter's definition. Reported by Bruce T.
17234 (verilog-read-decls): Fix detecting "parameter int" when using
17235 AUTOINSTPARAM. Reported by Bruce T.
17236 (verilog-goto-defun): Fix goto not finding modules unless first
17237 perform a verilog-auto expansion. Suggested by Lawrence Butcher.
17238 (verilog-mode): Expand -f flag arguments on entry to mode so
17239 verilog-goto-defun will work. Reported by Lawrence Butcher.
17240 (verilog-getopt): Expand environment variables in -f file
17241 arguments. Suggested by Lawrence Butcher.
17242 (verilog-set-define): Fix "Symbol's value as variable is void"
17243 when reading enumerations.
17244 (verilog-auto-ascii-enum): Fix duplicate labels in AUTOASCIIENUM.
17245 Suggested by Stephen Peltan.
17246 (verilog-read-defines): Fix reading of enumerations in include
17247 files. Reported by Steve Peltan.
17248
17249 2009-06-28 David De La Harpe Golden <david@harpegolden.net>
17250
17251 * files.el (trash-directory): Fix defcustom type.
17252
17253 2009-06-28 Juri Linkov <juri@jurta.org>
17254
17255 * help-fns.el (describe-function-1): Correctly locate adviced
17256 functions in hyperlink (Bug#2438).
17257
17258 2009-06-28 Chong Yidong <cyd@stupidchicken.com>
17259
17260 * files.el (trash-directory): Change default to nil.
17261 (move-file-to-trash): If trash-directory is nil and
17262 system-move-file-to-trash is unbound, perform freedesktop-style
17263 trashing.
17264
17265 2009-06-28 David De La Harpe Golden <david@harpegolden.net>
17266
17267 * files.el (move-file-to-trash): Add freedesktop trash
17268 support (Bug#973).
17269
17270 2009-06-28 Glenn Morris <rgm@gnu.org>
17271
17272 * autorevert.el (global-auto-revert-non-file-buffers)
17273 (global-auto-revert-mode): Doc fixes.
17274
17275 2009-06-27 Johan Bockgård <bojohan@gnu.org>
17276
17277 * emacs-lisp/cl-specs.el (defstruct): Fix :conc-name spec.
17278
17279 2009-06-27 Chong Yidong <cyd@stupidchicken.com>
17280
17281 * faces.el (x-handle-named-frame-geometry): Ensure that we have
17282 opened an X connection before calling x-get-resource (Bug#3194).
17283
17284 * play/doctor.el: Remove reference to obsolete website.
17285 (make-doctor-variables): Correct grammar mistake (Bug#2633).
17286
17287 2009-06-26 Dan Nicolaescu <dann@ics.uci.edu>
17288
17289 Remove find-file-not-found-hook VC method. (Bug#2757)
17290 * vc-hooks.el (vc-file-not-found-hook)
17291 (vc-default-find-file-not-found-hook): Remove functions.
17292 (find-file-not-found-functions): Do not add vc-file-not-found-hook.
17293 * vc-rcs.el (vc-rcs-find-file-not-found-hook): Remove function.
17294 * vc.el:
17295 * vc-hg.el:
17296 * vc-git.el: Do not mention find-file-not-found-hook VC method.
17297
17298 2009-06-25 Agustín Martín <agustin.martin@hispalinux.es>
17299
17300 * textmodes/ispell.el: Add `ispell-looking-back' XEmacs
17301 compatibility function for `looking-back'.
17302
17303 * textmodes/flyspell.el (sgml-mode-flyspell-verify):
17304 Use `ispell-looking-back'.
17305
17306 2009-06-24 Michael Albinus <michael.albinus@gmx.de>
17307
17308 * net/tramp-gvfs.el (tramp-gvfs-handle-make-directory): Use `dir'
17309 rather than `filename'.
17310
17311 2009-06-23 Miles Bader <miles@gnu.org>
17312
17313 * face-remap.el (text-scale-set): New function.
17314
17315 2009-06-23 Glenn Morris <rgm@gnu.org>
17316
17317 * pcmpl-rpm.el (pcomplete/rpm): Doc fix.
17318
17319 * bindings.el (mode-line-modified): Fix case of "Buffer is modified".
17320
17321 * textmodes/ispell.el (ispell-local-dictionary): Doc fix.
17322
17323 * progmodes/gdb-mi.el (gud-remove, gud-break): Update declarations.
17324
17325 * calendar/cal-dst.el (calendar-time-zone-daylight-rules):
17326 Simplify Persian conditionals.
17327
17328 * calc/calc-graph.el (calc-graph-plot): Avoid assignment to free
17329 variable `filename'.
17330
17331 * comint.el (comint-insert-input): Doc fix.
17332
17333 * Makefile.in (ELCFILES): Fix typo in previous change.
17334
17335 2009-06-23 Miles Bader <miles@gnu.org>
17336
17337 * cus-start.el: Add entry for `recenter-redisplay'.
17338
17339 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
17340
17341 * vc-hooks.el (vc-stay-local-p, vc-state, vc-working-revision):
17342 Add an optional argument for the backend, use it instead of
17343 calling vc-backend.
17344 (vc-mode-line): Add an optional argument for the backend.
17345 Pass the backend to vc-state and vc-working-revision. Move code for
17346 special handling for vc-state being a buffer to ...
17347
17348 * vc-rcs.el (vc-rcs-find-file-hook):
17349 * vc-sccs.el (vc-sccs-find-file-hook): ... here. New functions.
17350
17351 * vc-svn.el (vc-svn-state, vc-svn-dir-status, vc-svn-checkout)
17352 (vc-svn-print-log, vc-svn-diff): Pass 'SVN to vc-state,
17353 vc-stay-local-p and vc-mode-line calls.
17354
17355 * vc-cvs.el (vc-cvs-state, vc-cvs-checkout, vc-cvs-print-log)
17356 (vc-cvs-diff, vc-cvs-annotate-command)
17357 (vc-cvs-make-version-backups-p, vc-cvs-stay-local-p)
17358 (vc-cvs-dir-status): Pass 'CVS to vc-state, vc-stay-local-p and
17359 vc-mode-line calls.
17360
17361 * vc.el (vc-deduce-fileset): Use vc-deduce-fileset instead of
17362 direct comparison.
17363 (vc-next-action, vc-transfer-file, vc-rename-file): Also pass the
17364 backend when calling vc-mode-line.
17365 (vc-register): Do not create a closure for calling the vc register
17366 function, call it directly.
17367
17368 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
17369
17370 * emacs-lisp/elp.el (elp-output-insert-symname): Add a link face
17371 to make it obvious item can be clicked.
17372
17373 * vc-mtn.el (vc-mtn-after-dir-status, vc-mtn-dir-status): New functions.
17374
17375 2009-06-23 Kenichi Handa <handa@m17n.org>
17376
17377 * language/korea-util.el (korean-key-bindings): Change the binding
17378 of F9 to hangul-to-hanja-conversion. Bind Hangul_Hanja to the
17379 same command.
17380
17381 2009-06-22 Michael Albinus <michael.albinus@gmx.de>
17382
17383 Sync with Tramp 2.1.16.
17384
17385 * Makefile.in (ELCFILES): Add net/tramp-gvfs.elc.
17386
17387 * net/tramp.el (top): Require tramp-gvfs. Catch `tramp-loading',
17388 when a loading of a package fails. Completion function for rsync
17389 is `tramp-completion-function-alist-ssh'.
17390 (all): Replace all calls of `split-string' and
17391 `tramp-split-string' by `tramp-compat-split-string'.
17392 (tramp-default-method): Use `tramp-compat-process-running-p'.
17393 (tramp-default-proxies-alist): Allow also Lisp forms.
17394 (tramp-remote-path): Add choice "Private Directories".
17395 (tramp-wrong-passwd-regexp): Remove "Tramp connection closed" option.
17396 (tramp-domain-regexp): Allow also "-", "_" and ".".
17397 (tramp-end-of-output): Remove newlines, and add "$" at the end.
17398 (tramp-file-name-handler-alist): Add handler for `dired-uncache'.
17399 (tramp-debug-message): Insert header line in debug buffer.
17400 (tramp-handle-directory-files-and-attributes-with-stat):
17401 Care about filenames with spaces, or starting with "-".
17402 (tramp-handle-dired-uncache): New defun.
17403 (tramp-handle-insert-directory): Don't flush the directory from
17404 cache, this is handled by `dired-uncache' now.
17405 (tramp-handle-insert-file-contents): Improve error handling.
17406 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
17407 Quote `tramp-end-of-output'.
17408 (tramp-action-password): Improve trace message.
17409 (tramp-check-for-regexp): Both echoes must be present, before removing.
17410 (tramp-open-connection-setup-interactive-shell): Trace coding system.
17411 (tramp-compute-multi-hops): Eval cons cells of
17412 `tramp-default-proxies-alist'.
17413 (tramp-maybe-open-connection): Use the same command pattern for
17414 first hop and further hops.
17415 (tramp-wait-for-output): Remove handling of newlines.
17416 (tramp-get-remote-path): Handle also `tramp-own-remote-path'.
17417 (tramp-split-string): Remove function. It is handled in
17418 tramp-compat now.
17419
17420 * net/tramp-cmds.el (tramp-bug):
17421 Recommend `tramp-cleanup-all-connections' in the bug mail.
17422
17423 * net/tramp-compat.el (tramp-compat-split-string)
17424 (tramp-compat-process-running-p): New defuns.
17425
17426 * net/tramp-fish.el (tramp-fish-file-name-handler-alist): Add handler
17427 for `dired-uncache'.
17428
17429 * net/tramp-gvfs.el: New package.
17430
17431 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
17432 Add handler for `dired-uncache'.
17433 (tramp-smb-handle-file-local-copy): Cleanup in case of error.
17434
17435 * net/trampver.el: Update release number. Make version check fit
17436 for SXEmacs 22.
17437
17438 2009-06-22 Jim Meyering <meyering@redhat.com>
17439
17440 Automatically handle .xz suffix (XZ-compressed files), too.
17441 * jka-cmpr-hook.el (jka-compr-compression-info-list): Add xz.
17442 XZ is the successor to LZMA: <http://tukaani.org/xz/>
17443
17444 2009-06-22 Dmitry Dzhus <dima@sphinx.net.ru>
17445 Nick Roberts <nickrob@snap.net.nz>
17446
17447 * progmodes/gdb-mi.el: Pull further modified changes from Dmitry's
17448 repository (http://sphinx.net.ru/hg/gdb-mi/).
17449
17450 2009-06-22 Glenn Morris <rgm@gnu.org>
17451
17452 * files.el (dir-locals-collect-mode-variables): Allow for any number of
17453 `mode' and `eval' entries. (Bug#3430)
17454
17455 * Makefile.in (ELCFILES): Add fadr.elc.
17456
17457 * calendar/appt.el (appt-make-list): Fix off-by-one error caused by
17458 differing behavior of \n and ^ in strings. (Bug#3385)
17459
17460 * emacs-lisp/cl-indent.el: Remove leading "*" from defcustom docs.
17461
17462 * emacs-lisp/lisp-mode.el (lisp-indent-offset): Fix safe-local-variable
17463 property.
17464 (lisp-indent-function): Make it a defcustom.
17465
17466 2009-06-21 Nick Roberts <nickrob@snap.net.nz>
17467
17468 * progmodes/gdb-ui.el: Replace with ...
17469 * progmodes/gdb-mi.el: ... this file.
17470 * progmodes/gud.el: Modify for gdb-mi.el.
17471
17472 2009-06-21 Dmitry Dzhus <dima@sphinx.net.ru>
17473
17474 * fadr.el: New file.
17475
17476 See ChangeLog.14 for earlier changes.
17477
17478 ;; Local Variables:
17479 ;; coding: utf-8
17480 ;; End:
17481
17482 Copyright (C) 2009, 2010 Free Software Foundation, Inc.
17483
17484 This file is part of GNU Emacs.
17485
17486 GNU Emacs is free software: you can redistribute it and/or modify
17487 it under the terms of the GNU General Public License as published by
17488 the Free Software Foundation, either version 3 of the License, or
17489 (at your option) any later version.
17490
17491 GNU Emacs is distributed in the hope that it will be useful,
17492 but WITHOUT ANY WARRANTY; without even the implied warranty of
17493 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17494 GNU General Public License for more details.
17495
17496 You should have received a copy of the GNU General Public License
17497 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
17498
17499 ;; arch-tag: d3e45e38-19e2-49b6-8dc2-7cb26adcc5a1