e001afa8979796998ab2a12625accb5d709de7ca
[bpt/emacs.git] / lisp / ChangeLog
1 2010-09-25 Glenn Morris <rgm@gnu.org>
2
3 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
4 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
5 * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
6 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
7 * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
8 * eshell/esh-cmd.el, eshell/esh-ext.el, eshell/esh-io.el:
9 * eshell/esh-mode.el, eshell/esh-proc.el, eshell/esh-test.el:
10 * eshell/esh-util.el, eshell/esh-var.el:
11 Remove leading `*' from docs of faces and defcustoms.
12
13 2010-09-25 Ulrich Mueller <ulm@gentoo.org>
14
15 * eshell/em-ls.el (eshell-ls-archive-regexp):
16 * eshell/esh-util.el (eshell-tar-regexp):
17 * ibuffer.el (ibuffer-compressed-file-name-regexp):
18 * info.el (Info-suffix-list):
19 * international/mule.el (auto-coding-alist):
20 * woman.el (woman-file-regexp, woman-file-compression-regexp):
21 * progmodes/etags.el (tags-compression-info-list):
22 Support xz compression.
23
24 2010-09-25 Chong Yidong <cyd@stupidchicken.com>
25
26 * files.el (get-free-disk-space): Don't assume the "df" output
27 columns line up (Bug#6995).
28
29 2010-09-25 Juanma Barranquero <lekktu@gmail.com>
30
31 * finder.el (finder-unknown-keywords):
32 * progmodes/gdb-mi.el (gdb-jsonify-buffer, gdb-running-threads-count):
33 * progmodes/etags.el (tags-table-including): Fix typos in docstrings.
34
35 2010-09-25 Juanma Barranquero <lekktu@gmail.com>
36
37 * server.el (server-start): Revert part of 2010-08-08 change. Using
38 address 127.0.0.1 for local host is now done in Fmake_network_process.
39
40 2010-09-24 Glenn Morris <rgm@gnu.org>
41
42 * image-mode.el, progmodes/compile.el, progmodes/gud.el:
43 * progmodes/mixal-mode.el, textmodes/bibtex-style.el:
44 * textmodes/css-mode.el, textmodes/dns-mode.el:
45 Move autoloaded auto-mode-alist entries to files.el.
46 * files.el (auto-mode-alist): Move entries here.
47
48 2010-09-23 Glenn Morris <rgm@gnu.org>
49
50 * isearch.el (isearch-lazy-highlight-cleanup)
51 (isearch-lazy-highlight-initial-delay)
52 (isearch-lazy-highlight-interval)
53 (isearch-lazy-highlight-max-at-a-time, isearch-lazy-highlight-face):
54 * net/net-utils.el (ipconfig-program-options):
55 Move aliases to options before the associated definitions.
56
57 2010-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
58
59 * newcomment.el (comment-normalize-vars): Better test validity of
60 comment-end-skip.
61
62 2010-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
63
64 * emacs-lisp/float-sup.el (float-pi): New name for `pi'.
65 (float-e): New name for `e'.
66 (degrees-to-radians, radians-to-degrees):
67 * calendar/solar.el (solar-longitude):
68 * calculator.el (calculator-registers, calculator-funcall):
69 * textmodes/artist.el (artist-spray-random-points):
70 * play/bubbles.el (bubbles--initialize-images): Use new names.
71
72 2010-09-23 Eric M. Ludlam <zappo@gnu.org>
73
74 Update to CEDET 1.0's version of EIEIO.
75
76 * emacs-lisp/eieio.el (eieio-specialized-key-to-generic-key):
77 New function.
78 (eieio-defmethod, eieio-generic-form, eieio-generic-call): Use it.
79 (eieio-default-eval-maybe): Eval val instead of unquoting only.
80 (class-precedence-list): If class is nil, return nil.
81 (eieio-generic-call): If class of first input arg is nil, don't
82 look up static methods, and do check for primary methods.
83 (initialize-instance): See if the default needs to be evaluated
84 during the constructor.
85 (eieio-perform-slot-validation-for-default): Don't do the check
86 for values that will eventually be evaluated.
87 (eieio-eval-default-p): New function.
88 (eieio-default-eval-maybe): Use it.
89
90 2010-09-23 Jan Moringen <jan.moringen@uni-bielefeld.de>
91
92 * emacs-lisp/eieio.el (eieio-defclass): Allow :c3
93 method-invocation-order.
94 (eieio-c3-candidate, eieio-c3-merge-lists): New functions.
95 (eieio-class-precedence-dfs): Compute class precedence list using
96 dfs algorithm.
97 (eieio-class-precedence-bfs): Compute class precedence list using
98 bfs algorithm.
99 (eieio-class-precedence-c3): Compute class precedence list using
100 c3 algorithm.
101 (class-precedence-list): New function.
102 (eieiomt-method-list, eieiomt-sym-optimize): Use it.
103 (inconsistent-class-hierarchy): New error symbol.
104 (call-next-method): Stow the replacement argument list for future
105 call-next-method invocations.
106
107 2010-09-23 Glenn Morris <rgm@gnu.org>
108
109 * calendar/appt.el (appt-check): If not displaying the diary,
110 use (diary 1) to only get the entries we need.
111 (appt-make-list): Sort diary-list-entries, if we cannot guarantee
112 that it is in day order. (Bug#7019)
113
114 * calendar/appt.el (appt-check): Rather than showing the diary,
115 just turn off invisible display, and only if needed.
116
117 * calendar/diary-lib.el (diary-list-entries): Doc fix. (Bug#7019)
118
119 2010-09-23 Glenn Morris <rgm@gnu.org>
120
121 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
122 (byte-compile-defvar, byte-compile-cl-warn):
123 Start warnings with lower-case, like the majority.
124
125 * files.el (auto-mode-alist): Add .xa, .xw, .xsw for ld-script-mode.
126
127 * files.el (auto-mode-alist): Prefer C-mode for .xs. (Bug#7071)
128
129 * progmodes/ld-script.el (auto-mode-alist): Move to files.el.
130 * files.el (auto-mode-alist): Move ld-script entries here, further down
131 the list.
132
133 * vc/add-log.el: Don't require timezone when compiling.
134 (timezone-make-date-sortable): Autoload it.
135 (change-log-sortable-date-at): Don't require timezone.
136 Use `ignore-errors'.
137
138 * comint.el (comint-use-prompt-regexp-instead-of-fields):
139 Move alias before definition, so it does not need autoloading.
140
141 * emulation/crisp.el, emulation/cua-base.el, emulation/edt.el:
142 * emulation/pc-select.el, emulation/vip.el, international/iso-ascii.el:
143 * international/kkc.el, international/ogonek.el, mail/feedmail.el:
144 * net/browse-url.el, net/eudc-vars.el, net/net-utils.el:
145 * net/rcompile.el, net/rlogin.el, textmodes/enriched.el:
146 * textmodes/makeinfo.el, textmodes/page-ext.el, textmodes/picture.el:
147 * textmodes/refer.el, textmodes/spell.el, textmodes/table.el:
148 * textmodes/tex-mode.el, textmodes/two-column.el:
149 Remove leading `*' from docs of defcustoms etc.
150
151 2010-09-23 Teodor Zlatanov <tzz@lifelogs.com>
152
153 * net/netrc.el (netrc-parse): Remove encrypt.el mentions.
154
155 2010-09-22 Dan Christensen <jdc@uwo.ca>
156
157 * calendar/time-date.el (date-to-time): Try using parse-time-string
158 first before using the slower timezone-make-date-arpa-standard.
159
160 2010-09-22 Katsumi Yamaoka <yamaoka@jpl.org>
161
162 * calendar/time-date.el (format-seconds): Comment fix.
163
164 2010-09-22 Glenn Morris <rgm@gnu.org>
165
166 * emacs-lisp/package.el (package-menu-mode): `revert-buffer-function'
167 is not automatically buffer-local.
168
169 2010-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
170
171 * emacs-lisp/smie.el (smie-debug--describe-cycle): Fix typo.
172 (smie-indent-comment): Be more careful with comment-start-skip.
173 (smie-indent-comment-close, smie-indent-comment-inside): New funs.
174 (smie-indent-functions): Use them.
175
176 2010-09-21 Michael Albinus <michael.albinus@gmx.de>
177
178 * net/ange-ftp.el (ange-ftp-skip-msgs): Add "^504 ..." message.
179
180 2010-09-21 Jan Djärv <jan.h.d@swipnet.se>
181
182 * menu-bar.el (menu-bar-set-tool-bar-position): customize-set-variable
183 tool-bar-position. Don't modify frame parameters here.
184 (menu-bar-options-save): Add tool-bar-position.
185
186 * tool-bar.el (tool-bar-position): New defcustom (Bug#7049).
187
188 2010-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
189
190 * textmodes/reftex-parse.el (reftex-what-macro)
191 (reftex-context-substring): Let-bind forward-sexp-function to nil
192 since we don't need/want to treat \begin...\end as a block (bug#7053).
193
194 * emacs-lisp/lisp.el (up-list): Don't do nothing silently.
195
196 * simple.el (blink-matching-open): Use syntax-class.
197
198 * progmodes/pascal.el (pascal-mode): Use define-derived-mode.
199 Set invisibility spec for pascal's outline mode.
200 (pascal-outline-change): Clean up calling convention.
201 (pascal-show-all, pascal-hide-other-defuns): Update callers.
202
203 * progmodes/prolog.el (prolog-smie-forward-token)
204 (prolog-smie-backward-token): New functions.
205 (prolog-mode-variables): Use them to parse "!," correctly.
206 Set up smie-blink-matching for ".".
207
208 * textmodes/ispell.el (ispell-start, ispell-end): Rename from `start'
209 and `end'.
210 (ispell-region, ispell-process-line): Update users.
211
212 * textmodes/reftex-parse.el (reftex-what-macro): Don't hardcode
213 point-min==1.
214
215 * textmodes/ispell.el: Fix commenting convention.
216 (ispell-parse-output): Simplify, use push.
217 (ispell-region): Use match-string-no-properties.
218 (ispell-begin-skip-region-regexp): Use mapconcat to simplify.
219 (ispell-minor-mode): Use define-minor-mode.
220 (ispell-message): Remove unused var `skip-regexp'.
221 (ispell-add-per-file-word-list): Use dynamic let-binding.
222 Try and use the proper comment marker.
223
224 * mail/sendmail.el: Fix commenting convention.
225 (sendmail-send-it): Use line-beginning-position.
226
227 * help-fns.el (describe-variable): Add original value, if applicable.
228
229 2010-09-20 Juanma Barranquero <lekktu@gmail.com>
230
231 * subr.el (y-or-n-p): Remove leftover code from 2010-09-17T13:30:30Z!monnier@iro.umontreal.ca.
232
233 * emacs-lisp/smie.el (smie-indent--hanging-p): Use `smie-indent--bolp'.
234
235 2010-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
236
237 * emacs-lisp/smie.el (smie-bnf-precedence-table): Improve error message.
238 (smie-debug--prec2-cycle, smie-debug--describe-cycle): New functions.
239 (smie-prec2-levels): Use them to better diagnose precedence cycles.
240 (smie-blink-matching-check): Don't signal a mismatch if car is t.
241 (smie-blink-matching-open): Rewrite to remove assumptions, so that
242 something like "." can also be a closer.
243 (smie--associative-p, smie-indent--hanging-p, smie-indent--bolp)
244 (smie-indent--offset, smie-indent--offset-rule, smie-indent--column):
245 Rename internal functions to use "--". Update callers.
246
247 * frame.el (make-frame-names-alist): Don't list frames on other displays.
248
249 * fringe.el (fringe-styles): New var.
250 (fringe-mode, fringe-query-style): Use it.
251
252 2010-09-18 Michael R. Mauger <mmaug@yahoo.com>
253
254 * progmodes/sql.el: Version 2.8
255 (sql-login-params): Update widget structure; changes still needed.
256 (sql-product-alist): Add :list-all and :list-table features for
257 SQLite, Postgres and MySQL products.
258 (sql-redirect): Handle default value.
259 (sql-execute, sql-execute-feature): New functions.
260 (sql-read-table-name): New function.
261 (sql-list-all, sql-list-table): New functions. User API.
262 (sql-mode-map, sql-interactive-mode-map): Add key definitions
263 for above functions.
264 (sql-mode-menu, sql-interactive-mode-menu): Add menu definitions
265 for above functions.
266 (sql-postgres-login-params): Add user and database defaults.
267 (sql-buffer-live-p): Bug fix.
268 (sql-product-history): New variable.
269 (sql-read-product): New function. Use it.
270 (sql-set-product, sql-product-interactive): Use it.
271 (sql-connection-history): New variable.
272 (sql-read-connection): New function. Use it.
273 (sql-connect): New function.
274 (sql-for-each-login): Redesign function interface.
275 (sql-make-alternate-buffer-name, sql-save-connection): Use it.
276 (sql-get-login-ext, sql-get-login): Use it. Handle default values.
277 (sql-comint): Check for program. Existing live buffer.
278 (sql-comint-postgres): Add port parameter.
279
280 2010-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
281
282 * emacs-lisp/warnings.el: Fix commenting convention.
283 (display-warning): Use special mode and make the buffer read-only.
284
285 2010-09-18 Jay Belanger <jay.p.belanger@gmail.com>
286
287 * calc/calc-prog.el (calc-read-parse-table-part): Don't "fix" the
288 empty string when it follows a repeated or optional pattern.
289
290 2010-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
291
292 * indent.el (indent-according-to-mode): Apply syntax-propertize.
293 (indent-region): Use indent-according-to-mode.
294
295 2010-09-18 Eli Zaretskii <eliz@gnu.org>
296
297 * fringe.el (fringe-mode): Doc fix.
298
299 2010-09-14 Kan-Ru Chen <kanru@kanru.info> (tiny change)
300
301 * textmodes/nroff-mode.el (nroff-view): Kill old buffer before
302 refreshing the preview buffer.
303
304 2010-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
305
306 * textmodes/tex-mode.el (tex-syntax-propertize-rules)
307 (latex-syntax-propertize-rules): New consts; replace
308 tex-font-lock-syntactic-keywords.
309 (tex-env-mark, latex-env-before-change): New functions.
310 (latex-electric-env-pair-mode): New minor mode.
311 (tex-font-lock-verb): Change arguments; do move point.
312 (tex-font-lock-syntactic-face-function): Adjust to new verbatim
313 representation as a form of comment.
314 (tex-font-lock-keywords-1): Remove workaround, now unneeded.
315 (doctex-syntax-propertize-rules): New const; replaces
316 doctex-font-lock-syntactic-keywords.
317 (tex-common-initialization, doctex-mode): Use syntax-propertize-rules.
318
319 * progmodes/fortran.el (fortran--font-lock-syntactic-keywords): Remove.
320 (fortran-make-syntax-propertize-function): New function; replaces
321 fortran-font-lock-syntactic-keywords.
322 (fortran-mode): Use it.
323 (fortran-line-length): Use it. Improve interactive spec.
324
325 * emacs-lisp/syntax.el (syntax-propertize-precompile-rules): New macro.
326 (syntax-propertize-rules): Add var-ref case. Fix offset computation
327 when adding surrounding \(..\).
328
329 * progmodes/js.el (js-mode): Fix last change (bug#7054).
330
331 2010-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
332
333 * obsolete/old-whitespace.el (whitespace-rescan-files-in-buffers):
334 Use with-current-buffer.
335
336 * isearch.el (isearch-face): Rename from `isearch'.
337 (isearch-highlight): Use new name.
338
339 2010-09-17 Eli Zaretskii <eliz@gnu.org>
340
341 * fringe.el (fringe-mode, fringe-query-style): Use 4 pixels, not
342 5, for `half' width fringes. (Bug#6933)
343
344 2010-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
345
346 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar)
347 (byte-compile-defvar): "foo/bar" does not lack a prefix.
348
349 * subr.el (y-or-n-p): Add the "(y or n)" that was lost somehow.
350
351 2010-09-17 Stephen Berman <stephen.berman@gmx.net>
352
353 * dframe.el (dframe-reposition-frame-emacs): Use tool-bar-pixel-width
354 in calculating new frame position. Add more space between new and
355 parent on the left (Bug#7048).
356
357 2010-09-17 Michael Albinus <michael.albinus@gmx.de>
358
359 * net/tramp-compat.el (tramp-compat-with-temp-message): Make it a
360 defmacro.
361
362 2010-09-16 Chong Yidong <cyd@stupidchicken.com>
363
364 * mail/sendmail.el: Add "*unsent mail*" to same-window-buffer-names.
365
366 * term/x-win.el (x-cut-buffer-or-selection-value): Define as
367 obsolete alias for x-selection-value.
368
369 * ido.el (ido-make-buffer-list): Fix error in 2010-08-22 merge.
370
371 2010-09-16 Michael Albinus <michael.albinus@gmx.de>
372
373 * net/tramp-cmds.el (tramp-cleanup-connection): Set tramp-autoload
374 cookie.
375
376 2010-09-15 Michael Albinus <michael.albinus@gmx.de>
377
378 * net/tramp-compat.el (tramp-compat-with-temp-message)
379 (tramp-compat-font-lock-add-keywords, tramp-compat-process-get)
380 (tramp-compat-process-put): New defuns.
381
382 * net/tramp.el (top):
383 * net/tramp-gvfs.el (top):
384 * net/tramp-cache.el (top): Use `tramp-compat-font-lock-add-keywords'.
385
386 * net/tramp.el (tramp-progress-reporter-update):
387 Use `tramp-compat-funcall'.
388
389 * net/tramp.el (tramp-process-actions):
390 * net/tramp-gvfs.el (tramp-handle-vc-registered):
391 * net/tramp-sh.el (tramp-gvfs-handler-askquestion)
392 (tramp-get-remote-stat, tramp-get-remote-readlink):
393 Use `tramp-compat-with-temp-message'.
394
395 * net/tramp-sh.el (top): Require 'cl.
396 (tramp-handle-start-file-process): Use `tramp-compat-process-get'.
397 (tramp-open-connection-setup-interactive-shell):
398 Use `tramp-compat-process-put'.
399
400 2010-09-15 Alan Mackenzie <acm@muc.de>
401
402 * progmodes/cc-engine.el (c-forward-<>-arglist-recur): Correct the
403 indentation.
404 (c-forward-<>-arglist-recur): Fix an infinite recursion.
405
406 2010-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
407
408 * emacs-lisp/bytecomp.el (byte-compile-warning-types): New type
409 `lexical' for warnings related to lexical scoping.
410 (byte-compile-file-form-defvar, byte-compile-defvar): Warn about
411 global vars which don't have a prefix and could hence affect lexical
412 scoping in unrelated files.
413
414 2010-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
415
416 * net/imap.el: Revert back to version
417 cb950ed8ff3e0f40dac437a51b269166f9ffb60d, since some of the changes
418 seem problematic.
419
420 2010-09-14 Juanma Barranquero <lekktu@gmail.com>
421
422 * obsolete/old-whitespace.el (whitespace-unload-function):
423 Explicitly pass `obarray' to `unintern' to avoid a warning.
424
425 2010-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
426
427 * emacs-lisp/byte-run.el (set-advertised-calling-convention):
428 Add `when' argument. Update callers.
429
430 * subr.el (unintern): Declare the obarray arg mandatory.
431
432 2010-09-14 Glenn Morris <rgm@gnu.org>
433
434 * calendar/diary-lib.el (diary-list-entries-hook, diary-sort-entries):
435 Doc fixes.
436
437 * calendar/diary-lib.el (diary-included-files): New variable.
438 (diary-list-entries): Maybe initialize diary-included-files.
439 (diary-include-other-diary-files): Append to diary-included-files.
440 * calendar/appt.el (appt-update-list): Also check the members of
441 diary-included-files. (Bug#6999)
442 (appt-check): Doc fix.
443
444 2010-09-14 David Reitter <david.reitter@gmail.com>
445
446 * simple.el (line-move-visual): Do not truncate goal column to
447 integer size. (Bug#7020)
448
449 2010-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
450
451 * repeat.el (repeat): Allow repeating when the last event is a click.
452 Suggested by Drew Adams (bug#6256).
453
454 2010-09-14 Sascha Wilde <wilde@sha-bang.de>
455
456 * vc/vc-hg.el (vc-hg-state,vc-hg-working-revision):
457 Replace setting HGRCPATH to "" by some less invasive --config options.
458
459 2010-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
460
461 * font-lock.el (font-lock-beginning-of-syntax-function):
462 Mark as obsolete.
463
464 2010-09-14 Glenn Morris <rgm@gnu.org>
465
466 * menu-bar.el (menu-bar-options-save): Fix handling of menu-bar
467 and tool-bar modes. (Bug#6211)
468 (menu-bar-mode): Move setting of standard-value after the
469 minor-mode definition, otherwise it seems to have no effect.
470
471 2010-09-14 Masatake YAMATO <yamato@redhat.com>
472
473 * progmodes/antlr-mode.el (antlr-font-lock-additional-keywords):
474 Fix typo. (Bug#6976)
475
476 2010-09-14 Vinicius Jose Latorre <viniciusjl@ig.com.br>
477
478 * whitespace.el: Allow cleaning up blanks without blank
479 visualization (Bug#6651). Adjust help window for
480 whitespace-toggle-options (Bug#6479). Allow to use fill-column
481 instead of whitespace-line-column (from EmacsWiki). New version 13.1.
482 (whitespace-style): Add new value 'face. Adjust docstring.
483 (whitespace-space, whitespace-hspace, whitespace-tab):
484 Adjust foreground property face.
485 (whitespace-line-column): Adjust docstring and type declaration.
486 (whitespace-style-value-list, whitespace-toggle-option-alist)
487 (whitespace-help-text): Adjust const initialization.
488 (whitespace-toggle-options, global-whitespace-toggle-options):
489 Adjust docstring.
490 (whitespace-display-window, whitespace-interactive-char)
491 (whitespace-style-face-p, whitespace-color-on): Adjust code.
492 (whitespace-help-scroll): New fun.
493
494 2010-09-14 Katsumi Yamaoka <yamaoka@jpl.org>
495
496 * calendar/time-date.el (format-seconds): Comment fix.
497
498 2010-09-13 Michael R. Mauger <mmaug@yahoo.com>
499
500 * progmodes/sql.el: Version 2.7.
501 (sql-buffer-live-p): Improve detection.
502 (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
503 (sql-set-sqli-buffer): Use it.
504 (sql-product-interactive): Run `sql-set-sqli-hook'.
505 (sql-rename-buffer): Code cleanup.
506 (sql-redirect, sql-redirect-value): New functions. More to come.
507
508 2010-09-13 Juanma Barranquero <lekktu@gmail.com>
509
510 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.
511 * makefile.w32-in (LOADDEFS): Add $(lisp)/net/tramp-loaddefs.el.
512 (TRAMP_SRC): New macro.
513 ($(lisp)/net/tramp-loaddefs.el): New target.
514
515 2010-09-13 Michael Albinus <michael.albinus@gmx.de>
516
517 Major code cleanup. Split tramp.el into tramp.el and tramp-sh.el.
518
519 * Makefile.in (TRAMP_SRC): Remove tramp-fish.el. Add tramp-sh.el.
520
521 * net/tramp.el (top): Don't show loading message. Require just
522 'tramp-compat, everything else is required there.
523 Use `ignore-errors' where appropriate.
524 (tramp-inline-compress-start-size, tramp-copy-size-limit)
525 (tramp-terminal-type, tramp-end-of-output)
526 (tramp-initial-end-of-output, tramp-completion-function-alist-rsh)
527 (tramp-completion-function-alist-ssh)
528 (tramp-completion-function-alist-telnet)
529 (tramp-completion-function-alist-su)
530 (tramp-completion-function-alist-putty, tramp-remote-path)
531 (tramp-remote-process-environment, tramp-sh-extra-args)
532 (tramp-actions-before-shell, tramp-uudecode)
533 (tramp-perl-file-truename, tramp-perl-file-name-all-completions)
534 (tramp-perl-file-attributes)
535 (tramp-perl-directory-files-and-attributes)
536 (tramp-perl-encode-with-module, tramp-perl-decode-with-module)
537 (tramp-perl-encode, tramp-perl-decode)
538 (tramp-vc-registered-read-file-names, tramp-file-mode-type-map)
539 (tramp-file-name-handler-alist, tramp-make-tramp-temp-file)
540 (tramp-handle-make-symbolic-link, tramp-handle-load)
541 (tramp-handle-file-name-as-directory)
542 (tramp-handle-file-name-directory)
543 (tramp-handle-file-name-nondirectory, tramp-handle-file-truename)
544 (tramp-handle-file-exists-p, tramp-handle-file-attributes)
545 (tramp-do-file-attributes-with-ls)
546 (tramp-do-file-attributes-with-perl)
547 (tramp-do-file-attributes-with-stat)
548 (tramp-handle-set-visited-file-modtime)
549 (tramp-handle-verify-visited-file-modtime)
550 (tramp-handle-set-file-modes, tramp-handle-set-file-times)
551 (tramp-set-file-uid-gid, tramp-remote-selinux-p)
552 (tramp-handle-file-selinux-context)
553 (tramp-handle-set-file-selinux-context)
554 (tramp-handle-file-executable-p, tramp-handle-file-readable-p)
555 (tramp-handle-file-newer-than-file-p, tramp-handle-file-modes)
556 (tramp-handle-file-directory-p, tramp-handle-file-regular-p)
557 (tramp-handle-file-symlink-p, tramp-handle-file-writable-p)
558 (tramp-handle-file-ownership-preserved-p)
559 (tramp-handle-directory-file-name, tramp-handle-directory-files)
560 (tramp-handle-directory-files-and-attributes)
561 (tramp-do-directory-files-and-attributes-with-perl)
562 (tramp-do-directory-files-and-attributes-with-stat)
563 (tramp-handle-file-name-all-completions)
564 (tramp-handle-file-name-completion, tramp-handle-add-name-to-file)
565 (tramp-handle-copy-file, tramp-handle-copy-directory)
566 (tramp-handle-rename-file, tramp-do-copy-or-rename-file)
567 (tramp-do-copy-or-rename-file-via-buffer)
568 (tramp-do-copy-or-rename-file-directly)
569 (tramp-do-copy-or-rename-file-out-of-band)
570 (tramp-handle-make-directory, tramp-handle-delete-directory)
571 (tramp-handle-delete-file)
572 (tramp-handle-dired-recursive-delete-directory)
573 (tramp-handle-dired-compress-file, tramp-handle-dired-uncache)
574 (tramp-handle-insert-directory)
575 (tramp-handle-unhandled-file-name-directory)
576 (tramp-handle-expand-file-name)
577 (tramp-handle-substitute-in-file-name)
578 (tramp-handle-executable-find, tramp-process-sentinel)
579 (tramp-handle-start-file-process, tramp-handle-process-file)
580 (tramp-handle-call-process-region, tramp-handle-shell-command)
581 (tramp-handle-file-local-copy, tramp-handle-file-remote-p)
582 (tramp-handle-insert-file-contents)
583 (tramp-handle-insert-file-contents-literally)
584 (tramp-handle-find-backup-file-name)
585 (tramp-handle-make-auto-save-file-name, tramp-handle-write-region)
586 (tramp-vc-registered-file-names, tramp-handle-vc-registered)
587 (tramp-sh-file-name-handler, tramp-vc-file-name-handler)
588 (tramp-maybe-send-script, tramp-set-auto-save, tramp-run-test)
589 (tramp-run-test2, tramp-find-executable, tramp-set-remote-path)
590 (tramp-find-file-exists-command, tramp-open-shell)
591 (tramp-find-shell, tramp-barf-if-no-shell-prompt)
592 (tramp-open-connection-setup-interactive-shell)
593 (tramp-local-coding-commands, tramp-remote-coding-commands)
594 (tramp-find-inline-encoding, tramp-call-local-coding-command)
595 (tramp-inline-compress-commands, tramp-find-inline-compress)
596 (tramp-compute-multi-hops, tramp-maybe-open-connection)
597 (tramp-send-command, tramp-wait-for-output)
598 (tramp-send-command-and-check, tramp-barf-unless-okay)
599 (tramp-send-command-and-read, tramp-mode-string-to-int)
600 (tramp-convert-file-attributes, tramp-check-cached-permissions)
601 (tramp-file-mode-from-int, tramp-file-mode-permissions)
602 (tramp-shell-case-fold, tramp-make-copy-program-file-name)
603 (tramp-method-out-of-band-p, tramp-local-host-p)
604 (tramp-get-remote-path, tramp-get-remote-tmpdir)
605 (tramp-get-ls-command, tramp-get-ls-command-with-dired)
606 (tramp-get-test-command, tramp-get-test-nt-command)
607 (tramp-get-file-exists-command, tramp-get-remote-ln)
608 (tramp-get-remote-perl, tramp-get-remote-stat)
609 (tramp-get-remote-readlink, tramp-get-remote-trash)
610 (tramp-get-remote-id, tramp-get-remote-uid, tramp-get-remote-gid)
611 (tramp-get-local-uid, tramp-get-local-gid)
612 (tramp-get-inline-compress, tramp-get-inline-coding): Move to
613 tramp-sh.el.
614 (tramp-methods, tramp-default-method-alist)
615 (tramp-default-user-alist, tramp-foreign-file-name-handler-alist):
616 Move initialization to tramp-sh.el.
617 (tramp-temp-name-prefix): Make it a defconst.
618 (tramp-dissect-file-name): Don't check anymore for multi-hop
619 methods.
620 (tramp-debug-outline-regexp): Add a docstring.
621 (tramp-debug-outline-level): Rename from `tramp-outline-level'.
622 (tramp-get-debug-buffer): Use it.
623
624 * net/tramp-cache.el (top): Set tramp-autoload cookie for
625 initialization forms.
626 (tramp-set-connection-property): Don't protect `tramp-message'
627 call, it isn't necessary any longer.
628 (tramp-dump-connection-properties): Use `ignore-errors'.
629
630 * net/tramp-compat.el (top): Require 'advice, 'format-spec,
631 'password-cache and 'auth-source.
632
633 * net/tramp-gvfs.el (top):
634 * net/tramp-smb.el (top): Require 'tramp-sh.
635
636 * net/tramp-gw.el (tramp-gw-open-network-stream): Use `ignore-errors'.
637
638 * net/tramp-sh.el: New file, derived from tramp.el.
639 (top): Initialize `tramp-methods', `tramp-default-method-alist',
640 `tramp-default-user-alist', `tramp-foreign-file-name-handler-alist'.
641 Remove "scp1_old", "scp2_old", "ssh1_old", "ssh2_old".
642 Use `ignore-errors' where appropriate.
643 (tramp-sh-file-name-handler-alist): Rename from
644 `tramp-file-name-handler-alist'.
645 (tramp-send-command-and-check): Return t or nil. Remove all
646 `zerop' checks, where called.
647 (tramp-handle-set-file-modes)
648 (tramp-do-copy-or-rename-file-directly)
649 (tramp-handle-delete-directory, tramp-handle-delete-file)
650 (tramp-maybe-send-script): Use `tramp-barf-unless-okay'.
651 (tramp-sh-file-name-handler, tramp-send-command-and-check)
652 (tramp-get-remote-ln): Set tramp-autoload cookie.
653
654 * net/tramp-fish.el: Remove file.
655
656 2010-09-13 Daiki Ueno <ueno@unixuser.org>
657
658 * epa-file.el (epa-file-insert-file-contents): If visiting, bind
659 buffer-file-name to avoid file-locking. (Bug#7026)
660
661 2010-09-13 Julien Danjou <julien@danjou.info>
662
663 * notifications.el (notifications-notify): Add support for
664 image-path and sound-name.
665 (notifications-specification-version): Add this variable.
666
667 2010-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
668
669 * subr.el (y-or-n-p): New function, moved from src/fns.c; use read-key.
670
671 2010-09-12 Leo <sdl.web@gmail.com>
672
673 * net/rcirc.el (rcirc-server-commands, rcirc-client-commands)
674 (rcirc-completion-start): New variables.
675 (rcirc-nick-completions): Rename to rcirc-completions.
676 (rcirc-nick-completion-start-offset): Delete.
677 (rcirc-completion-at-point): New function for constructing
678 completion data for both nicks and irc commands. Add to
679 completion-at-point-functions in rcirc mode.
680 (rcirc-complete): Rename from rcirc-nick-complete; use
681 rcirc-completion-at-point.
682 (defun-rcirc-command): Update rcirc-client-commands.
683
684 2010-09-11 Glenn Morris <rgm@gnu.org>
685
686 * emacs-lisp/bytecomp.el (byte-compile-file): Create .elc files
687 atomically, to avoid parallel build errors. (Bug#4196)
688
689 2010-09-11 Michael R. Mauger <mmaug@yahoo.com>
690
691 * progmodes/sql.el: Version 2.6
692 (sql-dialect): Synonym for "sql-product".
693 (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
694 (sql-set-sqli-buffer, sql-show-sqli-buffer, sql-interactive-mode):
695 Set "sql-buffer" to buffer name not buffer object so multiple sql
696 interactive buffers work properly. Reverts misguided changes in
697 earlier work.
698 (sql-comint): Make sure different buffer name is used if "*SQL*"
699 buffer is for a different product.
700 (sql-make-alternate-buffer-name): Fix bug with "sql-database"
701 login param.
702 (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql)
703 (sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase)
704 (sql-db2, sql-linter, sql-product-interactive, sql-rename-buffer):
705 Accept new buffer name or prompt for one.
706 (sql-port): Default to zero.
707 (sql-comint-mysql): Handle "sql-port" as a numeric.
708 (sql-port-history): Delete unused variable.
709 (sql-get-login): Default "sql-port" to a number.
710 (sql-product-alist): Correct Postgres prompt and terminator regexp.
711 (sql-sqlite-program): Dynamically detect presence of "sqlite" or
712 "sqlite3" executables.
713 (sql-sqlite-login-params): Add "*.sqlite[23]?" database name pattern.
714 (sql-buffer-live-p): New function.
715 (sql-mode-menu, sql-send-string): Use it.
716 (sql-mode-oracle-font-lock-keywords): Improve SQL*Plus REMARK
717 syntax pattern.
718 (sql-mode-postgres-font-lock-keywords): Support Postgres V9.
719 (sql-mode-sqlite-font-lock-keywords): Hilight sqlite commands.
720
721 2010-09-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
722
723 * net/netrc.el (netrc-credentials): New convenience function.
724
725 2010-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
726
727 * textmodes/texinfo.el (texinfo-syntax-propertize-function): New fun
728 to replace texinfo-font-lock-syntactic-keywords.
729 (texinfo-mode): Use it.
730
731 * textmodes/tex-mode.el (tex-common-initialization, doctex-mode):
732 Use syntax-propertize-function.
733
734 * textmodes/sgml-mode.el (sgml-syntax-propertize-function): New var to
735 replace sgml-font-lock-syntactic-keywords.
736 (sgml-mode): Use it.
737
738 * textmodes/reftex.el (font-lock-syntactic-keywords): Don't declare
739 since we don't use it.
740
741 * textmodes/bibtex.el (bibtex-mode): Use syntax-propertize-function.
742
743 * progmodes/vhdl-mode.el (vhdl-mode): Use syntax-propertize-function
744 if available.
745 (vhdl-fontify-buffer): Adjust.
746
747 * progmodes/tcl.el (tcl-syntax-propertize-function): New var to
748 replace tcl-font-lock-syntactic-keywords.
749 (tcl-mode): Use it.
750
751 * progmodes/simula.el (simula-syntax-propertize-function): New var to
752 replace simula-font-lock-syntactic-keywords.
753 (simula-mode): Use it.
754
755 * progmodes/sh-script.el (sh-st-symbol): Remove.
756 (sh-font-lock-close-heredoc, sh-font-lock-open-heredoc): Add eol arg.
757 (sh-font-lock-flush-syntax-ppss-cache, sh-font-lock-here-doc): Remove.
758 (sh-font-lock-quoted-subshell): Assume we've already matched $(.
759 (sh-font-lock-paren): Set syntax-multiline.
760 (sh-font-lock-syntactic-keywords): Remove.
761 (sh-syntax-propertize-function): New function to replace it.
762 (sh-mode): Use it.
763
764 * progmodes/ruby-mode.el (ruby-here-doc-beg-re):
765 Define while compiling.
766 (ruby-here-doc-end-re, ruby-here-doc-beg-match)
767 (ruby-font-lock-syntactic-keywords, ruby-comment-beg-syntax)
768 (syntax-ppss, ruby-in-ppss-context-p, ruby-in-here-doc-p)
769 (ruby-here-doc-find-end, ruby-here-doc-beg-syntax)
770 (ruby-here-doc-end-syntax): Only define when
771 syntax-propertize is not available.
772 (ruby-syntax-propertize-function, ruby-syntax-propertize-heredoc):
773 New functions.
774 (ruby-in-ppss-context-p): Update to new syntax of heredocs.
775 (electric-indent-chars): Silence bytecompiler.
776 (ruby-mode): Use prog-mode, syntax-propertize-function, and
777 electric-indent-chars.
778
779 * progmodes/python.el (python-syntax-propertize-function): New var to
780 replace python-font-lock-syntactic-keywords.
781 (python-mode): Use it.
782 (python-quote-syntax): Simplify and adjust to new use.
783
784 * progmodes/perl-mode.el (perl-syntax-propertize-function): New fun to
785 replace perl-font-lock-syntactic-keywords.
786 (perl-syntax-propertize-special-constructs): New fun to replace
787 perl-font-lock-special-syntactic-constructs.
788 (perl-font-lock-syntactic-face-function): New fun.
789 (perl-mode): Use it.
790
791 * progmodes/octave-mod.el (octave-syntax-propertize-sqs): New function
792 to replace octave-font-lock-close-quotes.
793 (octave-syntax-propertize-function): New function to replace
794 octave-font-lock-syntactic-keywords.
795 (octave-mode): Use it.
796
797 * progmodes/mixal-mode.el (mixal-syntax-propertize-function): New var;
798 replaces mixal-font-lock-syntactic-keywords.
799 (mixal-mode): Use it.
800
801 * progmodes/make-mode.el (makefile-syntax-propertize-function):
802 New var; replaces makefile-font-lock-syntactic-keywords.
803 (makefile-mode): Use it.
804 (makefile-imake-mode): Adjust.
805
806 * progmodes/js.el (js--regexp-literal): Define while compiling.
807 (js-syntax-propertize-function): New var; replaces
808 js-font-lock-syntactic-keywords.
809 (js-mode): Use it.
810
811 * progmodes/gud.el (gdb-script-syntax-propertize-function): New var;
812 replaces gdb-script-font-lock-syntactic-keywords.
813 (gdb-script-mode): Use it.
814
815 * progmodes/fortran.el (fortran-mode): Use syntax-propertize-function.
816 (fortran--font-lock-syntactic-keywords): New var.
817 (fortran-line-length): Update syntax-propertize-function and
818 fortran--font-lock-syntactic-keywords.
819
820 * progmodes/cperl-mode.el (cperl-mode): Use syntax-propertize-function.
821
822 * progmodes/cfengine.el (cfengine-mode):
823 Use syntax-propertize-function.
824 (cfengine-font-lock-syntactic-keywords): Remove.
825
826 * progmodes/autoconf.el (autoconf-mode):
827 Use syntax-propertize-function.
828 (autoconf-font-lock-syntactic-keywords): Remove.
829
830 * progmodes/ada-mode.el (ada-set-syntax-table-properties)
831 (ada-after-change-function, ada-initialize-syntax-table-properties)
832 (ada-handle-syntax-table-properties): Only define when
833 syntax-propertize is not available.
834 (ada-mode): Use syntax-propertize-function.
835
836 * font-lock.el (font-lock-syntactic-keywords): Make obsolete.
837 (font-lock-fontify-syntactic-keywords-region): Move handling of
838 font-lock-syntactically-fontified to...
839 (font-lock-default-fontify-region): ...here.
840 Let syntax-propertize-function take precedence.
841 (font-lock-fontify-syntactically-region): Cal syntax-propertize.
842
843 * emacs-lisp/syntax.el (syntax-propertize-function)
844 (syntax-propertize-chunk-size, syntax-propertize--done)
845 (syntax-propertize-extend-region-functions): New vars.
846 (syntax-propertize-wholelines, syntax-propertize-multiline)
847 (syntax-propertize--shift-groups, syntax-propertize-via-font-lock)
848 (syntax-propertize): New functions.
849 (syntax-propertize-rules): New macro.
850 (syntax-ppss-flush-cache): Set syntax-propertize--done.
851 (syntax-ppss): Call syntax-propertize.
852
853 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Skip named groups.
854
855 2010-09-10 Agustín Martín <agustin.martin@hispalinux.es>
856
857 * textmodes/ispell.el (ispell-init-process): Improve comments.
858 XEmacs compatibility changes regarding (add-hook) 'local option
859 and (set-process-query-on-exit-flag).
860
861 2010-09-09 Michael Albinus <michael.albinus@gmx.de>
862
863 * net/tramp-cache.el (tramp-parse-connection-properties):
864 Set tramp-autoload cookie.
865
866 2010-09-09 Glenn Morris <rgm@gnu.org>
867
868 * image.el (imagemagick-types-inhibit): Add :type, :version, :group.
869 (imagemagick-register-types): Doc fix.
870
871 2010-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
872
873 * progmodes/octave-mod.el (electric-indent-chars): Silence bytecomp.
874
875 * progmodes/js.el (require): Require is already "eval-and-compile".
876 (js--re-search-forward): Avoid `eval'. Preserve the error data.
877 (js--re-search-backward): Use js--re-search-forward.
878
879 * progmodes/fortran.el (fortran-line-length): Don't recompute
880 syntactic keywords redundantly a second time.
881
882 * progmodes/ada-mode.el: Replace "(set '" with setq.
883 (ada-mode): Simplify.
884 (ada-create-case-exception, ada-adjust-case-interactive)
885 (ada-adjust-case-region, ada-format-paramlist, ada-indent-current)
886 (ada-search-ignore-string-comment, ada-move-to-start)
887 (ada-move-to-end): Use with-syntax-table.
888
889 * font-lock.el (save-buffer-state): Remove `varlist' arg.
890 (font-lock-unfontify-region, font-lock-default-fontify-region):
891 Update usage correspondingly.
892 (font-lock-fontify-syntactic-keywords-region):
893 Set parse-sexp-lookup-properties buffer-locally here.
894 (font-lock-fontify-syntactically-region): Remove unused `ppss' arg.
895
896 * simple.el (blink-matching-open): Don't burp if we can't find a match.
897
898 2010-09-08 Glenn Morris <rgm@gnu.org>
899
900 * emacs-lisp/bytecomp.el (byte-compile-report-ops):
901 Error if not compiled with -DBYTE_CODE_METER.
902
903 * emacs-lisp/bytecomp.el (byte-recompile-directory):
904 Ignore dir-locals-file.
905
906 2010-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
907
908 * progmodes/compile.el (compilation-error-regexp-alist-alist):
909 Not a const.
910 (compilation-error-regexp-alist-alist): Rule out ": " in file names
911 for the `gnu' messages.
912 (compilation-set-skip-threshold): New command.
913 (compilation-start): Use \' rather than $.
914 (compilation-forget-errors): Use clrhash.
915
916 2010-09-08 Agustín Martín <agustin.martin@hispalinux.es>
917
918 * textmodes/ispell.el (ispell-valid-dictionary-list):
919 Simplify logic.
920
921 2010-09-08 Michael Albinus <michael.albinus@gmx.de>
922
923 Migrate to Tramp 2.2. Rearrange load dependencies.
924 (Bug#1529, Bug#5448, Bug#5705)
925
926 * Makefile.in (TRAMP_DIR, TRAMP_SRC): New variables.
927 ($(TRAMP_DIR)/tramp-loaddefs.el): New target.
928 (LOADDEFS): Add $(lisp)/net/tramp-loaddefs.el.
929
930 * net/tramp.el (top): Remove all other tramp-* loads except
931 tramp-compat.el. Remove all changes to tramp-unload-hook for
932 other tramp-* packages. Rearrange defun order. Change calls of
933 `tramp-compat-call-process', `tramp-compat-decimal-to-octal',
934 `tramp-compat-octal-to-decimal' to new function names.
935 (tramp-terminal-type, tramp-initial-end-of-output)
936 (tramp-methods, tramp-foreign-file-name-handler-alist)
937 (tramp-tramp-file-p, tramp-completion-mode-p)
938 (tramp-send-command-and-check, tramp-get-remote-path)
939 (tramp-get-remote-tmpdir, tramp-get-remote-ln)
940 (tramp-shell-quote-argument): Set tramp-autoload cookie.
941 (with-file-property, with-connection-property): Move to
942 tramp-cache.el.
943 (tramp-local-call-process, tramp-decimal-to-octal)
944 (tramp-octal-to-decimal): Move to tramp-compat.el.
945 (tramp-handle-shell-command): Do not require 'shell.
946 (tramp-compute-multi-hops): No special handling for tramp-gw-*
947 symbols.
948 (tramp-unload-tramp): Do not call `tramp-unload-file-name-handlers'.
949
950 * net/tramp-cache.el (top): Require 'tramp. Add to
951 `tramp-unload-hook'.
952 (tramp-cache-data, tramp-get-file-property)
953 (tramp-set-file-property, tramp-flush-file-property)
954 (tramp-flush-directory-property, tramp-get-connection-property)
955 (tramp-set-connection-property, tramp-flush-connection-property)
956 (tramp-cache-print, tramp-list-connections): Set tramp-autoload
957 cookie.
958 (with-file-property, with-connection-property): New defuns, moved
959 from tramp.el.
960 (tramp-flush-file-function): Use `with-parsed-tramp-file-name'
961 macro.
962
963 * net/tramp-cmds.el (top): Add to `tramp-unload-hook'.
964 (tramp-version): Set tramp-autoload cookie.
965
966 * net/tramp-compat.el (top): Require 'tramp-loaddefs. Remove all
967 changes to tramp-unload-hook for other tramp-* packages. Add to
968 `tramp-unload-hook'.
969 (tramp-compat-decimal-to-octal, tramp-compat-octal-to-decimal)
970 (tramp-compat-call-process): New defuns, moved from tramp.el.
971
972 * net/tramp-fish.el (top) Require just 'tramp. Add objects to
973 `tramp-methods' and `tramp-foreign-file-name-handler-alist'. Add
974 to `tramp-unload-hook'. Change call of
975 `tramp-compat-decimal-to-octal' to new function name.
976 (tramp-fish-method): Make it a defconst.
977 (tramp-fish-file-name-p): Make it a defsubst.
978 (tramp-fish-method, tramp-fish-file-name-handler)
979 (tramp-fish-file-name-p): Set tramp-autoload cookie.
980
981 * net/tramp-ftp.el (top) Add objects to `tramp-methods' and
982 `tramp-foreign-file-name-handler-alist'. Add to
983 `tramp-unload-hook'.
984 (tramp-ftp-method): Make it a defconst.
985 (tramp-ftp-file-name-p): Make it a defsubst.
986 (tramp-ftp-method, tramp-ftp-file-name-handler)
987 (tramp-ftp-file-name-p): Set tramp-autoload cookie.
988
989 * net/tramp-gvfs.el (top) Add objects to `tramp-methods' and
990 `tramp-foreign-file-name-handler-alist'. Add to
991 `tramp-unload-hook'. Change checks, whether package can be
992 loaded.
993 (tramp-gvfs-file-name-p): Make it a defsubst.
994 (tramp-gvfs-methods, tramp-gvfs-file-name-handler)
995 (tramp-gvfs-file-name-p): Set tramp-autoload cookie.
996 (tramp-gvfs-handle-file-directory-p): New defun.
997 (tramp-gvfs-file-name-handler-alist): Use it.
998
999 * net/tramp-gw.el (top) Add objects to `tramp-methods' and
1000 `tramp-foreign-file-name-handler-alist'. Add to
1001 `tramp-unload-hook'.
1002 (tramp-gw-tunnel-method, tramp-gw-default-tunnel-port)
1003 (tramp-gw-socks-method, tramp-gw-default-socks-port): Make it a
1004 defconst.
1005 (tramp-gw-tunnel-method, tramp-gw-socks-method)
1006 (tramp-gw-open-connection): Set tramp-autoload cookie.
1007
1008 * net/tramp-imap.el (top) Require just 'tramp. Add objects to
1009 `tramp-methods' and `tramp-foreign-file-name-handler-alist'. Add
1010 to `tramp-unload-hook'. Change checks, whether package can be
1011 loaded.
1012 (tramp-imap-file-name-p): Make it a defsubst.
1013 (tramp-imap-method, tramp-imaps-method)
1014 (tramp-imap-file-name-handler)
1015 (tramp-imap-file-name-p): Set tramp-autoload cookie.
1016
1017 * net/tramp-smb.el (top) Require just 'tramp. Add objects to
1018 `tramp-methods' and `tramp-foreign-file-name-handler-alist'. Add
1019 to `tramp-unload-hook'. Change checks, whether package can be
1020 loaded. Change call of `tramp-compat-decimal-to-octal' to new
1021 function name.
1022 (tramp-smb-tunnel-method): Make it a defconst.
1023 (tramp-smb-file-name-p): Make it a defsubst.
1024 (tramp-smb-method, tramp-smb-file-name-handler)
1025 (tramp-smb-file-name-p): Set tramp-autoload cookie.
1026
1027 * net/tramp-uu.el (top) Add to `tramp-unload-hook'.
1028 (tramp-uuencode-region): Set tramp-autoload cookie.
1029
1030 * net/trampver.el (top) Add to `tramp-unload-hook'.
1031 (tramp-version, tramp-bug-report-address): Set tramp-autoload
1032 cookie. Update release number.
1033
1034 2010-09-07 Agustín Martín <agustin.martin@hispalinux.es>
1035
1036 * textmodes/ispell.el (ispell-start-process): Make sure original
1037 arg list is properly initialized (Bug#6993, Bug#6994).
1038
1039 2010-09-06 Alexander Klimov <alserkli@inbox.ru> (tiny change)
1040
1041 * files.el (directory-abbrev-alist): Use \` as default regexp.
1042
1043 * emacs-lisp/rx.el (rx-any): Don't explode ranges that end in special
1044 chars like - or ] (bug#6984).
1045 (rx-any-condense-range): Explode 2-char ranges.
1046
1047 2010-09-06 Glenn Morris <rgm@gnu.org>
1048
1049 * desktop.el (desktop-path): Bump :version after 2009-09-15 change.
1050
1051 2010-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
1052
1053 * textmodes/bibtex.el:
1054 * proced.el: Update to new email for Roland Winkler <winkler@gnu.org>.
1055
1056 2010-09-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
1057
1058 * net/imap.el (imap-message-map): Remove optional buffer parameter,
1059 since no callers use it.
1060 (imap-message-get): Ditto.
1061 (imap-message-put): Ditto.
1062 (imap-mailbox-map): Ditto.
1063 (imap-mailbox-put): Ditto.
1064 (imap-mailbox-get): Ditto.
1065 (imap-mailbox-get): Revert last change for this function.
1066
1067 2010-09-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
1068
1069 * net/imap.el (imap-fetch-safe): Remove function, and alter all
1070 callers to use `imap-fetch' instead. According to the comments, this
1071 should be safe, since all other IMAP clients use the 1:* syntax.
1072 (imap-enable-exchange-bug-workaround): Remove.
1073 (imap-debug): Remove -- doesn't seem very useful.
1074
1075 2010-09-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
1076
1077 * net/imap.el (imap-log): New convenience function used throughout
1078 instead of repeating the same code all over the place.
1079
1080 2010-09-05 David De La Harpe Golden <david@harpegolden.net>
1081
1082 * mouse.el (mouse-save-then-kill): Save region to kill-ring
1083 when mouse-drag-copy-region is non-nil (Bug#6956).
1084
1085 2010-09-05 Chong Yidong <cyd@stupidchicken.com>
1086
1087 * dired.el (dired-ls-sorting-switches, dired-sort-by-name-regexp):
1088 Improve regexps (Bug#6987).
1089 (dired-sort-toggle): Search more robustly for -t flag.
1090
1091 * files.el (get-free-disk-space): Search more robustly for
1092 "available" column. Suggested by Ehud Karni
1093 <ehud@unix.mvs.co.il>.
1094
1095 2010-09-05 Juanma Barranquero <lekktu@gmail.com>
1096
1097 * international/uni-bidi.el:
1098 * international/uni-category.el:
1099 * international/uni-combining.el:
1100 * international/uni-decimal.el:
1101 * international/uni-mirrored.el:
1102 * international/uni-name.el: Regenerate.
1103
1104 2010-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
1105
1106 * electric.el (electric-indent-post-self-insert-function):
1107 Don't reindent with a sloppy indentation function.
1108
1109 * emacs-lisp/syntax.el (syntax-ppss): More sanity check to catch
1110 border case in change-log-mode.
1111
1112 2010-09-04 Chong Yidong <cyd@stupidchicken.com>
1113
1114 * progmodes/compile.el (compilation-error-regexp-alist-alist):
1115 Remove ruby regexp; handle Ruby errors with gcc-include and gnu.
1116 Recognize leading tab in gcc-include regexp. Ignore names with
1117 leading "from" or "in" in gnu regexp (Bug#6937).
1118
1119 2010-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
1120
1121 Avoid global recursive calls to kill-buffer-hooks; fit into 80 cols.
1122 * textmodes/ispell.el (ispell-process-buffer-name): Remove.
1123 (ispell-start-process): Avoid setq and simplify logic.
1124 (ispell-init-process): Setup kill-buffer-hook locally when needed.
1125 (kill-buffer-hook): Don't use it globally with code that uses
1126 expand-file-name since that may call kill-buffer via
1127 code_conversion_restore.
1128
1129 2010-09-04 Noorul Islam K M <noorul@noorul.com> (tiny change)
1130
1131 * emacs-lisp/package.el (package-directory-list): Only call
1132 file-name-nondirectory on a string.
1133
1134 2010-09-02 Chong Yidong <cyd@stupidchicken.com>
1135
1136 * emacs-lisp/package.el (package--download-one-archive):
1137 Ensure that archive-contents is valid before saving it.
1138 (package-activate-1, package-mark-obsolete, define-package)
1139 (package-compute-transaction, package-list-maybe-add): Use push.
1140
1141 2010-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
1142
1143 Use SMIE's blink-paren for octave-mode.
1144 * progmodes/octave-mod.el (octave-font-lock-close-quotes):
1145 Backslashes do not escape single-quotes, single-quotes do.
1146 (octave-block-else-regexp, octave-block-end-regexp)
1147 (octave-block-match-alist): Remove.
1148 (octave-smie-bnf-table): New var, with old content.
1149 (octave-smie-op-levels): Use it.
1150 (octave-smie-closer-alist): New var.
1151 (octave-mode): Use it. Setup smie-blink-matching and electric-indent.
1152 (octave-blink-matching-block-open): Remove.
1153 (octave-reindent-then-newline-and-indent, octave-electric-semi)
1154 (octave-electric-space): Let self-insert-command run expand-abbrev and
1155 blink parens.
1156
1157 * electric.el (electricity): New group.
1158 (electric-indent-chars): New var.
1159 (electric-indent-post-self-insert-function): New fun.
1160 (electric-indent-mode): New minor mode.
1161 (electric-pair-skip-self): New custom.
1162 (electric-pair-post-self-insert-function): New function.
1163 (electric-pair-mode): New minor mode.
1164
1165 * calc/calc-aent.el (calcAlg-blink-matching-check): New fun, to replace
1166 calcAlg-blink-matching-open.
1167 (calc-alg-ent-map, calc-alg-ent-esc-map): Initialize in the declaration.
1168 (calc-do-alg-entry): Only touch the part of the keymap that varies.
1169 Use the new blink-matching-check-function.
1170
1171 Provide blink-matching support to SMIE.
1172 * emacs-lisp/smie.el (smie-bnf-closer-alist): New function.
1173 (smie-blink-matching-triggers, smie-blink-matching-inners): New vars.
1174 (smie-blink-matching-check, smie-blink-matching-open): New functions.
1175
1176 * simple.el (newline): Fix last change to properly remove itself from
1177 the hook.
1178
1179 2010-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
1180
1181 * simple.el (newline): Eliminate optimization.
1182 Use post-self-insert-hook to set hard-newline and things before
1183 running post-self-insert-hook.
1184 (blink-matching-check-mismatch): New function.
1185 (blink-matching-check-function): New variable.
1186 (blink-matching-open): Use them.
1187 Skip back forward over prefix chars skipped by forward-sexp.
1188 Don't check if the parens are backslash escaped.
1189 (blink-paren-post-self-insert-function): Check backslash escaping here.
1190
1191 2010-09-02 Chong Yidong <cyd@stupidchicken.com>
1192
1193 * emacs-lisp/package.el (package-menu-mode-map):
1194 Change package-menu-revert bindings to revert-buffer.
1195 (package-menu-mode): Set revert-buffer-function.
1196 (package-menu-revert): Doc fix.
1197
1198 2010-09-02 Agustín Martín <agustin.martin@hispalinux.es>
1199
1200 * textmodes/ispell.el (ispell-init-process): Use "~/" as
1201 `default-directory' unless using Ispell per-directory personal
1202 dictionaries and not in a mini-buffer under XEmacs.
1203 (kill-buffer-hook): Do not kill ispell process on exit when
1204 `ispell-process-directory' is "~/". (Bug#6143)
1205
1206 2010-09-02 Jan Djärv <jan.h.d@swipnet.se>
1207
1208 * simple.el (kill-new): Call interprogram-cut-function with only
1209 one argument.
1210
1211 * term.el (term-mouse-paste): Don't call x-get-cutbuffer.
1212 Remove cut buffer from error message.
1213
1214 * term/x-win.el (x-select-text):
1215 * term/pc-win.el (x-selection-value):
1216 * term/ns-win.el (x-selection-value):
1217 * eshell/em-term.el:
1218 * w32-fns.el (x-get-selection-value):
1219 * mouse-sel.el (mouse-sel-set-selection-function):
1220 * frame.el (display-selections-p): Remove cut-buffer in documentation.
1221
1222 * term/x-win.el: Update documentation for x-last-selected-text-*.
1223 (x-last-selected-text-cut, x-last-selected-text-cut-encoded)
1224 (x-last-cut-buffer-coding, x-cut-buffer-max): Remove.
1225 (x-select-text): Remove argument PUSH, update documentation. Remove
1226 cut-buffer code.
1227 (x-selection-value-internal): Was previously x-selection-value.
1228 (x-selection-value): Rename from x-cut-buffer-or-selection-value.
1229 Update documentation, remove cut-buffer code. Call
1230 x-selection-value-internal.
1231 (x-clipboard-yank): Call x-selection-value-internal.
1232 (x-initialize-window-system): Remove setting of x-cut-buffer-max.
1233
1234 * term/pc-win.el (x-last-selected-text):
1235 x-cut-buffer-or-selection-value renamed to x-selection-value
1236 (x-select-text): Remove argument PUSH, update documentation.
1237
1238 * term/ns-win.el (x-setup-function-keys, ns-last-selected-text):
1239 x-cut-buffer-or-selection-value renamed to x-selection-value
1240 (x-selection-value): Renamed from x-cut-buffer-or-selection-value.
1241 (x-select-text): Remove argument PUSH, update documentation.
1242
1243 * emacs-lisp/cl-macs.el (x-get-cutbuffer, x-get-cut-buffer): Remove.
1244
1245 * w32-fns.el (x-last-selected-text):
1246 x-cut-buffer-or-selection-value renamed to x-selection-value.
1247 (x-cut-buffer-max): Remove.
1248 (x-select-text): Remove argument PUSH, update documentation.
1249
1250 * simple.el (interprogram-cut-function): Remove mention of PUSH.
1251
1252 * select.el (x-get-cut-buffer, x-set-cut-buffer): Remove.
1253
1254 * mouse-sel.el (mouse-sel-get-selection-function):
1255 x-cut-buffer-or-selection-value renamed to x-selection-value.
1256 (x-select-text): Remove optional push.
1257
1258 2010-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
1259
1260 * simple.el (blink-paren-function): Move from C to here.
1261 (blink-paren-post-self-insert-function): New function.
1262 (post-self-insert-hook): Use it.
1263
1264 * emacs-lisp/pcase.el (pcase-split-memq):
1265 Fix overenthusiastic optimisation.
1266 (pcase-u1): Handle the case of a lambda pred.
1267
1268 2010-08-31 Kenichi Handa <handa@m17n.org>
1269
1270 * international/mule-cmds.el (standard-display-european-internal):
1271 Setup standard-display-table for 8-bit characters by storing 8-bit
1272 characters in the element vector.
1273
1274 * disp-table.el (standard-display-8bit): Setup
1275 standard-display-table for 8-bit characters by storing 8-bit
1276 characters in the element vector.
1277 (standard-display-european): Likewise.
1278
1279 2010-08-31 Masatake YAMATO <yamato@redhat.com>
1280
1281 * textmodes/nroff-mode.el (nroff-view): New command.
1282 (nroff-mode-map): Bind it to C-c C-c.
1283
1284 2010-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
1285
1286 * emacs-lisp/smie.el (smie-down-list): New command.
1287
1288 Remove old indentation and navigation code on octave-mode.
1289 * progmodes/octave-mod.el (octave-mode-map): Remap down-list to
1290 smie-down-list rather than add a binding for octave-down-block.
1291 (octave-mark-block, octave-blink-matching-block-open):
1292 Rely on forward-sexp-function.
1293 (octave-fill-paragraph): Don't narrow, so you can use
1294 indent-according-to-mode.
1295 (octave-block-begin-regexp, octave-block-begin-or-end-regexp): Remove.
1296 (octave-in-block-p, octave-re-search-forward-kw)
1297 (octave-re-search-backward-kw, octave-indent-calculate)
1298 (octave-end-as-array-index-p, octave-block-end-offset)
1299 (octave-scan-blocks, octave-forward-block, octave-backward-block)
1300 (octave-down-block, octave-backward-up-block, octave-up-block)
1301 (octave-before-magic-comment-p, octave-indent-line): Remove.
1302
1303 2010-08-31 Chong Yidong <cyd@stupidchicken.com>
1304
1305 * emacs-lisp/package.el (package--read-archive-file): Just use
1306 `read', to avoid copying an additional string.
1307 (package-menu-mode): Set header-line-format here.
1308 (package-menu-refresh, package-menu-revert): Signal an error if
1309 not in the Package Menu.
1310 (package-menu-package-list): New var.
1311 (package--generate-package-list): Operate on the current buffer;
1312 don't assume that it is *Packages*, since the user may rename it.
1313 Allow persistent package listings and sort keys using
1314 package-menu-package-list and package-menu-package-sort-key.
1315 (package-menu--version-predicate): Fix version calculation.
1316 (package-menu-sort-by-column): Don't select the window.
1317 (package--list-packages): Create the *Packages* buffer.
1318 Set package-menu-package-list-key.
1319 (list-packages): Sorting by status is now the default.
1320 (package-buffer-info): Use match-string-no-properties.
1321 (define-package): Add a &rest argument for future proofing, but
1322 don't use it yet.
1323 (package-install-from-buffer, package-install-buffer-internal):
1324 Merge into a single function, package-install-from-buffer.
1325 (package-install-file): Change caller.
1326
1327 * finder.el: Load finder-inf using `require'.
1328 (finder-list-matches): Sorting by status is now the default.
1329 (finder-compile-keywords): Simpify printing.
1330
1331 2010-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
1332
1333 * progmodes/octave-mod.el (octave-font-lock-keywords): Use regexp-opt.
1334 (octave-mode-map): Remove special bindings for forward/backward-block
1335 and octave-backward-up-block. Use smie-close-block.
1336 (octave-continuation-marker-regexp): New var.
1337 (octave-continuation-regexp): Use it.
1338 (octave-operator-table, octave-smie-op-levels)
1339 (octave-operator-regexp, octave-smie-indent-rules): New vars.
1340 (octave-smie-backward-token, octave-smie-forward-token): New funs.
1341 (octave-mode): Use SMIE.
1342 (octave-close-block): Delete.
1343
1344 2010-08-30 Eli Zaretskii <eliz@gnu.org>
1345
1346 * menu-bar.el (menu-bar-edit-menu) <"Paste">: Check selection in
1347 CLIPBOARD, not in PRIMARY. (Bug#6944)
1348
1349 2010-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
1350
1351 * emacs-lisp/smie.el (smie-indent-offset-rule): Let :parent take
1352 a list of parents.
1353 (smie-indent-column): Allow indirection through variables.
1354
1355 * composite.el (save-buffer-state): Delete, unused.
1356 * font-lock.el (save-buffer-state): Use with-silent-modifications.
1357 (font-lock-default-fontify-region): Use with-syntax-table.
1358 * jit-lock.el (with-buffer-unmodified): Remove.
1359 (with-buffer-prepared-for-jit-lock): Use with-silent-modifications.
1360
1361 Use `declare' in defmacros.
1362 * window.el (save-selected-window):
1363 * subr.el (with-temp-file, with-temp-message, with-syntax-table):
1364 * progmodes/python.el (def-python-skeleton):
1365 * net/dbus.el (dbus-ignore-errors):
1366 * jka-cmpr-hook.el (with-auto-compression-mode):
1367 * international/mule.el (with-category-table):
1368 * emacs-lisp/timer.el (with-timeout):
1369 * emacs-lisp/lisp-mnt.el (lm-with-file):
1370 * emacs-lisp/eieio.el (with-slots):
1371 * emacs-lisp/easymenu.el (easy-menu-define):
1372 * emacs-lisp/debug.el (debugger-env-macro):
1373 * emacs-lisp/cl-compat.el (Multiple-value-bind, Multiple-value-setq)
1374 (Multiple-value-call, Multiple-value-prog1):
1375 * emacs-lisp/cl-seq.el (cl-parsing-keywords, cl-check-key)
1376 (cl-check-test-nokey, cl-check-test, cl-check-match): Move indent and
1377 edebug rule to definition.
1378 * emacs-lisp/lisp-mode.el (save-selected-window)
1379 (with-current-buffer, combine-after-change-calls)
1380 (with-output-to-string, with-temp-file, with-temp-buffer)
1381 (with-temp-message, with-syntax-table, read-if, eval-after-load)
1382 (dolist, dotimes, when, unless):
1383 * emacs-lisp/byte-run.el (inline): Remove indent rule, redundant.
1384
1385 2010-08-29 Chong Yidong <cyd@stupidchicken.com>
1386
1387 * finder.el: Require `package'.
1388 (finder-known-keywords): Tweak descriptions. Retire `oop' keyword.
1389 (finder-package-info): Var deleted.
1390 (finder-keywords-hash, finder--builtins-alist): New vars.
1391 (finder-compile-keywords): Compute package--builtins and
1392 finder-keywords-hash instead of finder-keywords-hash, respecting
1393 the "Package" header.
1394 (finder-unknown-keywords, finder-list-matches):
1395 Use finder-keywords-hash and package--list-packages.
1396 (finder-mode): Don't set font-lock-defaults.
1397 (finder-exit): We don't use "*Finder-package*" and "*Finder
1398 Category*" buffers anymore.
1399
1400 * emacs-lisp/package.el (package--builtins-base): Var deleted.
1401 (package--builtins): Set default value to nil.
1402 (package-initialize): Load precomputed value of package--builtins
1403 from finder-inf.el.
1404 (package-alist, package-compute-transaction)
1405 (package-download-transaction): Improve docstring.
1406 (package-read-all-archive-contents): Do not change
1407 package--builtins here.
1408 (list-packages): Make package-list-packages an alias for this.
1409 Sort by status by default.
1410 (package--list-packages): Add optional PACKAGES arg.
1411 (describe-package-1): Use font-lock-face property. For built-in
1412 packages, insert file commentary.
1413 (package--generate-package-list): Rename from
1414 package-list-packages-internal; all callers changed. Add optional
1415 PACKAGES arg. Add alphabetical sort fallbacks.
1416 (package-menu--version-predicate, package-menu--status-predicate)
1417 (package-menu--description-predicate)
1418 (package-menu--name-predicate): New functions.
1419
1420 * info.el (Info-finder-find-node): Search package-alist instead of
1421 finder-package-info.
1422
1423 2010-08-29 Chong Yidong <cyd@stupidchicken.com>
1424
1425 * subr.el (version-regexp-alist): Don't use "a" and "b" for
1426 "alpha" and "beta".
1427 (version-to-list): Handle versions like "10.3d".
1428
1429 2010-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
1430
1431 * emacs-lisp/macroexp.el (macroexpand-all-1): Use pcase.
1432 (macroexp-accumulate): Use `declare'.
1433
1434 2010-08-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
1435
1436 * whitespace.el (whitespace-style): Adjust type declaration.
1437
1438 2010-08-26 Magnus Henoch <magnus.henoch@gmail.com>
1439
1440 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Do not pass
1441 empty argument to gvfs-copy.
1442
1443 2010-08-26 Chong Yidong <cyd@stupidchicken.com>
1444
1445 * net/tramp-compat.el (tramp-compat-delete-file): Rewrite to
1446 handle new TRASH arg of `delete-file'.
1447
1448 2010-08-26 Christian Lynbech <christian.lynbech@tieto.com> (tiny change)
1449
1450 * net/tramp.el (tramp-handle-insert-directory): Don't use
1451 `forward-word', its default syntax could be changed.
1452
1453 2010-08-26 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
1454 Michael Albinus <michael.albinus@gmx.de>
1455
1456 Implement compression for inline methods.
1457
1458 * net/tramp.el (tramp-inline-compress-start-size): New defcustom.
1459 (tramp-copy-size-limit): Allow also nil.
1460 (tramp-inline-compress-commands): New defconst.
1461 (tramp-find-inline-compress, tramp-get-inline-compress)
1462 (tramp-get-inline-coding): New defuns.
1463 (tramp-get-remote-coding, tramp-get-local-coding): Remove,
1464 replaced by `tramp-get-inline-coding'.
1465 (tramp-handle-file-local-copy, tramp-handle-write-region)
1466 (tramp-method-out-of-band-p): Use `tramp-get-inline-coding'.
1467
1468 2010-08-26 Noah Lavine <noah549@gmail.com> (tiny change)
1469
1470 Detect ssh 'ControlMaster' argument automatically in some cases.
1471
1472 * net/tramp.el (tramp-detect-ssh-controlmaster): New defun.
1473 (tramp-default-method): Use it.
1474
1475 2010-08-26 Karel Klíč <kklic@redhat.com>
1476
1477 * net/tramp.el (tramp-file-name-for-operation):
1478 Add file-selinux-context.
1479
1480 2010-08-26 Łukasz Stelmach <lukasz.stelmach@iem.pw.edu.pl> (tiny change)
1481
1482 * play/cookie1.el (read-cookie): Fix off-by-one error (bug#6921).
1483
1484 2010-08-26 Chong Yidong <cyd@stupidchicken.com>
1485
1486 * simple.el (beginning-of-buffer, end-of-buffer): Doc fix
1487 (Bug#6907).
1488
1489 2010-08-26 Nathan Weizenbaum <nweiz@cressida.sea.corp.google.com> (tiny change)
1490
1491 * progmodes/js.el: Make indentation more customizable (Bug#6914).
1492 (js-paren-indent-offset, js-square-indent-offset)
1493 (js-curly-indent-offset): New options.
1494 (js--proper-indentation): Use them.
1495
1496 2010-08-26 Daniel Colascione <dan.colascione@gmail.com>
1497
1498 * progmodes/sh-script.el (sh-get-indent-info): Use syntax-ppss
1499 instead of inspecting font-lock properties (Bug#6916).
1500
1501 2010-08-26 David Reitter <david.reitter@gmail.com>
1502
1503 * server.el (server-visit-files): Run pre-command-hook and
1504 post-command-hook for each buffer while it is current
1505 (Bug#6910).
1506 (server-execute): Do not run hooks here.
1507
1508 2010-08-26 Michael Albinus <michael.albinus@gmx.de>
1509
1510 Sync with Tramp 2.1.19.
1511
1512 * net/tramp-cmds.el (tramp-cleanup-all-connections)
1513 (tramp-reporter-dump-variable, tramp-load-report-modules)
1514 (tramp-append-tramp-buffers): Use `tramp-compat-funcall'.
1515 (tramp-bug): Recommend setting of `tramp-verbose' to 9.
1516
1517 * net/tramp-compat.el (top): Do not autoload
1518 `tramp-handle-file-remote-p'. Load tramp-util.el and tramp-vc.el
1519 only when `start-file-process' is not bound.
1520 (byte-compile-not-obsolete-vars): Define if not bound.
1521 (tramp-compat-funcall): New defmacro.
1522 (tramp-compat-line-beginning-position)
1523 (tramp-compat-line-end-position)
1524 (tramp-compat-temporary-file-directory)
1525 (tramp-compat-make-temp-file, tramp-compat-file-attributes)
1526 (tramp-compat-copy-file, tramp-compat-copy-directory)
1527 (tramp-compat-delete-file, tramp-compat-delete-directory)
1528 (tramp-compat-number-sequence, tramp-compat-process-running-p):
1529 Use it.
1530 (tramp-advice-file-expand-wildcards): Do not use
1531 `tramp-handle-file-remote-p'.
1532 (tramp-compat-make-temp-file): Simplify fallback implementation.
1533 (tramp-compat-copy-file): Add PRESERVE-SELINUX-CONTEXT.
1534 (tramp-compat-copy-tree): Remove function.
1535 (tramp-compat-delete-file): New defun.
1536 (tramp-compat-delete-directory): Provide implementation for older
1537 Emacsen.
1538 (tramp-compat-file-attributes): Handle only
1539 `wrong-number-of-arguments' error.
1540
1541 * net/tramp-fish.el (tramp-fish-handle-copy-file): Add
1542 PRESERVE_SELINUX_CONTEXT.
1543 (tramp-fish-handle-delete-file): Add TRASH arg.
1544 (tramp-fish-handle-directory-files-and-attributes):
1545 Do not use `tramp-fish-handle-file-attributes.
1546 (tramp-fish-handle-file-local-copy)
1547 (tramp-fish-handle-insert-file-contents)
1548 (tramp-fish-maybe-open-connection): Use `with-progress-reporter'.
1549
1550 * net/tramp-gvfs.el (top): Require url-util.
1551 (tramp-gvfs-mount-point): Remove.
1552 (tramp-gvfs-file-name-handler-alist): Add `file-selinux-context'
1553 and `set-file-selinux-context'.
1554 (tramp-gvfs-stringify-dbus-message, tramp-gvfs-send-command)
1555 (tramp-gvfs-handle-file-selinux-context)
1556 (tramp-gvfs-handle-set-file-selinux-context): New defuns.
1557 (with-tramp-dbus-call-method): Format trace message.
1558 (tramp-gvfs-handle-copy-file): Handle PRESERVE-SELINUX-CONTEXT.
1559 (tramp-gvfs-handle-copy-file, tramp-gvfs-handle-rename-file):
1560 Implement backup call, when operation on local files fails. Use
1561 progress reporter. Flush properties of changed files.
1562 (tramp-gvfs-handle-delete-file): Add TRASH arg. Use
1563 `tramp-compat-delete-file'.
1564 (tramp-gvfs-handle-expand-file-name): Expand "~/".
1565 (tramp-gvfs-handle-make-directory): Make more traces.
1566 (tramp-gvfs-handle-write-region): Protect deleting tmpfile.
1567 (tramp-gvfs-url-file-name): Hexify file name in url.
1568 (tramp-gvfs-fuse-file-name): Take also prefix (like dav shares)
1569 into account for the resulting file name.
1570 (tramp-gvfs-handler-askquestion): Preserve current message, in
1571 order to let progress reporter continue afterwards. (Bug#6257)
1572 Return dummy mountpoint, when the answer is "no". See
1573 `tramp-gvfs-maybe-open-connection'.
1574 (tramp-gvfs-handler-mounted-unmounted)
1575 (tramp-gvfs-connection-mounted-p): Test also for new mountspec
1576 attribute "default_location". Set "prefix" property. Handle
1577 default-location.
1578 (tramp-gvfs-mount-spec): Return both prefix and mountspec.
1579 (tramp-gvfs-maybe-open-connection): Test, whether mountpoint
1580 exists. Raise an error, if not (due to a corresponding answer
1581 "no" in interactive questions, for example).
1582 Use `tramp-compat-funcall'.
1583
1584 * net/tramp-imap.el (top): Autoload `epg-make-context'.
1585 (tramp-imap-handle-copy-file): Add PRESERVE-SELINUX-CONTEXT.
1586 (tramp-imap-do-copy-or-rename-file)
1587 (tramp-imap-handle-insert-file-contents)
1588 (tramp-imap-handle-file-local-copy): Use `with-progress-reporter'.
1589 (tramp-imap-handle-delete-file): Add TRASH arg.
1590
1591 * net/tramp-smb.el (tramp-smb-handle-copy-file): Add
1592 PRESERVE-SELINUX-CONTEXT.
1593 (tramp-smb-handle-copy-file)
1594 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
1595 (tramp-smb-handle-write-region, tramp-smb-maybe-open-connection):
1596 Use `with-progress-reporter'.
1597 (tramp-smb-handle-delete-file): Add TRASH arg.
1598
1599 * net/tramp.el (tramp-methods): Move hostname to the end in all
1600 ssh `tramp-login-args'. Add `tramp-async-args' attribute where
1601 appropriate.
1602 (tramp-verbose): Describe verbose level 9.
1603 (tramp-completion-function-alist)
1604 (tramp-file-name-regexp, tramp-chunksize)
1605 (tramp-local-coding-commands, tramp-remote-coding-commands)
1606 (with-connection-property, tramp-completion-mode-p)
1607 (tramp-action-process-alive, tramp-action-out-of-band)
1608 (tramp-check-for-regexp, tramp-file-name-p, tramp-equal-remote)
1609 (tramp-exists-file-name-handler): Fix docstring.
1610 (tramp-remote-process-environment): Use `format' instead of
1611 `concat'. Protect version string by apostroph.
1612 (tramp-shell-prompt-pattern): Do not use a shy group in case of
1613 XEmacs.
1614 (tramp-file-name-regexp-unified)
1615 (tramp-completion-file-name-regexp-unified): On W32 systems, do
1616 not regard the volume letter as remote filename. (Bug#5447)
1617 (tramp-perl-file-attributes)
1618 (tramp-perl-directory-files-and-attributes): Don't pass "$3".
1619 (tramp-vc-registered-read-file-names): Read input as
1620 here-document, otherwise the command could exceed maximum length
1621 of command line.
1622 (tramp-file-name-handler-alist): Add `file-selinux-context' and
1623 `set-file-selinux-context'.
1624 (tramp-debug-message): Add `tramp-compat-funcall' to ignored
1625 backtrace functions.
1626 (tramp-error-with-buffer): Don't show the connection buffer when
1627 we are in completion mode.
1628 (tramp-progress-reporter-update, tramp-remote-selinux-p)
1629 (tramp-handle-file-selinux-context)
1630 (tramp-handle-set-file-selinux-context, tramp-process-sentinel)
1631 (tramp-connectable-p, tramp-open-shell, tramp-get-remote-trash):
1632 New defuns.
1633 (with-progress-reporter): New defmacro.
1634 (tramp-debug-outline-regexp): New defconst.
1635 (top, tramp-rfn-eshadow-setup-minibuffer)
1636 (tramp-rfn-eshadow-update-overlay, tramp-handle-set-file-times)
1637 (tramp-handle-dired-compress-file, tramp-handle-shell-command)
1638 (tramp-completion-mode-p, tramp-check-for-regexp)
1639 (tramp-open-connection-setup-interactive-shell)
1640 (tramp-compute-multi-hops, tramp-read-passwd, tramp-clear-passwd)
1641 (tramp-time-diff, tramp-coding-system-change-eol-conversion)
1642 (tramp-set-process-query-on-exit-flag, tramp-unload-tramp):
1643 Use `tramp-compat-funcall'.
1644 (tramp-handle-make-symbolic-link): Flush file properties.
1645 (tramp-handle-load, tramp-handle-file-local-copy)
1646 (tramp-handle-insert-file-contents, tramp-handle-write-region)
1647 (tramp-handle-vc-registered, tramp-maybe-send-script)
1648 (tramp-find-shell): Use `with-progress-reporter'.
1649 (tramp-do-file-attributes-with-stat): Add space in format string,
1650 in order to work around a bug in pdksh. Reported by Gilles Pion
1651 <gpion@lfdj.com>.
1652 (tramp-handle-verify-visited-file-modtime): Do not send a command
1653 when the connection is not established.
1654 (tramp-handle-set-file-times): Simplify the check for utc.
1655 (tramp-handle-directory-files-and-attributes)
1656 (tramp-get-remote-path): Use `copy-tree'.
1657 (tramp-completion-handle-file-name-all-completions): Ensure, that
1658 non remote files are still checked. Oops.
1659 (tramp-handle-copy-file, tramp-do-copy-or-rename-file): Handle
1660 PRESERVE-SELINUX-CONTEXT.
1661 (tramp-do-copy-or-rename-file): Add progress reporter.
1662 (tramp-do-copy-or-rename-file-directly): Do not use
1663 `tramp-handle-file-remote-p'.
1664 (tramp-do-copy-or-rename-file-out-of-band):
1665 Use `tramp-compat-delete-directory'.
1666 (tramp-do-copy-or-rename-file-out-of-band)
1667 (tramp-compute-multi-hops, tramp-maybe-open-connection):
1668 Use `format-spec-make'.
1669 (tramp-handle-delete-file): Add TRASH arg.
1670 (tramp-handle-dired-uncache): Flush directory cache, not only file
1671 cache.
1672 (tramp-handle-expand-file-name)
1673 (tramp-completion-handle-file-name-all-completions)
1674 (tramp-completion-handle-file-name-completion): Use
1675 `tramp-connectable-p'.
1676 (tramp-handle-start-file-process): Set connection property "vec".
1677 Use it, in order to invalidate file caches. Check only for
1678 `remote-tty' process property.
1679 Implement tty setting. (Bug#4604, Bug#6360)
1680 (tramp-file-name-for-operation): Add `call-process-region' and
1681 `set-file-selinux-context'.
1682 (tramp-find-foreign-file-name-handler)
1683 (tramp-advice-make-auto-save-file-name)
1684 (tramp-set-auto-save-file-modes): Remove superfluous check for
1685 `stringp'. This is done inside `tramp-tramp-file-p'.
1686 (tramp-file-name-handler): Trace 'quit. Catch the error for some
1687 operations when we are in completion mode. This gives the user
1688 the chance to correct the file name in the minibuffer.
1689 (tramp-completion-mode-p): Use `non-essential'.
1690 (tramp-handle-file-name-all-completions): Backward/ XEmacs
1691 compatibility: Use `completion-ignore-case' if
1692 `read-file-name-completion-ignore-case' does not exist.
1693 (tramp-get-debug-buffer): Use `tramp-debug-outline-regexp'.
1694 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
1695 `tramp-open-shell'.
1696 (tramp-action-password): Hide password prompt before next run.
1697 (tramp-process-actions): Widen connection buffer for the trace.
1698 (tramp-open-connection-setup-interactive-shell): Set `remote-tty'
1699 process property. Trace stty settings if `tramp-verbose' >= 9.
1700 Apply workaround for IRIX64 bug. Move argument of last
1701 `tramp-send-command' where it belongs to.
1702 (tramp-maybe-open-connection): Use `async-args' and `gw-args' in
1703 front of `login-args'.
1704 (tramp-get-ls-command, tramp-get-ls-command-with-dired): Run tests
1705 on "/dev/null" instead of "/".
1706 (tramp-get-ls-command-with-dired): Make test for "--dired"
1707 stronger.
1708 (tramp-set-auto-save-file-modes): Adapt version check.
1709 (tramp-set-process-query-on-exit-flag): Fix wrong parentheses.
1710 (tramp-handle-process-file): Call the program in a subshell, in
1711 order to preserve working directory.
1712 (tramp-handle-shell-command): Don't use hard-wired "/bin/sh" but
1713 `tramp-remote-sh' from `tramp-methods'.
1714 (tramp-get-ls-command): Make test for "--color=never" stronger.
1715 (tramp-check-for-regexp): Use (forward-line 1).
1716
1717 * net/trampver.el: Update release number.
1718
1719 2010-08-26 Chong Yidong <cyd@stupidchicken.com>
1720
1721 * help.el (help-map): Bind `C-h P' to describe-package.
1722
1723 * menu-bar.el (menu-bar-describe-menu): Add describe-package.
1724
1725 * emacs-lisp/package.el (package-refresh-contents): Catch errors
1726 when downloading archives.
1727 (describe-package-1): Add package commentary.
1728 (package-install-button-action): New function.
1729 (package-menu-mode-map): Bind ? to package-menu-describe-package.
1730 (package-menu-view-commentary): Function removed.
1731 (package-list-packages-internal): Hide the `package' package too.
1732
1733 2010-08-25 Kenichi Handa <handa@m17n.org>
1734
1735 * language/misc-lang.el ("Arabic"): New language environment.
1736 Setup composition-function-table for Arabic characters.
1737
1738 * international/fontset.el (setup-default-fontset): Fix typo for
1739 arabic OTF spec (fini->fina).
1740
1741 2010-08-25 Jan Djärv <jan.h.d@swipnet.se>
1742
1743 * menu-bar.el (menu-bar-set-tool-bar-position): Set frame parameter
1744 on all frames.
1745
1746 2010-08-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
1747
1748 * whitespace.el: Allow cleaning up blanks without blank
1749 visualization (Bug#6651). Adjust help window for
1750 whitespace-toggle-options (Bug#6479). Allow to use fill-column
1751 instead of whitespace-line-column (from EmacsWiki). New version
1752 13.1.
1753 (whitespace-style): Added new value 'face. Adjust docstring.
1754 (whitespace-space, whitespace-hspace, whitespace-tab): Adjust
1755 foreground property face.
1756 (whitespace-line-column): Adjust docstring and type declaration.
1757 (whitespace-style-value-list, whitespace-toggle-option-alist)
1758 (whitespace-help-text): Adjust const initialization.
1759 (whitespace-toggle-options, global-whitespace-toggle-options):
1760 Adjust docstring.
1761 (whitespace-display-window, whitespace-interactive-char)
1762 (whitespace-style-face-p, whitespace-color-on): Adjust code.
1763 (whitespace-help-scroll): New fun.
1764
1765 2010-08-24 Chong Yidong <cyd@stupidchicken.com>
1766
1767 * emacs-lisp/package.el (list-packages): Alias for
1768 package-list-packages.
1769
1770 2010-08-24 Kevin Ryde <user42@zip.com.au>
1771
1772 * textmodes/flyspell.el (flyspell-check-tex-math-command): Doc fix
1773 (Bug#5651).
1774
1775 * progmodes/ruby-mode.el (ruby): Add defgroup.
1776
1777 2010-08-24 Chong Yidong <cyd@stupidchicken.com>
1778
1779 * progmodes/python.el: Add Ipython support (Bug#5390).
1780 (python-shell-prompt-alist)
1781 (python-shell-continuation-prompt-alist): New options.
1782 (python--set-prompt-regexp): New function.
1783 (inferior-python-mode, run-python, python-shell): Require
1784 ansi-color. Use python--set-prompt-regexp to set the comint
1785 prompt based on the Python interpreter.
1786 (python--prompt-regexp): New var.
1787 (python-check-comint-prompt)
1788 (python-comint-output-filter-function): Use it.
1789 (run-python): Use a pipe (Bug#5694).
1790
1791 2010-08-24 Fabian Ezequiel Gallina <galli.87@gmail.com> (tiny change)
1792
1793 * progmodes/python.el (python-send-region): Send a different
1794 Python command if Ipython is in use.
1795 (python-check-version): Use a Python command to find the version.
1796
1797 2010-08-24 Chong Yidong <cyd@stupidchicken.com>
1798
1799 * mouse.el (mouse-yank-primary): Avoid setting primary when
1800 deactivating the mark (Bug#6872).
1801
1802 2010-08-23 Chris Foote <chris@foote.com.au> (tiny change)
1803
1804 * progmodes/python.el (python-block-pairs): Allow use of "finally"
1805 with "else" (Bug#3991).
1806
1807 2010-08-23 Michael Albinus <michael.albinus@gmx.de>
1808
1809 * net/dbus.el: Accept UNIX domain sockets as bus address.
1810 (top): Don't initialize `dbus-registered-objects-table' anymore,
1811 this is done in dbusbind,c.
1812 (dbus-check-event): Adapt test for bus.
1813 (dbus-return-values-table, dbus-unregister-service)
1814 (dbus-event-bus-name, dbus-introspect, dbus-register-property):
1815 Adapt doc string.
1816
1817 2010-08-23 Juanma Barranquero <lekktu@gmail.com>
1818
1819 * ido.el (ido-use-virtual-buffers): Fix typo in docstring.
1820
1821 2010-08-22 Juri Linkov <juri@jurta.org>
1822
1823 * simple.el (read-extended-command): New function with the logic
1824 for `completing-read' moved to Elisp from `execute-extended-command'.
1825 Use `function-called-at-point' in `minibuffer-default-add-function'
1826 to get a command name for M-n (bug#5364, bug#5214).
1827
1828 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
1829
1830 * startup.el (command-line-1): Issue warning for ignored arguments
1831 --unibyte, etc (Bug#6886).
1832
1833 2010-08-22 Leo <sdl.web@gmail.com>
1834
1835 * net/rcirc.el (rcirc-add-or-remove): Accept a list of elements.
1836 (ignore, bright, dim, keyword): Split list of nicknames before
1837 passing to rcirc-add-or-remove (Bug#6894).
1838
1839 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
1840
1841 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix (Bug#6880).
1842
1843 2010-08-22 Leo <sdl.web@gmail.com>
1844
1845 Fix buffer-list rename&refresh after killing a buffer in ido.
1846 * lisp/ido.el: Revert Óscar's.
1847 (ido-kill-buffer-at-head): Exit the minibuffer with ido-exit=refresh.
1848 Remember the buffers at head, rather than their name.
1849 * lisp/iswitchb.el (iswitchb-kill-buffer): Re-make the list.
1850
1851 2010-08-22 Kirk Kelsey <kirk.kelsey@0x4b.net> (tiny change)
1852 Stefan Monnier <monnier@iro.umontreal.ca>
1853
1854 * progmodes/make-mode.el (makefile-fill-paragraph): Account for the
1855 extra backslash added to each line (bug#6890).
1856
1857 2010-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
1858
1859 * subr.el (read-key): Don't echo keystrokes (bug#6883).
1860
1861 2010-08-22 Glenn Morris <rgm@gnu.org>
1862
1863 * menu-bar.el (menu-bar-games-menu): Add landmark.
1864
1865 2010-08-22 Glenn Morris <rgm@gnu.org>
1866
1867 * align.el (align-regexp): Make group and spacing arguments
1868 use the interactive defaults when non-interactive. (Bug#6698)
1869
1870 * mail/rmail.el (rmail-forward): Replace mail-text-start with its
1871 expansion, so as not to need sendmail.
1872 (mail-text-start): Remove declaration.
1873 (rmail-retry-failure): Require sendmail.
1874
1875 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
1876
1877 * subr.el (read-key): Don't hide the menu-bar entries (bug#6881).
1878
1879 2010-08-22 Michael Albinus <michael.albinus@gmx.de>
1880
1881 * progmodes/flymake.el (flymake-start-syntax-check-process):
1882 Use `start-file-process' in order to let it run also on remote hosts.
1883
1884 2010-08-22 Kenichi Handa <handa@m17n.org>
1885
1886 * files.el: Add `word-wrap' as safe local variable.
1887
1888 2010-08-22 Glenn Morris <rgm@gnu.org>
1889
1890 * woman.el (woman-translate): Case matters. (Bug#6849)
1891
1892 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
1893
1894 * simple.el (kill-region): Doc fix (Bug#6787).
1895
1896 2010-08-22 Glenn Morris <rgm@gnu.org>
1897
1898 * calendar/diary-lib.el (diary-header-line-format):
1899 Fit it to the window, not the frame.
1900
1901 2010-08-22 Andreas Schwab <schwab@linux-m68k.org>
1902
1903 * subr.el (ignore-errors): Add debug declaration.
1904
1905 2010-08-22 Geoff Gole <geoffgole@gmail.com> (tiny change)
1906
1907 * whitespace.el (whitespace-color-off): Remove post-command-hook
1908 locally.
1909
1910 2010-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
1911
1912 * vc/add-log.el (add-log-file-name): Don't get confused by symlinks.
1913
1914 2010-08-21 Chong Yidong <cyd@stupidchicken.com>
1915
1916 * cus-edit.el (custom-group-value-create): Add extra newline
1917 before end line (Bug#6876).
1918
1919 2010-08-21 Chong Yidong <cyd@stupidchicken.com>
1920
1921 * mouse.el (mouse-save-then-kill): Don't save region to kill ring
1922 when extending it. Before killing on the second click, check if
1923 the buffer is the correct one. Doc fix.
1924 (mouse-secondary-save-then-kill): Allow usage without first
1925 calling mouse-start-secondary, by defaulting to point. Don't save
1926 an empty secondary selection. Doc fix.
1927
1928 2010-08-21 Vinicius Jose Latorre <viniciusjl@ig.com.br>
1929
1930 * whitespace.el: Fix slow cursor movement (Bug#6172). Reported by
1931 Christoph Groth <cwg@falma.de> and Liu Xin <x_liu@neusoft.com>.
1932 New version 13.0.
1933 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
1934 Adjust initialization.
1935 (whitespace-bob-marker, whitespace-eob-marker)
1936 (whitespace-buffer-changed): New vars.
1937 (whitespace-cleanup, whitespace-color-on, whitespace-color-off)
1938 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp)
1939 (whitespace-post-command-hook, whitespace-display-char-on):
1940 Adjust code.
1941 (whitespace-looking-back, whitespace-buffer-changed): New funs.
1942 (whitespace-space-regexp, whitespace-tab-regexp): Fun eliminated.
1943
1944 2010-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
1945
1946 * files.el (locate-file-completion-table): Only list the .el and .elc
1947 extensions if there's no other choice (bug#5955).
1948
1949 * facemenu.el (facemenu-self-insert-data): New var.
1950 (facemenu-post-self-insert-function, facemenu-set-self-insert-face):
1951 New functions.
1952 (facemenu-add-face): Use them.
1953
1954 * simple.el (blink-matching-open): Obey forward-sexp-function.
1955
1956 2010-08-18 Stefan Monnier <monnier@iro.umontreal.ca>
1957
1958 * simple.el (prog-mode-map): New var.
1959 (prog-indent-sexp): New command.
1960
1961 * progmodes/octave-mod.el (octave-mode-menu): Make toggle buttons.
1962
1963 * progmodes/prolog.el (smie): Require.
1964
1965 * emacs-lisp/smie.el (smie-default-backward-token)
1966 (smie-default-forward-token): Strip properties.
1967 (smie-next-sexp): Be more careful with associative operators.
1968 (smie-forward-sexp-command): Generalize.
1969 (smie-backward-sexp-command): Simplify.
1970 (smie-closer-alist): New var.
1971 (smie-close-block): New command.
1972 (smie-indent-debug-log): New var.
1973 (smie-indent-offset-rule): Add a few more cases.
1974 (smie-indent-column): New function.
1975 (smie-indent-after-keyword): Use it.
1976 (smie-indent-keyword): Use it.
1977 Fix up the opener code's point position.
1978 (smie-indent-comment): Only applies at BOL.
1979 (smie-indent-debug): New command.
1980
1981 * emacs-lisp/autoload.el (make-autoload): Preload the macros's
1982 declarations that are useful before running the macro.
1983
1984 2010-08-18 Joakim Verona <joakim@verona.se>
1985
1986 * image.el (imagemagick-types-inhibit): New variable.
1987 (imagemagick-register-types): New function.
1988 * image-mode.el (image-transform-properties): New function.
1989 (image-transform-set-scale, image-transform-fit-to-height)
1990 (image-transform-set-rotation, image-transform-set-resize)
1991 (image-transform-fit-to-width, image-transform-fit-to-height):
1992 New functions.
1993 (image-toggle-display-image): Support image transforms.
1994
1995 2010-08-18 Katsumi Yamaoka <yamaoka@jpl.org>
1996
1997 * image.el (create-animated-image): Don't add heuristic mask to image
1998 (Bug#6839).
1999
2000 2010-08-18 Jan Djärv <jan.h.d@swipnet.se>
2001
2002 * term/ns-win.el (ns-get-pasteboard, ns-set-pasteboard):
2003 Use QCLIPBOARD instead of QPRIMARY (Bug#6677).
2004
2005 2010-08-17 Stefan Monnier <monnier@iro.umontreal.ca>
2006
2007 * emacs-lisp/lisp.el (up-list): Obey forward-sexp-function if set.
2008
2009 Font-lock '...' strings, plus various simplifications and fixes.
2010 * progmodes/octave-mod.el (octave-font-lock-keywords): Use regexp-opt.
2011 (octave-font-lock-close-quotes): New function.
2012 (octave-font-lock-syntactic-keywords): New var.
2013 (octave-mode): Use it. Set beginning-of-defun-function.
2014 (octave-mode-map): Don't override the <foo>-defun commands.
2015 (octave-mode-menu): Pass it directly to easy-menu-define;
2016 remove (now generic) <foo>-defun commands; use info-lookup-symbol.
2017 (octave-block-match-alist): Fix up last change so that
2018 octave-close-block uses the more specific keyword.
2019 (info-lookup-mode): Silence byte-compiler.
2020 (octave-beginning-of-defun): Not interactive any more.
2021 Optimize slightly.
2022 (octave-end-of-defun, octave-mark-defun, octave-in-defun-p): Remove.
2023 (octave-indent-defun, octave-send-defun): Use mark-defun instead.
2024 (octave-completion-at-point-function): Make sure point is within
2025 beg..end.
2026 (octave-reindent-then-newline-and-indent):
2027 Use reindent-then-newline-and-indent.
2028 (octave-add-octave-menu): Remove.
2029
2030 2010-08-17 Jan Djärv <jan.h.d@swipnet.se>
2031
2032 * mail/emacsbug.el (report-emacs-bug-insert-to-mailer)
2033 (report-emacs-bug-can-use-xdg-email): New functions.
2034 (report-emacs-bug): Set can-xdg-email to result of
2035 report-emacs-bug-can-use-xdg-email. If can-xdg-email bind
2036 \C-cm to report-emacs-bug-insert-to-mailer and add help text
2037 about it.
2038
2039 * net/browse-url.el (browse-url-default-browser): Add cond
2040 for browse-url-xdg-open.
2041 (browse-url-can-use-xdg-open, browse-url-xdg-open): New functions.
2042
2043 2010-08-17 Glenn Morris <rgm@gnu.org>
2044
2045 * progmodes/cc-engine.el (c-new-BEG, c-new-END)
2046 (c-fontify-recorded-types-and-refs): Define for compiler.
2047 * progmodes/cc-mode.el (c-new-BEG, c-new-END): Move definitions
2048 before use.
2049
2050 * calendar/icalendar.el (icalendar--convert-recurring-to-diary):
2051 Fix format call.
2052
2053 2010-08-17 Michael Albinus <michael.albinus@gmx.de>
2054
2055 * net/tramp.el (tramp-handle-make-symbolic-link): Flush file
2056 properties.
2057 (tramp-handle-process-file): Call the program in a subshell, in
2058 order to preserve working directory.
2059 (tramp-action-password): Hide password prompt before next run.
2060 (tramp-process-actions): Widen connection buffer for the trace.
2061
2062 2010-08-16 Deniz Dogan <deniz.a.m.dogan@gmail.com>
2063
2064 * net/rcirc.el (rcirc-log-process-buffers): New option.
2065 (rcirc-print): Use it.
2066 (rcirc-generate-log-filename): New function.
2067 (rcirc-log-filename-function): Change default to
2068 rcirc-generate-log-filename (Bug#6828).
2069
2070 2010-08-16 Chong Yidong <cyd@stupidchicken.com>
2071
2072 * simple.el (deactivate-mark): If select-active-regions is `only',
2073 only set selection for temporarily active regions.
2074
2075 * cus-start.el: Change defcustom for select-active-regions.
2076
2077 2010-08-15 Chong Yidong <cyd@stupidchicken.com>
2078
2079 * mouse.el (mouse--drag-set-mark-and-point): New function.
2080 (mouse-drag-track): Use LOCATION arg to push-mark.
2081 Use mouse--drag-set-mark-and-point to take click-count into
2082 consideration when updating point and mark (Bug#6840).
2083
2084 2010-08-15 Chong Yidong <cyd@stupidchicken.com>
2085
2086 * progmodes/compile.el (compilation-error-regexp-alist-alist):
2087 Give the Ruby rule a lower priority than Gnu (Bug#6778).
2088
2089 2010-08-14 Štěpán Němec <stepnem@gmail.com> (tiny change)
2090
2091 * font-lock.el (lisp-font-lock-keywords-2):
2092 Add combine-after-change-calls, condition-case-no-debug,
2093 with-demoted-errors, and with-silent-modifications (Bug#6025).
2094
2095 2010-08-14 Kevin Ryde <user42@zip.com.au>
2096
2097 * emacs-lisp/copyright.el (copyright-update-year)
2098 (copyright-update): Temporary switch-to-buffer to ensure the
2099 buffer change being queried is visible (Bug#5394).
2100
2101 2010-08-14 Tom Tromey <tromey@redhat.com>
2102
2103 * progmodes/etags.el (tags-file-name): Mark safe if stringp
2104 (Bug#6733).
2105
2106 2010-08-14 Eli Zaretskii <eliz@gnu.org>
2107
2108 * mouse.el (mouse-yank-primary): Fix mouse-2 on MS-Windows and
2109 MS-DOS. (Bug#6689)
2110
2111 2010-08-13 Jan Djärv <jan.h.d@swipnet.se>
2112
2113 * menu-bar.el (menu-bar-set-tool-bar-position): New function.
2114 (menu-bar-showhide-tool-bar-menu-customize-enable-left)
2115 (menu-bar-showhide-tool-bar-menu-customize-enable-right)
2116 (menu-bar-showhide-tool-bar-menu-customize-enable-top)
2117 (menu-bar-showhide-tool-bar-menu-customize-enable-bottom):
2118 Call menu-bar-set-tool-bar-position.
2119
2120 2010-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
2121
2122 * progmodes/octave-mod.el (octave-mode-syntax-table): Use the new "c"
2123 comment style (bug#6834).
2124 * progmodes/scheme.el (scheme-mode-syntax-table):
2125 * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Remove spurious
2126 "b" flag in "' 14b" syntax.
2127
2128 * progmodes/octave-mod.el (octave-mode-map): Remove special bindings
2129 for (un)commenting the region and performing completion.
2130 (octave-mode-menu): Use standard commands for help and completion.
2131 (octave-mode-syntax-table): Support %{..%} comments (sort of).
2132 (octave-mode): Use define-derived-mode.
2133 Set completion-at-point-functions and don't set columns.
2134 Don't disable adaptive-fill-regexp.
2135 (octave-describe-major-mode, octave-comment-region)
2136 (octave-uncomment-region, octave-comment-indent)
2137 (octave-indent-for-comment): Remove.
2138 (octave-indent-calculate): Rename from calculate-octave-indent.
2139 (octave-indent-line, octave-fill-paragraph): Update caller.
2140 (octave-initialize-completions): No need to make an alist.
2141 (octave-completion-at-point-function): New function.
2142 (octave-complete-symbol): Use it.
2143 (octave-insert-defun): Use define-skeleton.
2144
2145 * progmodes/octave-mod.el (octave-mode): Set comment-add.
2146 (octave-mode-map): Use comment-dwim (bug#6829).
2147
2148 2010-08-12 Antoine Levitt <antoine.levitt@gmail.com> (tiny change)
2149
2150 * cus-edit.el (custom-save-variables, custom-save-faces): Fix up
2151 indentation of inserted comment.
2152
2153 2010-08-11 Jan Djärv <jan.h.d@swipnet.se>
2154
2155 * faces.el (region): Add type gtk that uses gtk colors.
2156
2157 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
2158 Handle theme-name change.
2159
2160 2010-08-10 Michael R. Mauger <mmaug@yahoo.com>
2161
2162 * progmodes/sql.el: Version 2.5
2163 (sql-product-alist): Add :prompt-cont-regexp property for several
2164 database products.
2165 (sql-prompt-cont-regexp): New variable.
2166 (sql-output-newline-count, sql-output-by-send):
2167 New variables. Record number of newlines in input text.
2168 (sql-send-string): Handle multiple filters and count newlines.
2169 (sql-send-magic-terminator): Count terminator newline.
2170 (sql-interactive-remove-continuation-prompt): Filters output to
2171 remove continuation prompts; one for each newline.
2172 (sql-interactive-mode): Set up new variables, prompt regexp and
2173 output filter.
2174 (sql-mode-sqlite-font-lock-keywords): Correct some keywords.
2175 (sql-make-alternate-buffer-name): Correct buffer name in edge cases.
2176
2177 2010-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
2178
2179 * emacs-lisp/pcase.el: New file.
2180
2181 2010-08-10 Michael Albinus <michael.albinus@gmx.de>
2182
2183 * net/tramp.el (tramp-vc-registered-read-file-names): Read input
2184 as here-document, otherwise the command could exceed maximum
2185 length of command line.
2186 (tramp-handle-vc-registered): Call script accordingly.
2187 Reported by Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>.
2188
2189 2010-08-10 Kenichi Handa <handa@m17n.org>
2190
2191 * language/hebrew.el: Exclude U+05C3 (Hebrew SOF PASUQ) from the
2192 composable pattern.
2193
2194 2010-08-09 Chong Yidong <cyd@stupidchicken.com>
2195
2196 * emacs-lisp/package.el (package-version-split)
2197 (package--version-first-nonzero, package-version-compare):
2198 Functions removed.
2199 (package-directory-list, package-load-all-descriptors)
2200 (package--built-in, package-activate, define-package)
2201 (package-installed-p, package-compute-transaction)
2202 (package-read-all-archive-contents)
2203 (package--add-to-archive-contents, package-buffer-info)
2204 (package-tar-file-info, package-list-packages-internal):
2205 Use version-to-list and version-list-*.
2206
2207 * emacs-lisp/package-x.el (package-upload-buffer-internal):
2208 Use version-to-list.
2209 (package-upload-buffer-internal): Use version-list-<=.
2210
2211 2010-08-09 Kenichi Handa <handa@m17n.org>
2212
2213 * language/hebrew.el: Exclude U+05BD (Hebrew MAQAF) from the
2214 composable pattern.
2215
2216 2010-08-08 Chong Yidong <cyd@stupidchicken.com>
2217
2218 * tutorial.el (tutorial--default-keys): C-d is now bound to
2219 delete-forward-char (Bug#6826).
2220
2221 * mouse.el (mouse-drag-track): Remove accidentally-removed check
2222 for `double' value of mouse-1-click-follows-link (Bug#6807).
2223
2224 2010-08-08 Johan Bockgård <bojohan@gnu.org>
2225
2226 * replace.el (replace-highlight): Bind isearch-forward and
2227 isearch-error, ensuring that highlighting is updated if the user
2228 switches the search direction (Bug#6808).
2229
2230 * isearch.el (isearch-lazy-highlight-forward): New var.
2231 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
2232 (isearch-lazy-highlight-update): Use it.
2233
2234 2010-08-08 Kenichi Handa <handa@m17n.org>
2235
2236 * international/mule.el (define-charset): Store NAME as :base property.
2237 (ctext-non-standard-encodings-table): Pay attention to charset aliases.
2238 (ctext-pre-write-conversion): Sort ctext-standard-encodings by the
2239 current priority. Force using the designation of the specific
2240 charset by adding `charset' text property. Improve the whole algorithm.
2241
2242 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
2243
2244 * emulation/pc-select.el (pc-selection-mode-hook)
2245 (copy-region-as-kill-nomark, beginning-of-buffer-mark)
2246 (pc-selection-mode): Fix typos in docstrings.
2247
2248 2010-08-08 Kenichi Handa <handa@m17n.org>
2249
2250 * language/cyrillic.el: Don't add "microsoft-cp1251" to
2251 ctext-non-standard-encodings-alist here.
2252
2253 * international/mule.el (ctext-non-standard-encodings-alist):
2254 Add "koi8-r" and "microsoft-cp1251".
2255 (ctext-standard-encodings): New variable.
2256 (ctext-non-standard-encodings-table): List only elements for
2257 non-standard encodings.
2258 (ctext-pre-write-conversion): Adjust for the above change.
2259 Check ctext-standard-encodings.
2260
2261 * international/mule-conf.el (compound-text): Doc fix.
2262 (ctext-no-compositions): Doc fix.
2263 (compound-text-with-extensions): Doc fix.
2264
2265 2010-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
2266
2267 * simple.el (exchange-dot-and-mark): Mark obsolete, finally.
2268
2269 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
2270
2271 * progmodes/which-func.el (which-func-format): Split help-echo text
2272 into lines, like other mode-line tooltips.
2273
2274 * server.el (server-start): When using TCP sockets, force IPv4
2275 and use a literal 127.0.0.1 for localhost. (Related to bug#6781.)
2276
2277 2010-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
2278
2279 * bindings.el (complete-symbol): Run completion-at-point as a fallback.
2280
2281 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
2282
2283 * term.el (term-delimiter-argument-list): Reflow docstring.
2284 (term-read-input-ring, term-write-input-ring, term-send-input)
2285 (term-bol, term-erase-in-display, serial-supported-or-barf):
2286 Fix typos in docstrings.
2287
2288 2010-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
2289
2290 * bindings.el (function-key-map): Add a S-tab => backtab fallback.
2291
2292 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
2293
2294 * dabbrev.el (dabbrev-completion): Fix typo in docstring.
2295
2296 2010-08-08 MON KEY <monkey@sandpframing.com> (tiny change)
2297
2298 * emacs-lisp/syntax.el (syntax-ppss-toplevel-pos):
2299 Fix typo in docstring (bug#6747).
2300
2301 2010-08-08 Leo <sdl.web@gmail.com>
2302
2303 * eshell/esh-io.el (eshell-get-target): Better detection of
2304 read-only file (Bug#6762).
2305
2306 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
2307
2308 * align.el (align-default-spacing): Doc fix.
2309 (align-region-heuristic, align-regexp): Fix typos in docstrings.
2310
2311 2010-08-08 Stephen Peters <speters@itasoftware.com>
2312
2313 * calendar/icalendar.el
2314 (icalendar--split-value): Fix splitting regexp. (Bug#6766)
2315 (icalendar--get-weekday-numbers): New.
2316 (icalendar--convert-recurring-to-diary): Handle multiple byday
2317 values in weekly rules. (Bug#6766)
2318
2319 2010-08-08 Ulf Jasper <ulf.jasper@web.de>
2320
2321 * calendar/icalendar.el (icalendar-uid-format): Doc fix.
2322 (icalendar--create-uid, icalendar-export-region)
2323 (icalendar--parse-summary-and-rest): Code formatting.
2324
2325 2010-08-08 Jay Belanger <jay.p.belanger@gmail.com>
2326
2327 * calc/calc.el (calc-trail-mode,calc-refresh): Use `face' property
2328 to italicize headers.
2329 (calc-highlight-selections-with-faces): New variable.
2330 (calc-selected-face, calc-nonselected-face): New faces.
2331
2332 * calc/calccomp.el (math-comp-highlight-string): Use
2333 `calc-highlight-selections-with-faces' to determine how to highlight
2334 sub-formulas.
2335
2336 * calc/calc-sel.el (calc-show-selections): Change message to when
2337 using faces to highlight selections.
2338
2339 2010-08-07 Michael R. Mauger <mmaug@yahoo.com>
2340
2341 * progmodes/sql.el (sql-mode-sqlite-font-lock-keywords):
2342 Add SQLite 3 keywords, functions and datatypes.
2343 (sql-interactive-mode): Remove `comint-process-echoes' set to t
2344 (Bug#6686).
2345
2346 2010-08-07 Chong Yidong <cyd@stupidchicken.com>
2347
2348 * simple.el (select-active-regions): Move to keyboard.c.
2349 (deactivate-mark): Used saved-region-selection.
2350 (select-active-region): Function removed.
2351 (activate-mark, set-mark, push-mark-command)
2352 (handle-shift-selection): Don't call it.
2353 (keyboard-quit): Avoid adding the region to the window selection.
2354
2355 * mouse.el (mouse-drag-track): Remove hacks to deal with old
2356 select-active-regions implementation.
2357 (mouse-yank-at-click): Doc fix.
2358
2359 * cus-start.el: Add custom declaration for select-active-regions.
2360
2361 2010-08-07 Eli Zaretskii <eliz@gnu.org>
2362
2363 * simple.el (delete-forward-char): Doc fix.
2364
2365 * tutorial.el (help-with-tutorial): Hack safe file-local variables
2366 after reading the tutorial.
2367
2368 2010-08-06 Alan Mackenzie <bug-cc-mode@gnu.org>
2369
2370 * progmodes/cc-cmds.el (c-mask-paragraph, c-fill-paragraph): Fix
2371 for the case that a C style comment has its delimiters alone on
2372 their respective lines.
2373
2374 2010-08-06 Michael Albinus <michael.albinus@gmx.de>
2375
2376 * net/tramp.el (tramp-handle-start-file-process): Set connection
2377 property "vec".
2378 (tramp-process-sentinel): Use it for flushing the cache. We
2379 cannot do it via the process buffer, the buffer could be deleted
2380 already when running the sentinel.
2381
2382 2010-08-06 Jürgen Hötzel <juergen@archlinux.org> (tiny change)
2383
2384 * comint.el (comint-mode): Make directory tracking functions
2385 functional on remote files. (Bug#6764)
2386
2387 2010-08-06 Dan Nicolaescu <dann@ics.uci.edu>
2388
2389 * vc/diff-mode.el (diff-mode-shared-map): Bind g to revert-buffer.
2390
2391 2010-08-05 Eli Zaretskii <eliz@gnu.org>
2392
2393 * emacs-lisp/find-gc.el (find-gc-source-files): Rename
2394 unexec.c => unexcoff.c.
2395
2396 * emacs-lisp/authors.el (authors-fixed-entries): Rename
2397 unexec.c => unexcoff.c.
2398
2399 2010-08-05 Michael Albinus <michael.albinus@gmx.de>
2400
2401 * net/tramp.el (tramp-handle-dired-uncache): Flush directory
2402 cache, not only file cache.
2403 (tramp-process-sentinel): New defun.
2404 (tramp-handle-start-file-process): Use it, in order to invalidate
2405 file caches.
2406
2407 2010-08-03 Leo <sdl.web@gmail.com>
2408
2409 * server.el (server-start): Simplify loop.
2410
2411 2010-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
2412
2413 * frame.el (screen-height, screen-width, set-screen-width)
2414 (set-screen-height): Remove ancient compatibility aliases.
2415
2416 * textmodes/fill.el (justify-current-line): Don't add 1 to nspaces
2417 when justifying. It seems useless and harmful for ncols=1 (bug#6738).
2418
2419 * emacs-lisp/timer.el (timer-event-handler): Protect against timers
2420 that change current buffer.
2421
2422 2010-08-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2423
2424 * mouse.el (mouse-fixup-help-message): Match "mouse-2" only at the
2425 beginning of the string. Use `string-match-p'. (Bug#6765)
2426
2427 2010-08-01 Jan Djärv <jan.h.d@swipnet.se>
2428
2429 * cus-start.el (x-gtk-use-system-tooltips): New variable.
2430
2431 2010-08-01 Chong Yidong <cyd@stupidchicken.com>
2432
2433 * emacs-lisp/package.el (package--list-packages): Fix column alignment.
2434 (package--builtins): Tweak descriptions.
2435 (package-print-package): Upcase descriptions if necessary.
2436 Show all built-in packages in font-lock-builtin-face.
2437 (package-list-packages-internal): Omit "emacs" package.
2438 Show status of built-in packages as "built-in".
2439
2440 2010-07-31 Chong Yidong <cyd@stupidchicken.com>
2441
2442 * mouse.el (mouse-save-then-kill): Doc fix. Deactivate mark
2443 before killing to preserve the primary selection (Bug#6701).
2444
2445 * term/x-win.el (x-select-text): Doc fix.
2446
2447 2010-07-31 Nathaniel Flath <flat0103@gmail.com>
2448
2449 Enhance Java Mode to handle Java 5.0 (Tiger) and Java 6 (Mustang).
2450 The following functions were modified or created:
2451
2452 * progmodes/cc-vars.el (c-offsets-alist, c-inside-block-syms)
2453 (objc-font-lock-extra-types):
2454 * progmodes/cc-mode.el (c-basic-common-init):
2455 * progmodes/cc-langs.el (c-make-mode-syntax-table)
2456 (c++-make-template-syntax-table)
2457 (c-identifier-syntax-modifications, c-symbol-start, c-operators)
2458 (c-<-op-cont-regexp, c->-op-cont-regexp, c-class-decl-kwds)
2459 (c-brace-list-decl-kwds, c-modifier-kwds, c-prefix-spec-kwds-re)
2460 (c-type-list-kwds, c-decl-prefix-re, c-opt-type-suffix-key):
2461 * progmodes/cc-fonts.el (c-make-inverse-face)
2462 (c-basic-matchers-after):
2463 * progmodes/cc-engine.el (c-forward-keyword-clause)
2464 (c-forward-<>-arglist, c-forward-<>-arglist-recur)
2465 (c-forward-name, c-forward-type, c-forward-decl-or-cast-1)
2466 (c-guess-continued-construct, c-guess-basic-syntax):
2467
2468 2010-07-31 Jan Djärv <jan.h.d@swipnet.se>
2469
2470 * faces.el (face-all-attributes): Improve documentation (Bug#6767).
2471
2472 2010-07-31 Eli Zaretskii <eliz@gnu.org>
2473
2474 * files.el (bidi-paragraph-direction): Define safe local values.
2475
2476 * language/hebrew.el ("Hebrew"): Add TUTORIAL.he to
2477 language-info-alist. Remove outdated FIXME in a comment.
2478
2479 2010-07-31 Alan Mackenzie <acm@muc.de>
2480
2481 * progmodes/cc-cmds.el (c-mask-paragraph): Fix bug #6688:
2482 Auto-fill broken in C/C++ modes.
2483
2484 2010-07-29 Jan Djärv <jan.h.d@swipnet.se>
2485
2486 * menu-bar.el (menu-bar-showhide-tool-bar-menu-customize-enable-left)
2487 (menu-bar-showhide-tool-bar-menu-customize-disable)
2488 (menu-bar-showhide-tool-bar-menu-customize-enable-right)
2489 (menu-bar-showhide-tool-bar-menu-customize-enable-bottom)
2490 (menu-bar-showhide-tool-bar-menu-customize-enable-top): New functions
2491 (menu-bar-showhide-tool-bar-menu): If tool bar is moveable,
2492 make a menu for Options => toolbar that can move it.
2493
2494 2010-07-29 Chong Yidong <cyd@stupidchicken.com>
2495
2496 * emacs-lisp/package-x.el (package--make-rss-entry):
2497 (package-maint-add-news-item, package--update-news)
2498 (package-upload-buffer-internal): New arg ARCHIVE-URL.
2499
2500 * emacs-lisp/package.el (package-archive-url): Rename from
2501 package-archive-id.
2502 (package-install): Doc fix.
2503 (package-download-single, package-download-tar, package-install)
2504 (package-menu-view-commentary): Callers changed.
2505
2506 2010-07-29 Michael Albinus <michael.albinus@gmx.de>
2507
2508 * net/tramp.el (tramp-handle-start-file-process): Check only for
2509 `remote-tty' process property.
2510 (tramp-open-shell): Don't check for tty.
2511 (tramp-open-connection-setup-interactive-shell): Set `remote-tty'
2512 process property.
2513
2514 * progmodes/gdb-mi.el (gdb-init-1): Check also for tty on a remote
2515 host.
2516
2517 2010-07-28 Chong Yidong <cyd@stupidchicken.com>
2518
2519 * emacs-lisp/package.el (package-load-list, package-archives)
2520 (package-archive-contents, package-user-dir)
2521 (package-directory-list, package--builtins, package-alist)
2522 (package-activated-list, package-obsolete-alist): Mark as risky.
2523
2524 2010-07-28 Phil Hagelberg <phil@evri.com>
2525
2526 Add support for non-default package repositories.
2527 * emacs-lisp/package.el (package-archive-base): Var deleted.
2528 (package-archives): New variable.
2529 (package-archive-contents): Doc fix.
2530 (package-load-descriptor): Do nothing if descriptor file is missing.
2531 (package--write-file-no-coding): New function.
2532 (package-unpack-single): Use it.
2533 (package-archive-id): New function.
2534 (package-download-single, package-download-tar)
2535 (package-menu-view-commentary): Use it.
2536 (package-installed-p): Make second argument optional.
2537 (package-read-all-archive-contents): New function.
2538 (package-initialize): Use it.
2539 (package-read-archive-contents): Add ARCHIVE argument.
2540 (package--add-to-archive-contents): New function.
2541 (package-install): Don't call package-read-archive-contents.
2542 (package--download-one-archive): Store archive file in a
2543 subdirectory of package-user-dir.
2544 (package-menu-execute): Remove spurious line movement.
2545
2546 2010-07-28 Jan Djärv <jan.h.d@swipnet.se>
2547
2548 * cus-start.el (tool-bar-style): Add text-image-horiz.
2549
2550 2010-07-28 Michael Albinus <michael.albinus@gmx.de>
2551
2552 * progmodes/gud.el (gud-common-init): Check for remoteness of
2553 `file', and not of `default-directory'.
2554
2555 2010-07-28 Michael Albinus <michael.albinus@gmx.de>
2556
2557 * net/tramp.el (tramp-methods): Move hostname to the end in all
2558 ssh `tramp-login-args'.
2559 (tramp-verbose): Describe verbose level 9.
2560 (tramp-open-shell): Check for tty if `tramp-verbose' >= 9.
2561 (tramp-open-connection-setup-interactive-shell): Trace stty
2562 settings if `tramp-verbose' >= 9.
2563 (tramp-handle-start-file-process): Implement tty setting.
2564 (Bug#4604, Bug#6360)
2565
2566 * net/tramp-cmds.el (tramp-bug): Recommend setting of
2567 `tramp-verbose' to 9.
2568
2569 2010-07-27 Aaron S. Hawley <ashawley@burlingtontelecom.net>
2570
2571 * emacs-lisp/re-builder.el (reb-re-syntax, reb-lisp-mode)
2572 (reb-lisp-syntax-p, reb-change-syntax, reb-cook-regexp):
2573 Remove references to package `lisp-re' (bug#4369).
2574
2575 2010-07-27 Tom Tromey <tromey@redhat.com>
2576
2577 * progmodes/js.el (js-mode):
2578 * progmodes/make-mode.el (makefile-mode):
2579 * progmodes/simula.el (simula-mode):
2580 * progmodes/tcl.el (tcl-mode): Derive from prog-mode.
2581
2582 2010-07-27 Juanma Barranquero <lekktu@gmail.com>
2583
2584 * help-fns.el (find-lisp-object-file-name): Doc fix (bug#6494).
2585
2586 * time.el (display-time-day-and-date): Remove spurious * in docstring.
2587 (display-time-world-buffer-name, display-time-world-mode-map):
2588 Fix typos in docstrings.
2589
2590 2010-07-27 Shyam Karanatt <shyam@swathanthran.in> (tiny change)
2591
2592 * image-mode.el (image-display-size): New function.
2593 (image-forward-hscroll, image-next-line, image-eol, image-eob)
2594 (image-mode-fit-frame): Use it (Bug#6639).
2595
2596 2010-07-27 Chong Yidong <cyd@stupidchicken.com>
2597
2598 * dired.el (dired-buffers-for-dir): Handle list values of
2599 dired-directory (Bug#6636).
2600
2601 2010-07-26 Sam Steingold <sds@gnu.org>
2602
2603 * mouse.el (mouse-yank-primary, mouse-yank-secondary):
2604 Do not call `x-get-selection' the second time, reuse the value.
2605
2606 2010-07-26 Daiki Ueno <ueno@unixuser.org>
2607
2608 * epa-mail.el (epa-mail-mode-map): Add alternative key bindings
2609 which consist of control chars only. Suggested by Richard Stallman.
2610
2611 2010-07-25 Daiki Ueno <ueno@unixuser.org>
2612
2613 * epa-file.el (epa-file-insert-file-contents): Check if LOCAL-FILE
2614 exists before passing an error to find-file-not-found-functions
2615 (bug#6723).
2616
2617 2010-07-23 Lukas Huonker <l.huonker@gmail.com>
2618
2619 * play/tetris.el (tetris-tty-colors, tetris-x-colors, tetris-blank):
2620 Remove leading nil element, adjust values.
2621 (tetris-shapes, tetris-shape-scores):
2622 Change representation of shapes and remove some redundancy.
2623 (tetris-get-shape-cell, tetris-shape-width, tetris-draw-next-shape)
2624 (tetris-draw-shape, tetris-erase-shape, tetris-test-shape):
2625 Adjust for working with new representation of shapes.
2626 (tetris-shape-rotations): New function.
2627 (tetris-move-bottom, tetris-move-left, tetris-move-right)
2628 (tetris-rotate-prev, tetris-rotate-next):
2629 Adjust for working with the new version of tetris-test-shape.
2630
2631 2010-07-23 Markus Triska <markus.triska@gmx.at>
2632
2633 * progmodes/ps-mode.el: Use comint (bug#5954).
2634 (ps-run-mode-map): Adapt for comint-mode; omit "\r", [return]..
2635 (ps-mode-other-newline): Simplify.
2636 (ps-run-mode): Derive from comint-mode instead of
2637 fundamental-mode, yielding input history etc.
2638 (ps-run-start, ps-run-quit, ps-run-clear, ps-run-region)
2639 (ps-run-send-string): Adapt for comint-mode.
2640 (ps-run-newline): Remove now unneeded function.
2641
2642 2010-07-23 Michael Albinus <michael.albinus@gmx.de>
2643
2644 * net/tramp.el (tramp-methods): Move hostname to the end in all
2645 plink `tramp-login-args'.
2646
2647 2010-07-23 Michael Albinus <michael.albinus@gmx.de>
2648
2649 * net/tramp.el (tramp-open-shell): New defun.
2650 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
2651 Use it.
2652
2653 2010-07-23 Michael Albinus <michael.albinus@gmx.de>
2654
2655 * net/tramp.el (tramp-file-name-regexp-unified)
2656 (tramp-completion-file-name-regexp-unified): On W32 systems, do
2657 not regard the volume letter as remote filename. (Bug#5447)
2658
2659 2010-07-23 Juanma Barranquero <lekktu@gmail.com>
2660
2661 * custom.el (custom-declare-variable): Give a clearer error message
2662 when the docstring is missing (bug#6476).
2663
2664 2010-07-22 Michael R. Mauger <mmaug@yahoo.com>
2665
2666 * progmodes/sql.el: Version 2.4. Improved Login prompting.
2667 (sql-login-params): New widget definition.
2668 (sql-oracle-login-params, sql-mysql-login-params)
2669 (sql-solid-login-params, sql-sybase-login-params)
2670 (sql-informix-login-params, sql-ingres-login-params)
2671 (sql-ms-login-params, sql-postgres-login-params)
2672 (sql-interbase-login-params, sql-db2-login-params)
2673 (sql-linter-login-params): Use it.
2674 (sql-sqlite-login-params): Use it; Define "database" parameter as
2675 a file name.
2676 (sql-sqlite-program): Change to "sqlite3".
2677 (sql-comint-sqlite): Make sure database name is complete.
2678 (sql-for-each-login): New function.
2679 (sql-connect, sql-save-connection): Use it.
2680 (sql-get-login-ext): New function.
2681 (sql-get-login): Use it.
2682 (sql-make-alternate-buffer-name): Handle :file parameters.
2683
2684 2010-07-22 Juanma Barranquero <lekktu@gmail.com>
2685
2686 * dired.el (dired-no-confirm): Document value t and fix defcustom to
2687 accept it (bug#6597). Suggested by Drew Adams <drew.adams@oracle.com>.
2688
2689 2010-07-22 Teemu Likonen <tlikonen@iki.fi> (tiny change)
2690
2691 * dired.el (dired-mode-map): Use command remapping (bug#6632).
2692
2693 2010-07-22 Lawrence Mitchell <wence@gmx.li>
2694
2695 * term/vt100.el (vt100-wide-mode): Fix :init-value keyword (bug#6620).
2696
2697 2010-07-21 Michael Albinus <michael.albinus@gmx.de>
2698
2699 * net/tramp.el (tramp-get-ls-command)
2700 (tramp-get-ls-command-with-dired): Run tests on "/dev/null"
2701 instead of "/".
2702
2703 2010-07-20 Michael R. Mauger <mmaug@yahoo.com>
2704
2705 * progmodes/sql.el: Version 2.3.
2706 (sql-connection-alist): Changed keys from symbols to strings;
2707 enhanced the widget definition.
2708 (sql-mode-menu): Added submenu to select connections.
2709 (sql-interactive-mode-menu): Added "Save Connection" item.
2710 (sql-add-product): Fixed menu item.
2711 (sql-get-product-feature): Improved error handling.
2712 (sql--alt-buffer-part, sql--alt-if-not-empty): Removed.
2713 (sql-make-alternate-buffer-name): Simplified.
2714 (sql-product-interactive): Handle missing product.
2715 (sql-connect): Support string keys, minor improvements.
2716 (sql-save-connection): New function.
2717 (sql-connection-menu-filter): New function.
2718
2719 2010-07-20 Michael Albinus <michael.albinus@gmx.de>
2720
2721 * net/tramp.el (tramp-file-name-handler): Trace 'quit.
2722 (tramp-open-connection-setup-interactive-shell): Apply
2723 workaround for IRIX64 bug. Move argument of last
2724 `tramp-send-command' where it belongs to.
2725
2726 2010-07-20 Michael Albinus <michael.albinus@gmx.de>
2727
2728 * net/tramp.el (tramp-perl-file-attributes)
2729 (tramp-perl-directory-files-and-attributes): Don't pass "$3".
2730 (tramp-maybe-open-connection): Use `async-args' and `gw-args' in
2731 front of `login-args'.
2732
2733 2010-07-19 Juanma Barranquero <lekktu@gmail.com>
2734
2735 * time.el (display-time-world-mode): Define with `define-derived-mode'.
2736 Set `show-trailing-whitespace' to nil.
2737 (display-time-world-display): Simplify.
2738
2739 2010-07-18 Alan Mackenzie <acm@muc.de>
2740
2741 Enhance `c-file-style' in file/directory local variables.
2742 * progmodes/cc-mode.el (c-count-cfss): New function.
2743 (c-before-hack-hook): Call `c-set-style' differently according to
2744 whether c-file-style was set in file or directory local
2745 variables.
2746
2747 2010-07-18 Michael R. Mauger <mmaug@yahoo.com>
2748
2749 * progmodes/sql.el: Version 2.2.
2750 (sql-product, sql-user, sql-database, sql-server, sql-port): Use
2751 defcustom :safe keyword rather than putting safe-local-variable
2752 property.
2753 (sql-password): Use defcustom :risky keyword rather than putting
2754 risky-local-variable property.
2755 (sql-oracle-login-params, sql-sqlite-login-params)
2756 (sql-solid-login-params, sql-sybase-login-params)
2757 (sql-informix-login-params, sql-ingres-login-params)
2758 (sql-ms-login-params, sql-postgres-login-params)
2759 (sql-interbase-login-params, sql-db2-login-params)
2760 (sql-linter-login-params): Add `port' option.
2761 (sql-get-product-feature): Added NO-INDIRECT parameter.
2762 (sql-comint-oracle, sql-comint-sybase)
2763 (sql-comint-informix, sql-comint-sqlite, sql-comint-mysql)
2764 (sql-comint-solid, sql-comint-ingres, sql-comint-ms)
2765 (sql-comint-postgres, sql-comint-interbase, sql-comint-db2)
2766 (sql-comint-linter): Renamed sql-connect-* functions to
2767 sql-comint-*.
2768 (sql-product-alist, sql-mode-menu): Renamed as above and
2769 :sqli-connect-func to :sqli-comint-func.
2770 (sql-connection): New variable.
2771 (sql-interactive-mode): Set it.
2772 (sql-connection-alist): New variable.
2773 (sql-connect): New function.
2774 (sql--alt-buffer-part, sql--alt-if-not-empty)
2775 (sql-make-alternate-buffer-name): Improved alternative buffer name.
2776
2777 2010-07-17 Thierry Volpiatto <thierry.volpiatto@gmail.com>
2778
2779 * image-mode.el (image-bookmark-make-record): Do not set context
2780 in an image (Bug#6650).
2781
2782 2010-07-17 Chong Yidong <cyd@stupidchicken.com>
2783
2784 * simple.el (select-active-region): New function.
2785 (push-mark-command, set-mark, activate-mark)
2786 (handle-shift-selection): Use it.
2787 (deactivate-mark): Don't check for size of region.
2788
2789 * mouse.el (mouse-drag-track): Use select-active-region.
2790
2791 2010-07-17 Michael Albinus <michael.albinus@gmx.de>
2792
2793 * net/tramp.el (tramp-get-ls-command-with-dired): Make test for
2794 "--dired" stronger.
2795
2796 2010-07-17 Chong Yidong <cyd@stupidchicken.com>
2797
2798 * term/x-win.el (x-select-enable-primary): Change default to nil.
2799 (x-select-enable-clipboard): Add :version keyword.
2800
2801 * mouse.el (mouse-drag-copy-region):
2802 * simple.el (select-active-regions): Likewise.
2803
2804 2010-07-16 Reiner Steib <Reiner.Steib@gmx.de>
2805
2806 * vc/vc.el (vc-coding-system-inherit-eol): New defvar.
2807 (vc-coding-system-for-diff): Use it to decide whether to inherit
2808 from the file the EOL format for reading the diffs of that file.
2809 (Bug#4451)
2810
2811 2010-07-16 Eli Zaretskii <eliz@gnu.org>
2812
2813 * mail/rmailmm.el (rmail-mime-save): Make the temp buffer
2814 unibyte, so compressed attachments are not compressed again.
2815
2816 2010-07-16 Michael Albinus <michael.albinus@gmx.de>
2817
2818 * net/tramp.el (tramp-handle-shell-command): Don't use hard-wired
2819 "/bin/sh" but `tramp-remote-sh' from `tramp-methods'.
2820 (tramp-find-shell): Simplify setting connection property.
2821 (tramp-get-ls-command): Make test for "--color=never" stronger.
2822
2823 2010-07-15 Simon South <ssouth@member.fsf.org>
2824
2825 * progmodes/delphi.el (delphi-previous-indent-of): Indent case
2826 blocks within record declarations (i.e. variant parts) correctly.
2827
2828 2010-07-15 Simon South <ssouth@member.fsf.org>
2829
2830 * progmodes/delphi.el (delphi-token-at): Give newlines precedence
2831 over literal tokens when parsing so newlines aren't "absorbed" by
2832 single-line comments. Corrects the indentation of case blocks
2833 that have a comment on the first line.
2834
2835 2010-07-14 Karl Fogel <kfogel@red-bean.com>
2836
2837 * bookmark.el (bookmark-load-hook): Fix doc string as suggested
2838 by Drew Adams (Bug#5504).
2839
2840 2010-07-14 Jan Djärv <jan.h.d@swipnet.se>
2841
2842 * xt-mouse.el (xterm-mouse-event-read): Fix for characters > 127
2843 now that Unicode is used (Bug#6594).
2844
2845 2010-07-14 Chong Yidong <cyd@stupidchicken.com>
2846
2847 * term/x-win.el (x-select-enable-clipboard): Default to t.
2848 (x-initialize-window-system): Don't overwrite Paste menu item.
2849
2850 * simple.el (select-active-regions): Default to t.
2851 (push-mark-command): Don't overwrite primary with empty string.
2852
2853 * mouse.el: Bind mouse-2 to mouse-yank-primary.
2854 (mouse-drag-copy-region): Default to nil.
2855
2856 * menu-bar.el (menu-bar-enable-clipboard): Don't overwrite
2857 Cut/Copy/Paste menu bar items.
2858
2859 2010-07-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
2860
2861 Allow C-w when setting a bookmark in a Gnus Article buffer (Bug#5975).
2862 Patch applied by Karl Fogel.
2863
2864 * bookmark.el (bookmark-set): Don't set `bookmark-yank-point'
2865 and `bookmark-current-buffer' if they have been already set in
2866 another buffer (e.g gnus-art).
2867
2868 2010-07-13 Karl Fogel <kfogel@red-bean.com>
2869 Thierry Volpiatto <thierry.volpiatto@gmail.com>
2870
2871 Preparation for setting bookmarks in Gnus article buffers (Bug#5975).
2872
2873 * bookmark.el (bookmark-make-record-default): Allow unneeded
2874 information to be omitted from the record.
2875
2876 Adjust declarations and calls:
2877
2878 * info.el (bookmark-make-record-default): Adjust declaration.
2879 (Info-bookmark-make-record): Adjust call.
2880
2881 * woman.el (bookmark-make-record-default): Adjust declaration.
2882 (woman-bookmark-make-record): Adjust call.
2883
2884 * man.el (bookmark-make-record-default): Adjust declaration.
2885 (Man-bookmark-make-record): Adjust call.
2886
2887 * image-mode.el (bookmark-make-record-default): Adjust declaration.
2888
2889 * doc-view.el (bookmark-make-record-default): Adjust declaration.
2890
2891 2010-07-13 Karl Fogel <kfogel@red-bean.com>
2892
2893 * bookmark.el (bookmark-show-annotation): Use `when' instead of `if'.
2894 This is also from Thierry Volpiatto's patch in bug #6444. However,
2895 because it was extraneous to the functional change in that patch,
2896 and causes a re-indendation, I am committing it separately.
2897
2898 2010-07-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
2899
2900 * bookmark.el (bookmark-show-annotation): Ensure annotations show,
2901 e.g. in Info bookmarks, by using `switch-to-buffer-other-window'.
2902 Patch applied by Karl Fogel (Bug#6444).
2903
2904 2010-07-13 Chong Yidong <cyd@stupidchicken.com>
2905
2906 * frame.el (make-frame): Fix typo in 2010-06-30 change (Bug#6625).
2907
2908 2010-07-13 Adrian Robert <Adrian.B.Robert@gmail.com>
2909
2910 * term/ns-win.el: Bind M-~ to 'ns-prev-frame (due to Matthew
2911 Dempsky; bug#5084). Remove incorrect binding for S-tab.
2912 (ns-alternatives-map): Change S-tab binding to backtab
2913 (bug#6616).
2914
2915 * simple.el (normal-erase-is-backspace-setup-frame): Set mode on
2916 under ns.
2917
2918 2010-07-12 Andreas Schwab <schwab@linux-m68k.org>
2919
2920 * language/tai-viet.el ("TaiViet"): Try to fix re-encoding bugs.
2921 (Bug#5806)
2922
2923 * language/tv-util.el (tai-viet-re): Remove format.
2924
2925 2010-07-12 Kenichi Handa <handa@m17n.org>
2926
2927 * language/hebrew.el: Remove no-byte-compile declaration.
2928 Change coding: tag to utf-8. Register hebrew-shape-gstring in
2929 composition-function-table for 3-character looking back.
2930 (hebrew-font-get-precomposed): New function.
2931 (hebrew-shape-gstring): Utilize precomposed glyphs if available.
2932
2933 2010-07-11 Chong Yidong <cyd@stupidchicken.com>
2934
2935 * mouse.el (mouse-drag-track): Handle select-active-regions
2936 (Bug#6612).
2937
2938 2010-07-11 Magnus Henoch <magnus.henoch@gmail.com>
2939
2940 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Do not pass
2941 empty argument to gvfs-copy.
2942
2943 2010-07-10 Glenn Morris <rgm@gnu.org>
2944
2945 * calendar/calendar.el (calendar-week-end-day): New function.
2946 * calendar/cal-tex.el (cal-tex-cursor-month): Remove unused vars.
2947 Respect calendar-week-start-day. (Bug#6606)
2948 (cal-tex-insert-day-names, cal-tex-insert-blank-days)
2949 (cal-tex-insert-blank-days-at-end): Respect calendar-week-start-day.
2950 (cal-tex-first-blank-p, cal-tex-last-blank-p): Simplify, and
2951 respect calendar-week-start-day.
2952
2953 2010-07-10 Chong Yidong <cyd@stupidchicken.com>
2954
2955 * simple.el (use-region-p): Doc fix (Bug#6607).
2956
2957 2010-07-10 Aleksei Gusev <aleksei.gusev@gmail.com> (tiny change)
2958
2959 * progmodes/compile.el (compilation-error-regexp-alist-alist): Add
2960 regexps for cucumber and ruby.
2961
2962 2010-07-08 Daiki Ueno <ueno@unixuser.org>
2963
2964 * epa-file.el (epa-file-error, epa-file--find-file-not-found-function)
2965 (epa-file-insert-file-contents): Hack to prevent
2966 find-file from opening empty buffer when decryption failed
2967 (bug#6568).
2968
2969 2010-07-07 Agustín Martín <agustin.martin@hispalinux.es>
2970
2971 * textmodes/ispell.el (ispell-alternate-dictionary):
2972 Use file-readable-p.
2973 Return nil if no word-list is found at default locations.
2974 (ispell-complete-word-dict): Default to nil.
2975 (ispell-command-loop): Use 'word-list' when using lookup-words.
2976 (lookup-words): Use ispell-complete-word-dict or
2977 ispell-alternate-dictionary. Check for word-list availability
2978 and handle errors if needed with better messages (Bug#6539).
2979 (ispell-complete-word): Use ispell-complete-word-dict or
2980 ispell-alternate-dictionary.
2981
2982 2010-07-07 Christoph Scholtes <cschol2112@gmail.com>
2983
2984 * progmodes/python.el (python-font-lock-keywords): Add Python 2.7
2985 builtins (BufferError, BytesWarning, WindowsError; callables
2986 bin, bytearray, bytes, format, memoryview, next, print; __package__).
2987
2988 2010-07-07 Glenn Morris <rgm@gnu.org>
2989
2990 * play/zone.el (top-level): Do not require timer, tabify, or cl.
2991 (zone-shift-left): Ignore intangibility, and any errors from
2992 forward-char.
2993 (zone-shift-right): Remove no-op end-of-line. Ignore intangibility.
2994 (zone-pgm-putz-with-case): Use upcase-region rather than inserting,
2995 deleting, and copying text properties.
2996 (zone-line-specs, zone-pgm-stress): Check forward-line exit status.
2997 (zone-pgm-rotate): Handle odd buffers like that of gomoku, where getting
2998 to point-max is hard.
2999 (zone-fret, zone-fill-out-screen): Replace cl's do with dotimes.
3000 (zone-fill-out-screen): Ignore intangibility.
3001
3002 2010-07-05 Chong Yidong <cyd@stupidchicken.com>
3003
3004 * menu-bar.el (menu-bar-mode):
3005 * tool-bar.el (tool-bar-mode): Replace default-frame-alist element
3006 if it has been set.
3007
3008 * mouse.el (mouse-drag-track): Call mouse-start-end to handle
3009 word/line selection (Bug#6565).
3010
3011 2010-07-04 Juanma Barranquero <lekktu@gmail.com>
3012
3013 * net/dbus.el (dbus-send-signal): Declare function.
3014
3015 2010-07-04 Michael Albinus <michael.albinus@gmx.de>
3016
3017 * net/dbus.el: Implement signal "PropertiesChanged" (from D-Bus 1.3.1).
3018 (dbus-register-property): New optional argument EMITS-SIGNAL.
3019 (dbus-property-handler): Send signal "PropertiesChanged" if requested.
3020
3021 2010-07-03 Chong Yidong <cyd@stupidchicken.com>
3022
3023 * mouse.el (mouse-drag-overlay): Variable deleted.
3024 (mouse-move-drag-overlay, mouse-show-mark): Functions deleted.
3025 (mouse--remap-link-click-p): New function.
3026 (mouse-drag-track): Handle dragging by using temporary Transient
3027 Mark mode, instead of a special overlay.
3028 (mouse-kill-ring-save, mouse-save-then-kill): Don't call
3029 mouse-show-mark.
3030
3031 * mouse-sel.el (mouse-sel-selection-alist): mouse-drag-overlay
3032 deleted.
3033
3034 2010-07-02 Juri Linkov <juri@jurta.org>
3035
3036 * autoinsert.el (auto-insert-alist): Fix readability
3037 by using dotted pair notation for lambda.
3038
3039 2010-07-02 Juri Linkov <juri@jurta.org>
3040
3041 * faces.el (read-face-name): Rename arg `string-describing-default'
3042 to `default'. Doc fix. Display the default value in quotes
3043 in the prompt. With empty input, return the `default' arg,
3044 unless the default value is a string (in which case return nil).
3045 (describe-face): Replace the string `default' arg of `read-face-name'
3046 with the symbol `default'.
3047
3048 2010-07-02 Chong Yidong <cyd@stupidchicken.com>
3049
3050 * emulation/viper-cmd.el (viper-delete-backward-char)
3051 (viper-del-backward-char-in-insert)
3052 (viper-del-backward-char-in-replace, viper-change)
3053 (viper-backward-indent): Replace delete-backward-char with
3054 delete-char (Bug#6552).
3055
3056 2010-07-01 Chong Yidong <cyd@stupidchicken.com>
3057
3058 * ruler-mode.el (ruler--save-header-line-format): Fix typos.
3059
3060 2010-06-30 Chong Yidong <cyd@stupidchicken.com>
3061
3062 * frame.el (make-frame): Add default-frame-alist to the PARAMETERS
3063 argument passed to frame-creation-function (Bug#5378).
3064
3065 * faces.el (x-handle-named-frame-geometry)
3066 (x-handle-reverse-video, x-create-frame-with-faces)
3067 (face-set-after-frame-default, tty-create-frame-with-faces): Don't
3068 separately consult default-frame-alist. It is now passed as the
3069 PARAMETER argument.
3070
3071 2010-06-30 Andreas Schwab <schwab@linux-m68k.org>
3072
3073 * startup.el (command-line): Don't call tool-bar-setup in a
3074 tty-only build.
3075
3076 2010-06-30 Chong Yidong <cyd@stupidchicken.com>
3077
3078 * ruler-mode.el (ruler--save-header-line-format): New fun.
3079 (ruler-mode): Use it as a setter function, so as not to overwrite
3080 ruler-mode-header-line-format-old if Ruler mode is on (Bug#5370).
3081
3082 2010-06-29 Chong Yidong <cyd@stupidchicken.com>
3083
3084 * vc/vc.el (vc-deduce-backend): New fun. Handle diff buffers.
3085 (vc-root-diff, vc-print-root-log, vc-log-incoming)
3086 (vc-log-outgoing): Use it.
3087 (vc-diff-internal): Set diff-vc-backend.
3088
3089 * vc/diff-mode.el (diff-vc-backend): New var.
3090
3091 2010-06-28 Jan Djärv <jan.h.d@swipnet.se>
3092
3093 * dynamic-setting.el (font-setting-change-default-font): Remove
3094 call to message.
3095
3096 2010-06-28 Kenichi Handa <handa@m17n.org>
3097
3098 * international/quail.el (quail-insert-kbd-layout): Fix the
3099 showing of untranslated characters.
3100
3101 2010-06-28 Chong Yidong <cyd@stupidchicken.com>
3102
3103 * simple.el (delete-active-region): New option.
3104 (delete-backward-char): Implement in Lisp.
3105 (delete-forward-char): New command.
3106
3107 * mouse.el (mouse-region-delete-keys): Deleted.
3108 (mouse-show-mark): Simplify.
3109
3110 * bindings.el (global-map): Bind delete and DEL, the former to
3111 delete-forward-char.
3112
3113 2010-06-27 Lennart Borgman <lennart.borgman@gmail.com>
3114
3115 * progmodes/ruby-mode.el (ruby-mode-map): Don't bind TAB.
3116 (ruby-mode): Bind indent-line-function (Bug#5119).
3117
3118 2010-06-27 Chong Yidong <cyd@stupidchicken.com>
3119
3120 * startup.el (command-line): Recognize "0" X resource value.
3121
3122 2010-06-27 Chong Yidong <cyd@stupidchicken.com>
3123
3124 * startup.el (command-line): Use X resources to set the value of
3125 menu-bar-mode and tool-bar-mode, before calling frame-initialize.
3126
3127 * menu-bar.el (menu-bar-mode):
3128 * tool-bar.el (tool-bar-mode): Don't change default-frame-alist.
3129 Set init-value to t.
3130
3131 * frame.el (frame-notice-user-settings): Don't change
3132 default-frame-alist based on menu-bar-mode and tool-bar-mode, or
3133 vice versa (Bug#2249).
3134
3135 2010-06-26 Eli Zaretskii <eliz@gnu.org>
3136
3137 * w32-fns.el (w32-convert-standard-filename): Doc fix.
3138
3139 2010-06-25 Agustín Martín <agustin.martin@hispalinux.es>
3140
3141 * textmodes/flyspell.el (flyspell-check-previous-highlighted-word):
3142 Make sure `flyspell-word' re-checks word after function run (Bug#6504).
3143
3144 * textmodes/ispell.el (ispell-init-process): Make sure ispell and
3145 default directories are expanded (Bug#6143).
3146
3147 2010-06-24 Juri Linkov <juri@jurta.org>
3148
3149 * minibuffer.el (completions-format): Change default from nil to
3150 `horizontal'. Remove `nil' value from :type. Doc fix. (Bug#6459)
3151
3152 2010-06-24 Juri Linkov <juri@jurta.org>
3153
3154 * vc/vc.el (vc-diff-internal): Set `revert-buffer-function'
3155 buffer-locally to lambda that re-runs the vc diff command.
3156 (Bug#6447)
3157
3158 2010-06-24 Chong Yidong <cyd@stupidchicken.com>
3159
3160 * kmacro.el (kmacro-call-macro): Don't issue hint message if the
3161 echo area is in use (Bug#3412).
3162
3163 2010-06-22 Glenn Morris <rgm@gnu.org>
3164
3165 * textmodes/texinfmt.el (texinfo-format-region)
3166 (texinfo-raise-lower-sections, texinfo-format-separate-node)
3167 (texinfo-itemize-item, texinfo-multitable-item, texinfo-alias)
3168 (texinfo-format-option, texinfo-noindent):
3169 Use line-beginning-position and line-end-position.
3170
3171 * calc/calc-aent.el, calc/calc-ext.el, calc/calc-lang.el:
3172 * calc/calc-store.el, calc/calc-units.el, calc/calc.el:
3173 * calc/calccomp.el: Add explicit utf-8 coding cookies to files with
3174 utf-8 characters.
3175
3176 2010-06-21 Karl Fogel <kfogel@red-bean.com>
3177
3178 * play/zone.el (zone-fall-through-ws): Fix next-line ->
3179 forward-line fallout.
3180
3181 2010-07-06 Chong Yidong <cyd@stupidchicken.com>
3182
3183 * mouse.el (mouse-appearance-menu): Add docstring.
3184
3185 * help.el (describe-key): Print up-event using key-description.
3186
3187 2010-07-03 Michael Albinus <michael.albinus@gmx.de>
3188
3189 * net/zeroconf.el (zeroconf-resolve-service)
3190 (zeroconf-service-resolver-handler): Use
3191 `dbus-byte-array-to-string'.
3192 (zeroconf-publish-service): Use `dbus-string-to-byte-array'.
3193
3194 2010-07-03 Jan Moringen <jan.moringen@uni-bielefeld.de>
3195
3196 * net/zeroconf.el (zeroconf-service-remove-hook): New defun.
3197
3198 2010-06-30 Dan Nicolaescu <dann@ics.uci.edu>
3199
3200 Avoid displaying files with a nil state in vc-dir.
3201 * vc/vc-dir.el (vc-dir-update): Obey the noinsert argument in all
3202 cases that cause insertion.
3203 (vc-dir-resynch-file): Tell vc-dir-update to avoid inserting files
3204 with a nil state.
3205
3206 2010-06-30 Chong Yidong <cyd@stupidchicken.com>
3207
3208 * xml.el (xml-parse-region): Avoid infloop (Bug#5281).
3209
3210 2010-06-29 Leo <sdl.web@gmail.com>
3211
3212 * emacs-lisp/rx.el (rx): Doc fix. (Bug#6537)
3213
3214 2010-06-27 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
3215
3216 * generic-x.el (bat-generic-mode): Fix regexp for command line
3217 switches (Bug#5719).
3218
3219 2010-06-27 Masatake YAMATO <yamato@redhat.com>
3220
3221 * htmlfontify.el (hfy-face-attr-for-class): Use append instead
3222 of nconc to avoid pure storage error (Bug#6239).
3223
3224 2010-06-27 Christoph <cschol2112@googlemail.com> (tiny change)
3225
3226 * bookmark.el (bookmark-bmenu-2-window, bookmark-bmenu-other-window)
3227 (bookmark-bmenu-other-window-with-mouse): Remove unnecessary
3228 bindings of bookmark-automatically-show-annotations (Bug#6515).
3229
3230 2010-06-25 Eli Zaretskii <eliz@gnu.org>
3231
3232 * arc-mode.el (archive-zip-extract): Don't quote the file name on
3233 MS-Windows and MS-DOS. (Bug#6467, Bug#6144)
3234
3235 2010-06-24 Štěpán Němec <stepnem@gmail.com> (tiny change)
3236
3237 * comint.el (make-comint, make-comint-in-buffer): Mention return
3238 value in the docstrings. (Bug#6498)
3239
3240 2010-06-24 Yoni Rabkin <yoni@rabkins.net>
3241
3242 * bs.el (bs-mode-font-lock-keywords): Remove "by" from Dired pattern,
3243 since it is not present when using some non-default switches.
3244
3245 2010-06-23 Karl Fogel <kfogel@red-bean.com>
3246
3247 * simple.el (compose-mail): Fix doc string to refer to
3248 `compose-mail-user-agent-warnings', instead of to the
3249 nonexistent `compose-mail-check-user-agent'.
3250
3251 2010-06-21 Alan Mackenzie <bug-cc-mode@gnu.org>
3252
3253 Fix an indentation bug:
3254
3255 * progmodes/cc-mode.el (c-common-init): Initialise c-new-BEG/END.
3256 (c-neutralize-syntax-in-and-mark-CPP): c-new-BEG/END: Take account
3257 of existing values.
3258
3259 * progmodes/cc-engine.el (c-clear-<-pair-props-if-match-after)
3260 (c-clear->-pair-props-if-match-before): now return t when they've
3261 cleared properties, nil otherwise.
3262 (c-before-change-check-<>-operators): Set c-new-beg/end correctly
3263 by taking account of the existing value.
3264
3265 * progmodes/cc-defs.el
3266 (c-clear-char-property-with-value-function): Fix this to clear the
3267 property rather than overwriting it with nil.
3268
3269 2010-06-20 Chong Yidong <cyd@stupidchicken.com>
3270
3271 * emacs-lisp/package.el (package-print-package): Add link to
3272 package description via describe-package.
3273 (describe-package-1): List package requirements. Add button to
3274 perform installation.
3275 (package-menu-describe-package): New command.
3276
3277 * help-mode.el (help-package): New button type.
3278
3279 2010-06-19 Chong Yidong <cyd@stupidchicken.com>
3280
3281 * emacs-lisp/package.el: Move package-list-packages binding to
3282 menu-bar.el.
3283 (describe-package, describe-package-1, package--dir): New funs.
3284 (package-activate-1): Use package--dir.
3285
3286 * emacs-lisp/package-x.el (gnus-article-buffer): Require package.
3287
3288 * help-mode.el (help-package-def): New button type.
3289
3290 * menu-bar.el: Move package-list-packages binding here from
3291 package.el.
3292
3293 2010-06-19 Gustav Hållberg <gustav@gmail.com> (tiny change)
3294
3295 * descr-text.el (describe-char): Avoid trailing whitespace. (Bug#6423)
3296
3297 2010-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
3298
3299 * emacs-lisp/edebug.el (edebug-read-list):
3300 Phase out old-style backquotes.
3301
3302 2010-06-17 Juri Linkov <juri@jurta.org>
3303
3304 * help-mode.el (help-mode): Set buffer-local variable
3305 revert-buffer-function to help-mode-revert-buffer.
3306 (help-mode-revert-buffer): New function.
3307
3308 * info.el (Info-revert-find-node): Check for major-mode Info-mode
3309 before popping to "*info*" (like in other Info functions).
3310 Keep buffer-name in old-buffer-name. Keep Info-history-forward in
3311 old-history-forward. Pop to old-buffer-name or "*info*" to
3312 recreate the killed buffer. Set Info-history-forward from
3313 old-history-forward.
3314 (Info-breadcrumbs-depth): Add :group and :version.
3315
3316 2010-06-17 Dan Nicolaescu <dann@ics.uci.edu>
3317
3318 * emacs-lisp/package.el (package-menu-mode-map): Add a menu.
3319
3320 2010-06-17 Agustín Martín <agustin.martin@hispalinux.es>
3321
3322 * textmodes/ispell.el (ispell-aspell-find-dictionary): Fix regexp
3323 for languages like Portuguese with pt_{BR,PT} and no plain pt.
3324
3325 2010-06-17 Juanma Barranquero <lekktu@gmail.com>
3326
3327 * emacs-lisp/package.el (package-menu-mode-map):
3328 Move initialization into declaration.
3329
3330 * menu-bar.el (menu-bar-options-menu): Fix typo in menu entry.
3331
3332 2010-06-17 Chong Yidong <cyd@stupidchicken.com>
3333
3334 * emacs-lisp/package.el (package-archive-base): Point to
3335 elpa.gnu.org.
3336 (package-enable, package-load-list): New defcustoms.
3337 (package-user-dir, package-directory-list): Turn into defcustoms.
3338 Don't include package-user-dir in package-directory-list.
3339 (package--builtins-base): Don't include Emacs as a "package".
3340 (package-subdirectory-regexp): New var.
3341 (package-load-all-descriptors, package-compute-transaction)
3342 (package-download-transaction): Obey package-load-list.
3343 (package-activate-1): Rename from package-do-activate.
3344 (package-list-packages-internal): Check package-load-list.
3345 (package-load-descriptor, package-generate-autoloads)
3346 (package-unpack, package-unpack-single)
3347 (package--read-archive-file, package-delete): Use
3348 expand-file-name.
3349
3350 * emacs-lisp/package-x.el: New file. Package uploading
3351 functionality split out from package.el.
3352
3353 * startup.el (command-line): Load packages after reading init
3354 file.
3355
3356 2010-06-17 Tom Tromey <tromey@redhat.com>
3357
3358 * emacs-lisp/package.el: New file.
3359
3360 2010-06-22 Dan Nicolaescu <dann@ics.uci.edu>
3361
3362 Fix vc-annotate for renamed files when using Git.
3363 * vc-git.el (vc-git-find-revision): Deal with empty results from
3364 ls-files. Doe not pass the object as a file name to cat-file, it
3365 is not a file name.
3366 (vc-git-annotate-command): Pass the file name using -- to avoid
3367 ambiguity with the revision.
3368 (vc-git-previous-revision): Pass a relative file name.
3369
3370 2010-06-22 Glenn Morris <rgm@gnu.org>
3371
3372 * progmodes/js.el (js-mode-map): Use standard capitalization and
3373 ellipses for menu entries.
3374
3375 * wid-edit.el (widget-complete): Doc fix.
3376
3377 2010-06-22 Jürgen Hötzel <juergen@hoetzel.info> (tiny change)
3378
3379 * wid-edit.el (widget-complete): Fix typo in 2009-12-02 change.
3380
3381 2010-06-22 Dan Nicolaescu <dann@ics.uci.edu>
3382
3383 Fix annotating other revisions for renamed files in vc-annotate.
3384 * vc-annotate.el (vc-annotate): Add an optional argument for the
3385 VC backend. Use it when non-nil.
3386 (vc-annotate-warp-revision): Pass the VC backend to vc-annotate.
3387 (Bug#6487)
3388
3389 Fix vc-annotate-show-changeset-diff-revision-at-line for git.
3390 * vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
3391 Do not pass the file name to the 'previous-revision call when we
3392 don't want a file diff. (Bug#6489)
3393
3394 2010-06-21 Dan Nicolaescu <dann@ics.uci.edu>
3395
3396 Fix finding revisions for renamed files in vc-annotate.
3397 * vc.el (vc-find-revision): Add an optional argument for
3398 the VC backend. Use it when non-nil.
3399 * vc-annotate.el (vc-annotate-find-revision-at-line): Pass the VC
3400 backend to vc-find-revision. (Bug#6487)
3401
3402 2010-06-21 Dan Nicolaescu <dann@ics.uci.edu>
3403
3404 Fix reading file names in Git annotate buffers.
3405 * vc-git.el (vc-git-annotate-extract-revision-at-line): Remove
3406 trailing whitespace. Suggested by Eric Hanchrow. (Bug#6481)
3407
3408 2010-06-20 Alan Mackenzie <acm@muc.de>
3409
3410 * progmodes/cc-mode.el (c-before-hack-hook): When the mode is set
3411 in file local variables, set it first.
3412
3413 2010-06-19 Glenn Morris <rgm@gnu.org>
3414
3415 * descr-text.el (describe-char-unicode-data): Insert separating
3416 space when needed. (Bug#6422)
3417
3418 * progmodes/idlwave.el (idlwave-action-and-binding):
3419 Fix typo in 2009-12-03 change. (Bug#6450)
3420
3421 2010-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
3422
3423 * emacs-lisp/macroexp.el (macroexpand-all-1): Put back special
3424 handling for `lambda' (misunderstanding).
3425
3426 2010-06-16 Jay Belanger <jay.p.belanger@gmail.com>
3427
3428 * calc/calc-poly.el (math-accum-factors): Make sure that
3429 constants aren't distributed after they are factored out.
3430
3431 2010-06-16 Juri Linkov <juri@jurta.org>
3432
3433 * facemenu.el (list-colors-display): Call `pop-to-buffer' before
3434 `list-colors-print'. (Bug#6332)
3435
3436 * subr.el (read-quoted-char): Fix up last change (bug#6290).
3437
3438 2010-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
3439
3440 * emacs-lisp/macroexp.el (macroexpand-all-1): Don't handle `lambda'
3441 specially, since it's a macro. Fix up wrong hint passed to maybe-cons.
3442
3443 * font-lock.el (font-lock-major-mode): Rename from
3444 font-lock-mode-major-mode to distinguish it from
3445 global-font-lock-mode's own font-lock-mode-major-mode (bug#6135).
3446 (font-lock-set-defaults):
3447 * font-core.el (font-lock-default-function): Adjust users.
3448 (font-lock-mode): Don't set it at all.
3449
3450 2010-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
3451
3452 * vc-annotate.el (vc-annotate): Use vc-read-revision.
3453
3454 2010-06-16 Glenn Morris <rgm@gnu.org>
3455
3456 * calendar/appt.el (appt-time-msg-list): Doc fix.
3457 (appt-check): Let-bind appt-warn-time.
3458 (appt-add): Make the 3rd argument optional.
3459 Simplify argument names. Doc fix. Check for integer WARNTIME.
3460 Only add WARNTIME to the output list if non-nil.
3461
3462 2010-06-16 Ivan Kanis <apple@kanis.eu>
3463
3464 * calendar/appt.el (appt-check): Let the 3rd element of
3465 appt-time-msg-list specify the warning time.
3466 (appt-add): Add new argument with the warning time. (Bug#5176)
3467
3468 2010-06-16 Bob Rogers <rogers-emacs@rgrjr.dyndns.org> (tiny change)
3469
3470 * vc-svn.el (vc-svn-after-dir-status): Fix regexp for Subversions
3471 older than version 1.6. (Bug#6361)
3472
3473 2010-06-16 Helmut Eller <eller.helmut@gmail.com>
3474
3475 * emacs-lisp/cl-macs.el (destructuring-bind): Bind `bind-enquote',
3476 used by cl-do-arglist. (Bug#6408)
3477
3478 2010-06-16 Agustín Martín <agustin.martin@hispalinux.es>
3479
3480 * textmodes/ispell.el (ispell-dictionary-base-alist): Fix
3481 portuguese casechars/not-casechars for missing 'çÇ'.
3482 Suggested by Rolando Pereira (bug#6434).
3483
3484 2010-06-15 Juanma Barranquero <lekktu@gmail.com>
3485
3486 * facemenu.el (list-colors-sort): Doc fix.
3487
3488 2010-06-15 Bob Rogers <rogers-emacs@rgrjr.dyndns.org> (tiny change)
3489
3490 * progmodes/sql.el (sql-connect-mysql): Fix typo.
3491
3492 2010-06-14 Juri Linkov <juri@jurta.org>
3493
3494 Add sort option `list-colors-sort'. (Bug#6332)
3495 * facemenu.el (color-rgb-to-hsv): New function.
3496 (list-colors-sort): New defcustom.
3497 (list-colors-sort-key): New function.
3498 (list-colors-display): Doc fix. Sort list according to the option
3499 `list-colors-sort'.
3500 (list-colors-print): Add HSV values to `help-echo' property of
3501 RGB strings.
3502
3503 2010-06-14 Juri Linkov <juri@jurta.org>
3504
3505 * compare-w.el: Move to the "vc" subdirectory.
3506
3507 2010-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
3508
3509 * image-mode.el (image-mode-map): Remap left-char and right-char.
3510
3511 * nxml/nxml-mode.el (nxml-indent-line): Standardize indent behavior.
3512
3513 2010-06-12 Chong Yidong <cyd@stupidchicken.com>
3514
3515 * term/common-win.el (x-colors): Add all the color names defined
3516 in rgb.txt (Bug#6332).
3517
3518 * facemenu.el (list-colors-print): Don't print extra names if it
3519 will overflow the window width.
3520
3521 * vc/log-edit.el (log-edit-font-lock-keywords): Revert 2010-06-02
3522 change (Bug#6343).
3523
3524 2010-06-12 Eli Zaretskii <eliz@gnu.org>
3525
3526 * files.el (make-directory): Doc fix (bug#6396).
3527
3528 2010-06-12 Michael Albinus <michael.albinus@gmx.de>
3529
3530 * net/tramp.el (tramp-remote-process-environment): Protect version
3531 string by apostroph.
3532 (tramp-shell-prompt-pattern): Do not use a shy group in case of
3533 XEmacs.
3534 (tramp-file-name-for-operation): Add `call-process-region'.
3535 (tramp-set-process-query-on-exit-flag): Fix wrong parentheses.
3536
3537 * net/tramp-compat.el (top): Do not autoload
3538 `tramp-handle-file-remote-p'. Load tramp-util.el and tramp-vc.el
3539 only when `start-file-process' is not bound.
3540 (tramp-advice-file-expand-wildcards): Do not use
3541 `tramp-handle-file-remote-p'.
3542 (tramp-compat-make-temp-file): Handle the case, that
3543 `make-temp-file' has no third argument EXTENSION.
3544
3545 2010-06-11 Juanma Barranquero <lekktu@gmail.com>
3546
3547 * makefile.w32-in (WINS_BASIC): Include new directory vc.
3548
3549 * loadup.el ("vc-hooks", "ediff-hook"): Load from lisp/vc/.
3550
3551 2010-06-11 Juri Linkov <juri@jurta.org>
3552
3553 * finder.el (finder-known-keywords): Add keyword "vc"
3554 for version control.
3555
3556 * add-log.el, cvs-status.el, diff.el, diff-mode.el, ediff.el,
3557 * emerge.el, log-edit.el, log-view.el, pcvs.el, smerge-mode.el,
3558 * vc-annotate.el, vc-bzr.el, vc-dir.el, vc-dispatcher.el, vc-git.el,
3559 * vc-hg.el, vc-mtn.el, vc.el: Add keyword "vc".
3560
3561 2010-06-11 Juri Linkov <juri@jurta.org>
3562
3563 Move version control related files to the "vc" subdirectory.
3564 * add-log.el, cvs-status.el, diff.el, diff-mode.el, ediff-diff.el,
3565 * ediff.el, ediff-help.el, ediff-hook.el, ediff-init.el,
3566 * ediff-merg.el, ediff-mult.el, ediff-ptch.el, ediff-util.el,
3567 * ediff-vers.el, ediff-wind.el, emerge.el, log-edit.el, log-view.el,
3568 * pcvs-defs.el, pcvs.el, pcvs-info.el, pcvs-parse.el, pcvs-util.el,
3569 * smerge-mode.el, vc-annotate.el, vc-arch.el, vc-bzr.el, vc-cvs.el,
3570 * vc-dav.el, vc-dir.el, vc-dispatcher.el, vc.el, vc-git.el,
3571 * vc-hg.el, vc-hooks.el, vc-mtn.el, vc-rcs.el, vc-sccs.el, vc-svn.el:
3572 Move files to the "vc" subdirectory.
3573
3574 2010-06-11 Chong Yidong <cyd@stupidchicken.com>
3575
3576 * comint.el (comint-password-prompt-regexp): Fix 2010-04-10 change
3577 (Bug#6367).
3578
3579 2010-06-11 Stephen Eglen <stephen@gnu.org>
3580
3581 * shell.el: Bind `shell-resync-dirs' to M-RET.
3582
3583 2010-06-10 Michael Albinus <michael.albinus@gmx.de>
3584
3585 * notifications.el: Move file from lisp/net, because it is
3586 supposed to talk locally to the user.
3587
3588 2010-06-10 Julien Danjou <julien@danjou.info>
3589
3590 * net/notifications.el (notifications-on-action-signal)
3591 (notifications-on-closed-signal): Pass notification id as first
3592 argument to the callback functions. Add docstrings.
3593 (notifications-notify): Fix docstring.
3594
3595 2010-06-10 Glenn Morris <rgm@gnu.org>
3596
3597 * emacs-lisp/authors.el (authors-ignored-files)
3598 (authors-valid-file-names): Add some files.
3599
3600 2010-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
3601
3602 * net/rcirc.el (rcirc-server-alist, rcirc, rcirc-connect): Resolve
3603 merge conflict, giving preference to the emacs-23 version of the code.
3604
3605 2010-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
3606
3607 * emacs-lisp/advice.el (ad-compile-function):
3608 Define warning-suppress-types before we let-bind it (bug#6275).
3609
3610 * vc-dispatcher.el: Rename mode-line-hook to vc-mode-line-hook;
3611 declare it, make it buffer-local and permanent-local (bug#6324).
3612 (vc-resynch-window): Adjust name.
3613 * vc-hooks.el (vc-find-file-hook): Adjust name.
3614
3615 2010-06-09 Michael Albinus <michael.albinus@gmx.de>
3616
3617 * net/notifications.el (notifications-notify): Fix docstring.
3618
3619 2010-06-09 Juanma Barranquero <lekktu@gmail.com>
3620
3621 Update to Unicode 6.0.0 beta.
3622 * international/charprop.el: Update copyright.
3623 * international/mule-cmds.el (ucs-names): Update character ranges.
3624 * international/uni-bidi.el:
3625 * international/uni-category.el:
3626 * international/uni-combining.el:
3627 * international/uni-comment.el:
3628 * international/uni-decimal.el:
3629 * international/uni-decomposition.el:
3630 * international/uni-digit.el:
3631 * international/uni-lowercase.el:
3632 * international/uni-mirrored.el:
3633 * international/uni-name.el:
3634 * international/uni-numeric.el:
3635 * international/uni-old-name.el:
3636 * international/uni-titlecase.el:
3637 * international/uni-uppercase.el: Regenerate.
3638
3639 2010-06-09 Juanma Barranquero <lekktu@gmail.com>
3640
3641 * emacs-lisp/smie.el (comment-string-strip): Declare function.
3642 (smie-precs-precedence-table): Fix typo in docstring.
3643
3644 * vc-mtn.el (log-edit-extract-headers): Declare function.
3645
3646 * vc-hg.el (log-edit-extract-headers): Remove duplicate declaration.
3647
3648 * net/notifications.el (dbus-register-signal): Declare function.
3649 (notifications-notify): Fix typos and reflow docstring.
3650
3651 2010-06-09 Dan Nicolaescu <dann@ics.uci.edu>
3652
3653 Improve VC create/retrieve tag/branch.
3654 * vc.el (vc-create-tag): Do not read the directory name for VCs
3655 with repository revision granularity. Adjust the tag/branch
3656 prompt. Reset VC properties.
3657 (vc-retrieve-tag): Do not read the directory name for VCs
3658 with repository revision granularity. Reset VC properties.
3659
3660 2010-06-09 Julien Danjou <julien@danjou.info>
3661
3662 * net/notifications.el: New file.
3663
3664 2010-06-09 Dan Nicolaescu <dann@ics.uci.edu>
3665
3666 Add optional support for resetting VC properties.
3667 * vc-dispatcher.el (vc-resynch-window): Add new optional argument,
3668 call vc-file-clearprops when true.
3669 (vc-resynch-buffer): Add new optional argument, pass it down.
3670 (vc-resynch-buffers-in-directory): Likewise.
3671
3672 Improve support for special markup in the VC commit message.
3673 * vc-mtn.el (vc-mtn-checkin): Add support for Author: and Date: markup.
3674 * vc-hg.el (vc-hg-checkin): Add support for Date:.
3675 * vc-git.el (vc-git-checkin):
3676 * vc-bzr.el (vc-bzr-checkin): Likewise.
3677
3678 2010-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
3679
3680 * emacs-lisp/smie.el (smie-indent-keyword): Remove special case that
3681 can be handled with a ((:before "fn") (:prev "=>" parent)) rule.
3682
3683 2010-06-07 Martin Pohlack <mp26@os.inf.tu-dresden.de>
3684
3685 * iimage.el: Remove images as soon as the underlying text is modified.
3686 (iimage-modification-hook): New function.
3687 (iimage-mode-buffer): Use it.
3688
3689 2010-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
3690
3691 * emacs-lisp/smie.el (smie-indent-offset-rule): Rename from
3692 smie-indent-offset-after. Add :prev case. Make a bit more generic.
3693 (smie-indent-virtual): Remove `virtual' arg. Update callers.
3694 (smie-indent-keyword): Add handling of open-paren keywords.
3695 (smie-indent-comment-continue): Don't assume comment-continue.
3696
3697 2010-06-07 Martin Rudalics <rudalics@gmx.at>
3698
3699 * window.el (pop-to-buffer): Remove the conditional that
3700 compares new-window and old-window, so it will reselect
3701 the selected window unconditionally.
3702 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00078.html
3703
3704 2010-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
3705
3706 * emacs-lisp/smie.el (smie-indent-offset-after)
3707 (smie-indent-forward-token, smie-indent-backward-token): New functions.
3708 (smie-indent-after-keyword): Use them.
3709 (smie-indent-fixindent): Only applies to the indentation of the BOL.
3710 (smie-indent-keyword): Tweak the black magic.
3711 (smie-indent-comment-continue): Strip comment-continue before use.
3712 (smie-indent-functions): Indent comments before keywords.
3713
3714 2010-06-06 Juri Linkov <juri@jurta.org>
3715
3716 * isearch.el (isearch-lazy-highlight-search): Fix looping
3717 by checking for empty match. This syncs this loop with the
3718 similar loop in `isearch-search'. (Bug#6362)
3719
3720 2010-06-05 Juanma Barranquero <lekktu@gmail.com>
3721
3722 * net/dbus.el (dbus-register-method): Declare function.
3723 (dbus-handle-event, dbus-property-handler): Fix typos in docstrings.
3724 (dbus-introspect): Doc fix.
3725 (dbus-event-bus-name, dbus-introspect-get-interface)
3726 (dbus-introspect-get-argument): Reflow docstrings.
3727
3728 2010-06-05 Dan Nicolaescu <dann@ics.uci.edu>
3729
3730 vc-log-incoming/vc-log-outgoing fixes for Git.
3731 * vc-git.el (vc-git-log-view-mode): Fix font lock for
3732 incoming/outgoing logs.
3733 (vc-git-log-outgoing, vc-git-log-incoming): Use @{upstream}
3734 instead of vc-git-compute-remote.
3735 (vc-git-compute-remote): Remove.
3736
3737 2010-06-04 Chong Yidong <cyd@stupidchicken.com>
3738
3739 * term/common-win.el (x-colors): Add "dark green" and "dark
3740 turquoise" (Bug#6332).
3741
3742 2010-06-04 Juri Linkov <juri@jurta.org>
3743
3744 * simple.el (kill-new): Fix logic of kill-do-not-save-duplicates.
3745 Instead of setting `replace' to t and replacing the same string
3746 with itself, don't do certain actions when
3747 kill-do-not-save-duplicates is non-nil and string is equal to car
3748 of kill-ring: don't call menu-bar-update-yank-menu, don't push
3749 interprogram-paste strings to kill-ring, and don't push the input
3750 argument `string' to kill-ring.
3751 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00072.html
3752
3753 2010-06-04 Juanma Barranquero <lekktu@gmail.com>
3754
3755 * subr.el (directory-sep-char): Move from fileio.c and make a defconst.
3756
3757 2010-06-04 Michael Albinus <michael.albinus@gmx.de>
3758
3759 * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name): Expand "~/".
3760 (tramp-gvfs-handler-mounted-unmounted)
3761 (tramp-gvfs-connection-mounted-p): Handle default-location.
3762
3763 * net/tramp-smb.el (tramp-smb-handle-delete-directory): Don't try to
3764 move files to trash.
3765
3766 2010-06-04 Juanma Barranquero <lekktu@gmail.com>
3767
3768 * international/mule-cmds.el (nonascii-insert-offset)
3769 (nonascii-translation-table): Add obsolescence information.
3770
3771 * international/mule.el (make-translation-table-from-vector): Doc fix.
3772
3773 2010-06-03 Glenn Morris <rgm@gnu.org>
3774
3775 * desktop.el (desktop-clear-preserve-buffers):
3776 Add "*Warnings*" buffer. (Bug#6336)
3777
3778 2010-06-03 Dan Nicolaescu <dann@ics.uci.edu>
3779
3780 vc-log-incoming/vc-log-outgoing improvements for Git.
3781 * vc-git.el (vc-git-log-outgoing): Use the same format as the
3782 short log.
3783 (vc-git-log-incoming): Likewise. Run "git fetch" before the log command.
3784
3785 Add bindings for vc-log-incoming and vc-log-outgoing.
3786 * vc-hooks.el (vc-prefix-map): Add bindings for vc-log-incoming
3787 and vc-log-outgoing.
3788 * vc-dir.el (vc-dir-menu-map): Add menu bindings for vc-log-incoming
3789 and vc-log-outgoing.
3790
3791 2010-06-03 Chong Yidong <cyd@stupidchicken.com>
3792
3793 * net/rcirc.el (rcirc-sort-nicknames): Remove.
3794 (rcirc-handler-366): Always sort nicknames.
3795
3796 2010-06-03 Juanma Barranquero <lekktu@gmail.com>
3797
3798 * emacs-lisp/smie.el (comment-continue): Declare for byte-compiler.
3799
3800 2010-06-03 Chong Yidong <cyd@stupidchicken.com>
3801
3802 * net/rcirc.el (rcirc-nickname<, rcirc-sort-nicknames-join): Doc fix.
3803
3804 2010-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
3805
3806 * net/rcirc.el (rcirc-sort-nicknames): Change default.
3807 (rcirc-sort-nicknames-join): Avoid setq.
3808
3809 2010-06-03 Deniz Dogan <deniz.a.m.dogan@gmail.com>
3810
3811 * net/rcirc.el (rcirc-sort-nicknames): New custom.
3812 (rcirc-nickname<, rcirc-sort-nicknames-join): New funs.
3813 (rcirc-handler-366): Use them.
3814
3815 2010-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
3816
3817 Split smie-indent-calculate into more manageable chunks.
3818 * emacs-lisp/smie.el (smie-indent-virtual, smie-indent-fixindent)
3819 (smie-indent-comment, smie-indent-after-keyword, smie-indent-keyword)
3820 (smie-indent-close, smie-indent-comment-continue, smie-indent-bob)
3821 (smie-indent-exps): Extract from smie-indent-calculate.
3822 (smie-indent-functions): New var.
3823 (smie-indent-functions): Use them.
3824
3825 2010-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
3826
3827 * emacs-lisp/smie.el (smie-indent-hanging-p): Use smie-bolp.
3828 (smie-indent-calculate): Simplify and cleanup.
3829
3830 2010-06-02 Michael Albinus <michael.albinus@gmx.de>
3831
3832 * net/tramp-gvfs.el (top): Require url-util.
3833 (tramp-gvfs-mount-point): Remove.
3834 (tramp-gvfs-stringify-dbus-message, tramp-gvfs-send-command):
3835 New defuns.
3836 (with-tramp-dbus-call-method): Format trace message.
3837 (tramp-gvfs-handle-copy-file, tramp-gvfs-handle-rename-file):
3838 Implement backup call, when operation on local files fails.
3839 Use progress reporter. Flush properties of changed files.
3840 (tramp-gvfs-handle-make-directory): Make more traces.
3841 (tramp-gvfs-url-file-name): Hexify file name in url.
3842 (tramp-gvfs-fuse-file-name): Take also prefix (like dav shares)
3843 into account for the resulting file name.
3844 (tramp-gvfs-handler-askquestion): Return dummy mountpoint, when
3845 the answer is "no". See `tramp-gvfs-maybe-open-connection'.
3846 (tramp-gvfs-handler-mounted-unmounted)
3847 (tramp-gvfs-connection-mounted-p): Test also for new mountspec
3848 attribute "default_location". Set "prefix" property.
3849 (tramp-gvfs-mount-spec): Return both prefix and mountspec.
3850 (tramp-gvfs-maybe-open-connection): Test, whether mountpoint
3851 exists. Raise an error, if not (due to a corresponding answer
3852 "no" in interactive questions, for example).
3853
3854 2010-06-02 Dan Nicolaescu <dann@ics.uci.edu>
3855
3856 * log-edit.el (log-edit-font-lock-keywords): Make group 4 match lax.
3857
3858 2010-06-01 Juanma Barranquero <lekktu@gmail.com>
3859
3860 * emacs-lisp/eldoc.el: Add completions for new commands left-* and
3861 right-*. (Bug#6265)
3862
3863 2010-06-01 Dan Nicolaescu <dann@ics.uci.edu>
3864
3865 Add support for vc-log-incoming, improve vc-log-outgoing for Git.
3866 * vc-git.el (vc-git-compute-remote): New function.
3867 (vc-git-log-outgoing): Use it instead of hard coding a value.
3868 (vc-git-log-incoming): New function.
3869
3870 Improve state updating for VC tag commands.
3871 * vc.el (vc-create-tag, vc-retrieve-tag): Call vc-resynch-buffer
3872 to update the state of all buffers in the directory.
3873
3874 * vc-dir.el (vc-dir-update): Remove entries with a nil state (bug#5539).
3875
3876 2010-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
3877
3878 * vc-bzr.el (vc-bzr-revision-completion-table): Apply
3879 `file-directory-p' to the filename part rather than to the whole text.
3880
3881 2010-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
3882
3883 * man.el (Man-completion-table): Let the user type "-k " (bug#6319).
3884
3885 2010-05-31 Drew Adams <drew.adams@oracle.com>
3886
3887 * files.el (directory-files-no-dot-files-regexp): Doc fix (bug#6298).
3888
3889 2010-05-31 Juanma Barranquero <lekktu@gmail.com>
3890
3891 * subr.el (momentary-string-display): Just use read-event to read
3892 the exit event (Bug#6238).
3893
3894 2010-05-30 Eli Zaretskii <eliz@gnu.org>
3895
3896 * international/mule.el (define-coding-system): Doc fix (bug#6313).
3897
3898 2010-05-30 Juanma Barranquero <lekktu@gmail.com>
3899
3900 * emulation/cua-base.el: Recognize also `right-word' and `left-word'.
3901 Suggested by Eli Zaretskii <eliz@gnu.org>.
3902
3903 2010-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
3904
3905 * minibuffer.el (completion-file-name-table): Don't return a boundary
3906 past the end of `string' (bug#6299).
3907 (completion--file-name-table): Delegate to completion-file-name-table
3908 for the `boundaries' case.
3909
3910 2010-05-30 Juanma Barranquero <lekktu@gmail.com>
3911
3912 * emulation/cua-base.el: Recognize `right-char' and `left-char' as
3913 movement commands.
3914
3915 * progmodes/ada-xref.el (ada-prj-ada-project-path-sep): Set from
3916 `path-separator', but maintain compatibility with Emacs 20.2.
3917
3918 2010-05-29 Chong Yidong <cyd@stupidchicken.com>
3919
3920 * server.el (server-process-filter): Receive parent-id argument
3921 from emacsclient.
3922 (server-create-window-system-frame): New arg. Pass parent-id as
3923 frame parameter.
3924
3925 2010-05-29 Eli Zaretskii <eliz@gnu.org>
3926
3927 Bidi-sensitive word movement with arrow keys.
3928 * subr.el (right-arrow-command, left-arrow-command): Move to
3929 bindings.el.
3930
3931 * bindings.el (right-char, left-char): Move from subr.el and
3932 rename from right-arrow-command and left-arrow-command.
3933 (right-word, left-word): New functions.
3934 (global-map) <right>: Bind to right-char.
3935 (global-map) <left>: Bind to left-char.
3936 (global-map) <C-right>: Bind to right-word.
3937 (global-map) <C-left>: Bind to left-word.
3938
3939 * ls-lisp.el (ls-lisp-classify-file): New function.
3940 (ls-lisp-insert-directory): Call it if switches include -F (bug#6294).
3941 (ls-lisp-classify): Call ls-lisp-classify-file.
3942 (insert-directory): Remove blanks from switches.
3943
3944 2010-05-29 Chong Yidong <cyd@stupidchicken.com>
3945
3946 * ansi-color.el: Delete unused escape sequences (Bug#6085).
3947 (ansi-color-drop-regexp): New constant.
3948 (ansi-color-apply, ansi-color-filter-region)
3949 (ansi-color-apply-on-region): Delete unrecognized control sequences.
3950 (ansi-color-apply): Build string list before calling concat.
3951
3952 2010-05-28 Juri Linkov <juri@jurta.org>
3953
3954 * image-dired.el (image-dired-dired-toggle-marked-thumbs):
3955 Replace LOCALP arg of `dired-get-filename' 'no-dir with nil.
3956 (Bug#5270)
3957
3958 2010-05-28 Michael Albinus <michael.albinus@gmx.de>
3959
3960 * net/tramp.el (tramp-debug-message): Add `tramp-compat-funcall'
3961 to ignored backtrace functions.
3962 (with-progress-reporter): Expand docstring.
3963 (tramp-handle-delete-file): Implement TRASH argument.
3964 (tramp-get-remote-trash): New defun.
3965
3966 2010-05-28 Michael Albinus <michael.albinus@gmx.de>
3967
3968 * net/tramp-compat.el (tramp-compat-delete-file): Use
3969 `symbol-value' for backward compatibility.
3970
3971 * net/tramp.el (tramp-handle-make-symbolic-link)
3972 (tramp-handle-load)
3973 (tramp-do-copy-or-rename-file-via-buffer)
3974 (tramp-do-copy-or-rename-file-directly)
3975 (tramp-do-copy-or-rename-file-out-of-band)
3976 (tramp-handle-process-file, tramp-handle-call-process-region)
3977 (tramp-handle-shell-command, tramp-handle-file-local-copy)
3978 (tramp-handle-insert-file-contents, tramp-handle-write-region)
3979 (tramp-delete-temp-file-function): Use `delete-file' instead
3980 of `tramp-compat-delete-file'.
3981
3982 * net/tramp-fish.el (tramp-fish-handle-delete-directory)
3983 (tramp-fish-handle-make-symbolic-link)
3984 (tramp-fish-handle-process-file): Use `delete-file' instead
3985 of `tramp-compat-delete-file'.
3986
3987 * net/tramp-ftp.el (tramp-ftp-file-name-handler): Use
3988 `delete-file' instead of `tramp-compat-delete-file'.
3989
3990 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Rename arg.
3991 (tramp-gvfs-handle-write-region): Use `delete-file' instead of
3992 `tramp-compat-delete-file'.
3993
3994 * net/tramp-imap.el (tramp-imap-do-copy-or-rename-file): Use
3995 `delete-file' instead of `tramp-compat-delete-file'.
3996
3997 * net/tramp-smb.el (tramp-smb-handle-copy-file)
3998 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
3999 (tramp-smb-handle-write-region): Use `delete-file' instead of
4000 `tramp-compat-delete-file'.
4001 (tramp-smb-handle-delete-directory): Use 'trash as arg.
4002
4003 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
4004
4005 * dired.el (dired-delete-file): New arg TRASH.
4006 (dired-internal-do-deletions): New arg TRASH. Use progress reporter.
4007 (dired-do-flagged-delete, dired-do-delete): Use trash.
4008
4009 * speedbar.el (speedbar-item-delete): Allow trashing.
4010
4011 * files.el (delete-directory): New arg TRASH.
4012
4013 * net/ange-ftp.el (ange-ftp-del-tmp-name, ange-ftp-delete-file)
4014 (ange-ftp-rename-remote-to-remote)
4015 (ange-ftp-rename-local-to-remote)
4016 (ange-ftp-rename-remote-to-local, ange-ftp-load)
4017 (ange-ftp-compress, ange-ftp-uncompress): Remove optional arg from
4018 `delete-file'.
4019 (ange-ftp-delete-directory): Add optional arg to `delete-file', to
4020 allow trashing.
4021
4022 * net/tramp-compat.el (tramp-compat-delete-file): Rewrite to
4023 handle new TRASH arg of `delete-file'.
4024
4025 * net/tramp.el (tramp-handle-delete-file): Change FORCE arg to TRASH.
4026 (tramp-handle-make-symbolic-link, tramp-handle-load)
4027 (tramp-do-copy-or-rename-file-via-buffer)
4028 (tramp-do-copy-or-rename-file-directly)
4029 (tramp-do-copy-or-rename-file-out-of-band)
4030 (tramp-handle-process-file, tramp-handle-call-process-region)
4031 (tramp-handle-shell-command, tramp-handle-file-local-copy)
4032 (tramp-handle-insert-file-contents, tramp-handle-write-region)
4033 (tramp-delete-temp-file-function): Use null TRASH arg in
4034 tramp-compat-delete-file call.
4035
4036 * net/tramp-fish.el (tramp-fish-handle-delete-directory)
4037 (tramp-fish-handle-delete-file)
4038 (tramp-fish-handle-make-symbolic-link)
4039 (tramp-fish-handle-process-file): Use null TRASH arg in
4040 `tramp-compat-delete-file' call.
4041
4042 * net/tramp-ftp.el (tramp-ftp-file-name-handler): Use null TRASH
4043 arg in `tramp-compat-delete-file' call.
4044
4045 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Rename arg.
4046 (tramp-gvfs-handle-write-region): Use null TRASH arg in
4047 `tramp-compat-delete-file' call.
4048
4049 * net/tramp-imap.el (tramp-imap-handle-delete-file): Rename arg.
4050 (tramp-imap-do-copy-or-rename-file): Use null TRASH arg in
4051 `tramp-compat-delete-file' call.
4052
4053 * net/tramp-smb.el (tramp-smb-handle-copy-file)
4054 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
4055 (tramp-smb-handle-write-region): Use null TRASH arg in
4056 tramp-compat-delete-file call.
4057 (tramp-smb-handle-delete-directory): Use tramp-compat-delete-file.
4058 (tramp-smb-handle-delete-file): Rename arg.
4059
4060 * diff.el (diff-sentinel):
4061 * epg.el (epg--make-temp-file, epg-decrypt-string)
4062 (epg-verify-string, epg-sign-string, epg-encrypt-string):
4063 * jka-compr.el (jka-compr-partial-uncompress)
4064 (jka-compr-call-process, jka-compr-write-region):
4065 * server.el (server-sentinel): Remove optional arg from
4066 delete-file, reverting 2010-05-03 change.
4067
4068 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
4069
4070 * progmodes/verilog-mode.el (verilog-type-font-keywords): Use
4071 font-lock-constant-face, not obsolete font-lock-reference-face.
4072
4073 2010-05-27 Kenichi Handa <handa@m17n.org>
4074
4075 * language/hebrew.el (hebrew-shape-gstring): Check if a glyph
4076 element of GSTRING is nil.
4077
4078 2010-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
4079
4080 * emacs-lisp/smie.el (smie-forward-token-function)
4081 (smie-backward-token-function): New vars.
4082 (smie-backward-sexp, smie-forward-sexp)
4083 (smie-indent-hanging-p, smie-indent-calculate): Use them.
4084 (smie-default-backward-token): Rename from smie-backward-token and
4085 skip comments.
4086 (smie-default-forward-token): Rename from smie-forward-token and
4087 skip comments.
4088 (smie-next-sexp): Handle nil results from next-token.
4089 (smie-indent-calculate): Add a new case for special `fixindent' comments.
4090
4091 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
4092
4093 * progmodes/verilog-mode.el (verilog-type-font-keywords):
4094 Use font-lock-constant-face, not obsolete font-lock-reference-face.
4095
4096 2010-05-27 Masatake YAMATO <yamato@redhat.com>
4097
4098 * htmlfontify.el (hfy-face-resolve-face): New function.
4099 (hfy-face-to-style): Use it (Bug#6279).
4100
4101 2010-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
4102
4103 * progmodes/ada-xref.el (ada-gnat-parse-gpr):
4104 * emulation/edt.el (edt-load-keys): Avoid (expand-file-name ".").
4105
4106 2010-05-26 Glenn Morris <rgm@gnu.org>
4107
4108 * emulation/edt.el (edt-load-keys): Use locate-library.
4109
4110 2010-05-25 Chong Yidong <cyd@stupidchicken.com>
4111
4112 * log-edit.el (log-edit-strip-single-file-name): Default to nil.
4113 (log-edit-changelog-entries): Doc fix.
4114 (log-edit-changelog-insert-entries): Args changed.
4115 Rename relative filenames in ChangeLog entries. Delete tabs.
4116 (log-edit-insert-changelog-entries): Reorganize return value of
4117 `log-edit-changelog-entries' to pass filenames to
4118 log-edit-changelog-insert-entries.
4119
4120 2010-05-25 Thierry Volpiatto <thierry.volpiatto@gmail.com>
4121
4122 * dired.el (dired-mode-map): Rebind "\C-t\C-t" from
4123 `image-dired-dired-insert-marked-thumbs' to
4124 `image-dired-dired-toggle-marked-thumbs'.
4125
4126 * image-dired.el: Require cl when compiling.
4127 (image-dired-dired-toggle-marked-thumbs): Rename from
4128 `image-dired-dired-insert-marked-thumbs'. Add ARG. Doc fix.
4129 Use interactive spec "P". Set LOCALP arg of `dired-get-filename'
4130 to 'no-dir. Skip files whose names don't match
4131 `image-file-name-regexp'. When file has a thumbnail overlay,
4132 delete it. (Bug#5270)
4133
4134 2010-05-25 Juri Linkov <juri@jurta.org>
4135
4136 * image-mode.el (image-mode): Add image-after-revert-hook to
4137 after-revert-hook.
4138 (image-after-revert-hook): New function. (Bug#5669)
4139
4140 2010-05-25 Juri Linkov <juri@jurta.org>
4141
4142 * image.el (image-animated-p): When delay between animated images
4143 is 0, set it to 10 (0.1 sec). (Bug#6258)
4144
4145 2010-05-25 Christian Lynbech <christian.lynbech@tieto.com> (tiny change)
4146
4147 * net/tramp.el (tramp-handle-insert-directory): Don't use
4148 `forward-word', its default syntax could be changed.
4149
4150 2010-05-25 Michael Albinus <michael.albinus@gmx.de>
4151
4152 * net/tramp.el (tramp-progress-reporter-update): New defun.
4153 (with-progress-reporter): Use it.
4154 (tramp-process-actions):
4155 * net/tramp-gvfs.el (tramp-gvfs-handler-askquestion): Preserve
4156 current message, in order to let progress reporter continue
4157 afterwards. (Bug#6257)
4158
4159 2010-05-25 Glenn Morris <rgm@gnu.org>
4160
4161 * net/rcirc.el (rcirc-default-user-name, rcirc-default-full-name):
4162 Add :version.
4163
4164 2010-05-25 Ryan Yeske <rcyeske@gmail.com>
4165
4166 * net/rcirc.el (rcirc-default-user-name): Change to "user".
4167 (rcirc-default-full-name): Change to "unknown".
4168 (rcirc-user-name-history): Add variable.
4169
4170 2010-05-25 Ryan Yeske <rcyeske@gmail.com>
4171 Jonathan Rockway <jon@jrock.us>
4172
4173 * net/rcirc.el (rcirc-server-alist): Add :pass.
4174 (rcirc): When prompting for connection parameters, also prompt for
4175 username and password.
4176 (rcirc-connect): Take a PASS argument. If PASS is non-nil, send
4177 value to server when connecting.
4178
4179 2010-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
4180
4181 * emacs-lisp/smie.el (smie-set-prec2tab): Check override before use.
4182 (smie-merge-prec2s): Pass the tables as separate args.
4183 (smie-bnf-precedence-table): Adjust call accordingly.
4184 (smie-prec2-levels): Set levels at the end.
4185
4186 Replace Lisp calls to delete-backward-char by delete-char.
4187 * bs.el, expand.el, ido.el, image-dired.el, lpr.el, pcomplete.el,
4188 * skeleton.el, term.el, time.el, wid-edit.el, woman.el,
4189 * calc/calc-graph.el, calc/calc-help.el, calc/calc-incom.el,
4190 * calc/calc.el, emacs-cl-extra.el, emacs-cl-loaddefs.el,
4191 * emulation/cua-rect.el, emulation/viper-ex.el, eshell/esh-test.el,
4192 * eshell/eshell.el, gnus/gnus-uu.el, gnus/nndoc.el, gnus/nnrss.el,
4193 * gnus/rfc2047.el, gnus/utf7.el, international/utf-7.el,
4194 * language/ethio-util.el, mh-e/mh-alias.el, mh-e/mh-search.el,
4195 * net/imap.el, net/rcirc.el, obsolete/complete.el, play/decipher.el,
4196 * progmodes/ada-mode.el, progmodes/cc-awk.el, progmodes/dcl-mode.el,
4197 * progmodes/ps-mode.el, progmodes/verilog-mode.el,
4198 * progmodes/vhdl-mode.el, textmodes/bibtex.el, textmodes/fill.el,
4199 * textmodes/reftex-auc.el, textmodes/rst.el, textmodes/sgml-mode.el,
4200 * textmodes/table.el, textmodes/texinfmt.el: Replace Lisp calls to
4201 delete-backward-char by calls to delete-char.
4202
4203 2010-05-25 Kenichi Handa <handa@m17n.org>
4204
4205 * language/hebrew.el (hebrew-shape-gstring): New function.
4206 Register it in composition-function-table for all Hebrew combining
4207 characters.
4208
4209 2010-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
4210
4211 * epa.el (epa--select-keys): Don't explicitly delete the window since
4212 that can fail (e.g. sole window in frame). Use dedication instead.
4213
4214 2010-05-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
4215
4216 * textmodes/fill.el (fill-region): Don't fill past the end (bug#6201).
4217
4218 2010-05-22 Chong Yidong <cyd@stupidchicken.com>
4219
4220 * image.el (image-refresh): Define as an alias for image-flush.
4221
4222 * image-mode.el (image-toggle-display-image): Caller changed.
4223
4224 2010-05-21 Juri Linkov <juri@jurta.org>
4225
4226 * progmodes/grep.el (grep-read-files): Fix multi-pattern aliases.
4227 Remove "all" from grep-files-aliases. Split grep-files-aliases by
4228 whitespace, call wildcard-to-regexp on substrings and concat them
4229 with "\\|". (Bug#6114)
4230
4231 2010-05-21 Alan Mackenzie <acm@muc.de>
4232
4233 * progmodes/cc-engine.el (c-parse-state-get-strategy):
4234 Replace parameter `here' with `here-' and `here-plus', which sandwich
4235 any pertinent CPP construct.
4236 (c-remove-stale-state-cache-backwards): Fix a bug which happens
4237 when doing (c-parse-state) in a CPP construct: Exclude any "new"
4238 CPP construct from taking part in the scanning.
4239
4240 2010-05-21 Michael Albinus <michael.albinus@gmx.de>
4241
4242 * net/tramp.el (tramp-do-copy-or-rename-file)
4243 (tramp-handle-file-local-copy, tramp-maybe-open-connection):
4244 Tune `with-progress-reporter' messages.
4245 (tramp-handle-vc-registered):
4246 * net/tramp-fish.el (tramp-fish-handle-file-local-copy)
4247 (tramp-fish-handle-insert-file-contents)
4248 (tramp-fish-maybe-open-connection):
4249 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
4250 * net/tramp-imap.el (tramp-imap-do-copy-or-rename-file)
4251 (tramp-imap-handle-insert-file-contents)
4252 (tramp-imap-handle-file-local-copy): Use `with-progress-reporter'.
4253
4254 2010-05-21 Juanma Barranquero <lekktu@gmail.com>
4255
4256 * add-log.el (change-log-font-lock-keywords):
4257 Highlight all authors in multi-author entries.
4258
4259 * smerge-mode.el (smerge-refine-ignore-whitespace)
4260 (smerge-refine-weight-hack, smerge-refine, smerge-makeup-conflict):
4261 Fix typos in docstrings.
4262 (smerge-resolve, smerge-refine-subst): Reflow docstrings.
4263
4264 2010-05-21 Glenn Morris <rgm@gnu.org>
4265
4266 * progmodes/fortran.el (fortran-mode):
4267 * progmodes/f90.el (f90-mode): Derive from prog-mode.
4268
4269 * loadup.el [CANNOT_DUMP]: Update for bootstrap-emacs no longer
4270 having a relative path in src/Makefile.in.
4271
4272 2010-05-20 Kevin Ryde <user42@zip.com.au>
4273
4274 * help-mode.el (help-make-xrefs): For Info node links turn
4275 newlines into spaces. Link node names with newlines are matched
4276 by help-xref-info-regexp and buttonized, this change ensures they
4277 can be followed successfully with RET. (Bug#6206)
4278
4279 2010-05-20 Juri Linkov <juri@jurta.org>
4280
4281 * locate.el (locate): Use pop-to-buffer instead of
4282 switch-to-buffer-other-window. (Bug#6204)
4283
4284 2010-05-20 Juri Linkov <juri@jurta.org>
4285
4286 * replace.el (replace-highlight): Fix lazy-highlighting
4287 for `M-s w str M-% str RET'.
4288
4289 2009-12-15 Masatake YAMATO <yamato@redhat.com>
4290
4291 * isearch.el (isearch-yank-word-or-char): Pull next subword
4292 when `subword-mode' is activated. (Bug#6220)
4293
4294 2010-05-20 Mark A. Hershberger <mah@everybody.org>
4295
4296 * isearch.el (isearch-update-post-hook): New hook.
4297 (isearch-update): Use the new hook. (Bug#6225)
4298
4299 2010-05-20 Juri Linkov <juri@jurta.org>
4300
4301 * isearch.el (isearch-mode-map): Bind more keys to isearch-help-map:
4302 [f1], [help], and (char-to-string help-char) instead of "\C-h".
4303 (Bug#6222)
4304
4305 2010-05-20 Juri Linkov <juri@jurta.org>
4306
4307 * isearch.el (isearch-yank-string): Use isearch-process-search-string.
4308 (Bug#6223)
4309
4310 2010-05-20 Juri Linkov <juri@jurta.org>
4311
4312 * dired-x.el (dired-jump, dired-jump-other-window): Add arg
4313 FILE-NAME to read from the minibuffer when called interactively
4314 with prefix argument instead of using buffer-file-name.
4315 http://lists.gnu.org/archive/html/emacs-devel/2010-05/msg00534.html
4316
4317 * dired.el: Update autoloads.
4318
4319 2010-05-20 Chong Yidong <cyd@stupidchicken.com>
4320
4321 * nxml/nxml-mode.el (nxml-mode-map): Bind C-c / to
4322 nxml-finish-element, for consistency with SGML mode.
4323
4324 * progmodes/octave-mod.el (octave-mode-map): Bind C-c / to
4325 octave-close-block.
4326
4327 2010-05-20 Juanma Barranquero <lekktu@gmail.com>
4328
4329 * composite.el: Require cl when compiling.
4330 (reference-point-alist, compose-gstring-for-graphic)
4331 (compose-gstring-for-terminal): Fix typos in docstrings.
4332
4333 2010-05-19 Juri Linkov <juri@jurta.org>
4334
4335 * emacs-lisp/cl-macs.el (window-parameter): Add defsetf with
4336 set-window-parameter.
4337
4338 2010-05-19 Michael Albinus <michael.albinus@gmx.de>
4339
4340 * net/tramp.el (tramp-methods): Add `tramp-async-args' attribute
4341 where appropriate.
4342 (tramp-maybe-open-connection): Use it.
4343
4344 2010-05-19 Eli Zaretskii <eliz@gnu.org>
4345
4346 * simple.el (move-end-of-line): Make sure we are at line beginning
4347 before backing up to end of previous line.
4348
4349 2010-05-19 Michael Albinus <michael.albinus@gmx.de>
4350
4351 * password-cache.el (password-cache-remove): Fix docstring.
4352
4353 * net/secrets.el: Autoload the widget functions.
4354 (secrets-search-items, secrets-create-item)
4355 (secrets-get-attributes, secrets-expand-item): Attributes will be
4356 stored on the password database without leading ":", as all other
4357 clients do as well.
4358 (secrets-mode): Fix docstring.
4359 (secrets-show-secrets): Provide it as autoloaded command only when
4360 D-Bus support is available. Check existence of Secret Service API.
4361
4362 2010-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
4363
4364 * indent.el (indent-region): Deactivate region (bug#6200).
4365
4366 2010-05-19 Glenn Morris <rgm@gnu.org>
4367
4368 * vc-dir.el (vc-dir): Don't pop-up-windows. (Bug#6204)
4369
4370 2010-05-19 Kenichi Handa <handa@m17n.org>
4371
4372 * composite.el: Register compose-gstring-for-graphic in
4373 composition-function-table only for combining characters (Mn, Mc, Me).
4374
4375 2010-05-18 Jay Belanger <jay.p.belanger@gmail.com>
4376
4377 * calc/calc-trail.el (calc-trail-isearch-forward)
4378 (calc-trail-isearch-backward): Ensure that the new window
4379 point is set correctly.
4380
4381 2010-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
4382
4383 * subr.el (read-quoted-char): Resolve modifiers after key
4384 remapping (bug#6212).
4385
4386 2010-05-18 Michael Albinus <michael.albinus@gmx.de>
4387
4388 Add visualization code for secrets.
4389 * net/secrets.el (secrets-mode): New major mode.
4390 (secrets-show-secrets, secrets-show-collections)
4391 (secrets-expand-collection, secrets-expand-item)
4392 (secrets-tree-widget-after-toggle-function)
4393 (secrets-tree-widget-show-password): New defuns.
4394
4395 2010-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
4396
4397 * emacs-lisp/smie.el (smie-next-sexp): Break inf-loop at BOB.
4398 (smie-backward-sexp, smie-forward-sexp): Remove boundary condition now
4399 handled in smie-next-sexp.
4400 (smie-indent-calculate): Provide a starting indentation (so the
4401 recursion is well-founded ;-).
4402
4403 Fix handling of non-associative equal levels.
4404 * emacs-lisp/smie.el (smie-prec2-levels): Choose distinct levels even
4405 when it's not needed.
4406 (smie-op-left, smie-op-right): New functions.
4407 (smie-next-sexp): New function, extracted from smie-backward-sexp.
4408 Better handle equal levels to distinguish the associative case from
4409 the "multi-keyword construct" case.
4410 (smie-backward-sexp, smie-forward-sexp): Use it.
4411
4412 2010-05-18 Juanma Barranquero <lekktu@gmail.com>
4413
4414 * progmodes/prolog.el (smie-indent-basic): Declare for byte-compiler.
4415
4416 * emacs-lisp/smie.el (smie-precs-precedence-table, smie-backward-sexp)
4417 (smie-forward-sexp, smie-indent-calculate): Fix typos in docstrings.
4418
4419 2010-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
4420
4421 Provide a simple generic indentation engine and use it for Prolog.
4422 * emacs-lisp/smie.el: New file.
4423 * progmodes/prolog.el (prolog-smie-op-levels)
4424 (prolog-smie-indent-rules): New var.
4425 (prolog-mode-variables): Use them to configure SMIE.
4426 (prolog-indent-line, prolog-indent-level): Remove.
4427
4428 2010-05-17 Jay Belanger <jay.p.belanger@gmail.com>
4429
4430 * calc/calc-vec.el (math-vector-avg): Put the vector elements in
4431 order before computing the averages.
4432
4433 2010-05-16 Jay Belanger <jay.p.belanger@gmail.com>
4434
4435 * calc/calc-vec.el (calc-histogram):
4436 (calcFunc-histogram): Allow vectors as inputs.
4437 (math-vector-avg): New function.
4438
4439 * calc/calc-ext.el (math-group-float): Have the number of digits
4440 being grouped depend on the radix (Bug#6189).
4441
4442 2010-05-15 Ken Raeburn <raeburn@raeburn.org>
4443
4444 * version.el (emacs-copyright, emacs-version): Don't define here,
4445 now that emacs.c defines it.
4446
4447 2010-05-15 Eli Zaretskii <eliz@gnu.org>
4448
4449 * international/mule-cmds.el (mule-menu-keymap): Fix definition of
4450 "Describe Language Environment" menu item.
4451
4452 * language/hebrew.el ("Hebrew", "Windows-1255"): Doc fix.
4453
4454 Bidi-sensitive movement with arrow keys.
4455 * subr.el (right-arrow-command, left-arrow-command): New functions.
4456
4457 * bindings.el (global-map): Bind them to right and left arrow keys.
4458
4459 Don't override standard definition of convert-standard-filename.
4460 * files.el (convert-standard-filename): Call
4461 w32-convert-standard-filename and dos-convert-standard-filename on
4462 the corresponding systems.
4463
4464 * w32-fns.el (w32-convert-standard-filename): Rename from
4465 convert-standard-filename. Doc fix.
4466
4467 * dos-fns.el (dos-convert-standard-filename): Doc fix.
4468 (convert-standard-filename): Don't defalias.
4469 (register-name-alist, make-register, register-value)
4470 (set-register-value, intdos): Obsolete aliases for the
4471 corresponding dos-* functions and variables.
4472 (dos-intdos): Add a doc string.
4473
4474 2010-05-15 Jay Belanger <jay.p.belanger@gmail.com>
4475
4476 * calc/calc-aent.el (math-read-token, math-find-user-tokens):
4477 * calc/calc-lang.el (math-read-big-rec, math-lang-read-symbol):
4478 (math-compose-tex-func):
4479 * calc/calccomp.el (math-compose-expr):
4480 * calc/calc-ext.el (math-format-flat-expr-fancy):
4481 * calc/calc-store.el (calc-read-var-name):
4482 * calc/calc-units.el (calc-explain-units-rec): Allow Greek letters.
4483
4484 * calc/calc.el (var-π, var-φ, var-γ): New variables.
4485 * calc/calc-aent.el (math-read-replacement-list): Add "micro" symbol.
4486 * calc/calc-units.el (math-unit-prefixes): Add mu for micro.
4487 (math-standard-units): Add units.
4488
4489 2010-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
4490
4491 * progmodes/asm-mode.el (asm-mode):
4492 * progmodes/prolog.el (prolog-mode): Use define-derived-mode.
4493
4494 * pcomplete.el (pcomplete-completions-at-point): New function,
4495 extracted from pcomplete-std-complete.
4496 (pcomplete-std-complete): Use it.
4497
4498 2010-05-15 Glenn Morris <rgm@gnu.org>
4499
4500 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
4501 Remove references to CVS, RCS and Old directories.
4502
4503 2010-05-14 Jay Belanger <jay.p.belanger@gmail.com>
4504
4505 * calc/calc-bin.el (math-format-twos-complement): Group digits when
4506 appropriate.
4507
4508 2010-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
4509
4510 * progmodes/sh-script.el (sh-mode-default-syntax-table): Remove.
4511 (sh-mode-syntax-table): Give it a default value instead.
4512 (sh-header-marker): Make buffer-local.
4513 (sh-mode): Move make-local-variable to the corresponding setq.
4514 (sh-add-completer): Avoid gratuitously let-binding a buffer-local var.
4515 Use complete-with-action.
4516
4517 * simple.el (prog-mode): New (abstract) major mode.
4518 * emacs-lisp/lisp-mode.el (emacs-lisp-mode, lisp-mode): Use it.
4519 * progmodes/sh-script.el (sh-mode): Remove redundant var assignment.
4520
4521 2010-05-14 Juanma Barranquero <lekktu@gmail.com>
4522
4523 * progmodes/sql.el (sql-oracle-program): Reflow docstring.
4524 (sql-oracle-scan-on, sql-sybase-program, sql-product-font-lock)
4525 (sql-add-product-keywords, sql-highlight-product, sql-set-product)
4526 (sql-make-alternate-buffer-name, sql-placeholders-filter)
4527 (sql-escape-newlines-filter, sql-input-sender)
4528 (sql-send-magic-terminator, sql-sybase): Fix typos in docstrings.
4529
4530 2010-05-13 Chong Yidong <cyd@stupidchicken.com>
4531
4532 Add TeX open-block and close-block keybindings to SGML, and vice versa.
4533
4534 * textmodes/tex-mode.el (tex-mode-map): Bind C-c C-t to
4535 latex-open-block and C-c / to latex-close-block.
4536
4537 * textmodes/sgml-mode.el (sgml-mode-map): Bind C-c C-o to sgml-tag
4538 and C-c C-e to sgml-close-tag.
4539
4540 2010-05-13 Michael Albinus <michael.albinus@gmx.de>
4541
4542 * net/tramp.el (with-progress-reporter): Create reporter object
4543 only when the message would be displayed. Handle nested calls.
4544 (tramp-handle-load, tramp-handle-file-local-copy)
4545 (tramp-handle-insert-file-contents, tramp-handle-write-region)
4546 (tramp-maybe-send-script, tramp-find-shell):
4547 Use `with-progress-reporter'.
4548 (tramp-handle-dired-compress-file, tramp-maybe-open-connection):
4549 Fix message text.
4550
4551 * net/tramp-smb.el (tramp-smb-handle-copy-file)
4552 (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
4553 (tramp-smb-handle-write-region, tramp-smb-maybe-open-connection):
4554 Use `with-progress-reporter'.
4555
4556 2010-05-13 Agustín Martín <agustin.martin@hispalinux.es>
4557
4558 * textmodes/ispell.el (ispell-init-process): Do not kill ispell
4559 process everytime when spellchecking from the minibuffer (bug#6143).
4560
4561 2010-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
4562
4563 * progmodes/sh-script.el (sh-mode): Use define-derived-mode.
4564
4565 * dos-fns.el: Add "dos-" prefix for namespace control.
4566 (convert-standard-filename): Define as alias for
4567 dos-convert-standard-filename but only if applicable.
4568
4569 2010-05-12 Alan Mackenzie <acm@muc.de>
4570
4571 * progmodes/cc-cmds.el (c-beginning-of-defun, c-end-of-defun):
4572 Push the mark at the start of these functions when appropriate.
4573
4574 2010-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
4575
4576 * minibuffer.el (completion-cycle-threshold): New custom var.
4577 (completion--do-completion): Use it.
4578 (minibuffer-complete): Use cycling if appropriate.
4579
4580 2010-05-11 Juanma Barranquero <lekktu@gmail.com>
4581
4582 * dirtrack.el (dirtrackp): Remove defcustom; don't make automatically
4583 buffer-local (it's an obsolete alias for `dirtrack-mode') (bug#6173).
4584
4585 2010-05-11 Juri Linkov <juri@jurta.org>
4586
4587 * scroll-all.el (scroll-all-check-to-scroll):
4588 Add `scroll-up-command' and `scroll-down-command' (bug#6164).
4589
4590 2010-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
4591
4592 * iimage.el (iimage-mode-map): Move initialization into declaration.
4593 (iimage-mode-buffer): Use with-silent-modifications.
4594 Simplify calling convention. Adjust callers.
4595 (iimage-mode): Don't run hook redundantly.
4596
4597 * minibuffer.el (completion-pcm--pattern->regex):
4598 Fix last change (bug#6160).
4599
4600 2010-05-10 Juri Linkov <juri@jurta.org>
4601
4602 Remove nodes visited during Isearch from the Info history.
4603 * info.el (Info-isearch-initial-history)
4604 (Info-isearch-initial-history-list): New variables.
4605 (Info-isearch-start): Record initial values of
4606 Info-isearch-initial-history and Info-isearch-initial-history-list.
4607 Add Info-isearch-end to isearch-mode-end-hook.
4608 (Info-isearch-end): New function.
4609
4610 2010-05-10 Michael Albinus <michael.albinus@gmx.de>
4611
4612 * net/tramp.el (tramp-do-file-attributes-with-stat): Add space in
4613 format string, in order to work around a bug in pdksh.
4614 Reported by Gilles Pion <gpion@lfdj.com>.
4615 (tramp-handle-verify-visited-file-modtime): Do not send a command
4616 when the connection is not established.
4617 (tramp-handle-set-file-times): Simplify the check for utc.
4618
4619 2010-05-10 Juanma Barranquero <lekktu@gmail.com>
4620
4621 Fix use of `filter-buffer-substring' (rework previous change).
4622 * emulation/cua-base.el (cua--filter-buffer-noprops): New function.
4623 (cua-repeat-replace-region):
4624 * emulation/cua-rect.el (cua--extract-rectangle, cua-incr-rectangle):
4625 * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
4626 (cua-cut-region-to-global-mark): Use it.
4627
4628 2010-05-09 Michael R. Mauger <mmaug@yahoo.com>
4629
4630 * progmodes/sql.el: Version 2.1.
4631 (sql-product-alist): Redesign structure of product info.
4632 (sql-product, sql-user, sql-server, sql-database): Safe variables.
4633 (sql-port, sql-port-history): New variables.
4634 (sql-interactive-product): New variable.
4635 (sql-send-terminator): New variable.
4636 (sql-imenu-generic-expression): Add "Types" imenu entry.
4637 (sql-oracle-login-params, sql-sqlite-login-params)
4638 (sql-mysql-login-params, sql-solid-login-params)
4639 (sql-sybase-login-params, sql-informix-login-params)
4640 (sql-ingres-login-params, sql-ms-login-params)
4641 (sql-postgres-login-params, sql-interbase-login-params)
4642 (sql-db2-login-params, sql-linter-login-params)
4643 (sql-oracle-scan-on): New variables.
4644 (sql-mode-map): Add C-c C-i to start interactive mode.
4645 (sql-mode-menu): Update existing menu entries.
4646 (sql-font-lock-keywords-builder): Compile-time font-lock optimization.
4647 (sql-mode-oracle-font-lock-keywords)
4648 (sql-mode-postgres-font-lock-keywords)
4649 (sql-mode-ms-font-lock-keywords)
4650 (sql-mode-sybase-font-lock-keywords)
4651 (sql-mode-informix-font-lock-keywords)
4652 (sql-mode-interbase-font-lock-keywords)
4653 (sql-mode-ingres-font-lock-keywords)
4654 (sql-mode-solid-font-lock-keywords)
4655 (sql-mode-mysql-font-lock-keywords)
4656 (sql-mode-sqlite-font-lock-keywords)
4657 (sql-mode-db2-font-lock-keywords)
4658 (sql-mode-linter-font-lock-keywords): Update initialization to
4659 reduce run-time complexity.
4660 (sql-add-product, sql-del-product): New functions.
4661 (sql-set-product-feature, sql-get-product-feature): New functions.
4662 (sql-product-font-lock): Update product API.
4663 (sql-add-product-keywords): New function.
4664 (sql-highlight-product): Update product API.
4665 (sql-help-list-products): New function.
4666 (sql-help): Dynamically lists free and non-free products.
4667 (sql-get-login): Correct bug in handling history and added
4668 prompt for port.
4669 (sql-copy-column): Copy without properties.
4670 (sqli-input-sender): Apply filters to SQLi input.
4671 (sql-query-placeholders-and-send): Obey `sql-oracle-scan-on' setting.
4672 Implement as a filter.
4673 (sql-escape-newlines-filter): Implement as a filter.
4674 (sql-remove-tabs-filter): New function.
4675 (sql-send-magic-terminator): New function.
4676 (sql-send-string): Implement magic terminator.
4677 (sql-send-region): Use `sql-send-string'.
4678 (sql-interactive-mode): Use product API.
4679 (sql-product-interactive): Use product API.
4680 (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql)
4681 (sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase)
4682 (sql-db2, sql-linter): Use `sql-product-interactive'.
4683 (sql-connect): New function.
4684 (sql-connect-oracle, sql-connect-sybase, sql-connect-informix)
4685 (sql-connect-sqlite, sql-connect-mysql, sql-connect-solid)
4686 (sql-connect-ingres, sql-connect-ms, sql-connect-postgres)
4687 (sql-connect-interbase, sql-connect-db2, sql-connect-linter):
4688 Use `sql-connect'.
4689
4690 2010-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
4691
4692 * minibuffer.el (completion-pcm-complete-word-inserts-delimiters):
4693 New custom variable.
4694 (completion-pcm--string->pattern): Use it.
4695 (completion-pcm--pattern->regex, completion-pcm--pattern->string):
4696 Make it handle any symbol as `any'.
4697 (completion-pcm--merge-completions): Extract common suffix for the new
4698 `prefix' symbol as well.
4699 (completion-substring--all-completions): Use the new `prefix' symbol.
4700
4701 2010-05-09 Michael Albinus <michael.albinus@gmx.de>
4702
4703 * net/tramp-compat.el (byte-compile-not-obsolete-vars): Define if
4704 not bound.
4705 (tramp-compat-copy-file): Add PRESERVE-SELINUX-CONTEXT.
4706 (tramp-compat-funcall): New defmacro.
4707 (tramp-compat-line-beginning-position)
4708 (tramp-compat-line-end-position)
4709 (tramp-compat-temporary-file-directory)
4710 (tramp-compat-make-temp-file, tramp-compat-file-attributes)
4711 (tramp-compat-copy-file, tramp-compat-copy-directory)
4712 (tramp-compat-delete-file, tramp-compat-delete-directory)
4713 (tramp-compat-number-sequence, tramp-compat-process-running-p)
4714 * net/tramp.el (top, with-progress-reporter)
4715 (tramp-rfn-eshadow-setup-minibuffer)
4716 (tramp-rfn-eshadow-update-overlay, tramp-handle-set-file-times)
4717 (tramp-handle-dired-compress-file, tramp-handle-shell-command)
4718 (tramp-completion-mode-p, tramp-check-for-regexp)
4719 (tramp-open-connection-setup-interactive-shell)
4720 (tramp-compute-multi-hops, tramp-read-passwd, tramp-clear-passwd)
4721 (tramp-time-diff, tramp-coding-system-change-eol-conversion)
4722 (tramp-set-process-query-on-exit-flag, tramp-unload-tramp)
4723 * net/tramp-cmds.el (tramp-cleanup-all-connections)
4724 (tramp-reporter-dump-variable, tramp-load-report-modules)
4725 (tramp-append-tramp-buffers)
4726 * net/tramp-gvfs.el (tramp-gvfs-handle-file-selinux-context): Use it.
4727
4728 * net/tramp-imap.el (top): Autoload `epg-make-context'.
4729
4730 2010-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
4731
4732 * progmodes/compile.el (compilation-buffer-modtime): Rename from
4733 buffer-modtime. Adjust users.
4734
4735 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
4736
4737 * international/mule.el (auto-coding-alist): Only purecopy
4738 car of each item, not the whole list (Bug#6083).
4739
4740 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
4741
4742 * progmodes/js.el (js-mode): Make paragraph variables local before
4743 calling c-setup-paragraph-variables (Bug#6071).
4744
4745 2010-05-08 Eli Zaretskii <eliz@gnu.org>
4746
4747 * composite.el (compose-region, reference-point-alist): Fix typos
4748 in the doc strings.
4749
4750 2010-05-08 Alexander Klimov <alserkli@inbox.ru> (tiny change)
4751
4752 * calc/calc-graph.el (calc-graph-plot): Use the proper form for
4753 gnuplot's "set" command.
4754
4755 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
4756
4757 * abbrev.el (last-abbrev-text): Doc fix.
4758 (abbrev-prefix-mark): Don't escape parenthesis.
4759
4760 2010-05-08 Andreas Schwab <schwab@linux-m68k.org>
4761
4762 * composite.el (find-composition): Doc fix.
4763
4764 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
4765
4766 * progmodes/sql.el (sql-electric-stuff): Fix typo in tag.
4767 (sql-oracle-program, sql-sqlite-options)
4768 (sql-query-placeholders-and-send): Doc fixes.
4769 (sql-set-product, sql-interactive-mode): Reflow docstrings.
4770 (sql-imenu-generic-expression, sql-buffer)
4771 (sql-mode-ansi-font-lock-keywords, sql-mode-oracle-font-lock-keywords)
4772 (sql-mode-postgres-font-lock-keywords, sql-mode-ms-font-lock-keywords)
4773 (sql-mode-sybase-font-lock-keywords)
4774 (sql-mode-informix-font-lock-keywords)
4775 (sql-mode-interbase-font-lock-keywords)
4776 (sql-mode-ingres-font-lock-keywords, sql-mode-solid-font-lock-keywords)
4777 (sql-mode-mysql-font-lock-keywords, sql-mode-sqlite-font-lock-keywords)
4778 (sql-mode-db2-font-lock-keywords, sql-mode-font-lock-keywords)
4779 (sql-product-feature, sql-highlight-product)
4780 (comint-line-beginning-position, sql-rename-buffer)
4781 (sql-toggle-pop-to-buffer-after-send-region sql-oracle)
4782 (sql-sybase, sql-informix, sql-sqlite, sql-mysql, sql-solid)
4783 (sql-ingres, sql-ms, sql-postgres, sql-interbase, sql-db2, sql-linter):
4784 Fix typos in docstrings.
4785
4786 2010-05-08 Juri Linkov <juri@jurta.org>
4787
4788 * info.el (Info-fontify-node): Put Info-breadcrumbs to the `display'
4789 property instead of `invisible' and `after-string' (bug#5998).
4790
4791 2010-05-08 Juri Linkov <juri@jurta.org>
4792
4793 * image-mode.el (image-mode-as-text): Fix typo in docstring.
4794
4795 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
4796
4797 * filecache.el (file-cache-add-directory-list)
4798 (file-cache-add-directory-recursively): Fix typos in docstrings.
4799
4800 2010-05-08 Kenichi Handa <handa@m17n.org>
4801
4802 * language/indian.el (gurmukhi-composable-pattern): Fix typo.
4803 (gujarati-composable-pattern): Fix typo.
4804
4805 2010-05-08 Kenichi Handa <handa@m17n.org>
4806
4807 * language/indian.el (oriya-composable-pattern)
4808 (tamil-composable-pattern, malayalam-composable-pattern):
4809 Add two-part vowels to "v" (vowel sign).
4810
4811 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
4812
4813 * files.el (copy-directory): Handle symlinks (Bug#5982).
4814
4815 2010-05-08 Dan Nicolaescu <dann@ics.uci.edu>
4816
4817 * vc-hg.el (vc-hg-state): Use HGRCPATH, not HGRC.
4818 (vc-hg-working-revision): Likewise. Use hg parents, not hg parent
4819 (Bug#5846).
4820
4821 2010-05-08 Glenn Morris <rgm@gnu.org>
4822
4823 * emacs-lisp/lisp.el (lisp-completion-at-point): Give it a doc string.
4824
4825 * minibuffer.el (completion-at-point): Doc fix.
4826
4827 2010-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
4828
4829 * electric.el (Electric-command-loop): Minor tweak.
4830
4831 * ebuff-menu.el (electric-buffer-list): Try and make it behave a bit
4832 better with dedicated windows.
4833
4834 2010-05-07 Chong Yidong <cyd@stupidchicken.com>
4835
4836 * Version 23.2 released.
4837
4838 2010-05-07 Deniz Dogan <deniz.a.m.dogan@gmail.com> (tiny change)
4839 Stefan Monnier <monnier@iro.umontreal.ca>
4840
4841 Highlight vendor specific properties.
4842 * textmodes/css-mode.el (css-proprietary-nmstart-re): New var.
4843 (css-proprietary-property): New face.
4844 (css-font-lock-keywords): Use them.
4845
4846 2010-05-07 Eli Zaretskii <eliz@gnu.org>
4847
4848 * cus-start.el (all): Add native condition for tool-bar-* symbols.
4849
4850 2010-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
4851
4852 * textmodes/dns-mode.el (auto-mode-alist): Add entry for .zone files.
4853 * files.el (auto-mode-alist): Remove redundant entries.
4854
4855 * files.el (auto-save-mode): Move to simple.el to fix bootstrap.
4856 * simple.el (auto-save-mode): Move from files.el.
4857 * minibuffer.el (completion--common-suffix): Fix copy&paste error.
4858
4859 2010-05-07 Christian von Roques <roques@mti.ag> (tiny change)
4860
4861 * lisp/epg.el (epg-key-capablity-alist): Add "D" flag (Bug#5592).
4862
4863 2010-05-07 Katsumi Yamaoka <yamaoka@jpl.org>
4864
4865 * mail/binhex.el (binhex-decode-region-internal)
4866 * mail/uudecode.el (uudecode-decode-region-internal)
4867 * net/dns.el (dns-read-string-name, dns-write, dns-read)
4868 (dns-read-type, dns-query)
4869 * pgg-parse.el (pgg-parse-armor)
4870 * pgg.el (pgg-verify-region)
4871 * sha1.el (sha1-string-external): Don't run set-buffer-multibyte for
4872 XEmacs.
4873
4874 * net/imap.el (imap-disable-multibyte): Redefine it as a macro.
4875
4876 2010-05-07 Juanma Barranquero <lekktu@gmail.com>
4877
4878 * progmodes/cperl-mode.el (cperl-mode-unload-function): New function.
4879
4880 Fix use of `filter-buffer-substring' (4th arg NOPROPS removed).
4881 * emulation/cua-base.el (cua-repeat-replace-region):
4882 * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
4883 (cua-cut-region-to-global-mark):
4884 Remove text properties with `set-text-properties'.
4885
4886 2010-05-06 Michael Albinus <michael.albinus@gmx.de>
4887
4888 * net/tramp.el (top, with-progress-reporter):
4889 Use `symbol-function' inside `funcall'.
4890
4891 * net/tramp-compat.el (tramp-compat-file-attributes)
4892 (tramp-compat-delete-file, tramp-compat-delete-directory):
4893 Handle only `wrong-number-of-arguments' error.
4894
4895 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Fix typo.
4896 (tramp-gvfs-handle-file-selinux-context): Use `symbol-function'
4897 inside `funcall'.
4898
4899 2010-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
4900
4901 * minibuffer.el (completion--sreverse, completion--common-suffix):
4902 New functions.
4903 (completion-pcm--merge-completions): Extract common suffix when safe.
4904
4905 * emacs-lisp/easy-mmode.el (define-minor-mode):
4906 Make :variable more flexible.
4907 * files.el (auto-save-mode): Use it to define using define-minor-mode.
4908
4909 2010-05-05 Juri Linkov <juri@jurta.org>
4910
4911 Add `slow' and `history' tags to the desktop data.
4912
4913 * info.el (Info-virtual-nodes) [*Index*]: Add `slow' tag.
4914 (Info-virtual-files) [*Apropos*]: Add `slow' tag.
4915 (Info-finder-find-node): Require `finder.el' to be able
4916 to restore node from the desktop.
4917 (Info-desktop-buffer-misc-data): Save all nodes. Save additional
4918 data `Info-history' and `slow' tag in the assoc list.
4919 (Info-restore-desktop-buffer): Don't restore nodes with the
4920 `slow' tag. Restore `Info-history'.
4921
4922 2010-05-05 Michael Albinus <michael.albinus@gmx.de>
4923
4924 Add FORCE argument to `delete-file'.
4925
4926 * net/ange-ftp.el (ange-ftp-del-tmp-name): Make it a defun,
4927 forcing to delete the temporary file.
4928 (ange-ftp-delete-file): Add FORCE arg.
4929 (ange-ftp-rename-remote-to-remote)
4930 (ange-ftp-rename-local-to-remote, ange-ftp-rename-remote-to-local)
4931 (ange-ftp-load, ange-ftp-compress, ange-ftp-uncompress):
4932 Force file deletion.
4933
4934 * net/tramp-compat.el (tramp-compat-delete-file): New defun.
4935
4936 * net/tramp.el (tramp-handle-delete-file): Add FORCE arg.
4937 (tramp-handle-make-symbolic-link, tramp-handle-load)
4938 (tramp-do-copy-or-rename-file-via-buffer)
4939 (tramp-do-copy-or-rename-file-directly)
4940 (tramp-do-copy-or-rename-file-out-of-band)
4941 (tramp-handle-process-file, tramp-handle-call-process-region)
4942 (tramp-handle-shell-command, tramp-handle-file-local-copy)
4943 (tramp-handle-insert-file-contents, tramp-handle-write-region)
4944 (tramp-delete-temp-file-function): Use `tramp-compat-delete-file'.
4945
4946 * net/tramp-fish.el (tramp-fish-handle-delete-file): Add FORCE arg.
4947 (tramp-fish-handle-make-symbolic-link)
4948 (tramp-fish-handle-process-file): Use `tramp-compat-delete-file'.
4949
4950 * net/tramp-ftp.el (tramp-ftp-file-name-handler):
4951 Use `tramp-compat-delete-file'.
4952
4953 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Add FORCE arg.
4954 (tramp-gvfs-handle-write-region): Use `tramp-compat-delete-file'.
4955
4956 * net/tramp-imap.el (tramp-imap-handle-delete-file): Add FORCE arg.
4957 (tramp-imap-do-copy-or-rename-file): Use `tramp-compat-delete-file'.
4958
4959 * net/tramp-smb.el (tramp-smb-handle-delete-file): Add FORCE arg.
4960 (tramp-smb-handle-copy-file, tramp-smb-handle-file-local-copy)
4961 (tramp-smb-handle-rename-file, tramp-smb-handle-write-region): Use
4962 `tramp-compat-delete-file'.
4963
4964 2010-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
4965
4966 Minor cleanups.
4967 * subr.el (add-minor-mode): Use push.
4968 * mail/supercite.el (sc-electric-mode): Use more descriptive arg name.
4969 * emulation/edt.el (edt-select-mode): Simplify.
4970
4971 Use define-minor-mode in more cases.
4972 * term/tvi970.el (tvi970-set-keypad-mode):
4973 * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
4974 (normal-erase-is-backspace-mode):
4975 * scroll-bar.el (scroll-bar-mode): Use it and define-minor-mode.
4976 (set-scroll-bar-mode-1): (Re)move to its sole caller.
4977 (get-scroll-bar-mode): New function.
4978 * emacs-lisp/cl-macs.el (eq): Handle a non-variable first arg.
4979
4980 Use define-minor-mode for less obvious cases.
4981 * emacs-lisp/easy-mmode.el (define-minor-mode): Add :variable keyword.
4982 * emacs-lisp/cl-macs.el (terminal-parameter, eq): Add setf method.
4983 * international/iso-ascii.el (iso-ascii-mode):
4984 * frame.el (auto-raise-mode, auto-lower-mode):
4985 * composite.el (global-auto-composition-mode): Use define-minor-mode.
4986
4987 2010-05-04 Michael Albinus <michael.albinus@gmx.de>
4988
4989 * net/tramp.el (tramp-methods): Remove "-q" from `tramp-login-args'
4990 in order to see error messages for failed logins.
4991
4992 2010-05-03 Chong Yidong <cyd@stupidchicken.com>
4993
4994 * diff.el (diff-sentinel):
4995
4996 * epg.el (epg--make-temp-file, epg-decrypt-string)
4997 (epg-verify-string, epg-sign-string, epg-encrypt-string):
4998
4999 * jka-compr.el (jka-compr-partial-uncompress)
5000 (jka-compr-call-process, jka-compr-write-region, jka-compr-load):
5001
5002 * server.el (server-sentinel): Use delete-file's new FORCE arg
5003 (Bug#6070).
5004
5005 2010-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
5006
5007 Use define-minor-mode where applicable.
5008 * view.el (view-mode):
5009 * type-break.el (type-break-query-mode)
5010 (type-break-mode-line-message-mode):
5011 * textmodes/reftex.el (reftex-mode):
5012 * term/vt100.el (vt100-wide-mode):
5013 * tar-mode.el (tar-subfile-mode):
5014 * savehist.el (savehist-mode):
5015 * ibuf-ext.el (ibuffer-auto-mode):
5016 * composite.el (auto-composition-mode):
5017 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
5018 Use define-minor-mode.
5019 (vhdl-mode): Use static mode-line format.
5020 (vhdl-mode-line-update): Delete.
5021 (vhdl-create-mode-menu, vhdl-activate-customizations)
5022 (vhdl-hs-minor-mode): Don't bother calling it.
5023
5024 2010-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
5025
5026 * simple.el (with-wrapper-hook): Move.
5027 (buffer-substring-filters): Mark obsolete.
5028 (filter-buffer-substring-functions): New variable.
5029 (filter-buffer-substring): Use it. Remove unused arg `noprops'.
5030
5031 2010-05-01 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
5032 Michael Albinus <michael.albinus@gmx.de>
5033
5034 Implement compression for inline methods.
5035
5036 * net/tramp.el (tramp-inline-compress-start-size): New defcustom.
5037 (tramp-copy-size-limit): Allow also nil.
5038 (tramp-inline-compress-commands): New defconst.
5039 (tramp-find-inline-compress, tramp-get-inline-compress)
5040 (tramp-get-inline-coding): New defuns.
5041 (tramp-get-remote-coding, tramp-get-local-coding): Remove,
5042 replaced by `tramp-get-inline-coding'.
5043 (tramp-handle-file-local-copy, tramp-handle-write-region)
5044 (tramp-method-out-of-band-p): Use `tramp-get-inline-coding'.
5045
5046 2010-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
5047
5048 * bindings.el (mode-line-abbrev-mode, mode-line-auto-fill-mode):
5049 Remove unused functions.
5050
5051 * emacs-lisp/lisp-mode.el (lisp-mode): Use define-derived-mode.
5052 Set find-tag-default-function as a variable rather than a property.
5053
5054 * minibuffer.el (tags-completion-at-point-function): Move to etags.el.
5055 * progmodes/etags.el (tags-completion-at-point-function):
5056 Remove left over interactive spec. Add autoloading stub.
5057 (complete-tag): Use tags-completion-at-point-function.
5058
5059 2010-04-30 Chong Yidong <cyd@stupidchicken.com>
5060
5061 * minibuffer.el (tags-completion-at-point-function): Fix return value.
5062
5063 2010-04-29 Chong Yidong <cyd@stupidchicken.com>
5064
5065 * ido.el (ido-init-completion-maps): Remove C-v binding.
5066 (ido-minibuffer-setup): Don't set cua-inhibit-cua-keys (Bug#5765).
5067
5068 2010-04-29 Chong Yidong <cyd@stupidchicken.com>
5069
5070 * minibuffer.el (tags-completion-at-point-function): New function.
5071 (completion-at-point-functions): Use it.
5072
5073 * progmodes/etags.el (complete-tag): Revert last change.
5074
5075 2010-04-29 Alan Mackenzie <acm@muc.de>
5076
5077 * progmodes/cc-mode.el (c-extend-region-for-CPP): Fix an
5078 off-by-one error (in end of macro position).
5079
5080 2010-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
5081
5082 * net/browse-url.el (browse-url-firefox-program): Use iceweasel if
5083 firefox is absent. Don't autoload.
5084 (browse-url-galeon-program): Don't autoload.
5085
5086 2010-04-28 Chong Yidong <cyd@stupidchicken.com>
5087
5088 * bindings.el (complete-symbol): Move into minibuffer.el.
5089
5090 * minibuffer.el (complete-tag): Move from etags.el. If tags
5091 completion cannot be performed, return nil instead of signalling
5092 an error.
5093 (completion-at-point): Make it an alias for complete-symbol.
5094 (complete-symbol): Move from bindings.el, and replace with the
5095 body of completion-at-point.
5096
5097 * progmodes/etags.el (complete-tag): Move to minibuffer.el.
5098
5099 2010-04-28 Michael Albinus <michael.albinus@gmx.de>
5100
5101 * net/tramp.el (tramp-remote-selinux-p): New defun.
5102 (tramp-handle-file-selinux-context)
5103 (tramp-handle-set-file-selinux-context): Use it.
5104
5105 2010-04-28 Sam Steingold <sds@gnu.org>
5106
5107 * progmodes/bug-reference.el (bug-reference-url-format): Mark as
5108 `safe-local-variable' if the value is a string or a symbol with
5109 the property `bug-reference-url-format'.
5110
5111 2010-04-28 Chong Yidong <cyd@stupidchicken.com>
5112
5113 * progmodes/bug-reference.el (bug-reference-url-format):
5114 Revert 2010-04-27 change due to security risk.
5115
5116 2010-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
5117
5118 Make it possible to locally disable a globally enabled mode.
5119 * simple.el (fundamental-mode): Run fundamental-mode-hook.
5120 * emacs-lisp/derived.el (define-derived-mode): Use fundamental-mode
5121 rather than kill-all-local-variables so it runs fundamental-mode-hook.
5122 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
5123 Use fundamental-mode-hook to run MODE-enable-in-buffers earlier, so
5124 that subsequent hooks get a chance to disable it.
5125
5126 2010-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
5127
5128 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
5129 Avoid re-enabling a minor mode after the user turned the minor mode
5130 off if MODE-enable-in-buffers is run twice (typically once from
5131 fundamental-mode's after-change-major-mode-hook and a second time from
5132 run-mode-hook's own after-change-major-mode-hook).
5133
5134 * emacs-lisp/lisp.el (lisp-complete-symbol): Fail gracefully.
5135
5136 2010-04-27 Sam Steingold <sds@gnu.org>
5137
5138 * progmodes/bug-reference.el (bug-reference-url-format): Mark as
5139 `safe-local-variable' if the value is a string or a function, as
5140 documented and implemented on 2010-04-02.
5141
5142 2010-04-27 Juanma Barranquero <lekktu@gmail.com>
5143
5144 * ido.el (ido-buffer-internal): Bind `ido-use-virtual-buffers' to nil
5145 when method is 'kill.
5146
5147 2010-04-27 Agustín Martín <agustin.martin@hispalinux.es>
5148
5149 * textmodes/ispell.el (ispell-init-process): Fix personal dictionary
5150 condition in default directory check.
5151 (ispell-init-process,ispell-kill-ispell,kill-buffer-hook):
5152 Kill ispell process when killing its associated buffer.
5153
5154 2010-04-27 Jan Djärv <jan.h.d@swipnet.se>
5155
5156 * desktop.el (desktop-kill): ask-if-new: Ask if desktop file exists,
5157 but we aren't using it.
5158
5159 2010-04-25 Jan Djärv <jan.h.d@swipnet.se>
5160
5161 * tool-bar.el (tool-bar-local-item-from-menu): Revert unintended
5162 checkin in 2010-04-23T16:26:11Z!monnier@iro.umontreal.ca.
5163
5164 2010-04-24 Glenn Morris <rgm@gnu.org>
5165
5166 * emacs-lisp/authors.el (authors-obsolete-files-regexps):
5167 Ignore VCS-ignore files, and deleted nextstep preferences files.
5168 (authors-ignored-files): Ignore deleted cedet test files, and "*.el".
5169 (authors-ambiguous-files): New list.
5170 (authors-valid-file-names): Add some deleted files.
5171 (authors-renamed-files-alist): Add font-setting.el, edt-user.doc.
5172 (authors-disambiguate-file-name): New function. (Bug#5501)
5173 (authors-canonical-file-name): Doc fix.
5174 Don't warn about obsolete files.
5175 (authors-canonical-file-name, authors-scan-el):
5176 Use authors-disambiguate-file-name.
5177
5178 * hfy-cmap.el (htmlfontify-load-rgb-file, hfy-fallback-colour-values):
5179 Add autoload cookies.
5180 (htmlfontify-unload-rgb-file, hfy-fallback-colour-values): Add docs.
5181 (generated-autoload-file): Set file-local value to "htmlfontify.el".
5182 * htmlfontify.el (caddr, cadddr): Remove fallback definitions.
5183 They have definitions / compiler macros in cl.el.
5184 (htmlfontify-load-rgb-file, hfy-fallback-colour-values):
5185 Replace manual autoloads with generated ones.
5186 (htmlfontify-unload-rgb-file): Remove autoload.
5187 * Makefile.in (autoloads): Ensure htmlfontify.el is writable.
5188
5189 2010-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
5190
5191 * emacs-lisp/bytecomp.el (byte-compile-set-default): New function.
5192 (byte-compile-setq-default): Optimize for the
5193 single-var case and don't call byte-compile-form in this case to avoid
5194 inf-loop with byte-compile-set-default.
5195
5196 * progmodes/compile.el (compilation-start): Abbreviate default directory.
5197
5198 2010-04-23 Michael Albinus <michael.albinus@gmx.de>
5199
5200 Implement SELINUX backends.
5201
5202 * net/tramp.el (tramp-file-name-handler-alist):
5203 Add `file-selinux-context' and `set-file-selinux-context'.
5204 (tramp-handle-file-selinux-context)
5205 (tramp-handle-set-file-selinux-context): New defuns.
5206 (tramp-handle-copy-file, tramp-do-copy-or-rename-file):
5207 Handle PRESERVE-SELINUX-CONTEXT.
5208
5209 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
5210 Add `file-selinux-context' and `set-file-selinux-context'.
5211 (tramp-gvfs-handle-file-selinux-context)
5212 (tramp-gvfs-handle-set-file-selinux-context): New defuns.
5213 (tramp-gvfs-handle-copy-file): Handle PRESERVE-SELINUX-CONTEXT.
5214
5215 * net/ange-ftp.el (ange-ftp-copy-file):
5216 * net/tramp-fish.el (tramp-fish-handle-copy-file):
5217 * net/tramp-imap.el (tramp-imap-handle-copy-file):
5218 * net/tramp-smb.el (tramp-smb-handle-copy-file):
5219 Add PRESERVE-SELINUX-CONTEXT.
5220
5221 2010-04-22 Michael Albinus <michael.albinus@gmx.de>
5222
5223 Synchronize with Tramp repository.
5224
5225 * net/tramp.el (with-connection-property, tramp-completion-mode-p)
5226 (tramp-action-process-alive, tramp-action-out-of-band)
5227 (tramp-check-for-regexp, tramp-file-name-p, tramp-equal-remote)
5228 (tramp-exists-file-name-handler): Fix docstring.
5229 (with-progress-reporter): New defmacro.
5230 (tramp-do-copy-or-rename-file, tramp-handle-dired-compress-file)
5231 (tramp-maybe-open-connection): Use it.
5232
5233 2010-04-22 Noah Lavine <noah549@gmail.com> (tiny change)
5234
5235 Detect ssh 'ControlMaster' argument automatically in some cases.
5236
5237 * net/tramp.el (tramp-detect-ssh-controlmaster): New defun.
5238 (tramp-default-method): Use it.
5239
5240 2010-04-22 Michael Albinus <michael.albinus@gmx.de>
5241
5242 * net/tramp.el (tramp-handle-copy-file): Add new optional
5243 parameter `preserve-selinux-context'.
5244 (tramp-file-name-for-operation): Add `set-file-selinux-context'.
5245
5246 2010-04-22 Michael Albinus <michael.albinus@gmx.de>
5247
5248 * net/tramp.el (tramp-completion-handle-file-name-all-completions):
5249 Ensure, that non remote files are still checked. Oops.
5250
5251 2010-04-21 Michael Albinus <michael.albinus@gmx.de>
5252
5253 Fix Bug#5840.
5254
5255 * icomplete.el (icomplete-completions): Use `non-essential'.
5256
5257 * net/tramp.el (tramp-connectable-p): New defun.
5258 (tramp-handle-expand-file-name)
5259 (tramp-completion-handle-file-name-all-completions)
5260 (tramp-completion-handle-file-name-completion): Use it.
5261
5262 2010-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
5263
5264 * emacs-lisp/lisp.el (lisp-completion-at-point): Try and handle errors.
5265
5266 2010-04-21 Jan Djärv <jan.h.d@swipnet.se>
5267
5268 * vc-dir.el (vc-dir-tool-bar-map): Add :label on some tool bar items.
5269
5270 * tool-bar.el (tool-bar-setup): Add :label on some tool bar items.
5271
5272 * loadup.el: Load dynamic-setting.el if feature dynamic-setting
5273 is present.
5274
5275 * info.el (info-tool-bar-map): Add labels.
5276
5277 * cus-start.el (all): Add tool-bar-style and tool-bar-max-label-size.
5278
5279 * cus-edit.el (custom-commands): Add labels for tool bar.
5280 (custom-buffer-create-internal, Custom-mode): Adjust for
5281 labels in custom-commands.
5282
5283 * dynamic-setting.el: Renamed from font-setting.el.
5284
5285 2010-04-21 John Wiegley <jwiegley@gmail.com>
5286
5287 * ido.el (ido-init-completion-maps): For ido-switch-buffer, C-o
5288 toggles the use of virtual buffers.
5289 (ido-buffer-internal): Guard `ido-use-virtual-buffers' global value.
5290 (ido-toggle-virtual-buffers): New function.
5291
5292 2010-04-21 Juanma Barranquero <lekktu@gmail.com>
5293
5294 Use `define-derived-mode'; fix window selection; doc fixes.
5295 * play/tetris.el (tetris, tetris-update-speed-function)
5296 (tetris-tty-colors, tetris-x-colors, tetris-move-bottom)
5297 (tetris-move-left, tetris-move-right, tetris-rotate-prev)
5298 (tetris-rotate-next, tetris-end-game, tetris-start-game)
5299 (tetris-pause-game): Fix typos in docstrings.
5300 (tetris-mode-map, tetris-null-map):
5301 Move initialization into declaration.
5302 (tetris-mode): Define with `define-derived-mode';
5303 set show-trailing-whitespace to nil.
5304 (tetris): Prefer window already displaying the "*Tetris*" buffer.
5305
5306 2010-04-21 Karel Klíč <kklic@redhat.com>
5307
5308 * files.el (backup-buffer): Handle SELinux context, and return it
5309 if a backup was made by renaming.
5310 (backup-buffer-copy): Set SELinux context to the target file.
5311 (basic-save-buffer): Set SELinux context of the newly written file.
5312 (basic-save-buffer-1): Now it also returns any SELinux context.
5313 (basic-save-buffer-2): Set SELinux context of the newly created file,
5314 and return it.
5315 * net/tramp.el (tramp-file-name-for-operation):
5316 Add file-selinux-context.
5317
5318 2010-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
5319
5320 Make the log-edit comments use RFC822 format throughout.
5321
5322 * vc.el (vc-checkin, vc-modify-change-comment):
5323 Adjust to new vc-start/finish-logentry.
5324 (vc-find-conflicted-file): New command.
5325 (vc-transfer-file): Adjust to new vc-checkin.
5326 (vc-next-action): Improve scoping.
5327
5328 * vc-hg.el (vc-hg-log-edit-mode): Remove.
5329 (vc-hg-checkin): Remove extra arg. Use log-edit-extract-headers.
5330
5331 * vc-git.el (vc-git-log-edit-mode): Remove.
5332 (vc-git-checkin): Remove extra arg. Use log-edit-extract-headers.
5333 (vc-git-commits-coding-system): Rename from git-commits-coding-system.
5334
5335 * vc-dispatcher.el (vc-log-edit): Shorten names for log-edit-show-files.
5336 (vc-start-logentry): Remove argument `extra'.
5337 (vc-finish-logentry): Remove extra args.
5338
5339 * vc-bzr.el (vc-bzr-log-edit-mode): Remove.
5340 (vc-bzr-checkin): Remove extra arg. Use log-edit-extract-headers.
5341 (vc-bzr-conflicted-files): New function.
5342
5343 * log-edit.el (log-edit-extra-flags)
5344 (log-edit-before-checkin-process): Remove.
5345 (log-edit-summary, log-edit-header, log-edit-unknown-header): New faces.
5346 (log-edit-headers-alist): New var.
5347 (log-edit-header-contents-regexp): New const.
5348 (log-edit-match-to-eoh): New function.
5349 (log-edit-font-lock-keywords): Use them.
5350 (log-edit): Insert a "Summary:" header as default.
5351 (log-edit-mode): Mark font-lock rules as case-insensitive.
5352 (log-edit-done): Cleanup headers.
5353 (log-view-process-buffer): Remove.
5354 (log-edit-extract-headers): New function to replace it.
5355
5356 2010-04-20 Juanma Barranquero <lekktu@gmail.com>
5357
5358 * subr.el (default-direction-reversed): Remove obsolescence info.
5359
5360 2010-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
5361
5362 * vc-dispatcher.el (vc-finish-logentry): Don't mess so badly with the
5363 windows/frames.
5364
5365 * emacs-lisp/lisp.el (lisp-completion-at-point): Complete around point.
5366 I.e. include text after point in the completion region.
5367 Also, return nil when we're not after/in a symbol.
5368
5369 * international/mule-cmds.el (view-hello-file): Don't fiddle with the
5370 default enable-multibyte-characters.
5371
5372 2010-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
5373
5374 * international/mule.el: Help the user choose a valid coding-system.
5375 (read-buffer-file-coding-system): New function.
5376 (set-buffer-file-coding-system): Use it. Prompt the user if the
5377 coding-system cannot encode all the chars.
5378
5379 * vc-bzr.el: Use standard *vc* and *vc-diff* buffers.
5380 (vc-bzr-shelve-show, vc-bzr-shelve-apply)
5381 (vc-bzr-shelve-apply-and-keep, vc-bzr-shelve-snapshot):
5382 Don't use *vc-bzr-shelve*.
5383
5384 2010-04-19 Dan Nicolaescu <dann@ics.uci.edu>
5385
5386 Fix the version number for added files.
5387 * vc-hg.el (vc-hg-working-revision): Check if the file is
5388 registered after hg parent fails (Bug#5961).
5389
5390 2010-04-19 Glenn Morris <rgm@gnu.org>
5391
5392 * htmlfontify.el (htmlfontify-buffer)
5393 (htmlfontify-copy-and-link-dir): Autoload entry points.
5394
5395 2010-04-19 Magnus Henoch <magnus.henoch@gmail.com>
5396
5397 * vc-hg.el (vc-hg-annotate-extract-revision-at-line): Expand file
5398 name relative to the project root (Bug#5960).
5399
5400 2010-04-19 Glenn Morris <rgm@gnu.org>
5401
5402 * vc-git.el (vc-git-print-log): Doc fix.
5403
5404 2010-04-19 Óscar Fuentes <ofv@wanadoo.es>
5405
5406 * ido.el (ido-file-internal): Fix 2009-12-02 change.
5407
5408 2010-04-19 Christoph <cschol2112@googlemail.com> (tiny change)
5409
5410 * progmodes/grep.el (grep-compute-defaults): Fix handling of host
5411 default settings (Bug#5928).
5412
5413 2010-04-19 Glenn Morris <rgm@gnu.org>
5414
5415 * progmodes/fortran.el (fortran-match-and-skip-declaration):
5416 New function.
5417 (fortran-font-lock-keywords-3): Use it. (Bug#1385)
5418
5419 2010-04-19 Kenichi Handa <handa@m17n.org>
5420
5421 * language/indian.el (malayalam-composable-pattern): Fix previous
5422 change (add U+0D4D "SIGN VIRAMA").
5423 (oriya-composable-pattern): Add U+0B30 and fix typo in the regexp.
5424 (tamil-composable-pattern): Fix typo in the regexp.
5425 (telugu-composable-pattern): Fix U+0C4D and typo in the regexp.
5426 (kannada-composable-pattern): Fix U+0CB0 and typo in the regexp.
5427 (malayalam-composable-pattern): Fix U+0D4D and typo in the regexp.
5428
5429 2010-04-19 Chong Yidong <cyd@stupidchicken.com>
5430
5431 * textmodes/tex-mode.el (latex-mode): Revert 2008-03-03 change to
5432 paragraph-separate (Bug#5821).
5433
5434 2010-04-19 Juri Linkov <juri@jurta.org>
5435
5436 Put breadcrumbs on overlay instead of inserting to buffer (bug#5809).
5437
5438 * info.el (Info-find-node-2): Comment out code that skips
5439 breadcrumbs line.
5440 (Info-mouse-follow-link): New command.
5441 (Info-link-keymap): New keymap.
5442 (Info-breadcrumbs): Rename from `Info-insert-breadcrumbs'.
5443 Return a string with links instead of inserting breadcrumbs
5444 to the Info buffer.
5445 (Info-fontify-node): Comment out code that inserts breadcrumbs.
5446 Instead of putting the `invisible' text property over the Info
5447 header, make an overlay over the Info header with the `invisible'
5448 property and `after-string' set to the string returned by
5449 `Info-breadcrumbs'.
5450
5451 2010-04-19 Chong Yidong <cyd@stupidchicken.com>
5452
5453 * help.el (help-window-setup-finish): Doc fix (Bug#5830).
5454 Reported by monkey@sandpframing.com.
5455
5456 2010-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
5457
5458 * tmm.el (tmm-prompt): Remove obsolete call to x-popup-menu.
5459 (tmm-get-keymap): Add key-binding shortcuts now that they're not
5460 available in the "keyseq cache" any more.
5461
5462 * custom.el (defcustom): Add edebug spec.
5463
5464 2010-04-18 Juri Linkov <juri@jurta.org>
5465
5466 Test for special mode-class in view-buffer instead of view-file (bug#5513).
5467
5468 * view.el (view-file, view-buffer): Move test for special mode-class
5469 from view-file to view-buffer.
5470
5471 * tar-mode.el (tar-extract): Turn if's into one cond
5472 like in arc-mode.el.
5473
5474 2010-04-18 Juri Linkov <juri@jurta.org>
5475
5476 Add 7z archive format support (bug#5475).
5477
5478 * arc-mode.el (archive-zip-extract): Try to find 7z executable.
5479 (archive-7z-extract): New defcustom.
5480 (archive-find-type): Add magic string for 7z.
5481 (archive-extract-by-stdout): Add new optional arg `stderr-file'.
5482 If `stderr-file' is non-nil, use `(t stderr-file)' for the
5483 `buffer' arg of `call-process'.
5484 (archive-zip-extract): Check `archive-zip-extract' for "7z" and
5485 call the function `archive-7z-extract' with the variable
5486 `archive-7z-extract' let-bound to `archive-zip-extract'.
5487 (archive-7z-summarize, archive-7z-extract): New functions.
5488
5489 * international/mule.el (auto-coding-alist):
5490 * files.el (auto-mode-alist): Add 7z file extension.
5491
5492 2010-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
5493
5494 * loadup.el: Setup hash-cons for pure data.
5495
5496 Fix duplicate entries in cedet's loaddefs.el files.
5497 * emacs-lisp/autoload.el (autoload-file-load-name): Be more clever.
5498 Should make most file-local generated-autoload-file unnecessary.
5499 (print-readably): Silence warnings.
5500 (autoload-find-destination): Take load-name as an arg to make sure
5501 it's the same as the one that will be in the file.
5502 (autoload-generate-file-autoloads): Adjust to above changes.
5503 Try to make the dataflow a bit simpler.
5504
5505 * cvs-status.el (cvs-refontify): Remove unused.
5506
5507 2010-04-18 Jay Belanger <jay.p.belanger@gmail.com>
5508
5509 * calc.el (calc-mode-map): Bind "O" to `calc-missing-key'.
5510
5511 * calc-bin.el (calc-radix): Have the "O" option turn on
5512 twos-complement mode.
5513
5514 2010-04-17 Jay Belanger <jay.p.belanger@gmail.com>
5515
5516 * calc-ext.el (calc-init-extensions): Add keybinding for 'calc-option'.
5517 Add `calc-option-prefix-help' to calc-help autoloads.
5518 (calc-inverse): Add "Option" to message, as appropriate.
5519 (calc-hyperbolic): Add "Option" to message, as appropriate.
5520 (calc-option, calc-is-option): New functions.
5521
5522 * calc-help.el (calc-full-help): Add `calc-option-help'.
5523 (calc-option-prefix-help): New function.
5524
5525 * calc-misc.el (calc-help): Add "Option" entry.
5526
5527 * calc.el (calc-local-var-list): Add `calc-option-flag'.
5528 (calc-option-flag): New variable.
5529 (calc-do): Set `calc-option-flag to nil.
5530 (calc-set-mode-line): Add "Opt " as appropriate.
5531
5532 2010-04-16 Juri Linkov <juri@jurta.org>
5533
5534 Move scrolling commands from simple.el to window.el
5535 because their primitives are implemented in window.c.
5536
5537 * simple.el (scroll-error-top-bottom)
5538 (scroll-up-command, scroll-down-command, scroll-up-line)
5539 (scroll-down-line, scroll-other-window-down)
5540 (beginning-of-buffer-other-window, end-of-buffer-other-window):
5541 * window.el (scroll-error-top-bottom)
5542 (scroll-up-command, scroll-down-command, scroll-up-line)
5543 (scroll-down-line, scroll-other-window-down)
5544 (beginning-of-buffer-other-window, end-of-buffer-other-window):
5545 Move from simple.el to window.el because their primitives are
5546 implemented in window.c.
5547
5548 2010-04-16 Juri Linkov <juri@jurta.org>
5549
5550 * isearch.el (isearch-lookup-scroll-key): Check both
5551 `isearch-scroll' and `scroll-command' properties.
5552 (scroll-up, scroll-down): Remove `isearch-scroll' property.
5553
5554 * mwheel.el (mwheel-scroll): Remove `isearch-scroll' property.
5555
5556 * simple.el (scroll-up-command, scroll-down-command)
5557 (scroll-up-line, scroll-down-line): Remove `isearch-scroll' property.
5558
5559 2010-04-15 Juri Linkov <juri@jurta.org>
5560
5561 * simple.el (scroll-up-command, scroll-down-command)
5562 (scroll-up-line, scroll-down-line): Put `scroll-command'
5563 property on the these symbols. Remove them from
5564 `scroll-preserve-screen-position-commands'.
5565
5566 * mwheel.el (mwheel-scroll): Put `scroll-command' and
5567 `isearch-scroll' properties on the `mwheel-scroll' symbol.
5568 Remove it from `scroll-preserve-screen-position-commands'.
5569
5570 * isearch.el (isearch-allow-scroll): Doc fix.
5571
5572 2010-04-15 Michael Albinus <michael.albinus@gmx.de>
5573
5574 * net/tramp.el (tramp-error-with-buffer): Don't show the
5575 connection buffer when we are in completion mode.
5576 (tramp-file-name-handler): Catch the error for some operations
5577 when we are in completion mode. This gives the user the chance to
5578 correct the file name in the minibuffer.
5579
5580 2010-04-15 Glenn Morris <rgm@gnu.org>
5581
5582 * progmodes/verilog-mode.el (verilog-forward-sexp): Avoid free variable.
5583
5584 2010-04-15 Juanma Barranquero <lekktu@gmail.com>
5585
5586 Simplify by using `define-derived-mode'.
5587 * info.el (Info-mode):
5588 * calendar/todo-mode.el (todo-mode):
5589 * play/gomoku.el (gomoku-mode): Define with `define-derived-mode'.
5590 (gomoku-mode-map): Move initialization into declaration.
5591
5592 2010-04-14 Michael Albinus <michael.albinus@gmx.de>
5593
5594 Fix Bug#5840.
5595 * ido.el (ido-file-name-all-completions-1):
5596 * minibuffer.el (minibuffer-completion-help):
5597 * net/tramp.el (tramp-completion-mode-p): Use `non-essential'.
5598
5599 2010-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
5600
5601 * simple.el (non-essential): New var.
5602
5603 Add a new field `location' to bookmarks for non-file bookmarks.
5604 * bookmark.el (bookmark-location): Use the new field, if present.
5605 (bookmark-insert-location): Undo last change, not needed any more.
5606 * man.el (Man-bookmark-make-record):
5607 * woman.el (woman-bookmark-make-record): Add `location' field.
5608
5609 2010-04-14 Juri Linkov <juri@jurta.org>
5610
5611 * simple.el (scroll-error-top-bottom): New defcustom.
5612 (scroll-up-command, scroll-down-command): Use it. Doc fix.
5613
5614 * emulation/pc-select.el (pc-select-override-scroll-error):
5615 Obsolete in favor of `scroll-error-top-bottom'.
5616
5617 2010-04-14 Juri Linkov <juri@jurta.org>
5618
5619 * tutorial.el (tutorial--default-keys): Rebind `C-v' to
5620 `scroll-up-command' and `M-v' to `scroll-down-command'.
5621
5622 * emulation/cua-rect.el (cua--init-rectangles):
5623 * forms.el (forms--change-commands):
5624 * image-mode.el (image-mode-map):
5625 Remap scroll-down-command and scroll-up-command
5626 in addition to scroll-down and scroll-up.
5627
5628 2010-04-14 Juri Linkov <juri@jurta.org>
5629
5630 * mwheel.el (scroll-preserve-screen-position-commands):
5631 Add mwheel-scroll to this list of commands.
5632
5633 * simple.el (scroll-preserve-screen-position-commands):
5634 Add scroll-up-command, scroll-down-command, scroll-up-line,
5635 scroll-down-line to this list of commands.
5636
5637 2010-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
5638
5639 * obsolete/complete.el: Move from lisp/complete.el.
5640
5641 * pcomplete.el (pcomplete-here*): Fix mistaken change (bug#5935).
5642
5643 * emacs-lisp/easy-mmode.el (define-minor-mode): Passing a nil argument
5644 to the minor mode function now turns the mode ON unconditionally.
5645
5646 2010-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
5647
5648 * vc-dir.el (vc-dir-kill-line): New command.
5649 (vc-dir-mode-map): Bind it to C-k.
5650
5651 * bookmark.el (bookmark-insert-location): Handle a nil filename.
5652
5653 * woman.el: Add bookmark declarations to silence the compiler.
5654 (bookmark-prop-get): Use `man-args' rather than `filename' as a first
5655 step to compatibility between man and woman bookmarks.
5656 Adjust for Man-default-bookmark-title renaming.
5657 (woman-bookmark-jump): Adjust accordingly. Don't forget to autoload.
5658
5659 * man.el: Add bookmark declarations to silence the compiler.
5660 (Man-name-local-regexp): Make it match NAME as well.
5661 (Man-getpage-in-background): Return the buffer.
5662 (Man-notify-when-ready): Use `case'.
5663 (man-set-default-bookmark-title): Rename to Man-default-bookmark-title.
5664 Don't hardcode "NAME". Simplify.
5665 (Man-bookmark-make-record): Use Man-arguments rather than buffer-name.
5666 Rename from Man-bookmark-make-record.
5667 (Man-bookmark-jump): Rename from man-bookmark-jump. Simplify now that
5668 we have the actual man-args. Use Man-getpage-in-background rather
5669 than `man' since the arg is already processed. Let bookmark.el do the
5670 window handling. Only wait for the relevant process.
5671 Don't forget to autoload.
5672
5673 * bookmark.el (bookmark-default-file): Use locate-user-emacs-file.
5674
5675 2010-04-12 Thierry Volpiatto <thierry.volpiatto@gmail.com>
5676
5677 * woman.el (woman-bookmark-make-record, woman-bookmark-jump):
5678 New functions.
5679 (woman-mode): Setup bookmark support.
5680
5681 * man.el (man-set-default-bookmark-title, man-bookmark-make-record)
5682 (man-bookmark-jump): New functions.
5683 (Man-mode): Setup bookmark support.
5684
5685 2010-04-10 Jari Aalto <jari.aalto@cante.net>
5686
5687 * comint.el (comint-password-prompt-regexp): Use regexp-opt, and
5688 recognize ssh-keygen prompt (Bug#2817).
5689
5690 2010-04-10 Michael Albinus <michael.albinus@gmx.de>
5691
5692 * net/tramp.el (tramp-do-copy-or-rename-file): Add progress reporter.
5693
5694 2010-04-10 Michael Albinus <michael.albinus@gmx.de>
5695
5696 Synchronize with Tramp repository.
5697
5698 * net/tramp.el (tramp-completion-function-alist)
5699 (tramp-file-name-regexp, tramp-chunksize)
5700 (tramp-local-coding-commands, tramp-remote-coding-commands):
5701 Fix docstring.
5702 (tramp-remote-process-environment): Use `format' instead of `concat'.
5703 (tramp-handle-directory-files-and-attributes)
5704 (tramp-get-remote-path): Use `copy-tree'.
5705 (tramp-handle-file-name-all-completions): Backward/ XEmacs
5706 compatibility: Use `completion-ignore-case' if
5707 `read-file-name-completion-ignore-case' does not exist.
5708 (tramp-do-copy-or-rename-file-directly): Do not use
5709 `tramp-handle-file-remote-p'.
5710 (tramp-do-copy-or-rename-file-out-of-band):
5711 Use `tramp-compat-delete-directory'.
5712 (tramp-do-copy-or-rename-file-out-of-band)
5713 (tramp-compute-multi-hops, tramp-maybe-open-connection):
5714 Use `format-spec-make'.
5715 (tramp-find-foreign-file-name-handler)
5716 (tramp-advice-make-auto-save-file-name)
5717 (tramp-set-auto-save-file-modes): Remove superfluous check for
5718 `stringp'. This is done inside `tramp-tramp-file-p'.
5719 (tramp-debug-outline-regexp): New defconst.
5720 (tramp-get-debug-buffer): Use it.
5721 (tramp-check-for-regexp): Use (forward-line 1).
5722 (tramp-set-auto-save-file-modes): Adapt version check.
5723
5724 * net/tramp-compat.el (tramp-advice-file-expand-wildcards):
5725 Wrap call of `featurep' for 2nd argument.
5726 (tramp-compat-make-temp-file): Simplify fallback implementation.
5727 (tramp-compat-copy-tree): Remove function.
5728 (tramp-compat-delete-directory): Provide implementation for older
5729 Emacsen.
5730
5731 * net/tramp-fish.el (tramp-fish-handle-directory-files-and-attributes):
5732 Do not use `tramp-fish-handle-file-attributes.
5733
5734 * net/trampver.el: Update release number.
5735
5736 2010-04-10 Glenn Morris <rgm@gnu.org>
5737
5738 * progmodes/compile.el (compilation-save-buffers-predicate):
5739 Add missing :version tag.
5740
5741 2010-04-09 Sam Steingold <sds@gnu.org>
5742
5743 * progmodes/compile.el (compilation-save-buffers-predicate):
5744 Remove the "autoload" cookie.
5745
5746 * progmodes/bug-reference.el (turn-on-bug-reference-mode)
5747 (turn-on-bug-reference-prog-mode): Remove, `bug-reference-mode'
5748 and `bug-reference-prog-mode' can be used in hooks directly.
5749
5750 2010-04-09 Dan Nicolaescu <dann@ics.uci.edu>
5751
5752 Add --author support to git commit.
5753 * vc-git.el (vc-git-checkin): Pass extra-args to the commit command.
5754 (vc-git-log-edit-mode): New minor mode.
5755 (log-edit-mode, log-edit-extra-flags, log-edit-mode):
5756 New declarations.
5757
5758 2010-04-09 Eric Raymond <esr@snark.thyrsus.com>
5759
5760 * vc-hooks.el, vc-git.el: Improve documentation comments.
5761
5762 2010-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
5763
5764 Fix some of the problems in defsubst* (bug#5728).
5765 * emacs-lisp/cl-macs.el (defsubst*): Don't substitute non-trivial args.
5766 (cl-defsubst-expand): Do the substitutions simultaneously (bug#5728).
5767
5768 2010-04-07 Sam Steingold <sds@gnu.org>
5769
5770 * progmodes/compile.el (compilation-save-buffers-predicate):
5771 New custom variable.
5772 (compile, recompile): Pass it to `save-some-buffers'.
5773
5774 2010-04-07 Jan Djärv <jan.h.d@swipnet.se>
5775
5776 * wid-edit.el (widget-choose): Move cursor to the second line of
5777 the buffer (Bug#5695).
5778
5779 2010-04-07 Dan Nicolaescu <dann@ics.uci.edu>
5780
5781 Add new VC methods: vc-log-incoming and vc-log-outgoing.
5782 * vc.el (vc-print-log-setup-buttons): New function split out from
5783 vc-print-log-internal.
5784 (vc-log-internal-common): New function, a parametrized version of
5785 vc-print-log-internal.
5786 (vc-print-log-internal): Just call vc-log-internal-common with the
5787 right arguments.
5788 (vc-incoming-outgoing-internal):
5789 (vc-log-incoming, vc-log-outgoing): New functions.
5790 (vc-log-view-type): New permanent local variable.
5791
5792 * vc-hooks.el (vc-menu-map): Bind vc-log-incoming and vc-log-outgoing.
5793
5794 * vc-bzr.el (vc-bzr-log-view-mode): Use vc-log-view-type instead
5795 of the dynamic bound vc-short-log.
5796 (vc-bzr-log-incoming, vc-bzr-log-outgoing): New functions.
5797
5798 * vc-git.el (vc-git-log-outgoing): New function.
5799 (vc-git-log-view-mode): Use vc-log-view-type instead
5800 of the dynamic bound vc-short-log.
5801
5802 * vc-hg.el (vc-hg-log-view-mode): Use vc-log-view-type instead
5803 of the dynamic bound vc-short-log. Highlight the tag.
5804 (vc-hg-log-incoming, vc-hg-log-outgoing): New functions.
5805 (vc-hg-outgoing, vc-hg-incoming, vc-hg-outgoing-mode):
5806 (vc-hg-incoming-mode): Remove.
5807 (vc-hg-extra-menu-map): Do not bind vc-hg-incoming and vc-hg-outgoing.
5808
5809 2010-04-07 Dan Nicolaescu <dann@ics.uci.edu>
5810
5811 Fix default-directory for vc-root-diff.
5812 * vc.el (vc-root-diff): Bind default-directory to the root
5813 directory for the diff command.
5814
5815 2010-04-07 Michael McNamara <mac@mail.brushroad.com>
5816
5817 * progmodes/verilog-mode.el (verilog-forward-sexp):
5818 (verilog-calc-1): Support "disable fork" and "fork wait" multi
5819 word keywords, suggested by Steve Pearlmutter.
5820 (verilog-pretty-declarations): Support lineup of declarations in
5821 port lists.
5822 (verilog-skip-backward-comments, verilog-skip-forward-comment-p):
5823 fix bug for /* / comments.
5824 (verilog-backward-syntactic-ws, verilog-forward-syntactic-ws):
5825 Speed up and simplfy as this is never called with a bound.
5826 (verilog-pretty-declarations): Enhance to line up declarations
5827 inside a parameter list, suggested by Alan Morgan.
5828 (verilog-pretty-expr): Tune assignment regular expression match
5829 string for corner cases; also use markers instead of character
5830 number as indent changes the later.
5831
5832 2010-04-07 Wilson Snyder <wsnyder@wsnyder.org>
5833
5834 * progmodes/verilog-mode.el (verilog-type-keywords): Fix pulldown
5835 as missing keyword.
5836 (verilog-read-sub-decls-line): Fix comments in AUTO_TEMPLATE
5837 causing truncation of AUTOWIRE signals. Reported by Bruce Tennant.
5838 (verilog-auto-inst, verilog-auto-inst-port): Add vl_mbits for
5839 AUTO_TEMPLATEs needing multiple array bits. Suggested by Bruce
5840 Tennant.
5841 (verilog-keywords):
5842 (verilog-1800-2005-keywords, verilog-1800-2009-keywords): Add IEEE
5843 1800-2009 keywords, including "global.".
5844
5845 2010-04-06 John Wiegley <jwiegley@gmail.com>
5846
5847 * ido.el (ido-add-virtual-buffers-to-list): Fix duplicated names
5848 appearing in buffer list (if a live buffer name matched a recentf
5849 file basename). Should use uniquify to offer a real solution.
5850
5851 2010-04-06 John Wiegley <jwiegley@gmail.com>
5852
5853 * ido.el (ido-use-virtual-buffers, ido-virtual): Move a ChangeLog
5854 comment to code, and add a :version tag.
5855 (ido-virtual-buffers): Move defvar to fix byte-compiler warning.
5856
5857 2010-04-06 Juanma Barranquero <lekktu@gmail.com>
5858
5859 Enable recentf-mode if using virtual buffers.
5860 * ido.el (recentf-list): Declare for byte-compiler.
5861 (ido-virtual-buffers): Move up to silence byte-compiler. Add docstring.
5862 (ido-make-buffer-list): Simplify.
5863 (ido-add-virtual-buffers-to-list): Simplify. Enable recentf-mode.
5864
5865 2010-04-05 Juri Linkov <juri@jurta.org>
5866
5867 Scrolling commands which scroll a line instead of full screen.
5868 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01452.html
5869
5870 * simple.el (scroll-up-line, scroll-down-line): New commands.
5871 Put property isearch-scroll=t on them.
5872
5873 * emulation/ws-mode.el (scroll-down-line, scroll-up-line):
5874 Remove commands.
5875
5876 2010-04-05 Juri Linkov <juri@jurta.org>
5877
5878 Scrolling commands which do not signal errors at top/bottom.
5879 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01452.html
5880
5881 * simple.el (scroll-up-command, scroll-down-command): New commands.
5882 Put property isearch-scroll=t on them.
5883
5884 * bindings.el (global-map): Rebind [prior] from `scroll-down' to
5885 `scroll-down-command' and [next] from `scroll-up' to
5886 `scroll-up-command'.
5887
5888 * emulation/cua-base.el: Put property CUA=move on
5889 `scroll-up-command' and `scroll-down-command'.
5890 (cua--init-keymaps): Remap `scroll-up-command' to `cua-scroll-up'
5891 and `scroll-down-command' to `cua-scroll-down'.
5892
5893 2010-04-05 Juanma Barranquero <lekktu@gmail.com>
5894
5895 * help.el (describe-mode): Return nil.
5896
5897 2010-04-04 John Wiegley <jwiegley@gmail.com>
5898
5899 * ido.el (ido-use-virtual-buffers): New variable to indicate
5900 whether "virtual buffer" support is enabled for IDO.
5901 (ido-virtual): Face used to indicate virtual buffers in the list.
5902 (ido-buffer-internal): If a buffer is chosen, and no such buffer
5903 exists, but a virtual buffer of that name does (which would be why
5904 it was in the list), recreate the buffer by reopening the file.
5905 (ido-make-buffer-list): If virtual buffers are being used, call
5906 `ido-add-virtual-buffers-to-list' before the make list hook.
5907 (ido-virtual-buffers): New variable which contains a copy of the
5908 current contents of the `recentf-list', albeit pared down for the
5909 sake of speed, and with proper faces applied.
5910 (ido-add-virtual-buffers-to-list): Using the `recentf-list',
5911 create a list of "virtual buffers" to present to the user in
5912 addition to the currently open set. Note that this logic could
5913 get rather slow if that list is too large. With the default
5914 `recentf-max-saved-items' of 200, there is little speed penalty.
5915
5916 2010-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
5917
5918 * font-lock.el: Require CL when compiling.
5919 (font-lock-turn-on-thing-lock): Use `case'.
5920
5921 2010-04-03 Eli Zaretskii <eliz@gnu.org>
5922
5923 * emacs-lisp/authors.el (authors-fixed-entries): Add entry for Eli
5924 Zaretskii.
5925
5926 2010-04-02 Juri Linkov <juri@jurta.org>
5927
5928 * ehelp.el (electric-help-orig-major-mode):
5929 New buffer-local variable.
5930 (electric-help-mode): Set it to original major-mode. Doc fix.
5931 (with-electric-help): Use `electric-help-orig-major-mode' instead
5932 of (default-value 'major-mode). Doc fix.
5933 http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00069.html
5934
5935 2010-04-02 Sam Steingold <sds@gnu.org>
5936
5937 * vc-hg.el (vc-hg-push, vc-hg-pull): Use `apply' when calling
5938 `vc-hg-command' with a list of flags.
5939
5940 * progmodes/bug-reference.el (bug-reference-bug-regexp):
5941 Also accept "patch" and "RFE".
5942 (bug-reference-fontify): `bug-reference-url-format' can also be a
5943 function to be able to handle the bug kind.
5944 (turn-on-bug-reference-mode, turn-on-bug-reference-prog-mode): Add.
5945
5946 2010-04-02 Jan Djärv <jan.h.d@swipnet.se>
5947
5948 * tmm.el (tmm-get-keymap): Check with symbolp before passing
5949 value to fboundp, it may not be a symbol.
5950
5951 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
5952
5953 * cus-edit.el (custom-buffer-sort-alphabetically): Update :version.
5954
5955 2010-03-31 Juri Linkov <juri@jurta.org>
5956
5957 * simple.el (next-line, previous-line): Re-throw a signal
5958 with `signal' instead of using `ding'.
5959 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01432.html
5960
5961 2010-03-31 Juri Linkov <juri@jurta.org>
5962
5963 * simple.el (keyboard-escape-quit): Raise deselecting the active
5964 region higher than exiting the minibuffer.
5965 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00904.html
5966
5967 2010-03-31 Juri Linkov <juri@jurta.org>
5968
5969 * image.el (image-animated-p): Use `image-metadata' instead of
5970 `image-extension-data'. Get GIF extenstion data from metadata
5971 property `extension-data'.
5972
5973 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
5974
5975 * simple.el (append-to-buffer): Simplify.
5976
5977 2010-03-31 Tomas Abrahamsson <tab@lysator.liu.se>
5978
5979 * textmodes/artist.el (artist-mode): Fix typo in docstring.
5980 Reported by Alex Schröder <kensanata@gmail.com>. (Bug#5807)
5981
5982 2010-03-31 Kenichi Handa <handa@m17n.org>
5983
5984 * language/sinhala.el (composition-function-table): Fix regexp for
5985 the new Unicode specification.
5986
5987 * language/indian.el (devanagari-composable-pattern)
5988 (tamil-composable-pattern, kannada-composable-pattern)
5989 (malayalam-composable-pattern): Adjust for the new Unicode
5990 specification.
5991 (bengali-composable-pattern, gurmukhi-composable-pattern)
5992 (gujarati-composable-pattern, oriya-composable-pattern)
5993 (telugu-composable-pattern): New variables to cope with the new
5994 Unicode specification. Use them in composition-function-table.
5995
5996 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
5997
5998 Make tmm-menubar work for the Buffers menu again (bug#5726).
5999 * tmm.el (tmm-prompt): Also handle keymap entries in the form of
6000 vectors rather than cons cells, as used in menu-bar-update-buffers.
6001
6002 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
6003
6004 * progmodes/js.el (js-auto-indent-flag, js-mode-map)
6005 (js-insert-and-indent): Revert 2009-08-15 change, restoring
6006 electric punctuation for "{}();,:" (Bug#5586).
6007
6008 * mail/sendmail.el (mail-default-directory): Doc fix.
6009
6010 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
6011
6012 * mail/sendmail.el (mail-default-directory): Doc fix.
6013
6014 2010-03-31 Eli Zaretskii <eliz@gnu.org>
6015
6016 * subr.el (version-regexp-alist, version-to-list)
6017 (version-list-<, version-list-=, version-list-<=)
6018 (version-list-not-zero, version<, version<=, version=): Doc fix.
6019 (Bug#5744).
6020
6021 2010-02-31 Dan Nicolaescu <dann@ics.uci.edu>
6022
6023 * vc.el (vc-root-diff): Doc fix.
6024
6025 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
6026
6027 * vc.el (vc-print-log, vc-print-root-log): Doc fix.
6028
6029 * simple.el (append-to-buffer): Fix last change.
6030
6031 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
6032
6033 * simple.el (append-to-buffer): Ensure that point is preserved if
6034 BUFFER is the current buffer. Suggested by YAMAMOTO Mitsuharu.
6035 (Bug#5749)
6036
6037 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
6038
6039 * files.el (auto-mode-case-fold): Change default to t.
6040
6041 2010-03-30 Juri Linkov <juri@jurta.org>
6042
6043 * dired-x.el (dired-omit-mode): Doc fix.
6044
6045 2010-03-30 Juri Linkov <juri@jurta.org>
6046
6047 * replace.el (occur-accumulate-lines): Move occur-engine related
6048 functions `occur-accumulate-lines' and `occur-engine-add-prefix'
6049 to be located after `occur-engine'.
6050
6051 2010-03-30 Juri Linkov <juri@jurta.org>
6052
6053 Make occur handle multi-line matches cleanly with context.
6054 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01280.html
6055
6056 * replace.el (occur-accumulate-lines): Add optional arg `pt'.
6057 (occur-engine): Add local variables `ret', `prev-after-lines',
6058 `prev-lines'. Use more arguments for `occur-context-lines'.
6059 Set first elem of its returned list to `data', and the second elem
6060 to `prev-after-lines'. Don't print the separator line.
6061 In the end, print remaining context after-lines.
6062 (occur-context-lines): Add new arguments `begpt', `endpt',
6063 `lines', `prev-lines', `prev-after-lines'. Rewrite to combine
6064 after-lines of the previous match with before-lines of the
6065 current match and not overlap them. Return a list with two
6066 values: the output line and the list of context after-lines.
6067
6068 2010-03-30 Juri Linkov <juri@jurta.org>
6069
6070 * replace.el (occur-accumulate-lines): Fix a bug where the first
6071 context line at the beginning of the buffer was missing.
6072
6073 2010-03-30 Eli Zaretskii <eliz@gnu.org>
6074
6075 * files.el: Make bidi-display-reordering safe variable for boolean
6076 values.
6077
6078 2010-03-29 Phil Hagelberg <phil@evri.com>
6079 Chong Yidong <cyd@stupidchicken.com>
6080
6081 * subr.el: Extend progress reporters to perform "spinning".
6082 (progress-reporter-update, progress-reporter-do-update):
6083 Handle non-numeric value arguments.
6084 (progress-reporter--pulse-characters): New var.
6085
6086 2010-03-28 Chong Yidong <cyd@stupidchicken.com>
6087
6088 * progmodes/compile.el (compilation-start): Fix regexp detection
6089 of initial cd command (Bug#5771).
6090
6091 2010-03-28 Stefan Guath <stefan@automata.se> (tiny change)
6092
6093 * find-dired.el (find-dired): Use read-directory-name (Bug#5777).
6094
6095 2010-03-27 Nick Roberts <nickrob@snap.net.nz>
6096
6097 Restore GDB/MI fuctionality removed by 2009-12-29T07:15:34Z!nickrob@snap.net.nz.
6098 * lisp/progmodes/gdb-mi.el: Restore.
6099 * lisp/progmodes/gdb-ui.el: Remove.
6100 * lisp/progmodes/gud.el: Re-accommodate for gdb-mi.el.
6101
6102 2010-03-25 Glenn Morris <rgm@gnu.org>
6103
6104 * desktop.el (desktop-save-buffer-p): Don't mistakenly include
6105 all dired buffers, even tramp ones. (Bug#5755)
6106
6107 2010-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
6108
6109 Add "union tags" in mpc.el.
6110 * mpc.el: Remove backward compatibility code.
6111 (mpc-browser-tags): Change default.
6112 (mpc--find-memoize-union-tags): New var.
6113 (mpc-cmd-flush, mpc-cmd-special-tag-p): New fun.
6114 (mpc-cmd-find): Handle the case where the playlist does not exist.
6115 Handle union-tags.
6116 (mpc-cmd-list): Use mpc-cmd-special-tag-p. Handle union-tags.
6117 (mpc-cmd-add): Use mpc-cmd-flush.
6118 (mpc-tagbrowser-tag-name): New fun.
6119 (mpc-tagbrowser-buf): Use it.
6120 (mpc-songs-refresh): Use cond. Move to point-min as a fallback.
6121
6122 2010-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
6123
6124 Misc cleanup.
6125 * progmodes/make-mode.el (makefile-bsdmake-rule-action-regex):
6126 Use replace-regexp-in-string.
6127 (makefile-mode-abbrev-table): Merge defvar and define-abbrev-table.
6128 (makefile-imake-mode-syntax-table): Move init into defvar.
6129 (makefile-mode): Use define-derived-mode.
6130
6131 * progmodes/make-mode.el (makefile-rule-action-regex): Backtrack less.
6132 (makefile-make-font-lock-keywords): Adjust rule since submatch 1 may
6133 not be present any more.
6134
6135 2010-03-24 Juanma Barranquero <lekktu@gmail.com>
6136
6137 * faces.el (set-face-attribute): Fix typo in docstring.
6138 (face-valid-attribute-values): Reflow docstring.
6139
6140 2010-03-24 Glenn Morris <rgm@gnu.org>
6141
6142 * textmodes/flyspell.el (sgml-lexical-context): Autoload it (Bug#5752).
6143
6144 2010-03-24 Chong Yidong <cyd@stupidchicken.com>
6145
6146 * indent.el (indent-for-tab-command): Doc fix.
6147
6148 2010-03-24 Alan Mackenzie <acm@muc.de>
6149
6150 * progmodes/cc-engine.el (c-remove-stale-state-cache):
6151 Fix off-by-one error. Fixes bug #5747.
6152
6153 2010-03-24 Juanma Barranquero <lekktu@gmail.com>
6154
6155 * image-dired.el (image-dired-display-thumbs): Fix typo in docstring.
6156 (image-dired-read-comment): Doc fix.
6157
6158 * json.el (json-object-type, json-array-type, json-key-type)
6159 (json-false, json-null, json-read-number):
6160 * minibuffer.el (completion-in-region-functions):
6161 * calendar/cal-tex.el (cal-tex-daily-end, cal-tex-number-weeks)
6162 (cal-tex-cursor-week):
6163 * emacs-lisp/trace.el (trace-function):
6164 * eshell/em-basic.el (eshell/printnl):
6165 * eshell/em-dirs.el (eshell-last-dir-ring, eshell-parse-drive-letter)
6166 (eshell-read-last-dir-ring, eshell-write-last-dir-ring):
6167 * obsolete/levents.el (allocate-event, event-key, event-object)
6168 (event-point, event-process, event-timestamp, event-to-character)
6169 (event-window, event-x, event-x-pixel, event-y, event-y-pixel):
6170 * textmodes/reftex-vars.el (reftex-index-macros-builtin)
6171 (reftex-section-levels, reftex-auto-recenter-toc, reftex-toc-mode-hook)
6172 (reftex-cite-punctuation, reftex-search-unrecursed-path-first)
6173 (reftex-highlight-selection): Fix typos in docstrings.
6174
6175 2010-03-24 Juanma Barranquero <lekktu@gmail.com>
6176
6177 * minibuffer.el (completion-in-region-functions): Fix docstring typos.
6178
6179 2010-03-24 Glenn Morris <rgm@gnu.org>
6180
6181 * mail/rmail.el (rmail-highlight-face): Restore option deleted
6182 2008-02-13 without comment; mark it obsolete.
6183 (rmail-highlight-headers): Use rmail-highlight-face once more.
6184
6185 2010-03-24 Chong Yidong <cyd@stupidchicken.com>
6186
6187 * woman.el (woman2-process-escapes): Only consume the newline if
6188 the filler character is on a line by itself (Bug#5729).
6189
6190 2010-03-24 Kenichi Handa <handa@m17n.org>
6191
6192 * language/indian.el (devanagari-composable-pattern): Add more
6193 consonants.
6194
6195 2010-03-24 Michael Albinus <michael.albinus@gmx.de>
6196
6197 * net/trampver.el: Update release number.
6198
6199 2010-03-24 Glenn Morris <rgm@gnu.org>
6200
6201 * Makefile.in (ELCFILES): Add cedet/semantic/imenu.el.
6202
6203 2010-03-24 Michael Albinus <michael.albinus@gmx.de>
6204
6205 * net/tramp.el (tramp-find-executable):
6206 Use `tramp-get-connection-buffer'. Make the regexp for checking
6207 output of "wc -l" more robust.
6208 (tramp-find-shell): Use another shell but /bin/sh on OpenSolaris.
6209 (tramp-open-connection-setup-interactive-shell): Remove workaround
6210 for OpenSolaris bug, it is not needed anymore.
6211
6212 2010-03-24 Glenn Morris <rgm@gnu.org>
6213
6214 * emacs-lisp/cl-macs.el (defsubst*): Add autoload cookie. (Bug#4427)
6215
6216 2010-03-24 Wilson Snyder <wsnyder@wsnyder.org>
6217
6218 * files.el (auto-mode-alist): Accept more verilog file patterns.
6219
6220 2010-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
6221
6222 * vc-dir.el (vc-dir-headers): Abbreviate the working dir.
6223
6224 2010-03-24 Glenn Morris <rgm@gnu.org>
6225
6226 * vc-bzr.el (vc-bzr-log-edit-mode): Add --fixes support to
6227 log-edit-before-checkin-process.
6228
6229 * vc.el (vc-modify-change-comment): Pass MODE to vc-start-logentry.
6230
6231 * vc.el, vc-bzr.el, vc-hg.el (log-edit-mode): Declare.
6232
6233 * vc-dispatcher.el (vc-start-logentry): Doc fix.
6234 (log-view-process-buffer, log-edit-extra-flags): Declare.
6235
6236 * log-edit.el (log-edit-before-checkin-process): Doc fix.
6237
6238 2010-03-23 Sam Steingold <sds@gnu.org>
6239
6240 Fix bug#5620: recalculate all markers on compilation buffer
6241 modifications, not on file modifications.
6242 * progmodes/compile.el (buffer-modtime): New buffer-local variable:
6243 the buffer modification time, for buffers not associated with files.
6244 (compilation-mode): Create it.
6245 (compilation-filter): Update it.
6246 (compilation-next-error-function): Use it instead of
6247 `visited-file-modtime' for timestamp.
6248
6249 2010-03-23 Juri Linkov <juri@jurta.org>
6250
6251 Implement Occur multi-line matches.
6252 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01044.html
6253
6254 * replace.el (occur): Doc fix.
6255 (occur-engine): Set `begpt' to the beginning of the first line.
6256 Set `endpt' to the end of the last match line. At first, count
6257 line numbers between `origpt' and `begpt'. Split out code from
6258 `out-line' variable to new let-bindings `match-prefix' and
6259 `match-str'. In `out-line' add non-numeric prefix to all
6260 non-first lines of multi-line matches. Finally, count lines
6261 between `begpt' and `endpt' and add to `lines'.
6262
6263 2010-03-23 Juri Linkov <juri@jurta.org>
6264
6265 * replace.el (occur-accumulate-lines, occur-engine):
6266 Use `occur-engine-line' instead of duplicate code.
6267 (occur-engine-line): New function created from duplicate code
6268 in `occur-accumulate-lines' and `occur-engine'.
6269
6270 * replace.el (occur-engine-line): Add optional arg `keep-props'.
6271 (occur-accumulate-lines, occur-engine): Add arg `keep-props'.
6272
6273 2010-03-23 Juri Linkov <juri@jurta.org>
6274
6275 * finder.el: Remove TODO tasks.
6276
6277 * info.el (Info-finder-find-node): Add node "all"
6278 with all package info. Handle a list of multiple keywords
6279 separated by comma.
6280 (info-finder): In interactive use with a prefix argument,
6281 use `completing-read-multiple' to read a list of keywords
6282 separated by comma.
6283
6284 2010-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
6285
6286 Add a new completion style `substring'.
6287 * minibuffer.el (completion-basic--pattern): New function.
6288 (completion-basic-try-completion, completion-basic-all-completions):
6289 Use it.
6290 (completion-substring--all-completions)
6291 (completion-substring-try-completion)
6292 (completion-substring-all-completions): New functions.
6293 (completion-styles-alist): New style `substring'.
6294
6295 2010-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
6296
6297 Get rid of .elc files after removal of the corresponding .el.
6298 * Makefile.in (compile-clean): New target.
6299 (compile-main): Use it.
6300
6301 2010-03-22 Jan Djärv <jan.h.d@swipnet.se>
6302
6303 * Makefile.in (compile-main): cd to $(lisp) in a sub-shell, so we
6304 don't do make there. When compiling with separate object dir, there
6305 is no Makefile there.
6306
6307 2010-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
6308
6309 Get rid of the ELCFILES abomination, again.
6310 * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
6311 (all, compile): Don't call compile-last.
6312 (compile-main): Build the "elcfiles" list dynamically.
6313 (compile-targets): New (internal) target.
6314
6315 2010-03-21 Andreas Schwab <schwab@linux-m68k.org>
6316
6317 * Makefile.in (top_srcdir): Define.
6318 (abs_top_builddir): Define.
6319 (srcdir): Don't append `/..'.
6320 (EMACS): Use ${abs_top_builddir}.
6321 (all, compile, compile-always, compile-last): Don't set emacswd.
6322 (update-subdirs, update-authors): Use $(top_srcdir) instead of
6323 $(srcdir).
6324 (lisp): Use $(srcdir) instead of @srcdir@.
6325
6326 2010-03-21 Juri Linkov <juri@jurta.org>
6327
6328 Fix message of multi-line occur regexps and multi-buffer header lines.
6329 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00457.html
6330
6331 * replace.el (occur-1): Don't display regexp if it is longer
6332 than window-width. Use `query-replace-descr' to display regexp.
6333 (occur-engine): Don't display regexp in the buffer header for
6334 multi-buffer occur. Display a separate header line with total
6335 match count and regexp for multi-buffer occur.
6336 Use `query-replace-descr' to display regexp.
6337
6338 2010-03-20 Teodor Zlatanov <tzz@lifelogs.com>
6339
6340 * net/secrets.el: Fix parenthesis.
6341 (secrets-enabled): Fix parenthesis.
6342
6343 2010-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
6344
6345 Use more relative file and directory names.
6346 * Makefile.in (EMACS): Arrange for it to work when we chdir.
6347 (setwins, setwins_almost, setwins_for_subdirs):
6348 Don't `cd'; output relative names.
6349 (all, compile, compile-always, compile-last): Set emacswd.
6350 (custom-deps, finder-data, autoloads, update-subdirs, compile-last):
6351 Just cd to the lisp source dir so we can use relative file names.
6352
6353 * outline.el (hide-sublevels): Unfix the paren non-typo! (bug#5738).
6354
6355 2010-03-20 Glenn Morris <rgm@gnu.org>
6356
6357 * textmodes/rst.el: Use faces for font-lock customization, and make the
6358 old -face variables obsolete.
6359 (rst-block, rst-external, rst-definition, rst-directive, rst-comment)
6360 (rst-emphasis1, rst-emphasis2, rst-literal, rst-reference): New faces.
6361 (rst-block-face, rst-external-face, rst-definition-face)
6362 (rst-directive-face, rst-comment-face, rst-emphasis1-face)
6363 (rst-emphasis2-face, rst-literal-face, rst-reference-face):
6364 Make obsolete.
6365 (rst-font-lock-keywords-function): Update for above changes.
6366
6367 2010-03-20 Juri Linkov <juri@jurta.org>
6368
6369 * s-region.el:
6370 * obsolete/s-region.el: Move to obsolete.
6371
6372 2010-03-19 Juanma Barranquero <lekktu@gmail.com>
6373
6374 * vc-dispatcher.el (vc-do-command): Remove reference to `vc-path'.
6375
6376 2010-03-19 Dan Nicolaescu <dann@ics.uci.edu>
6377
6378 * vc-hooks.el (vc-path): Remove variable and obsolete declaration.
6379
6380 2010-03-19 Dan Nicolaescu <dann@ics.uci.edu>
6381
6382 Add special markup processing for commit logs.
6383 * log-edit.el (log-edit-extra-flags): New variable.
6384 (log-edit): Add new argument MODE. Use that mode when non-nil
6385 instead of the log-view-mode.
6386 (log-view-process-buffer): New function.
6387
6388 * vc.el: Document that the checkin method takes optional
6389 arguments. Document new backend specific method: log-view-mode.
6390 (vc-default-log-edit-mode): New function.
6391 (vc-checkin): Use a backend specific log-view-mode.
6392 Pass extra arguments to the checkin method.
6393 (vc-modify-change-comment): Pass a dummy extra argument.
6394
6395 * vc-dispatcher.el (vc-log-edit): Add a mode argument, pass it to
6396 log-edit.
6397 (vc-start-logentry): Add a mode argument, pass it to vc-log-edit.
6398 (vc-finish-logentry): Process the log buffer before passing it
6399 down. Pass log-edit-extra-flags.
6400
6401 * vc-bzr.el (vc-bzr-checkin): Pass extra arguments to the commit
6402 command.
6403 (log-edit-extra-flags, log-edit-before-checkin-process):
6404 New declarations.
6405
6406 * vc-hg.el (vc-hg-checkin): Pass extra arguments to the commit
6407 command.
6408 (log-edit-extra-flags, log-edit-before-checkin-process):
6409 New declarations.
6410 (vc-hg-log-edit-mode): New derived mode.
6411
6412 * vc-arch.el (vc-arch-checkin):
6413 * vc-cvs.el (vc-cvs-checkin):
6414 * vc-git.el (vc-git-checkin):
6415 * vc-mtn.el (vc-mtn-checkin):
6416 * vc-rcs.el (vc-rcs-checkin):
6417 * vc-sccs.el (vc-sccs-checkin):
6418 * vc-svn.el (vc-svn-checkin): Add an optional ignored argument.
6419
6420 2010-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
6421
6422 * outline.el (hide-sublevels): Don't hide trailing newline (and fix
6423 parent typo).
6424
6425 2010-03-19 Glenn Morris <rgm@gnu.org>
6426
6427 * password-cache.el (password-cache, password-cache-expiry): Autoload.
6428
6429 2010-03-18 Glenn Morris <rgm@gnu.org>
6430
6431 * emacs-lisp/autoload.el (autoload-rubric): Doc fix.
6432
6433 * replace.el (query-replace-history): Give it a doc string.
6434 (map-query-replace-regexp): Use query-replace-from-history-variable
6435 and query-replace-to-history-variable.
6436
6437 * mail/hashcash.el (declare-function): Remove duplicate definition.
6438
6439 * mail/emacsbug.el (report-emacs-bug-pretest-address):
6440 Make it an obsolete alias for report-emacs-bug-address.
6441 (message-strip-special-text-properties): Declare.
6442 (report-emacs-bug): Remove test for a pretest bug address.
6443 Combine message-mode-specific code.
6444
6445 * mail/supercite.el: Don't require sendmail.
6446 (mh-in-header-p): Declare rather than using with-no-warnings.
6447 (sc-no-blank-line-or-header): Use rfc822-goto-eoh rather than
6448 mail-header-end. Don't bind mysterious variable `kill-lines-magic'.
6449
6450 * calendar/cal-french.el: Convert to utf-8.
6451
6452 * files.el (interpreter-mode-alist): Use emacs-lisp-mode for
6453 Emacs scripts.
6454
6455 2010-03-16 Michael Albinus <michael.albinus@gmx.de>
6456
6457 * net/secrets.el (secrets-enabled): New variable. Use it instead
6458 of a subfeature.
6459
6460 2010-03-15 Michael Albinus <michael.albinus@gmx.de>
6461
6462 * net/secrets.el (top): Register the D-Bus signals only when the
6463 service "org.freedesktop.secrets" can be pinged.
6464 Provide subfeature `enabled'.
6465
6466 2010-03-14 Juri Linkov <juri@jurta.org>
6467
6468 Add finder unknown keywords.
6469
6470 * finder.el (finder-unknown-keywords): New function.
6471
6472 * info.el (Info-finder-find-node): Use `finder-unknown-keywords'
6473 to create a Finder node with unknown keywords.
6474
6475 2010-03-14 Juri Linkov <juri@jurta.org>
6476
6477 * finder.el (finder-compile-keywords): Replace `princ' with
6478 `prin1' on a list of symbols interned from keyword strings.
6479
6480 * emacs-lisp/lisp-mnt.el (lm-keywords-list): If `keywords' contains
6481 a comma, then split keywords using a comma and optional whitespace.
6482 Otherwise, split by whitespace.
6483
6484 * complete.el:
6485 * face-remap.el:
6486 * log-view.el:
6487 * net/hmac-def.el:
6488 * net/hmac-md5.el:
6489 * net/netrc.el:
6490 * progmodes/mixal-mode.el: Fix keywords.
6491
6492 2010-03-13 Michael Albinus <michael.albinus@gmx.de>
6493
6494 * Makefile.in (ELCFILES): Add net/secrets.elc.
6495
6496 * net/secrets.el: New file.
6497
6498 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
6499
6500 * facemenu.el (list-colors-display, list-colors-print): New arg
6501 callback. Use it to allow selecting colors.
6502
6503 * wid-edit.el (widget-image-insert): Insert image prop even if the
6504 current display is non-graphic.
6505 (widget-field-value-set): New fun.
6506 (editable-field): Use it.
6507 (widget-field-value-get): Clean up unused var.
6508 (widget-color-value-create, widget-color--choose-action):
6509 New funs. Allow using list-colors-display to choose color.
6510
6511 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
6512
6513 * cus-edit.el: Resort topmost custom groups.
6514 (custom-buffer-sort-alphabetically): Default to t.
6515 (customize-apropos): Use apropos-parse-pattern.
6516 (custom-search-field): New var.
6517 (custom-buffer-create-internal): Add custom-apropos search field.
6518 (custom-add-parent-links): Don't display parent doc.
6519 (custom-group-value-create): Don't sort top-level custom group.
6520 (custom-magic-value-create): Show visibility button before option name.
6521
6522 (custom-variable-state): New fun, from custom-variable-state-set.
6523 (custom-variable-state-set): Use it.
6524 (custom-group-value-create): Hide options with standard values
6525 using the :hidden-states property. Use progress reporter.
6526
6527 (custom-show): Simplify.
6528 (custom-visibility): Disable images by default.
6529 (custom-variable): New property :hidden-states.
6530 (custom-variable-value-create): Enable images for
6531 custom-visibility widgets. Use :hidden-states property to
6532 determine initial visibility.
6533
6534 * wid-edit.el (widget-image-find): Give images center ascent.
6535 (visibility): Add :on-image and :off-image properties.
6536 (widget-visibility-value-create): Use them.
6537
6538 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
6539
6540 * cus-edit.el (processes): Remove from development group.
6541 (oop, hypermedia): Delete group.
6542 (comm): Promote to top-level group.
6543
6544 * net/browse-url.el (browse-url):
6545 * net/xesam.el (xesam):
6546 * net/tramp.el (tramp):
6547 * net/goto-addr.el (goto-address):
6548 * net/ange-ftp.el (ange-ftp): Put in comm group.
6549
6550 * view.el (view): Remove from editing group.
6551
6552 * uniquify.el (uniquify): Put in files group.
6553
6554 * net/browse-url.el (browse-url):
6555 * ps-print.el (postscript): Put in external group.
6556
6557 * cus-edit.el (outlines):
6558 * textmodes/text-mode.el (text-mode-hook):
6559 * textmodes/table.el (table):
6560 * textmodes/picture.el (picture):
6561 * outline.el (outlines): Put in wp group.
6562
6563 * nxml/nxml-mode.el (nxml): Remove from wp group.
6564
6565 * net/tramp-imap.el (tramp-imap): Put in tramp group.
6566
6567 * mail/metamail.el (metamail): Remove from hypermedia group.
6568
6569 * cus-edit.el (abbrev):
6570 * whitespace.el (whitespace):
6571 * vcursor.el (vcursor):
6572 * reveal.el (reveal):
6573 * hl-line.el (hl-line): Put in convenience group.
6574
6575 * epg-config.el (epg): Put in data group.
6576
6577 * emulation/pc-select.el (pc-select): Put in emulations group.
6578
6579 * calculator.el (calculator): Put in applications group.
6580
6581 2010-03-12 Dan Nicolaescu <dann@ics.uci.edu>
6582
6583 Add .dir-locals.el support for file-less buffers.
6584 * files.el (hack-local-variables): Split out code to apply local
6585 variable settings ...
6586 (hack-local-variables-apply): ... here. New function.
6587 (hack-dir-local-variables): Use the default directory for when the
6588 buffer does not have an associated file.
6589 (hack-dir-local-variables-non-file-buffer): New function.
6590 * diff-mode.el (diff-mode):
6591 * vc-annotate.el (vc-annotate-mode):
6592 * vc-dir.el (vc-dir-mode):
6593 * log-edit.el (log-edit-mode):
6594 * log-view.el (log-view-mode): Call hack-dir-local-variables-non-file-buffer.
6595
6596 2010-03-12 Dan Nicolaescu <dann@ics.uci.edu>
6597
6598 Add support for shelving snapshots and for showing shelves.
6599 * vc-bzr.el (vc-bzr-shelve-show, vc-bzr-shelve-show-at-point)
6600 (vc-bzr-shelve-apply-and-keep-at-point, vc-bzr-shelve-snapshot):
6601 New functions.
6602 (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
6603 (vc-bzr-extra-menu-map): Map them.
6604
6605 2010-03-11 Glenn Morris <rgm@gnu.org>
6606
6607 * cus-edit.el (customize-changed-options-previous-release):
6608 Bump to 23.1.
6609
6610 * image.el (image-animate-max-time): Fix :version tag.
6611
6612 2010-03-10 Chong Yidong <cyd@stupidchicken.com>
6613
6614 * Branch for 23.2.
6615
6616 2010-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
6617
6618 * vc-git.el (vc-git-revision-table): Include remote branches.
6619
6620 2010-03-10 Kim F. Storm <storm@cua.dk>
6621
6622 Animated image API.
6623 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00211.html
6624
6625 * image.el (image-animate-max-time): New defcustom.
6626 (image-animated-types): New defconst.
6627 (create-animated-image, image-animate-timer)
6628 (image-animate-start, image-animate-stop, image-animate-timeout)
6629 (image-animated-p): New functions.
6630
6631 * image-mode.el (image-toggle-display-image):
6632 Replace `create-image' with `create-animated-image'.
6633
6634 2010-03-09 Miles Bader <miles@gnu.org>
6635
6636 * vc-git.el (vc-git-print-log): Use "tformat:" for shortlog,
6637 instead of "format:"; this ensures that the output is
6638 newline-terminated.
6639
6640 2010-03-08 Chong Yidong <cyd@stupidchicken.com>
6641
6642 * mail/rfc822.el (rfc822-addresses): Use nested catches to ensure
6643 that all errors are caught, and that the return value is always a
6644 list (Bug#5692).
6645
6646 2010-03-08 Kenichi Handa <handa@m17n.org>
6647
6648 * language/misc-lang.el (windows-1256): New coding system.
6649 (cp1256): New alias of windows-1256 (bug#5690).
6650
6651 2010-03-07 Andreas Schwab <schwab@linux-m68k.org>
6652
6653 * mail/rfc822.el (rfc822-addresses): Move catch clause down around
6654 call to rfc822-bad-address. (Bug#5692)
6655
6656 2010-03-07 Štěpán Němec <stepnem@gmail.com> (tiny change)
6657
6658 * vc-git.el (vc-git-annotate-extract-revision-at-line):
6659 Use vc-git-root as default directory for revision path (Bug#5657).
6660
6661 2010-03-06 Chong Yidong <cyd@stupidchicken.com>
6662
6663 * calculator.el (calculator): Don't bind split-window-keep-point
6664 (Bug#5674).
6665
6666 2010-03-06 Stefan Monnier <monnier@iro.umontreal.ca>
6667
6668 * vc-git.el: Re-flow to fit into 80 columns.
6669 (vc-git-after-dir-status-stage, vc-git-dir-status-goto-stage):
6670 Remove spurious `quote' element in each case alternative.
6671 (vc-git-show-log-entry): Use prog1.
6672 (vc-git-after-dir-status-stage): Remove unused var `remaining'.
6673
6674 2010-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
6675
6676 * man.el (Man-files-regexp): Tighten up the regexp (bug#5686).
6677
6678 2010-03-03 Chong Yidong <cyd@stupidchicken.com>
6679
6680 * macros.el (insert-kbd-macro): Look up keyboard macro using the
6681 definition, not the name (Bug#5481).
6682
6683 2010-03-03 Štěpán Němec <stepnem@gmail.com> (tiny change)
6684
6685 * subr.el (momentary-string-display): Don't overwrite the MESSAGE
6686 argument with a local variable. (Bug#5670)
6687
6688 2010-03-02 Juri Linkov <juri@jurta.org>
6689
6690 * info.el (Info-index-next): Decrement line number by 2. (Bug#5652)
6691
6692 2010-03-02 Michael Albinus <michael.albinus@gmx.de>
6693
6694 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Fix an
6695 error when FILENAME and NEWNAME are existing remote directories.
6696
6697 * net/tramp-compat.el (tramp-compat-make-temp-file): Add optional
6698 parameter DIR-FLAG.
6699
6700 2010-03-02 Glenn Morris <rgm@gnu.org>
6701
6702 * calendar/cal-hebrew.el (holiday-hebrew-passover): Fix date
6703 of Yom HaAtzma'ut when it falls on a Monday (rule changed in 2004).
6704
6705 2010-03-01 Kenichi Handa <handa@m17n.org>
6706
6707 * language/burmese.el (burmese-composable-pattern): Rename from
6708 myanmar-composable-pattern.
6709
6710 * international/characters.el (script-list):
6711 * international/fontset.el (script-representative-chars):
6712 Change myanmar to burmese.
6713 (otf-script-alist): Likewise.
6714 (setup-default-fontset): Likewise. Re-fix :otf spec.
6715
6716 2010-02-28 Katsumi Yamaoka <yamaoka@jpl.org>
6717
6718 * menu-bar.el (menu-bar-manuals-menu): Fix typo.
6719
6720 2010-02-28 Jan Djärv <jan.h.d@swipnet.se>
6721
6722 * scroll-bar.el (scroll-bar-drag-1): Add save-excursion, bug #5654.
6723
6724 2010-02-28 Michael Albinus <michael.albinus@gmx.de>
6725
6726 * net/tramp.el (tramp-handle-write-region): START can be a string.
6727 Take care in the checks. Reported by Dan Davison
6728 <davison@stats.ox.ac.uk>.
6729
6730 2010-02-28 Michael Albinus <michael.albinus@gmx.de>
6731
6732 * net/dbus.el (dbus-introspect, dbus-get-property)
6733 (dbus-set-property, dbus-get-all-properties):
6734 Use `dbus-call-method' when noninteractive. (Bug#5645)
6735
6736 2010-02-28 Chong Yidong <cyd@stupidchicken.com>
6737
6738 * textmodes/reftex-toc.el (reftex-toc-promote-prepare):
6739 * emacs-lisp/elint.el (elint-add-required-env):
6740 * calendar/icalendar.el (icalendar--add-diary-entry):
6741 * calc/calcalg2.el (math-tracing-integral):
6742 * files.el (recover-session-finish): Use with-current-buffer
6743 instead of save-excursion.
6744
6745 2010-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
6746
6747 Fix in-buffer completion when after-change-functions modify the buffer.
6748 * minibuffer.el (completion--replace): New function.
6749 (completion--do-completion): Use it and use relative movement.
6750
6751 2010-02-27 Chong Yidong <cyd@stupidchicken.com>
6752
6753 * international/fontset.el (setup-default-fontset): Fix :otf spec.
6754
6755 2010-02-27 Jeremy Whitlock <jcscoobyrs@gmail.com> (tiny change)
6756
6757 * progmodes/python.el (python-pdbtrack-stack-entry-regexp):
6758 Allow the characters _<> in the stack entry (Bug#5653).
6759
6760 2010-02-26 Kenichi Handa <handa@m17n.org>
6761
6762 * language/burmese.el: Fix entries in composition-function-table.
6763 (myanmar-composable-pattern): New variable.
6764
6765 * international/fontset.el (setup-default-fontset): Add an entry
6766 for myanmar.
6767
6768 * international/characters.el (script-list): Add Myanmar
6769 Extended-A.
6770
6771 2010-02-26 Glenn Morris <rgm@gnu.org>
6772
6773 * custom.el (custom-initialize-delay): Doc fix.
6774
6775 * mail/sendmail.el (send-mail-function): Autoload the call
6776 to custom-initialize-delay, not otherwise preserved in loaddefs.el.
6777
6778 2010-02-24 Chong Yidong <cyd@stupidchicken.com>
6779
6780 * files.el (hack-local-variables-filter): For eval forms, also
6781 check safe-local-variable-p (Bug#5636).
6782
6783 2010-02-24 Eduard Wiebe <usenet@pusto.de>
6784
6785 * javascript.el (wisent-javascript-jv-expand-tag): Avoid c(ad)ddr
6786 and use c(ad)r of cddr (Bug#5640).
6787
6788 2010-02-22 Michael Albinus <michael.albinus@gmx.de>
6789
6790 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Protect
6791 setting the modes by `ignore-errors'. It might fail, for example
6792 if the file is not owned by the user but the group.
6793 (tramp-handle-write-region): Ensure, that `tmpfile' is always readable.
6794
6795 2010-02-21 Chong Yidong <cyd@stupidchicken.com>
6796
6797 * files.el (directory-listing-before-filename-regexp): Use
6798 stricter matching for iso-style dates, to avoid false matches with
6799 date-like filenames (Bug#5597).
6800
6801 * htmlfontify.el (htmlfontify): Doc fix.
6802
6803 * eshell/eshell.el (eshell): Doc fix.
6804
6805 * startup.el (fancy-about-screen): In mode-line, apply
6806 mode-line-buffer-id face only to the buffer name (Bug#5613).
6807
6808 2010-02-20 Kevin Ryde <user42@zip.com.au>
6809
6810 * progmodes/compile.el (compilation-error-regexp-alist-alist):
6811 In `watcom' anchor regexp to start of line, to avoid slowness
6812 (Bug#5599).
6813
6814 2010-02-20 Eli Zaretskii <eliz@gnu.org>
6815
6816 * subr.el (remove-yank-excluded-properties): Explain in a comment
6817 why `category' property is removed.
6818
6819 2010-02-19 Chong Yidong <cyd@stupidchicken.com>
6820
6821 * isearch.el (isearch-update-post-hook, isearch-update): Revert
6822 2010-02-17 change.
6823
6824 2010-02-19 Ulf Jasper <ulf.jasper@web.de>
6825
6826 * calendar/icalendar.el (icalendar--convert-ordinary-to-ical)
6827 (icalendar--convert-weekly-to-ical)
6828 (icalendar--convert-yearly-to-ical)
6829 (icalendar--convert-block-to-ical)
6830 (icalendar--convert-cyclic-to-ical)
6831 (icalendar--convert-anniversary-to-ical): Take care of time
6832 specifications where hour has 1-digit only (Bug#5549).
6833
6834 2010-02-19 Nick Roberts <nickrob@snap.net.nz>
6835
6836 * progmodes/gdb-ui.el (gdb-assembler-handler): Accommodate change
6837 of disassemble output in GDB 7.1.
6838
6839 2010-02-19 Glenn Morris <rgm@gnu.org>
6840
6841 * progmodes/f90.el (f90-electric-insert): Give it a delete-selection
6842 property. (Bug#5593)
6843
6844 2010-02-18 Sam Steingold <sds@gnu.org>
6845
6846 * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
6847
6848 2010-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
6849
6850 Use abbreviated file names in bookmarks (bug#5591).
6851 * bookmark.el (bookmark-maybe-load-default-file): Remove redundant
6852 calls to expand-file-name.
6853 (bookmark-relocate): Use abbreviated file names in bookmarks.
6854 (bookmark-load): Use abbreviated file names in messages.
6855
6856 2010-02-18 Michael Albinus <michael.albinus@gmx.de>
6857
6858 * net/tramp.el (tramp-handle-directory-files): When FULL, do not
6859 expand "." and "..". Reported by Thierry Volpiatto
6860 <thierry.volpiatto@gmail.com>.
6861
6862 2010-02-18 Michael Albinus <michael.albinus@gmx.de>
6863
6864 * net/tramp.el (tramp-handle-insert-file-contents): Set always the
6865 permissions of the temporary file to "0600". In case the remote
6866 file has no read permissions for the owner, there might be
6867 problems otherwise. Reported by Ole Laursen <olau@iola.dk>.
6868
6869 22010-02-18 Glenn Morris <rgm@gnu.org>
6870
6871 * emacs-lisp/authors.el (authors-renamed-files-alist):
6872 Add entries for INSTALL.CVS.
6873
6874 2010-02-17 Mark A. Hershberger <mah@everybody.org>
6875
6876 * vc-bzr.el: Fix typo in Known Bugs section.
6877
6878 * isearch.el (isearch-update-post-hook): New hook.
6879 (isearch-update): Use the new hook.
6880
6881 2010-02-16 Michael Albinus <michael.albinus@gmx.de>
6882
6883 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
6884 Fix errors in copying directories.
6885 (tramp-handle-add-name-to-file, tramp-handle-copy-directory)
6886 (tramp-do-copy-or-rename-file, tramp-handle-delete-directory)
6887 (tramp-handle-delete-file)
6888 (tramp-handle-dired-recursive-delete-directory)
6889 (tramp-handle-write-region): Flush also the cache for the upper
6890 directory.
6891
6892 2010-02-16 Chong Yidong <cyd@stupidchicken.com>
6893
6894 * simple.el (save-interprogram-paste-before-kill): Doc fix.
6895
6896 * cus-edit.el (hardware): Doc fix.
6897
6898 * man.el (man): Add to external custom group.
6899
6900 * delim-col.el (columns): Move to wp custom group.
6901
6902 * doc-view.el (doc-view): Add to data custom group.
6903
6904 * nxml/nxml-mode.el (nxml-faces): Remove from font-lock-faces group.
6905
6906 * textmodes/flyspell.el (flyspell-word): Obey the offset specified
6907 by ispell-parse-output (Bug#5575).
6908
6909 2010-02-16 Kenichi Handa <handa@m17n.org>
6910
6911 * international/ja-dic-cnv.el (iso-2022-7bit-short): Delete it.
6912 (skkdic-convert-okuri-ari): Ignore lines starting with '>'.
6913 (skkdic-convert): Use `euc-japan' coding system for writing.
6914
6915 2010-02-16 Glenn Morris <rgm@gnu.org>
6916
6917 * textmodes/tex-mode.el (tex-bibtex-file): Expand the result of
6918 tex-main-file before using it. (Bug#5562)
6919
6920 2010-02-15 Stefan Monnier <monnier@iro.umontreal.ca>
6921
6922 * emacs-lisp/advice.el (ad-compile-function): Suppress byte-compiler
6923 warnings, since it is annoying for the user to see them each time he
6924 runs the code.
6925
6926 2010-02-15 Michael Albinus <michael.albinus@gmx.de>
6927
6928 * net/tramp.el (tramp-process-actions, tramp-read-passwd):
6929 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection): Use VEC
6930 instead of PROC for caching "first-password-request". Otherwise,
6931 new processes would not profit from passwords already entered.
6932
6933 * net/tramp-cache.el (tramp-dump-connection-properties):
6934 Don't save "first-password-request" property.
6935
6936 2010-02-14 Juanma Barranquero <lekktu@gmail.com>
6937
6938 * outline.el (outline-head-from-level):
6939 * simple.el (with-wrapper-hook):
6940 * emacs-lisp/elint.el (elint-extra-errors, elint-current-buffer)
6941 (elint-defun, elint-buffer-env, elint-top-form-logged)
6942 (elint-unbound-variable):
6943 * textmodes/reftex-toc.el (reftex-toc-newhead-from-alist):
6944 Fix typos in docstrings.
6945
6946 2010-02-14 Michael Albinus <michael.albinus@gmx.de>
6947
6948 * files.el (insert-directory): When WILDCARD-REGEXP and
6949 FULL-DIRECTORY-P are nil, insert the file entry instead of the
6950 whole directory. (Bug#5551)
6951
6952 * net/ange-ftp.el (ange-ftp-insert-directory): Insert " " for
6953 dired's alignment sanity. (Bug#5516)
6954
6955 2010-02-14 Juri Linkov <juri@jurta.org>
6956
6957 * man.el (Man-fontify-manpage, Man-cleanup-manpage):
6958 Remove remaining ^H with their preceding chars. (Bug#5566)
6959
6960 2010-02-13 Glenn Morris <rgm@gnu.org>
6961
6962 * simple.el (transpose-subr): Give it a doc-string.
6963
6964 * textmodes/paragraphs.el (transpose-paragraphs, transpose-sentences):
6965 Doc fixes.
6966
6967 2010-02-12 Juri Linkov <juri@jurta.org>
6968
6969 * arc-mode.el (archive-unique-fname): Make directories for nested
6970 archives. (Bug#5540)
6971
6972 2010-02-12 Juri Linkov <juri@jurta.org>
6973
6974 * ffap.el (dired-at-point): Fix docstring. (Bug#5565)
6975
6976 2010-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
6977
6978 * subr.el (copy-overlay): Handle deleted overlays.
6979
6980 * man.el (Man-completion-table): Don't signal an error if we can't run
6981 manual-program (bug#4056).
6982
6983 2010-02-10 Juanma Barranquero <lekktu@gmail.com>
6984
6985 * textmodes/artist.el (artist-mt): Fix typos in docstring.
6986
6987 2010-02-10 Thierry Volpiatto <thierry.volpiatto@gmail.com>
6988
6989 * info.el (Info-bookmark-jump): Simplify.
6990
6991 * bookmark.el (bookmark-handle-bookmark): Catch the right error.
6992 (bookmark-default-handler): Accept new bookmark field `buffer'.
6993
6994 2010-02-10 Chong Yidong <cyd@stupidchicken.com>
6995
6996 * iswitchb.el (iswitchb-completions): Revert last change.
6997
6998 2010-02-10 Michael Albinus <michael.albinus@gmx.de>
6999
7000 * ls-lisp.el (ls-lisp-insert-directory): When WILDCARD-REGEXP and
7001 FULL-DIRECTORY-P are nil, and FILE is absolute, expand it.
7002 This prevents file names like "~/" being listed literally.
7003
7004 2010-02-10 Dan Nicolaescu <dann@ics.uci.edu>
7005
7006 * term/xterm.el (xterm-maybe-set-dark-background-mode):
7007 Remove dead code. (Bug#5546)
7008
7009 2010-02-09 Chong Yidong <cyd@stupidchicken.com>
7010
7011 * eshell/em-ls.el (eshell-ls-applicable): Frob file attributes
7012 correctly (Bug#5548).
7013
7014 2010-02-08 Jose E. Marchesi <jemarch@gnu.org>
7015
7016 * progmodes/ada-mode.el (ada-in-numeric-literal-p): New function.
7017 (ada-adjust-case): Don't adjust case in hexadecimal number literals.
7018
7019 2010-02-08 Kenichi Handa <handa@m17n.org>
7020
7021 * international/mule-util.el (with-coding-priority): Add autoload
7022 cookie for putting `lisp-indent-function'.
7023
7024 2010-02-07 Glenn Morris <rgm@gnu.org>
7025
7026 * progmodes/f90.el (f90-font-lock-keywords-1, f90-font-lock-keywords-2):
7027 Move F2003 named interfaces from keywords-2 to keywords-1, and
7028 use function-name-face rather than constant-face.
7029 Simplify "abstract interface" regexp.
7030
7031 2010-02-07 Chong Yidong <cyd@stupidchicken.com>
7032
7033 * eshell/esh-util.el (eshell-file-attributes): New optional arg
7034 ID-FORMAT. Pass it to `file-attributes'.
7035
7036 * eshell/em-ls.el (eshell-do-ls): Use it (Bug#5528).
7037
7038 2010-02-07 sj <prime.wizard+emacs@gmail.com> (tiny change)
7039
7040 * faces.el (set-face-attribute): Allow calling
7041 internal-set-lisp-face-attribute with 'unspecified family and
7042 foundry argument (Bug#5536).
7043
7044 2010-02-07 Glenn Morris <rgm@gnu.org>
7045
7046 * progmodes/f90.el (f90-font-lock-keywords-2)
7047 (f90-looking-at-type-like, f90-looking-at-program-block-end):
7048 Handle F2003 named interfaces.
7049
7050 2010-02-06 Chong Yidong <cyd@stupidchicken.com>
7051
7052 * progmodes/cc-mode.el (c-common-init): Bind temporary variables
7053 beg and end before calling c-get-state-before-change-functions.
7054
7055 2010-02-06 Dan Nicolaescu <dann@ics.uci.edu>
7056
7057 * vc-bzr.el (vc-bzr-dir-extra-headers): Disable the pending merges header.
7058
7059 2010-02-05 Juri Linkov <juri@jurta.org>
7060
7061 * doc-view.el (doc-view-mode):
7062 * image-mode.el (image-mode): Put property mode-class=special.
7063 (Bug#4896)
7064
7065 2010-02-05 Mark A. Hershberger <mah@everybody.org>
7066
7067 * vc-svn.el (vc-svn-revision-table): New function.
7068
7069 2010-02-05 Michael Albinus <michael.albinus@gmx.de>
7070
7071 * net/ange-ftp.el (ange-ftp-insert-directory):
7072 * net/tramp-imap.el (tramp-imap-handle-insert-directory):
7073 * net/tramp-smb.el (tramp-smb-handle-insert-directory):
7074 Handle also directories. (Bug#5478)
7075
7076 2010-02-05 Glenn Morris <rgm@gnu.org>
7077
7078 * progmodes/f90.el (f90-font-lock-keywords-2): Fix `enum'.
7079
7080 2010-02-05 Chong Yidong <cyd@stupidchicken.com>
7081
7082 * startup.el (command-line-1): Convert options beginning with a
7083 single dash as well (Bug#5519).
7084
7085 2010-02-05 Stefan Monnier <monnier@iro.umontreal.ca>
7086
7087 Make `initials' completion work for /hh -> /home/horn again (bug#5524).
7088 * minibuffer.el (completion-initials-expand): Only check the presence
7089 of delims *within* the boundaries, since otherwise the / delim is
7090 always found for files.
7091
7092 Fix up various corner case problems.
7093 * doc-view.el (doc-view-last-page-number): New function.
7094 (doc-view-mode, doc-view-last-page, doc-view-goto-page): Use it.
7095 (doc-view-goto-page): Avoid inf-loops when the conversion fails.
7096 (doc-view-kill-proc): Avoid inf-loop in freak cases.
7097 (doc-view-reconvert-doc): Use the new recursive delete-directory.
7098 (doc-view-convert-current-doc): Don't create the resolution.el file
7099 here any more.
7100 (doc-view-pdf/ps->png): Do it here instead.
7101 (doc-view-already-converted-p): Check that resolution.el is present.
7102 (doc-view-pdf->png): Don't rely on doc-view-pdf/ps->png for the few
7103 windows that are not yet showing images.
7104
7105 2010-02-04 Michael Albinus <michael.albinus@gmx.de>
7106
7107 * dired.el (dired-revert): If DIRED-DIRECTORY is a cons cell, call
7108 `dired-uncache' for every elemnt which is an absolute file name.
7109
7110 * net/tramp.el (tramp-handle-dired-uncache): When DIR is not a
7111 directory, handle its directory component.
7112 (tramp-handle-file-remote-p): Let-bind `tramp-verbose' to 3; this
7113 function is called permanently and creates noise, otherwise.
7114
7115 * net/tramp-imap.el (tramp-imap-handle-insert-directory):
7116 * net/tramp-smb.el (tramp-smb-handle-insert-directory):
7117 Handle the case, FILENAME is not in `default-directory'. (Bug#5478)
7118
7119 2010-02-04 David Burger <dburger@google.com> (tiny change)
7120
7121 * macros.el (apply-macro-to-region-lines):
7122 Minor simplification. (Bug#5485)
7123
7124 2010-02-04 Glenn Morris <rgm@gnu.org>
7125
7126 * mail/rmail.el (rmail-show-message-1): Handle malformed
7127 quoted-printable text. (Bug#5441)
7128
7129 * mail/mail-utils.el (mail-unquote-printable-region): Doc fix.
7130
7131 * simple.el (visual-line-mode): Capitalize lighter.
7132
7133 2010-02-03 John Wiegley <jwiegley@gmail.com>
7134
7135 * iswitchb.el (iswitchb-completions): Add bookmark files to the
7136 list of files considered for "virtual buffer" completions.
7137
7138 2010-02-03 Michael Albinus <michael.albinus@gmx.de>
7139
7140 * net/ange-ftp.el (ange-ftp-insert-directory): Parse directory
7141 also in case of (and (not full) (not wildcard)). This is needed
7142 when dired is called with a list of files, which are not in
7143 `default-directory'. (Bug#5478)
7144
7145 2010-02-03 Stefan Monnier <monnier@iro.umontreal.ca>
7146
7147 * vc-hooks.el (vc-path): Make it an obsolete var, rather than function.
7148
7149 2010-02-02 Juri Linkov <juri@jurta.org>
7150
7151 * textmodes/ispell.el (ispell-message-text-end): Remove final newline
7152 from unidiff to allow function-line after @@.
7153
7154 2010-02-02 Juri Linkov <juri@jurta.org>
7155
7156 * ediff-util.el (ediff-file-checked-in-p): Replace '(nil CVS) by
7157 '(RCS SCCS) with inverted condition.
7158
7159 2010-02-02 Michael Albinus <michael.albinus@gmx.de>
7160
7161 * net/ange-ftp.el (ange-ftp-skip-msgs): Ignore all ""^500 .*AUTH"
7162 messages.
7163
7164 2010-02-01 Juri Linkov <juri@jurta.org>
7165
7166 * arc-mode.el (archive-zip-extract): Use `member-ignore-case' to
7167 compare with "pkunzip" and "pkzip" instead of only "pkzip".
7168 In the `archive-extract-by-stdout' branch use `shell-quote-argument'
7169 only when (car archive-zip-extract) is "unzip". (Bug#5475)
7170
7171 2010-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
7172
7173 * doc-view.el (doc-view-new-window-function): Be a bit more defensive.
7174 (doc-view-revert-buffer): New command.
7175 (doc-view-mode-map): Use it.
7176
7177 2010-02-01 Dan Nicolaescu <dann@ics.uci.edu>
7178
7179 * vc-bzr.el (vc-bzr-dir-extra-headers): Add a header when a
7180 pending merge is detected.
7181
7182 2010-01-31 Juri Linkov <juri@jurta.org>
7183
7184 * progmodes/grep.el (zrgrep): Call `grep-compute-defaults' at the
7185 beginning of interactive spec like all other grep commands do.
7186 Put "all" in front of "gz". (Bug#5260)
7187
7188 2010-01-29 Dan Nicolaescu <dann@ics.uci.edu>
7189
7190 * vc-bzr.el (vc-bzr-after-dir-status): Match another renaming indicator.
7191
7192 2010-01-29 Chong Yidong <cyd@stupidchicken.com>
7193
7194 * dirtrack.el (dirtrack): Warn instead of signalling error if the
7195 regexp is incorrect (Bug#5476).
7196
7197 2010-01-29 Michael Albinus <michael.albinus@gmx.de>
7198
7199 * net/tramp.el (tramp-handle-insert-directory): Handle also
7200 symlinks, when FILENAME is not in `default-directory'.
7201
7202 2010-01-28 Michael Albinus <michael.albinus@gmx.de>
7203
7204 * net/ange-ftp.el (ange-ftp-insert-directory): Handle the case,
7205 FILE is not in `default-directory'. (Bug#5478)
7206
7207 * net/tramp.el (tramp-handle-insert-directory): Simplify handling
7208 of SWITCHES. Handle the case, FILENAME is not in
7209 `default-directory'. (Bug#5478)
7210 (tramp-register-file-name-handlers): Add safe-magic property.
7211
7212 2010-01-28 Chong Yidong <cyd@stupidchicken.com>
7213
7214 * arc-mode.el (archive-zip-extract): Quote the argument passed to
7215 unzip (Bug#5475).
7216
7217 2010-01-28 Nil Geisweiller <ngeiswei@googlemail.com> (tiny change)
7218
7219 * progmodes/flymake.el (flymake-allowed-file-name-masks)
7220 (flymake-master-make-header-init): Add other C++ filename masks.
7221 (flymake-find-possible-master-files)
7222 (flymake-check-patch-master-file-buffer): Doc fixes (Bug#5488).
7223
7224 2010-01-28 Michael Albinus <michael.albinus@gmx.de>
7225
7226 Fix some busybox annoyances.
7227
7228 * net/tramp.el (tramp-wrong-passwd-regexp): Add "Timeout, server
7229 not responding." string.
7230 (tramp-open-connection-setup-interactive-shell): Dump stty
7231 settings. Enable "neveropen" arg for all `tramp-send-command'
7232 calls. Handle "=" in variable values properly.
7233 (tramp-find-inline-encoding): Raise an error, when no encoding is
7234 found.
7235 (tramp-wait-for-output): Check, whether PROC buffer is available.
7236 Remove spurious " ^H" sequences, sent by busybox.
7237 (tramp-get-ls-command): Suppress coloring, if possible.
7238
7239 2010-01-28 Glenn Morris <rgm@gnu.org>
7240
7241 * vc-svn.el (vc-svn-update): Use "svn --non-interactive". (Bug#4280)
7242
7243 * log-edit.el (log-edit-strip-single-file-name): Add missing
7244 :safe, :group, and :version tags.
7245
7246 2010-01-27 Stephen Berman <stephen.berman@gmx.net>
7247
7248 * calendar/diary-lib.el (diary-unhide-everything): Handle narrowed
7249 buffers. (Bug#5477)
7250
7251 2010-01-27 David De La Harpe Golden <david@harpegolden.net>
7252
7253 * files.el (delete-directory): Handle moving to trash without
7254 first doing recursion (Bug#5436).
7255
7256 2010-01-26 Dan Nicolaescu <dann@ics.uci.edu>
7257
7258 * vc-hooks.el (vc-path): Mark as obsolete.
7259
7260 2010-01-25 Dan Nicolaescu <dann@ics.uci.edu>
7261
7262 * vc-annotate.el (vc-annotate-revision-at-line): Compare file
7263 names too.
7264
7265 * vc-bzr.el (vc-bzr-print-log): Use the more compact --line option
7266 for the short log.
7267 (vc-bzr-log-view-mode): Adjust regexp for the above change.
7268
7269 2010-01-25 Mark A. Hershberger <mah@everybody.org>
7270
7271 * progmodes/python.el: Replace reference to obsolete c-subword-mode.
7272
7273 * vc-bzr.el (vc-bzr-revision-table): New function.
7274
7275 2010-01-25 Eric Hanchrow <eric.hanchrow@gmail.com> (tiny change)
7276
7277 * vc-git.el (vc-git-dir-status-goto-stage): Pass --relative to the
7278 diff-index command. This requires at least git-1.5.5. (Bug#1589).
7279
7280 2010-01-24 Dan Nicolaescu <dann@ics.uci.edu>
7281
7282 Remove support for adding --signoff on commit.
7283 Future support will use an incompatible generic mechanism.
7284 * vc-git.el (vc-git-add-signoff): Remove variable.
7285 (vc-git-toggle-signoff): Remove function.
7286 (vc-git-extra-menu-map): Do not bind vc-git-toggle-signoff.
7287
7288 * term/xterm.el (xterm-maybe-set-dark-background-mode): Rename
7289 from xterm-set-background-mode. Return t if the background mode
7290 was set.
7291 (terminal-init-xterm): Move tty-set-up-initial-frame-faces
7292 earlier, call it again in case the background mode has changed.
7293
7294 2010-01-23 Dmitri Paduchikh <dpaduch@k66.ru> (tiny change)
7295
7296 * emacs-lisp/advice.el (ad-set-orig-definition): Fix typo
7297 (Bug#3541).
7298
7299 2010-01-23 Chong Yidong <cyd@stupidchicken.com>
7300
7301 * emacs-lisp/assoc.el (aelement): Doc fix.
7302 (aput, adelete, amake): Use lexical-let (Bug#5450).
7303
7304 2010-01-23 Stephen Leake <stephen_leake@member.fsf.org>
7305
7306 * progmodes/ada-mode.el (ada-in-paramlist-p): Pragma syntax
7307 is the same as subprogram call, not declaration. (Bug#5435).
7308
7309 2010-01-23 Michael Albinus <michael.albinus@gmx.de>
7310
7311 * net/tramp-smb.el (tramp-smb-conf): New defcustom.
7312 (tramp-smb-maybe-open-connection): Use it.
7313
7314 2010-01-22 Michael Albinus <michael.albinus@gmx.de>
7315
7316 * net/tramp-imap.el (top): Autoload needed packages. (Bug#5448)
7317
7318 2010-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
7319
7320 * mail/rmailmm.el (rmail-mime-handle): Don't set the buffer to unibyte
7321 just because we see "encoding: 8bit".
7322 * mail/rmail.el (rmail-show-message-1): Decode the body's QP into bytes.
7323
7324 2010-01-22 Chong Yidong <cyd@stupidchicken.com>
7325
7326 * isearch.el (isearch-allow-scroll): Doc fix (Bug#5446).
7327
7328 2010-01-22 Eli Zaretskii <eliz@gnu.org>
7329
7330 * jka-compr.el (jka-compr-load): If load-file is not in
7331 load-history, try its file-truename version. (bug#5447)
7332
7333 2010-01-21 Alan Mackenzie <acm@muc.de>
7334
7335 Fix a situation where deletion of a cpp construct throws an error.
7336 * progmodes/cc-engine.el (c-invalidate-state-cache):
7337 Before invoking c-with-all-but-one-cpps-commented-out, check that the
7338 special cpp construct is still in the buffer.
7339 (c-parse-state): Record the special cpp with markers, not numbers.
7340
7341 2010-01-21 Kenichi Handa <handa@m17n.org>
7342
7343 * textmodes/sgml-mode.el (sgml-maybe-name-self): No need to
7344 process last-command-event, as it is now decoded first (Bug#5380).
7345
7346 2010-01-20 Chong Yidong <cyd@stupidchicken.com>
7347
7348 * term.el (term-send-raw-meta): Revert 2009-12-04 change (Bug#5330).
7349
7350 2010-01-20 Glenn Morris <rgm@gnu.org>
7351
7352 * indent.el (tab-always-indent): Fix custom-type.
7353
7354 2010-01-19 Alan Mackenzie <acm@muc.de>
7355
7356 * progmodes/cc-defs.el: Fix bug#5395: typing '#' in an empty
7357 buffer throws "args out of range".
7358 (c-set-cpp-delimiters, c-clear-cpp-delimiters): Check for EOB
7359 playing the role of delimiter.
7360
7361 2010-01-18 Stephen Leake <stephen_leake@member.fsf.org>
7362
7363 * progmodes/ada-mode.el: Fix bug#5400.
7364 (ada-matching-decl-start-re): Move into ada-goto-decl-start.
7365 (ada-goto-decl-start): Rename from ada-goto-matching-decl-start; callers
7366 changed. Delete RECURSIVE parameter; never used. Improve doc string.
7367 Improve comments in "is" portion. Handle null procedure declaration.
7368 (ada-move-to-end): Improve doc string.
7369
7370 2010-01-18 Óscar Fuentes <ofv@wanadoo.es>
7371
7372 * ido.el (ido-cur-list): Initialize to nil.
7373 Remove obsolete information from commentary.
7374 (ido-choice-list): Initialize to nil.
7375 (ido-get-bufname): Reject minibuffers.
7376 (ido-make-buffer-list): If "default" is a nonexistent
7377 buffer, ignore it, as per the function's comment.
7378 (ido-kill-buffer-internal): New function.
7379 (ido-kill-buffer-at-head): Use it.
7380 (ido-visit-buffer): Likewise.
7381
7382 2010-01-18 Chong Yidong <cyd@stupidchicken.com>
7383
7384 * calendar/time-date.el (date-to-time): Doc fix (Bug#5408).
7385
7386 2010-01-18 Juanma Barranquero <lekktu@gmail.com>
7387
7388 * emacs-lisp/chart.el (chart-file-count, chart-rmail-from):
7389 Fix typos in chart titles.
7390
7391 * whitespace.el (whitespace-style, global-whitespace-newline-mode):
7392 * emacs-lisp/eieio.el (eieio-error-unsupported-class-tags)
7393 (eieio-generic-form, eieio-help-mode-augmentation-maybee, eieio-browse)
7394 (describe-class, eieio-describe-generic, describe-generic):
7395 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click)
7396 (eieio-speedbar-expand):
7397 * emulation/viper-cmd.el (viper-exec-form-in-vi)
7398 (viper-exec-form-in-emacs, viper-harness-minor-mode, viper-ESC)
7399 (viper-repeat, viper-replace-state-exit-cmd, viper-toggle-search-style)
7400 (viper-del-backward-char-in-replace, viper-backward-indent)
7401 (viper-brac-function, viper-register-to-point, viper-submit-report):
7402 * net/tramp.el (tramp-remote-coding-commands):
7403 * term/x-win.el (emacs-session-save, x-menu-bar-open, icon-map-list):
7404 Fix typos in docstrings.
7405
7406 2010-01-17 Chong Yidong <cyd@stupidchicken.com>
7407
7408 * mail/sendmail.el (mail-yank-original): Set the mark if the
7409 specified function for yanking does not do it.
7410
7411 2010-01-17 Dan Nicolaescu <dann@ics.uci.edu>
7412
7413 * vc.el (with-vc-properties): Deal with directory arguments. (Bug#5298)
7414
7415 * vc-dir.el (vc-dir-resynch-file): Update the vc-dir header when
7416 resyncing a directory.
7417
7418 2010-01-17 Stephen Leake <stephen_leake@member.fsf.org>
7419
7420 * progmodes/ada-mode.el: Fix bug#1920.
7421 (ada-ident-re): Delete ., allow multibyte characters.
7422 (ada-goto-label-re): New; matches goto labels.
7423 (ada-block-label-re): New; matches block labels.
7424 (ada-label-re): New; matches both.
7425 (ada-named-block-re): Deleted; callers changed to use
7426 `ada-block-label-re' instead.
7427 (ada-get-current-indent, ada-get-indent-noindent, ada-get-indent-loop):
7428 Use `ada-block-label-re'.
7429 (ada-indent-on-previous-lines): Improve handling of goto labels.
7430 (ada-get-indent-block-start): Special-case block label.
7431 (ada-get-indent-label): Split into `ada-indent-block-label' and
7432 `ada-indent-goto-label'.
7433 (ada-goto-stmt-start, ada-goto-next-non-ws):
7434 Optionally ignore goto labels.
7435 (ada-goto-next-word): Simplify.
7436 (ada-indent-newline-indent-conditional): Insert newline before
7437 trying to fix indentation; doc fix.
7438
7439 2010-01-17 Jay Belanger <jay.p.belanger@gmail.com>
7440
7441 * calc/calc.el (calc-command-flags): Give it an initial value.
7442
7443 2010-01-17 Juanma Barranquero <lekktu@gmail.com>
7444
7445 * files.el (minibuffer-with-setup-hook):
7446 * textmodes/artist.el (artist-mt, artist-key-undraw-continously)
7447 (artist-key-draw-continously, artist-key-do-continously-continously)
7448 (artist-key-set-point-continously, artist-mouse-draw-continously):
7449 Fix typos in docstrings.
7450
7451 2010-01-16 Lennart Borgman <lennart.borgman@gmail.com>
7452
7453 * nxml/nxml-mode.el (nxml-extend-after-change-region): Never
7454 return t (Bug#3898).
7455
7456 2010-01-16 Frédéric Perrin <frederic.perrin@resel.fr> (tiny change)
7457
7458 * vc-dispatcher.el (vc-do-command): Set LC_MESSAGES, so that we
7459 can parse the output of the external commands (Bug#5279).
7460
7461 2010-01-16 Jari Aalto <jari.aalto@cante.net>
7462
7463 * pcmpl-unix.el (pcmpl-unix-read-passwd-file): Doc fix.
7464
7465 2010-01-16 Chong Yidong <cyd@stupidchicken.com>
7466
7467 * emacs-lisp/advice.el (ad-add-advice): Doc fix (Bug#5274)
7468
7469 * emacs-lisp/cl-macs.el (defstruct): Doc fix (Bug#5267).
7470
7471 * startup.el (command-line): Remove unused --icon-type arg.
7472 Handle --display arg, passing it to command-line-1 (Bug#5392).
7473
7474 2010-01-16 Mario Lang <mlang@delysid.org>
7475
7476 * emacs-lisp/chart.el (chart-translate-namezone):
7477 * textmodes/artist.el (artist-compute-popup-menu-table):
7478 Remove duplicated words in doc-strings.
7479
7480 2010-01-15 David Abrahams <dave@boostpro.com> (tiny change)
7481
7482 * net/mairix.el (mairix-widget-send-query): Send -1 instead of nil
7483 to mairix-search to suppress threading (Bug#5342).
7484
7485 2010-01-15 Kenichi Handa <handa@m17n.org>
7486
7487 * international/mule-cmds.el (canonicalize-coding-system-name):
7488 Convert "msXXX", "ibmXXX", "windows-XXX" to "cpXXX" (Bug#5387).
7489
7490 2010-01-15 Glenn Morris <rgm@gnu.org>
7491
7492 * log-view.el (top-level): Require 'wid-edit. (Bug#5311)
7493
7494 * wid-edit.el (widget-keymap): Doc fix.
7495
7496 * vc-svn.el (vc-svn-print-log): Use --limit rather than -l since the
7497 former seems to be more widely accepted by various svn versions.
7498
7499 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
7500
7501 * find-cmd.el (find-constituents):
7502 * vc-arch.el (vc-arch-root):
7503 * window.el (window-body-height, pop-up-frames):
7504 * emacs-lisp/eieio-base.el (eieio-singleton, slot-missing):
7505 * progmodes/ada-stmt.el (ada-if):
7506 * progmodes/gdb-ui.el (gdb-jsonify-buffer):
7507 * textmodes/ispell.el (ispell-grep-options, ispell-dictionary-alist)
7508 (ispell-encoding8-command, ispell-aspell-supports-utf8)
7509 (ispell-last-program-name, ispell-help): Fix typos in docstrings.
7510
7511 * progmodes/flymake.el (flymake-post-syntax-check):
7512 Fix typo in error message.
7513
7514 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
7515
7516 * hexl.el (hexl-printable-character): Fix check of `hexl-iso',
7517 which is always a string. (Bug#5313)
7518
7519 2010-01-14 Juanma Barranquero <lekktu@gmail.com>
7520
7521 * progmodes/ada-xref.el (ada-default-prj-properties):
7522 Simplify previous change.
7523
7524 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
7525
7526 * progmodes/ada-xref.el (ada-default-prj-properties):
7527 Default ada_project_path to $ADA_PROJECT_PATH.
7528
7529 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
7530
7531 * progmodes/ada-mode.el (ada-create-keymap):
7532 Override `narrow-to-defun' with `ada-narrow-to-defun'.
7533
7534 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
7535
7536 * progmodes/ada-mode.el: Deal with Ada 2005 "overriding" keyword.
7537 (ada-subprog-start-re, ada-imenu-subprogram-menu-re): Add keyword.
7538 (ada-get-current-indent, ada-imenu-generic-expression)
7539 (ada-which-function): Check for it.
7540
7541 2010-01-14 Stephen Leake <stephen_leake@member.fsf.org>
7542
7543 * progmodes/ada-mode.el (ada-clean-buffer-before-saving): Make obsolete.
7544 (ada-mode): Don't obey `ada-clean-buffer-before-saving' anymore.
7545
7546 2010-01-14 Glenn Morris <rgm@gnu.org>
7547
7548 * frame.el (show-trailing-whitespace): Safe if boolean. (Bug#5312)
7549
7550 2010-01-14 Kenichi Handa <handa@m17n.org>
7551
7552 * composite.el (auto-composition-mode): Make it a buffer local
7553 variable (permanent-local).
7554 (auto-composition-function): Set the default value to
7555 auto-compose-chars.
7556 (auto-composition-mode): Make it a simple function, not a minor mode.
7557 (global-auto-composition-mode): Likewise.
7558 (turn-on-auto-composition-if-enabled): Delete it.
7559
7560 2010-01-13 Karl Fogel <kfogel@red-bean.com>
7561
7562 * bookmark.el (bookmark-bmenu-execute-deletions): Doc fix (Bug#5276).
7563
7564 2010-01-12 Michael Albinus <michael.albinus@gmx.de>
7565
7566 * files.el (copy-directory): Compute target for recursive
7567 directories with identical names. (Bug#5343)
7568
7569 2010-01-12 Glenn Morris <rgm@gnu.org>
7570
7571 * mail/emacsbug.el (report-emacs-bug-pretest-address): Set
7572 it to bug-gnu-emacs rather than emacs-pretest-bug.
7573
7574 2010-01-11 Sam Steingold <sds@gnu.org>
7575
7576 * imenu.el (imenu-default-create-index-function): Detect infinite
7577 loops caused by imenu-prev-index-position-function.
7578
7579 2010-01-11 Juanma Barranquero <lekktu@gmail.com>
7580
7581 * htmlfontify.el (htmlfontify-load-rgb-file)
7582 (htmlfontify-unload-rgb-file, hfy-fallback-colour-values)
7583 (htmlfontify-manual, htmlfontify, hfy-page-header, hfy-page-footer)
7584 (hfy-src-doc-link-style, hfy-src-doc-link-unstyle, hfy-link-extn)
7585 (hfy-link-style-fun, hfy-index-file, hfy-instance-file)
7586 (hfy-html-quote-regex, hfy-init-kludge-hook, hfy-post-html-hooks)
7587 (hfy-default-face-def, hfy-etag-regex, hfy-html-quote-map)
7588 (hfy-etags-cmd-alist-default, hfy-etags-bin, hfy-ignored-properties)
7589 (hfy-which-etags, hfy-etags-cmd, hfy-istext-command, hfy-display-class)
7590 (hfy-optimisations, hfy-tags-cache, hfy-tags-sortl, hfy-tags-rmap)
7591 (hfy-style-assoc, hfy-sheet-assoc, hfy-facemap-assoc, hfy-interq)
7592 (hfy-colour-vals, hfy-default-header, hfy-link-style-string)
7593 (hfy-triplet, hfy-slant, hfy-weight, hfy-combined-face-spec)
7594 (hfy-face-attr-for-class, hfy-face-to-style-i, hfy-size-to-int)
7595 (hfy-flatten-style, hfy-face-to-style, hfy-face-or-def-to-name)
7596 (hfy-face-to-css, hfy-p-to-face, hfy-p-to-face-lennart, hfy-face-at)
7597 (hfy-fontified-p, hfy-merge-adjacent-spans, hfy-buffer)
7598 (hfy-html-enkludge-buffer, hfy-html-quote, hfy-html-dekludge-buffer)
7599 (hfy-force-fontification, htmlfontify-buffer, hfy-dirname)
7600 (hfy-make-directory, hfy-text-p, hfy-mark-tag-names, hfy-relstub)
7601 (hfy-href-stub, hfy-href, hfy-mark-tag-hrefs, hfy-prepare-index-i)
7602 (hfy-prepare-index, hfy-prepare-tag-map, hfy-subtract-maps)
7603 (htmlfontify-run-etags): Fix typos in docstrings and remove superfluous
7604 backslash-quoting from parentheses, etc.
7605
7606 2010-01-11 Chong Yidong <cyd@stupidchicken.com>
7607
7608 * progmodes/js.el: Autoload javascript-mode alias.
7609
7610 2010-01-11 Juanma Barranquero <lekktu@gmail.com>
7611
7612 * ffap.el (ffap-shell-prompt-regexp, ffap-all-subdirs, ffap-url-p)
7613 (ffap-alist, ffap-tex-path, ffap-url-at-point, ffap-gopher-regexp)
7614 (ffap-gopher-at-point, ffap-file-at-point, ffap-read-file-or-url)
7615 (ffap-read-url-internal, ffap-menu, ffap-at-mouse):
7616 Fix typos in docstrings.
7617 (ffap-url-regexp): Doc fix.
7618 (ffap-at-mouse): Fix typo in message.
7619
7620 2010-01-11 Glenn Morris <rgm@gnu.org>
7621
7622 * version.el (emacs-copyright): Set copyright year to 2010.
7623
7624 2010-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
7625
7626 * format.el (format-annotate-function): Only set
7627 write-region-post-annotation-function after running to-fn so as not to
7628 affect nested write-region calls (bug#5273).
7629
7630 2010-01-10 Chong Yidong <cyd@stupidchicken.com>
7631
7632 * Makefile.in (ELCFILES): Add wisent/python-wy.el and
7633 wisent/python.el.
7634
7635 2010-01-09 Chong Yidong <cyd@stupidchicken.com>
7636
7637 * man.el (Man-goto-section): Signal error if the section is not
7638 found (Bug#5317).
7639
7640 2010-01-09 Juanma Barranquero <lekktu@gmail.com>
7641
7642 * vc-bzr.el (vc-bzr-working-revision): On Windows and MS-DOS, accept
7643 URLs with a leading triple slash in the file: scheme. (Bug#5345)
7644
7645 2010-01-09 Chong Yidong <cyd@stupidchicken.com>
7646
7647 * progmodes/compile.el: Don't treat compile-command as safe if
7648 compilation-read-command might be nil (Bug#4218).
7649
7650 2010-01-09 Jan Djärv <jan.h.d@swipnet.se>
7651
7652 * startup.el (command-line-1): Use orig-argi to check for ignored X and
7653 NS options.
7654
7655 2010-01-08 Kenichi Handa <handa@m17n.org>
7656
7657 * international/fontset.el (build-default-fontset-data):
7658 Exclude characters in scripts kana, hangul, han, or cjk-misc.
7659
7660 2010-01-07 Juanma Barranquero <lekktu@gmail.com>
7661
7662 * vc-dir.el (vc-dir-prepare-status-buffer): Pass a (fake) filename
7663 to `create-file-buffer' as it expects, not just a buffer name.
7664 (vc-dir-mode): Include the buffer name in `list-buffers-directory',
7665 to help uniquify. (Bug#3224)
7666
7667 2010-01-06 Jan Djärv <jan.h.d@swipnet.se>
7668
7669 * font-setting.el (font-setting-change-default-font): Use user-spec
7670 instead of name.
7671
7672 2010-01-06 Dan Nicolaescu <dann@ics.uci.edu>
7673
7674 * vc-bzr.el (vc-bzr-after-dir-status): Ignore pending merges.
7675
7676 2010-01-05 Tom Tromey <tromey@redhat.com>
7677
7678 * progmodes/python.el (python-font-lock-keywords):
7679 Handle qualified decorators (Bug#881).
7680
7681 2010-01-05 Dan Nicolaescu <dann@ics.uci.edu>
7682
7683 * vc-bzr.el (vc-bzr-working-revision): Fix looking for a revision
7684 in a lightweight checkout.
7685
7686 2010-01-05 Kenichi Handa <handa@m17n.org>
7687
7688 * language/indian.el (malayalam-composable-pattern): Fix ZWNJ and ZWJ.
7689
7690 2010-01-05 Dan Nicolaescu <dann@ics.uci.edu>
7691
7692 * vc-bzr.el (vc-bzr-diff): Obey vc-disable-async-diff.
7693
7694 2010-01-04 Dan Nicolaescu <dann@ics.uci.edu>
7695
7696 * vc-bzr.el (vc-bzr-state-heuristic): Make it work for lightweight
7697 checkouts. (Bug#618)
7698 (vc-bzr-log-view-mode): Also highlight the author.
7699 (vc-bzr-shelve-map): Change binding for vc-bzr-shelve-apply-at-point.
7700 (vc-bzr-shelve-menu-map):
7701 (vc-bzr-dir-extra-headers): Improve menu and tooltip text.
7702 (vc-bzr-shelve-apply): Make prompt more explicit.
7703
7704 2010-01-02 Chong Yidong <cyd@stupidchicken.com>
7705
7706 * net/browse-url.el (browse-url-encode-url): Don't escape commas.
7707 They are valid characters in URL paths (rfc3986), and at least
7708 Firefox does not understand the encoded version (Bug#3166).
7709
7710 2010-01-02 Daniel Elliott <danelliottster@gmail.com> (tiny change)
7711
7712 * progmodes/octave-mod.el (octave-end-keywords)
7713 (octave-block-begin-or-end-regexp, octave-block-match-alist):
7714 Add "end" keyword (Bug#3061).
7715 (octave-end-as-array-index-p): New function.
7716 (calculate-octave-indent): Use it.
7717
7718 2010-01-02 Karl Fogel <kfogel@red-bean.com>
7719
7720 * bookmark.el: Consistently put the text property on the bookmark name.
7721 (bookmark-bmenu-marks-width): Bump back to 2, to include
7722 annotation marks.
7723 (bookmark-bmenu-hide-filenames): Adjust for above, and put the text
7724 property on the bookmark name, instead of not putting it at all.
7725 (bookmark-bmenu-list): Fix where we put the text property.
7726
7727 2010-01-02 Karl Fogel <kfogel@red-bean.com>
7728
7729 * bookmark.el (bookmark-bmenu-save): Just depend on the new logic
7730 for showing buffer modified state (as added in the previous change).
7731
7732 2010-01-02 Karl Fogel <kfogel@red-bean.com>
7733
7734 * bookmark.el: Show modified state of bookmark buffer more accurately.
7735 (bookmark-bmenu-list): Initialize buffer-modified-p properly.
7736 (bookmark-send-edited-annotation): Mark bookmark-alist as modified.
7737 (with-buffer-modified-unmodified): New macro.
7738 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
7739 (bookmark-bmenu-mark, bookmark-bmenu-unmark, bookmark-bmenu-delete):
7740 Use new macro to preserve the buffer modified state.
7741
7742 2010-01-02 Karl Fogel <kfogel@red-bean.com>
7743
7744 * bookmark.el (bookmark-bmenu-select, bookmark-bmenu-1-window)
7745 (bookmark-bmenu-2-window, bookmark-bmenu-this-window)
7746 (bookmark-bmenu-other-window, bookmark-bmenu-switch-other-window)
7747 (bookmark-bmenu-show-annotation, bookmark-bmenu-edit-annotation)
7748 (bookmark-bmenu-rename, bookmark-bmenu-locate)
7749 (bookmark-bmenu-relocate, bookmark-bmenu-goto-bookmark):
7750 Remove unnecessary calls to `bookmark-bmenu-ensure-position'.
7751
7752 2010-01-02 Eli Zaretskii <eliz@gnu.org>
7753
7754 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
7755 Make the lines in the generated doc string shorter. (Bug#4668)
7756
7757 2010-01-02 Ryan Yeske <rcyeske@gmail.com>
7758
7759 * net/rcirc.el: Add follow-link binding (Bug#4738).
7760
7761 2010-01-02 Eli Zaretskii <eliz@gnu.org>
7762
7763 * Makefile.in (bzr-update): Rename from cvs-update.
7764 (cvs-update): New target for backward compatibility.
7765
7766 * makefile.w32-in (bzr-update): Rename from cvs-update.
7767 (cvs-update): New target for backward compatibility.
7768
7769 2010-01-02 Karl Fogel <kfogel@red-bean.com>
7770
7771 * bookmark.el: Remove gratuitous gratitude.
7772
7773 2010-01-02 Karl Fogel <kfogel@red-bean.com>
7774
7775 * bookmark.el (bookmark-bmenu-any-marks): New function.
7776 (bookmark-bmenu-save): Clear buffer modification if no marks.
7777
7778 2010-01-02 Karl Fogel <kfogel@red-bean.com>
7779
7780 * bookmark.el (bookmark-bmenu-marks-width): Define to 1, not 2.
7781 (bookmark-bmenu-list, bookmark-bmenu-bookmark): Calculate property
7782 positions by using `bookmark-bmenu-marks-width', instead of hardcoding.
7783 This fixes the `bookmark-bmenu-execute-deletions' bug reported here:
7784
7785 http://lists.gnu.org/archive/html/emacs-devel/2009-12/msg00819.html
7786 From: Sun Yijiang <sunyijiang {_AT_} gmail.com>
7787 To: emacs-devel {_AT_} gnu.org
7788 Subject: bookmark.el bug report
7789 Date: Mon, 28 Dec 2009 14:19:16 +0800
7790 Message-ID: 5065e2900912272219y3734fc9fsdaee41167ef99ad7@mail.gmail.com
7791
7792 2010-01-02 Karl Fogel <kfogel@red-bean.com>
7793
7794 * bookmark.el: Improvements suggested by Drew Adams:
7795 (bookmark-bmenu-ensure-position): New name for
7796 `bookmark-bmenu-check-position'. Just ensure the position,
7797 don't return any meaningful value.
7798 (bookmark-bmenu-header-height, bookmark-bmenu-marks-width):
7799 New constants.
7800
7801 2010-01-02 Juanma Barranquero <lekktu@gmail.com>
7802
7803 * bookmark.el (bookmarks-already-loaded): Doc fix (don't use `iff').
7804 (bookmark-yank-point, bookmark-bmenu-check-position):
7805 Fix typos in docstrings.
7806 (bookmark-save-flag, bookmark-bmenu-toggle-filenames)
7807 (bookmark-name-from-full-record, bookmark-get-position)
7808 (bookmark-set-position, bookmark-set, bookmark-handle-bookmark)
7809 (bookmark-delete, bookmark-save, bookmark-save, bookmark-bmenu-mode):
7810 Remove useless quoting of parenthesis, etc. in docstrings.
7811
7812 * ediff-mult.el (ediff-prepare-meta-buffer): Fix typo in help message.
7813 (ediff-append-custom-diff): Fix typo in error message.
7814 (ediff-meta-mark-equal-files): Fix typos in messages.
7815
7816 * mpc.el (mpc-playlist-delete): Fix typo in error messages.
7817
7818 * net/imap-hash.el (imap-hash-make): Doc fix.
7819 (imap-hash-test): Fix typo in error message; reflow docstring.
7820 (imap-hash-p, imap-hash-get, imap-hash-put, imap-hash-make-message)
7821 (imap-hash-count, imap-hash-server, imap-hash-port, imap-hash-ssl)
7822 (imap-hash-mailbox, imap-hash-user, imap-hash-password):
7823 Fix typos in docstrings.
7824 (imap-hash-open-connection): Fix typo in error message.
7825
7826 * play/gomoku.el (gomoku): Fix typos in docstring.
7827
7828 * progmodes/gdb-ui.el (gdb-location-alist): Reflow docstring.
7829 (gdb-jsonify-buffer): Fix typos in docstring.
7830 (gdb-goto-breakpoint): Fix typo in error message.
7831 ("Display Other Windows"): Fix typo in help message.
7832 (gdb-speedbar-expand-node): Fix typo in question.
7833
7834 * progmodes/idlw-help.el (idlwave-help-browse-url-available)
7835 (idlwave-html-system-help-location, idlwave-html-help-location)
7836 (idlwave-help-browser-function, idlwave-help-browser-generic-program)
7837 (idlwave-help-browser-generic-args, idlwave-help-directory)
7838 (idlwave-html-help-is-available, idlwave-help-mode-line-indicator)
7839 (idlwave-help-mode-map, idlwave-help-mode, idlwave-do-context-help)
7840 (idlwave-online-help, idlwave-help-html-link)
7841 (idlwave-help-show-help-frame, idlwave-help-assistant-command):
7842 Fix typos in docstrings.
7843 (idlwave-help-with-source, idlwave-help-find-routine-definition):
7844 Reflow docstrings.
7845 (idlwave-help-assistant-start): Fix typo in error message.
7846
7847 * progmodes/octave-mod.el (octave-mode, octave-electric-semi)
7848 (octave-electric-space): Fix typos in docstrings.
7849
7850 2010-01-01 Chong Yidong <cyd@stupidchicken.com>
7851
7852 * files.el (minibuffer-with-setup-hook): Doc fix (Bug#5149).
7853
7854 2010-01-01 Juri Linkov <juri@jurta.org>
7855
7856 * comint.el (comint-input-ring-size): Make it a defcustom and
7857 increase the default to 500 (Bug#5148).
7858
7859 2009-12-31 Nick Roberts <nickrob@snap.net.nz>
7860
7861 Further changes from EMACS_23_1_RC branch (2009-12-29 contd).
7862 * term/x-win.el (x-gtk-stock-map): Map some GUD buttons.
7863 * progmodes/gud.el (gud-menu-map): Add reverse-execution commands.
7864
7865 2009-12-30 Nick Roberts <nickrob@snap.net.nz>
7866
7867 Show working revision correctly for mercurial.
7868 * vc-hg.el (vc-hg-working-revision): Use hg parent instead of
7869 hg log as suggested by Alex Harsanyi <alexharsanyi@gmail.com>.
7870
7871 2009-12-29 Juanma Barranquero <lekktu@gmail.com>
7872
7873 Declare some functions for the byte-compiler.
7874 * progmodes/gdb-ui.el (speedbar-change-initial-expansion-list)
7875 (speedbar-timer-fn, speedbar-change-expand-button-char)
7876 (speedbar-delete-subblock, speedbar-center-buffer-smartly): Declare.
7877
7878 2009-12-29 Nick Roberts <nickrob@snap.net.nz>
7879
7880 This changeset reverts GDB Graphical Interface to use annotations.
7881 * progmodes/gdb-ui.el, progmodes/gud.el: Import from EMACS_23_1_RC.
7882
7883 2009-12-29 Dan Nicolaescu <dann@ics.uci.edu>
7884
7885 Make vc-dir work on subdirectories of the bzr root.
7886 * vc-bzr.el (vc-bzr-after-dir-status): Add new argument. Return
7887 file names relative to it.
7888 (vc-bzr-dir-status, vc-bzr-dir-status-files): Pass the bzr root
7889 relative directory to vc-bzr-after-dir-status.
7890
7891 2009-12-28 Tassilo Horn <tassilo@member.fsf.org>
7892
7893 * font-lock.el (font-lock-refresh-defaults): New function, which
7894 can be used to let font-lock react to external changes in
7895 variables like font-lock-defaults and keywords.
7896 See http://thread.gmane.org/gmane.emacs.devel/118777/focus=118802
7897
7898 2009-12-28 Dan Nicolaescu <dann@ics.uci.edu>
7899
7900 * vc-rcs.el (vc-rcs-register): Fix registering a specific version.
7901
7902 * vc-bzr.el (vc-bzr-log-view-mode): Fix short log regexp.
7903
7904 2009-12-28 Juanma Barranquero <lekktu@gmail.com>
7905
7906 Supersede color.diff settings in git log (bug#5211).
7907
7908 * vc-git.el (vc-git-print-log): Pass "--no-color" to log to avoid
7909 escape chars in its output when the user has color.diff set to `always'.
7910 This fix works on git 1.4.2 and newer (released on 2006-08-13).
7911
7912 2009-12-26 Kevin Ryde <user42@zip.com.au>
7913
7914 * info-look.el (sh-mode): Look for coreutils new "Concept Index"
7915 node. Keep previous "Index" name to work with past coreutils too.
7916
7917 * man.el (man): Revise docstring a bit to show -a and -l as
7918 examples. Add -k description since support for it has otherwise
7919 been a secret. (Further to bug#3717.)
7920 (Man-bgproc-sentinel): When "-k foo" produces no output show error
7921 "no matches" rather than "Can't find manpage", as the latter reads
7922 like -k was interpreted as a page name, which is not so. (Bug#5431)
7923
7924 2009-12-26 Michael Albinus <michael.albinus@gmx.de>
7925
7926 * net/tramp.el (tramp-handle-insert-directory): Quote "'" in the
7927 switches. Check also for //SUBDIRED// line.
7928
7929 2009-12-25 Kenichi Handa <handa@m17n.org>
7930
7931 * language/indian.el (devanagari-composable-pattern): Fixed to
7932 handle ZWNJ and ZWJ. Use it in composition-function-table for
7933 Devanagari.
7934 (malayalam-composable-pattern): Fix previous change.
7935
7936 2009-12-23 Vinicius Jose Latorre <viniciusjl@ig.com.br>
7937
7938 * ps-print.el (ps-face-attributes): It was not returning the
7939 attribute face for faces specified as string. Reported by harven
7940 <harven@free.fr>. (Bug#5254)
7941 (ps-print-version): New version 7.3.5.
7942
7943 2009-12-18 Ulf Jasper <ulf.jasper@web.de>
7944
7945 * calendar/icalendar.el (icalendar--convert-tz-offset):
7946 Fix timezone names.
7947 (icalendar--convert-tz-offset): Fix the "last-day-problem".
7948 (icalendar--add-diary-entry): Remove the trailing blank that
7949 diary-make-entry inserts.
7950
7951 2009-12-17 Michael Albinus <michael.albinus@gmx.de>
7952
7953 Make `file-expand-wildcards' work for remote files.
7954
7955 * files.el (file-expand-wildcards): In case of remote files, check
7956 only local file name part for wildcards. Provide feature 'files
7957 and subfeature 'remote-wildcards. (Bug#5198)
7958
7959 * net/tramp.el (tramp-handle-file-remote-p): Expand file name only
7960 if there is already an established connection.
7961 (tramp-advice-file-expand-wildcards): Remove it.
7962
7963 * net/tramp-compat.el (top): Autoload `tramp-handle-file-remote-p'.
7964 (tramp-advice-file-expand-wildcards): Move from tramp.el.
7965 Activate advice for older GNU Emacs versions. (Bug#5237)
7966
7967 2009-12-17 Juanma Barranquero <lekktu@gmail.com>
7968
7969 Some doc fixes (more needed).
7970
7971 * find-cmd.el (find-constituents): Reflow docstring.
7972 (find-cmd, find-prune, find-command): Fix typos in docstrings.
7973 (find-generic): Doc fix.
7974
7975 2009-12-17 Juri Linkov <juri@jurta.org>
7976
7977 Fix regression from 23.1 to allow multiple modes in Local Variables.
7978
7979 * files.el (hack-local-variables-filter): While ignoring duplicates,
7980 don't take `mode' into account.
7981 (hack-local-variables-filter, hack-dir-local-variables):
7982 Don't remove duplicate `mode' from local-variables-alist (like `eval').
7983
7984 2009-12-17 Juri Linkov <juri@jurta.org>
7985
7986 Make `dired-diff' safer. (Bug#5225)
7987
7988 * dired-aux.el (dired-diff): Signal an error when `file' equals to
7989 `current' or when `file' is a directory of the `current' file.
7990
7991 2009-12-17 Andreas Schwab <schwab@linux-m68k.org>
7992
7993 * emacs-lisp/autoload.el (batch-update-autoloads): Only exclude
7994 unconditionally preloaded files.
7995
7996 2009-12-16 Juri Linkov <juri@jurta.org>
7997
7998 Revert to old 23.1 logic of using the file at the mark as default.
7999 * dired-aux.el (dired-diff): Use the file at the mark as default
8000 if it's not the same as the current file, and the target dir is
8001 the current dir or the mark is active. Add the current file
8002 as the arg of `dired-dwim-target-defaults'. Use the default file
8003 in the prompt. (Bug#5225)
8004
8005 2009-12-15 Michael Albinus <michael.albinus@gmx.de>
8006
8007 * net/tramp.el (tramp-echo-mark-marker-length): New defconst.
8008 (tramp-echo-mark, tramp-echoed-echo-mark-regexp): Use it.
8009 (tramp-check-for-regexp): Check also, when an echoing shell stops
8010 to echo sent commands.
8011
8012 2009-12-14 Chong Yidong <cyd@stupidchicken.com>
8013
8014 * Makefile.in: Revert last change (Bug#5191).
8015
8016 2009-12-14 Dan Nicolaescu <dann@ics.uci.edu>
8017
8018 * vc-hg.el (vc-hg-print-log): Fix argument order.
8019 (vc-hg-working-revision): Make sure the command is executed in a
8020 known environment so that we can parse the output. (Bug#4417)
8021
8022 2009-12-14 Chong Yidong <cyd@stupidchicken.com>
8023
8024 * progmodes/python.el (python-symbol-completions): Remove text
8025 properties from symbol string before calling python-send-receive.
8026
8027 2009-12-14 Nick Roberts <nickrob@snap.net.nz>
8028
8029 * progmodes/gdb-mi.el (gdb-frame-handler): Only set gud-lat-frame
8030 when there are values for both file and line. (Bug#5060)
8031
8032 2009-12-14 Juri Linkov <juri@jurta.org>
8033
8034 * ediff-ptch.el (ediff-context-diff-label-regexp): Don't match
8035 whitespace after the file name of the first line of unified format,
8036 because git-diff doesn't output whitespace and file modification time
8037 after the file name.
8038
8039 2009-12-14 David Kastrup <dak@gnu.org>
8040
8041 * info.el (Info-hide-cookies-node): Before hiding a cookie,
8042 check if it already has the `display' property added by
8043 `Info-display-images-node', and not put the `invisible' property
8044 in this case.
8045
8046 2009-12-13 Glenn Morris <rgm@gnu.org>
8047
8048 * mail/emacsbug.el (message-sort-headers): Define for compiler.
8049 (report-emacs-bug): In message-mode, sort manually before storing
8050 original report text. (Bug#5178)
8051 Remove superfluous save-excursion.
8052
8053 2009-12-12 Michael Albinus <michael.albinus@gmx.de>
8054
8055 * net/dbus.el (dbus-property-handler): Filter lambda forms out
8056 when responding to "GetAll" properties.
8057
8058 2009-12-12 Chong Yidong <cyd@stupidchicken.com>
8059
8060 * simple.el (compose-mail): Remove mail-setup-with-from from
8061 customization checks.
8062
8063 2009-12-12 Eli Zaretskii <eliz@gnu.org>
8064
8065 * arc-mode.el (archive-rar-summarize): Support Attribute fields in
8066 RAR archives created on Unix systems.
8067
8068 2009-12-12 Stefan Monnier <monnier@iro.umontreal.ca>
8069
8070 * minibuffer.el (minibuffer-local-must-match-filename-map): Re-instate
8071 the varalias that was accidentally removed by the 2009-11-19 change
8072 (bug#5186).
8073
8074 2009-12-12 Kenichi Handa <handa@m17n.org>
8075
8076 * language/indian.el (indian-compose-regexp): New function.
8077 (malayalam-composable-pattern): Fix the pattern.
8078 (composition-function-table): Set malayalam-composable-pattern for
8079 Malayalam characters.
8080
8081 2009-12-11 Chong Yidong <cyd@stupidchicken.com>
8082
8083 * progmodes/bug-reference.el (bug-reference-map): Bind mouse-2
8084 rather than down-mouse-1, based on follow-link conventions.
8085
8086 * makefile.w32-in: Ensure that Lisp files in CEDET subdirectories
8087 are compiled.
8088
8089 2009-12-11 Michael McNamara <mac@mail.brushroad.com>
8090
8091 * progmodes/verilog-mode.el (verilog-vmm-begin-re, verilog-vmm-end-re)
8092 (verilog-vmm-statement-re, verilog-ovm-statement-re)
8093 (verilog-defun-level-not-generate-re, verilog-calculate-indent)
8094 (verilog-leap-to-head, verilog-backward-token):
8095 Fix indenting VMM macros. Reported by Jonathan Ashbrook.
8096
8097 2009-12-11 Wilson Snyder <wsnyder@wsnyder.org>
8098
8099 * progmodes/verilog-mode.el (verilog-auto-lineup)
8100 (verilog-nameable-item-re): Cleanup user-visible spelling and
8101 documentation errors. One reported by Gary Delp.
8102 (verilog-submit-bug-report): Mention bug tracking and CC co-author.
8103 (verilog-read-decls): Fix AUTOWIRE with types declared in a
8104 package, bug195. Reported by Pierre-David Pfister.
8105
8106 2009-12-11 Glenn Morris <rgm@gnu.org>
8107
8108 * progmodes/cc-engine.el (safe-pos-list): Define for compiler.
8109
8110 * mail/emacsbug.el: No longer require sendmail.
8111 Replace sendmail's `mail-text' by `rfc822-goto-eoh'. (Bug#5174)
8112 (report-emacs-bug-orig-text): Doc fix.
8113 (report-emacs-bug-send-command, report-emacs-bug-send-hook):
8114 New local variables, to adapt to different mail-user-agents.
8115 (report-emacs-bug): Fix test for a gnu.org address.
8116 Use overlays for emphasis, since font-lock defeats 'face property.
8117 Pretest bugs also end up at the newsgroup these days.
8118 Stop message-mode stripping text properties.
8119 Set and use the new buffer-local variables.
8120 (report-emacs-bug-hook): Add doc-string.
8121 Remove some unnecessary save-excursions and simplify.
8122 Use the appropriate hook and send-command.
8123
8124 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Standardize the
8125 capitalization of some menu entries.
8126
8127 2009-12-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8128
8129 * whitespace.el (whitespace-display-char-on):
8130 Ensure `buffer-display-table' is unique when two or more windows are
8131 visible. Reported by Martin Pohlack <mp26@os.inf.tu-dresden.de>.
8132 New version 12.1.
8133
8134 2009-12-10 Eli Zaretskii <eliz@gnu.org>
8135
8136 * arc-mode.el (archive-rar-summarize): Allow between 6 and 7
8137 characters in the Attribute field.
8138
8139 2009-12-10 Dan Nicolaescu <dann@ics.uci.edu>
8140
8141 * vc-svn.el (vc-svn-after-dir-status): Fix regexp. (Bug#4741)
8142
8143 2009-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
8144
8145 Let loaddefs.el adjust to changes in autoload-excludes (bug#5162).
8146 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
8147 Disregard autoload-excludes.
8148 (update-directory-autoloads): Obey autoload-excludes here instead.
8149 But don't store its contents in no-autoloads and remove entries that
8150 refer to excludes files.
8151
8152 2009-12-10 Glenn Morris <rgm@gnu.org>
8153
8154 * mail/feedmail.el (top-level): Move require 'mail-utils to start.
8155 (expand-mail-aliases): Define for compiler.
8156
8157 * vc-annotate.el (log-view-vc-backend, log-view-vc-fileset):
8158 Define for compiler.
8159
8160 * mail/emacsbug.el (report-emacs-bug): Use whichever send command is
8161 appropriate for the mail-user-agent in use.
8162
8163 2009-12-09 Michael Albinus <michael.albinus@gmx.de>
8164
8165 * net/tramp.el (tramp-handle-insert-directory): Suppress error messages.
8166
8167 2009-12-09 Dan Nicolaescu <dann@ics.uci.edu>
8168
8169 Fix short log parsing and fontification.
8170 * vc-bzr.el (vc-bzr-log-view-mode): Match dot in revision number.
8171 Fix fontification for the [merge] label.
8172
8173 2009-12-09 Vivek Dasmohapatra <vivek@etla.org>
8174
8175 Drop some properties to avoid surprises (bug#5002).
8176 * htmlfontify.el (hfy-ignored-properties): New defcustom.
8177 (hfy-fontify-buffer): Use it.
8178
8179 2009-12-09 Stefan Monnier <monnier@iro.umontreal.ca>
8180
8181 Minor cleanup.
8182 * ffap.el (ffap-symbol-value): Replace ffap-soft-value.
8183 Adjust all callers.
8184 (ffap-locate-file): Remove unused arg `dir-ok' and make other
8185 args compulsory. Adjust callers.
8186 (ffap-gopher-at-point): Remove unused var `name'.
8187
8188 Get rid of the ELCFILES abomination.
8189 * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
8190 (compile-elcfiles): New phony target.
8191 (compile-main): Compute ELCFILES dynamically.
8192 (compile-clean): New target to remove left-over elc files.
8193 (compile, all): Use it.
8194
8195 2009-12-09 Kenichi Handa <handa@etlken>
8196
8197 * international/mule-diag.el: Require help-mode instead of help-fns.
8198
8199 2009-12-09 Kenichi Handa <handa@m17n.org>
8200
8201 * international/mule-cmds.el (ucs-names): Supply sufficiently
8202 fine ranges instead of pre-calculating accurate ranges.
8203 Iterate with bigger gc-cons-threshold.
8204
8205 2009-12-08 Dan Nicolaescu <dann@ics.uci.edu>
8206
8207 Add support for stashing a snapshot of the current tree.
8208 * vc-git.el (vc-git-stash-snapshot): New function.
8209 (vc-git-stash-map, vc-git-extra-menu-map): Add a mapping for it.
8210
8211 2009-12-08 Jose E. Marchesi <jemarch@gnu.org>
8212
8213 * play/gomoku.el (gomoku-mode-map): Remap `move-(beginning|end)-of-line'
8214 instead of `(beginning|end)-of-line'.
8215
8216 2009-12-08 Glenn Morris <rgm@gnu.org>
8217
8218 * vc-mtn.el (vc-mtn-print-log): Fix typo in previous.
8219
8220 * Makefile.in (ELCFILES): Regenerate.
8221
8222 2009-12-07 Juri Linkov <juri@jurta.org>
8223
8224 Don't lazy-highlight the comint output in history Isearch mode.
8225
8226 * comint.el (comint-history-isearch-search): Instead of
8227 `comint-line-beginning-position', use `comint-after-pmark-p'
8228 to check if point if before the process mark, and go to
8229 `process-mark' in this case.
8230
8231 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
8232
8233 * textmodes/tex-mode.el (latex-complete)
8234 (latex-indent-or-complete): Remove.
8235 (latex-mode): Set completion-at-point-functions instead.
8236
8237 Provide a standard completion command and hook it into TAB.
8238 * minibuffer.el (completion-at-point-functions): New var.
8239 (completion-at-point): New command.
8240 * indent.el (indent-for-tab-command): Handle the `complete' behavior.
8241 * progmodes/python.el (python-mode-map): Use completion-at-point.
8242 (python-completion-at-point): Rename from python-partial-symbol and
8243 adjust for use in completion-at-point-functions.
8244 (python-mode): Setup completion-at-point for Python completion.
8245 * emacs-lisp/lisp.el (lisp-completion-at-point): New function
8246 extracted from lisp-complete-symbol.
8247 (lisp-complete-symbol): Use it.
8248 * emacs-lisp/lisp-mode.el (emacs-lisp-mode): Use define-derived-mode,
8249 setup completion-at-point for Elisp completion.
8250 (emacs-lisp-mode-map, lisp-interaction-mode-map):
8251 Use completion-at-point.
8252 * ielm.el (ielm-map): Use completion-at-point.
8253 (inferior-emacs-lisp-mode): Setup completion-at-point-functions.
8254 * progmodes/sym-comp.el: Move to...
8255 * obsolete/sym-comp.el: Move from progmodes.
8256
8257 2009-12-07 Eli Zaretskii <eliz@gnu.org>
8258
8259 Prevent save-buffer in Rmail buffers from using the coding-system
8260 of the current message, and from clobbering the encoding mnemonics
8261 in the mode line (Bug#4623).
8262
8263 * mail/rmail.el (rmail-swap-buffers): Swap encoding and modified
8264 flag, too.
8265 (rmail-message-encoding): New variable.
8266 (rmail-write-region-annotate): Record the encoding of the current
8267 message in rmail-message-encoding.
8268 (rmail-after-save-hook): New function, restores the encoding of
8269 the current message after the message collection is saved.
8270
8271 2009-12-07 Juri Linkov <juri@jurta.org>
8272
8273 * progmodes/grep.el (grep-read-files): Use `completing-read'
8274 instead of `read-string'. Set its `collection' arg to
8275 `read-file-name-internal'. (Bug#4301)
8276
8277 2009-12-07 Juri Linkov <juri@jurta.org>
8278
8279 Correctly restore original Isearch point. (Bug#4994)
8280
8281 * isearch.el (isearch-mode): Move `isearch-push-state' after
8282 `(run-hooks 'isearch-mode-hook)'.
8283 (isearch-cancel): When `isearch-push-state-function' is defined,
8284 let-bind `isearch-cmds' to the first state (the last element of
8285 `isearch-cmds') and call `isearch-top-state' (it calls pop-state
8286 function and restores the original point). Otherwise, move point
8287 to `isearch-opoint'.
8288
8289 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
8290
8291 * international/mule-cmds.el (ucs-names): Weed out at compile-time the
8292 chars that don't have names, so the table can be built much faster at
8293 run-time.
8294
8295 2009-12-07 Chong Yidong <cyd@stupidchicken.com>
8296
8297 * vc-bzr.el (vc-bzr-annotate-command): More elegant form for last
8298 change. Suggested by David Kastrup.
8299
8300 * simple.el (compose-mail): Check for incompatibilities and warn.
8301 (compose-mail-user-agent-warnings): New option.
8302
8303 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
8304
8305 Support showing a single log entry from vc-annotate.
8306 * vc.el (print-log): Add a new argument: START-REVISION.
8307 (vc-print-log-internal): Add a new optional argument and
8308 pass it to the backend.
8309 (vc-print-log, vc-print-root-log): Adjust callers.
8310 * vc-annotate.el (vc-annotate-show-log-revision-at-line): If a
8311 buffer already displays the requested log entry, use it.
8312 Otherwise display only the log entry in question.
8313 * vc-svn.el (vc-svn-print-log):
8314 * vc-mtn.el (vc-mtn-print-log):
8315 * vc-hg.el (vc-hg-state):
8316 * vc-git.el (vc-git-print-log): Add support for new argument START-REVISION.
8317 (vc-git-show-log-entry): Return t on success.
8318 * vc-bzr.el (vc-bzr-print-log): Add support new argument START-REVISION.
8319 (vc-bzr-show-log-entry): Return t on success.
8320 * vc-rcs.el (vc-rcs-print-log):
8321 * vc-sccs.el (vc-sccs-print-log):
8322 * vc-cvs.el (vc-cvs-print-log): Add new argument, ignore it.
8323
8324 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
8325
8326 * ediff-mult.el (ediff-setup-meta-map, ediff-prepare-meta-buffer):
8327 Add menus to the meta mode. (Bug#5043)
8328
8329 2009-12-07 Michael Kifer <kifer@cs.stonybrook.edu>
8330
8331 * ediff-init.el (ediff-event-key): Use event-to-character instead of
8332 event-key.
8333
8334 * ediff.el (ediff-buffers-internal): Add unwind-protect.
8335
8336 2009-12-07 Michael Albinus <michael.albinus@gmx.de>
8337
8338 Handle prompt rules of ksh in OpenBSD 4.5. Reported by Raphaël
8339 Berbain <raphael.berbain@gmail.com>.
8340
8341 * net/tramp.el (tramp-end-of-output): Move up. Use `#' and `$'
8342 characters.
8343 (tramp-initial-end-of-output): New defconst.
8344 (tramp-methods, tramp-find-shell)
8345 (tramp-open-connection-setup-interactive-shell)
8346 (tramp-maybe-open-connection): Use it.
8347 (tramp-shell-prompt-pattern, tramp-wait-for-output): Handle
8348 existence of `#' and `$'.
8349
8350 * net/tramp-fish.el (tramp-fish-maybe-open-connection): Use
8351 `tramp-initial-end-of-output'.
8352
8353 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu>
8354
8355 Get the background mode from the terminal for xterm, and set
8356 faces accordingly.
8357 * term/xterm.el (xterm-set-background-mode): New function.
8358 (terminal-init-xterm): Use it in case xterm supports background
8359 color queries. Recompute faces after getting the background
8360 color.
8361
8362 2009-12-07 Ulrich Mueller <ulm@gentoo.org>
8363
8364 * emacs-lisp/bytecomp.el (byte-compile-insert-header): Put the version
8365 number comment back on its own line, for easier parsing.
8366
8367 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
8368
8369 Make it work for non-file buffers (bug#5102).
8370 * doc-view.el (doc-view-current-cache-dir):
8371 Use doc-view-buffer-file-name rather than buffer-file-name.
8372 (doc-view-mode): Use buffer-name when buffer-file-name is nil.
8373
8374 2009-12-06 Óscar Fuentes <ofv@wanadoo.es>
8375
8376 * vc-bzr.el (vc-bzr-annotate-command): Handle the case where the
8377 author field is too short.
8378
8379 2009-12-06 Dan Nicolaescu <dann@ics.uci.edu>
8380
8381 * vc-git.el (vc-git-print-log): Handle a limit argument.
8382 Display the short log in graph form and with labels.
8383 (vc-git-log-view-mode): Handle labels.
8384
8385 Make vc-revert change VC state from 'added to 'unregistered.
8386 * vc-git.el (vc-git-revert): Call git reset first.
8387
8388 2009-12-06 Ulf Jasper <ulf.jasper@web.de>
8389
8390 * net/newst-backend.el, net/newst-plainview.el:
8391 * net/newst-reader.el, net/newst-ticker.el:
8392 * net/newst-treeview.el, net/newsticker.el:
8393 Require/provide newst-... (instead of newsticker-...). (Bug#5096)
8394
8395 2009-12-06 Chong Yidong <cyd@stupidchicken.com>
8396
8397 * log-view.el (log-view-mode-map): Bind "=" to log-view-diff too.
8398
8399 * vc-bzr.el (vc-bzr-annotate-command): Show author in annotation.
8400 Handle empty author field (Bug#4144). Suggested by Óscar Fuentes.
8401 (vc-bzr-annotate-time, vc-bzr-annotate-extract-revision-at-line):
8402 Update annotation regexp.
8403
8404 * simple.el (beginning-of-visual-line): Constrain to field
8405 boundaries (Bug#5106).
8406
8407 2009-12-06 Ulf Jasper <ulf.jasper@web.de>
8408
8409 * xml.el (xml-substitute-numeric-entities): Move
8410 newsticker--decode-numeric-entities in newst-backend.el to
8411 xml-substitute-numeric-entities in xml.el. (Bug#5008)
8412 * net/newst-backend.el (newsticker--parse-generic-feed)
8413 (newsticker--parse-generic-items)
8414 (newsticker--decode-numeric-entities): Move
8415 newsticker--decode-numeric-entities in newst-backend.el to
8416 xml-substitute-numeric-entities in xml.el. (Bug#5008)
8417
8418 2009-12-06 Daniel Colascione <dan.colascione@gmail.com>
8419
8420 * progmodes/js.el (js--js-not): Add null to the list of values.
8421
8422 2009-12-06 Chong Yidong <cyd@stupidchicken.com>
8423
8424 * ansi-color.el (ansi-color-for-comint-mode): Add :version keyword.
8425
8426 2009-12-06 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
8427
8428 * textmodes/bibtex.el (bibtex-enclosing-field): Exclude entry
8429 delimiter if it is at the end of the current line.
8430 (bibtex-generate-url-list): Fix docstring.
8431
8432 2009-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
8433
8434 * minibuffer.el (minibuffer-complete-and-exit): Don't replace the
8435 minibuffer's content with itself.
8436 Fold the confirm-after-completion case into the `confirm' case.
8437 (completion-pcm-word-delimiters): Add : and / to the delimiters.
8438
8439 2009-12-06 Kevin Ryde <user42@zip.com.au>
8440
8441 * ffap.el (ffap-rfc-path): Make this a defcustom since
8442 `ffap-rfc-directories' is also a defcustom. (Bug#4514.)
8443
8444 * info-look.el: Add setup for apropos-mode to use emacs-lisp-mode
8445 manuals, similar to existing setup for help-mode. (Bug#3913.)
8446
8447 2009-12-05 Juri Linkov <juri@jurta.org>
8448
8449 Save and restore dired buffer's point positions too. (Bug#4880)
8450
8451 * dired.el (dired-save-positions): Return in the first element
8452 buffer's position in format (BUFFER DIRED-FILENAME BUFFER-POINT).
8453 Doc fix.
8454 (dired-restore-positions): First restore buffer's position.
8455 While restoring window's positions, check if window still displays
8456 the original buffer.
8457
8458 2009-12-05 Chong Yidong <cyd@stupidchicken.com>
8459
8460 * bindings.el (complete-symbol): Call semantic-ia-complete-symbol
8461 if possible.
8462
8463 * shell.el (shell): Require ansi-color (Bug#5113).
8464
8465 * ansi-color.el (ansi-color-for-comint-mode): Default to t.
8466
8467 * hl-line.el (global-hl-line-highlight): Minor doc fix (Bug#4925).
8468
8469 2009-12-05 Alan Mackenzie <acm@muc.de>
8470
8471 * progmodes/cc-mode.el (c-before-hack-hook)
8472 (c-postprocess-file-styles): Revert change 2009-07-18T21:03:43Z!acm@muc.de to permit
8473 `c-file-style' to work again. This reversion restores the current
8474 software to its state in Emacs 23.1. (Bug#4146)
8475
8476 2009-12-05 Kevin Ryde <user42@zip.com.au>
8477
8478 * textmodes/sgml-mode.el (sgml-lexical-context): Recognise
8479 comment-start-skip to comment-end-skip as comment (Bug#4781).
8480
8481 2009-12-05 Juri Linkov <juri@jurta.org>
8482
8483 * info.el (Info-find-node-2): Set `Info-current-subfile' to nil
8484 for virtual nodes. (Bug#4147)
8485 (Info-find-node-2): Set `Info-current-node-virtual' to nil
8486 when moving from a virtual node.
8487 (Info-mode-menu): Add `Info-virtual-index' to the menu.
8488 (Info-mode): Add `Info-virtual-index' to the docstring.
8489
8490 2009-12-05 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
8491
8492 * textmodes/bibtex.el (bibtex-map-entries): Use marker to keep
8493 track of the buffer position of the end of a BibTeX entry as this
8494 position may change during reformatting.
8495 (bibtex-format-entry): Remove whitespace before processing
8496 numerical fields so that we recognize the latter properly.
8497 (bibtex-reformat): Do not use push which changes the global value
8498 of bibtex-entry-format.
8499 (bibtex-field-braces-alist, bibtex-field-strings-alist)
8500 (bibtex-field-re-init): Replace only space characters by regexp
8501 for whitespace.
8502 (bibtex-generate-url-list, bibtex-cite-matcher-alist): Fix docstring.
8503 (bibtex-initialize): Also update bibtex-strings.
8504 (bibtex-kill-field): Preserve white space at end of entry.
8505 (bibtex-kill-entry, bibtex-yank-pop, bibtex-insert-kill):
8506 Update bibtex-reference-keys.
8507
8508 2009-12-05 Stefan Monnier <monnier@iro.umontreal.ca>
8509
8510 * minibuffer.el (completion-pcm--merge-try): Also consider placing
8511 point after a star, if that's the only place where modifications can
8512 make progress.
8513
8514 2009-12-05 Dan Nicolaescu <dann@ics.uci.edu>
8515
8516 * vc-dir.el (vc-dir): Use the correct markup for showing keymaps
8517 in docstrings.
8518
8519 2009-12-04 Juri Linkov <juri@jurta.org>
8520
8521 * proced.el (proced): Call `(proced-update t)' to update process
8522 information instead of only running proced-post-display-hook.
8523 (proced-send-signal): Add a leading space to the buffer name
8524 " *Marked Processes*" to make this buffer ephemeral.
8525
8526 2009-12-04 Juri Linkov <juri@jurta.org>
8527
8528 * dired.el (dired-auto-revert-buffer): New defcustom.
8529 (dired-internal-noselect): Use it.
8530
8531 2009-12-04 Juri Linkov <juri@jurta.org>
8532
8533 Change roles of modes and functions in image-mode.el (Bug#5062).
8534
8535 * image-mode.el: Replace `image-mode-maybe' with `image-mode'
8536 in `auto-mode-alist'.
8537 (image-mode-previous-major-mode): New variable.
8538 (image-minor-mode-map): Rename from `image-mode-text-map'.
8539 (image-mode): Move graceful error-handling code from
8540 `image-minor-mode' to here. On errors call `image-mode-as-text'.
8541 (image-minor-mode): Remove all image-handling code.
8542 Replace `image-mode-text-map' with `image-minor-mode-map'.
8543 Check for `image-type' in mode-line format string.
8544 (image-mode-maybe): Make obsolete with an alias to `image-mode'.
8545 (image-mode-as-text): New function with most code from
8546 `image-mode-maybe'.
8547 (image-toggle-display-text): Move code that removes image
8548 properties from `image-toggle-display' to here.
8549 (image-toggle-display-image): New function with code that adds
8550 image properties copied from `image-toggle-display'.
8551 (image-toggle-display): Remove most code with leaving only code
8552 that toggles between `image-mode-as-text' and `image-mode'.
8553
8554 2009-12-04 Ulf Jasper <ulf.jasper@web.de>
8555
8556 * net/newst-treeview.el
8557 (newsticker--treeview-list-highlight-start): Restored call to
8558 save-excursion: Selected item was stuck.
8559 (newsticker--treeview-list-select): New.
8560 (newsticker--treeview-item-show-text)
8561 (newsticker--treeview-item-show)
8562 (newsticker--treeview-item-update): Use new
8563 newsticker-treeview-item-mode.
8564 (newsticker-treeview-update): Keep current item.
8565 (newsticker-treeview-next-new-or-immortal-item): Doc change.
8566 (newsticker--treeview-first-feed): Doc change.
8567 (newsticker-treeview-list-menu)
8568 (newsticker-treeview-item-menu): Added menu entries.
8569 (newsticker-treeview-item-mode): New.
8570
8571 * net/newst-backend.el (newsticker-customize): Delete other
8572 windows.
8573
8574 2009-12-04 Sam Steingold <sds@gnu.org>
8575
8576 * log-view.el (log-view-mode-map): "q" calls quit-window,
8577 like in all the other non-self-insert buffers.
8578
8579 2009-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
8580
8581 Minor cleanup.
8582 * term.el (term-send-raw, term-send-raw-meta): Use read-key-sequence's
8583 key decoding rather than do it manually via last-input-event +
8584 ascii-character.
8585 (term-exec): Use delete-and-extract-region.
8586 (term-handle-ansi-terminal-messages): Remove unused var `end'.
8587 (term-process-pager): Remove unused var `i'.
8588 (term-dynamic-simple-complete): Make obsolete.
8589 (serial-update-config-menu): Remove unused vars `y' and `str'.
8590 (term-update-mode-line): Remove unused var `temp'.
8591
8592 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
8593
8594 Limit the number of log entries displayed by default.
8595 * vc.el (vc-print-log-internal): Fix check for limit-unsupported.
8596 (vc-print-log, vc-print-root-log): Use vc-log-show-limit when not
8597 using a prefix argument.
8598
8599 2009-12-03 Glenn Morris <rgm@gnu.org>
8600
8601 * progmodes/idlwave.el (class): Restore still useful declaration.
8602
8603 2009-12-03 Alan Mackenzie <acm@muc.de>
8604
8605 Enhance `c-parse-state' to run efficiently in "brace deserts".
8606
8607 * progmodes/cc-mode.el (c-basic-common-init):
8608 Call c-state-cache-init.
8609 (c-neutralize-syntax-in-and-mark-CPP): Rename from
8610 c-extend-and-neutralize-syntax-in-CPP. Mark each CPP construct by
8611 placing `category' properties value 'c-cpp-delimiter at its boundaries.
8612
8613 * progmodes/cc-langs.el (c-before-font-lock-function):
8614 c-extend-and-neutralize-syntax-in-CPP has been renamed
8615 c-neutralize-syntax-in-and-mark-CPP.
8616
8617 * progmodes/cc-fonts.el (c-cpp-matchers): Mark template brackets
8618 with `category' properties now, not `syntax-table' ones.
8619
8620 * progmodes/cc-engine.el (c-syntactic-end-of-macro): A new
8621 enhanced (but slower) version of c-end-of-macro that won't land
8622 inside a literal or on another awkward character.
8623 (c-state-cache-too-far, c-state-cache-start)
8624 (c-state-nonlit-pos-interval, c-state-nonlit-pos-cache)
8625 (c-state-nonlit-pos-cache-limit, c-state-point-min)
8626 (c-state-point-min-lit-type, c-state-point-min-lit-start)
8627 (c-state-min-scan-pos, c-state-brace-pair-desert)
8628 (c-state-old-cpp-beg, c-state-old-cpp-end): New constants and
8629 buffer local variables.
8630 (c-state-literal-at, c-state-lit-beg)
8631 (c-state-cache-non-literal-place, c-state-get-min-scan-pos)
8632 (c-state-mark-point-min-literal, c-state-cache-top-lparen)
8633 (c-state-cache-top-paren, c-state-cache-after-top-paren)
8634 (c-get-cache-scan-pos, c-get-fallback-scan-pos)
8635 (c-state-balance-parens-backwards, c-parse-state-get-strategy)
8636 (c-renarrow-state-cache)
8637 (c-append-lower-brace-pair-to-state-cache)
8638 (c-state-push-any-brace-pair, c-append-to-state-cache)
8639 (c-remove-stale-state-cache)
8640 (c-remove-stale-state-cache-backwards, c-state-cache-init)
8641 (c-invalidate-state-cache-1, c-parse-state-1)
8642 (c-invalidate-state-cache): New defuns/defmacros/defsubsts.
8643 (c-parse-state): Enhance and refactor.
8644 (c-debug-parse-state): Amend to deal with all the new variables.
8645
8646 * progmodes/cc-defs.el (c-<-as-paren-syntax, c-mark-<-as-paren)
8647 (c->-as-paren-syntax, c-mark->-as-paren, c-unmark-<->-as-paren):
8648 modify to use category text properties rather than syntax-table ones.
8649 (c-suppress-<->-as-parens, c-restore-<->-as-parens): New defsubsts
8650 to switch off/on the syntactic paren property of C++ template
8651 delimiters using the category property.
8652 (c-with-<->-as-parens-suppressed): Macro to invoke code with
8653 template delims suppressed.
8654 (c-cpp-delimiter, c-set-cpp-delimiters, c-clear-cpp-delimiters):
8655 New constant/macros which apply category properties to the start
8656 and end of preprocessor constructs.
8657 (c-comment-out-cpps, c-uncomment-out-cpps): Defsubsts which
8658 "comment out" the syntactic value of characters in preprocessor
8659 constructs.
8660 (c-with-cpps-commented-out)
8661 (c-with-all-but-one-cpps-commented-out): Macros to invoke code
8662 with characters in all or all but one preprocessor constructs
8663 "commented out".
8664
8665 2009-12-03 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
8666
8667 * proced.el (proced-filter-alist): Use regexp-quote.
8668
8669 2009-12-03 Michael Albinus <michael.albinus@gmx.de>
8670
8671 Cleanup.
8672 * eshell/em-unix.el (top): Require 'esh-opt and 'pcomplete.
8673 (eshell/su, eshell/sudo): Require 'tramp. Fix problems reading
8674 arguments. Expand `default-directory'.
8675
8676 * net/tramp.el (tramp-handle-file-remote-p): Expand FILENAME for
8677 the benefit of returning an expanded localname.
8678 (tramp-tramp-file-p): Handle the case NAME is not a string.
8679
8680 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
8681
8682 Add support for bzr shelve/unshelve.
8683 * vc-bzr.el (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
8684 (vc-bzr-extra-menu-map): New variables.
8685 (vc-bzr-extra-menu, vc-bzr-extra-status-menu, vc-bzr-shelve)
8686 (vc-bzr-shelve-apply, vc-bzr-shelve-list)
8687 (vc-bzr-shelve-get-at-point, vc-bzr-shelve-delete-at-point)
8688 (vc-bzr-shelve-apply-at-point, vc-bzr-shelve-menu): New functions.
8689 (vc-bzr-dir-extra-headers): Display shelves.
8690
8691 * vc-bzr.el (vc-bzr-print-log): Deal with nil arguments better.
8692
8693 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
8694
8695 * textmodes/bibtex.el (bibtex-complete-internal):
8696 Use completion-in-region.
8697 (bibtex-text-in-field-bounds): Remove unused var `opoint'.
8698
8699 2009-12-03 Dan Nicolaescu <dann@ics.uci.edu>
8700
8701 Support applying stashes. Improve UI.
8702 * vc-git.el (vc-git-dir-extra-headers): Add tooltips.
8703 (vc-git-stash-apply, vc-git-stash-pop)
8704 (vc-git-stash-apply-at-point, vc-git-stash-pop-at-point)
8705 (vc-git-stash-menu): New functions.
8706 (vc-git-stash-menu-map): New variable.
8707 (vc-git-stash-map): Add bindings to popup a menu and to apply stashes.
8708
8709 2009-12-03 Glenn Morris <rgm@gnu.org>
8710
8711 * vc.el (log-view-vc-backend, log-view-vc-fileset): Declare.
8712 (vc-print-log-internal): Fix previous change.
8713 (vc-revert): Correct pluralization.
8714
8715 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
8716
8717 * progmodes/make-mode.el (makefile-special-targets-list): No need for
8718 it to be an alist any more.
8719 (makefile-complete): Use completion-in-region.
8720
8721 * progmodes/octave-mod.el (octave-complete-symbol):
8722 Use completion-in-region.
8723
8724 Misc cleanup.
8725 * progmodes/idlwave.el (idlwave-comment-hook): Simplify with `or'.
8726 (idlwave-code-abbrev, idlwave-display-user-catalog-widget)
8727 (idlwave-complete-class): Don't quote lambda.
8728 (idlwave-find-symbol-syntax-table, idlwave-mode-syntax-table)
8729 (idlwave-mode-map): Move initialization into declaration.
8730 (idlwave-action-and-binding): Use backquotes.
8731 (idlwave-in-quote, idlwave-reset-sintern, idlwave-complete-in-buffer):
8732 Simplify.
8733 (idlwave-is-pointer-dereference): Remove unused var `pos'.
8734 (idlwave-xml-create-rinfo-list): Remove unused var `entry'.
8735 (idlwave-convert-xml-clean-sysvar-aliases): Remove unused vars `new',
8736 `parts', and `all-parts'.
8737 (idlwave-xml-create-sysvar-alist): Remove unused var `fields'.
8738 (idlwave-convert-xml-system-routine-info): Remove unused string
8739 `version-string'.
8740 (idlwave-display-user-catalog-widget): Use dolist.
8741 (idlwave-scanning-lib): Declare dynamically-scoped var.
8742 (idlwave-scan-library-catalogs): Remove unused var `flags'.
8743 (completion-highlight-first-word-only): Declare to silence bytecomp.
8744 (idlwave-popup-select): Tighten scope of `resp'.
8745 (idlwave-find-struct-tag): Remove unused var `beg'.
8746 (idlwave-after-load-rinfo-hook): Declare.
8747 (idlwave-sintern-class-info): Remove unused var `taglist'.
8748 (idlwave-find-class-definition): Remove unused var `list'.
8749 (idlwave-complete-sysvar-tag-help): Remove unused var `main-base'.
8750 (idlwave-what-module-find-class): Remove unused var `classes'.
8751
8752 2009-12-03 Juanma Barranquero <lekktu@gmail.com>
8753
8754 * progmodes/pascal.el: Require CL when compiling (for lexical-let).
8755
8756 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
8757
8758 * hippie-exp.el (try-expand-dabbrev-visible): Preserve point in the
8759 buffers visited. Remove redundant current-buffer-saving.
8760
8761 2009-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
8762
8763 Use completion-in-buffer and remove uses of dynamic scoping.
8764 * progmodes/pascal.el (pascal-str, pascal-all, pascal-pred)
8765 (pascal-buffer-to-use, pascal-flag): Don't declare.
8766 (pascal-func-completion, pascal-type-completion, pascal-var-completion)
8767 (pascal-get-completion-decl, pascal-keyword-completion):
8768 Add `pascal-str' argument, save-excursion,
8769 return the found completions, and don't filter with pascal-pred.
8770 (pascal-completion-cache): New var.
8771 (pascal-completion): Don't switch buffer any more (it was never
8772 necessary). Don't save-excursion any more (it's done by the called
8773 subroutines). Use a cache to avoid redundant computations.
8774 Use complete-with-action rather than pascal-completion-response and
8775 let it apply the predicate as well.
8776 (pascal-complete-word): Use completion-in-buffer when
8777 pascal-toggle-completions is nil.
8778 (pascal-show-completions): Don't bind pascal-buffer-to-use since it's
8779 not used any more.
8780 (pascal-comp-defun): Don't change buffer any more.
8781 Use complete-with-action rather than pascal-completion-response and
8782 let it apply the predicate as well.
8783 (pascal-goto-defun): Change buffer before calling pascal-comp-defun
8784 when neded.
8785
8786 2009-12-02 Kenichi Handa <handa@m17n.org>
8787
8788 * language/indian.el: Include ZWJ and ZWNJ in the patterns to
8789 shape for all Indic scripts.
8790
8791 2009-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
8792
8793 Use completion-in-buffer.
8794 * wid-edit.el (widget-field-text-end): New function.
8795 (widget-field-value-get): Use it.
8796 (widget-string-complete, widget-file-complete)
8797 (widget-color-complete): Use it and completion-in-region.
8798 (widget-complete): Don't narrow the buffer.
8799
8800 2009-12-02 Glenn Morris <rgm@gnu.org>
8801
8802 * mail/rmail.el (rmail-pop-to-buffer): New function. (Bug#2282)
8803 (rmail-select-summary): Use rmail-pop-to-buffer.
8804 * mail/rmailsum.el: Replace all pop-to-buffer calls with
8805 rmail-pop-to-buffer, to prevent horizontal splits.
8806
8807 * calendar/diary-lib.el (diary-list-entries): Replace superfluous
8808 save-excursion with save-current-buffer.
8809 Widen before searching. (Bug#5093)
8810 (diary-list-sexp-entries): Remove superfluous save-excursion.
8811
8812 2009-12-02 Michael Welsh Duggan <mwd@cert.org>
8813
8814 * woman.el (woman-make-bufname): Handle man-pages with "." in the
8815 name. (Bug#5038)
8816
8817 2009-12-02 Andreas Politz <politza@fh-trier.de> (tiny change)
8818
8819 * ido.el (ido-file-internal): Handle filenames at point that do
8820 not have a directory part. (Bug#5049)
8821
8822 2009-12-02 Juanma Barranquero <lekktu@gmail.com>
8823
8824 * mpc.el (mpc-intersection, mpc-host, mpc-songs-playlist)
8825 (mpc-songs-jump-to, mpc-resume): Doc fixes.
8826
8827 2009-12-01 Rob Riepel <riepel@networking.Stanford.EDU>
8828
8829 * emulation/tpu-extras.el (tpu-cursor-free-mode): Emit message.
8830 (tpu-set-cursor-free, tpu-set-cursor-bound): Don't emit a message
8831 any more.
8832
8833 2009-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
8834
8835 * comint.el (comint-insert-input): Ignore clicks to the right of
8836 the field. Reported by Bob Nnamtrop <bobnnamtrop@gmail.com>.
8837
8838 * vc.el (vc-print-log-internal): Don't wait for the process to
8839 terminate before setting up the major mode.
8840
8841 * pcmpl-unix.el (pcomplete/cd): Complete more than one argument, just
8842 in case.
8843
8844 * pcomplete.el (pcomplete-std-complete): Don't try to complete past
8845 the last element.
8846
8847 * simple.el (normal-erase-is-backspace-mode): Fix thinko in message.
8848
8849 2009-12-01 Glenn Morris <rgm@gnu.org>
8850
8851 * window.el (window--display-buffer-2): Fix previous changes.
8852
8853 2009-12-01 Chong Yidong <cyd@stupidchicken.com>
8854
8855 * mail/sendmail.el (mail-setup-hook, mail-send-hook): Doc fixes.
8856
8857 2009-12-01 Glenn Morris <rgm@gnu.org>
8858
8859 * Makefile.in (ELCFILES): Add mpc.elc.
8860
8861 2009-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
8862
8863 * mpc.el: New file.
8864
8865 2009-12-01 Glenn Morris <rgm@gnu.org>
8866
8867 * window.el (window-to-use): Define for compiler.
8868
8869 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Make message
8870 consistent with others (no final period).
8871
8872 * mail/rmailmm.el (rmail-mime-handle): Doc fix.
8873 (rmail-mime-show): Downcase the encoding. (Bug#5070)
8874
8875 2009-12-01 Dan Nicolaescu <dann@ics.uci.edu>
8876
8877 Make vc-print-log buttons work.
8878 * log-view.el (log-view-mode-map): Inherit from widget-keymap.
8879
8880 2009-11-30 Ryan C. Thompson <rct@thompsonclan.org> (tiny change)
8881
8882 * savehist.el (savehist-autosave-interval): Allow setting to nil
8883 through customize. (Bug#5056)
8884
8885 2009-11-30 Juanma Barranquero <lekktu@gmail.com>
8886
8887 Fix references to jit-lock properties.
8888 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
8889 Refer to jit-lock-defer-multiline, not jit-lock-multiline.
8890 (perl-font-lock-special-syntactic-constructs):
8891 Quote jit-lock-defer-multiline property.
8892
8893 2009-11-30 Dan Nicolaescu <dann@ics.uci.edu>
8894
8895 * vc-git.el (vc-git-registered): Call vc-git-root only once.
8896
8897 2009-11-30 Juri Linkov <juri@jurta.org>
8898
8899 * misearch.el (multi-isearch-search-fun): Always provide a non-nil
8900 value `buffer' of `multi-isearch-next-buffer-current-function'.
8901 Use `(current-buffer)' when `buffer' is nil.
8902 (multi-isearch-next-buffer-from-list): Don't fallback to
8903 `(current-buffer)' when `buffer' is nil. (Bug#4947)
8904
8905 2009-11-30 Juri Linkov <juri@jurta.org>
8906
8907 * misearch.el (multi-isearch-read-buffers): Move canonicalization
8908 of buffers with `get-buffer' to `multi-isearch-buffers'.
8909 (multi-isearch-buffers, multi-isearch-buffers-regexp):
8910 Canonicalize BUFFERS with `get-buffer'. Doc fix.
8911 (multi-isearch-files, multi-isearch-files-regexp): Canonicalize
8912 FILES with `expand-file-name' converting relative file names
8913 to absolute. Doc fix. (Bug#4727)
8914
8915 2009-11-30 Juri Linkov <juri@jurta.org>
8916
8917 * misearch.el (multi-isearch-read-buffers)
8918 (multi-isearch-read-matching-buffers): New functions.
8919 (multi-isearch-buffers, multi-isearch-buffers-regexp):
8920 Use them in the `interactive' spec. Doc fix.
8921 (multi-isearch-read-files, multi-isearch-read-matching-files):
8922 New functions.
8923 (multi-isearch-files, multi-isearch-files-regexp):
8924 Use them in the `interactive' spec. Doc fix. (Bug#4725)
8925
8926 2009-11-30 Juri Linkov <juri@jurta.org>
8927
8928 * doc-view.el (doc-view-continuous):
8929 Rename from `doc-view-continuous-mode'.
8930 (doc-view-menu): Move "Toggle display" to the top.
8931 Add submenu "Continuous" with radio buttons "Off"/"On"
8932 and "Save as Default".
8933 (doc-view-scroll-up-or-next-page)
8934 (doc-view-scroll-down-or-previous-page)
8935 (doc-view-next-line-or-next-page)
8936 (doc-view-previous-line-or-previous-page): Rename
8937 `doc-view-continuous-mode' to `doc-view-continuous'. (Bug#4896)
8938
8939 2009-11-30 Juri Linkov <juri@jurta.org>
8940
8941 * comint.el (comint-mode-map): Rebind `M-r' from
8942 `comint-previous-matching-input' to
8943 `comint-history-isearch-backward-regexp'.
8944 Unbind `M-s' to allow global key binding `M-s'.
8945 Add menu items for `comint-history-isearch-backward' and
8946 `comint-history-isearch-backward-regexp'. (Bug#3746)
8947
8948 2009-11-30 Juri Linkov <juri@jurta.org>
8949
8950 * replace.el (perform-replace): Let-bind recenter-last-op to nil.
8951 For def=recenter, replace `recenter' with `recenter-top-bottom'
8952 that is called with `this-command' and `last-command' let-bound
8953 to `recenter-top-bottom'. When the last `def' was not `recenter',
8954 set `recenter-last-op' to nil. (Bug#4981)
8955
8956 2009-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
8957
8958 Minor cleanup and simplification.
8959 * filecache.el (file-cache-add-directory)
8960 (file-cache-add-directory-recursively)
8961 (file-cache-add-from-file-cache-buffer)
8962 (file-cache-delete-file-regexp, file-cache-delete-directory)
8963 (file-cache-files-matching-internal, file-cache-display): Use dolist.
8964 (file-cache-temp-minibuffer-message): Delete function.
8965 (file-cache-minibuffer-complete): Use minibuffer-message instead.
8966
8967 * progmodes/perl-mode.el (perl-font-lock-special-syntactic-constructs):
8968 Don't signal an error when bumping into EOB in tr, s, or y.
8969
8970 2009-11-29 Juri Linkov <juri@jurta.org>
8971
8972 * startup.el (fancy-about-text): Fix wording of Guided Tour.
8973 (Bug#4960)
8974
8975 * descr-text.el (describe-char-unidata-list): Use lowercase name
8976 for "Unicode name" like in other tags.
8977
8978 2009-11-29 Juri Linkov <juri@jurta.org>
8979
8980 * ediff-util.el (ediff-minibuffer-with-setup-hook):
8981 New compatibility macro.
8982 (ediff-read-file-name): Use it instead of `minibuffer-with-setup-hook'.
8983
8984 2009-11-29 Juri Linkov <juri@jurta.org>
8985
8986 Add defcustom to define the cycling order of `recenter-top-bottom'.
8987 (Bug#4981)
8988
8989 * window.el (recenter-last-op): Doc fix.
8990 (recenter-positions): New defcustom.
8991 (recenter-top-bottom): Rewrite to use `recenter-positions'.
8992 (move-to-window-line-top-bottom): Rewrite to use `recenter-positions'.
8993
8994 2009-11-29 Michael Albinus <michael.albinus@gmx.de>
8995
8996 Improve integration of Tramp and ange-ftp in eshell.
8997
8998 * eshell/em-unix.el (eshell/whoami): Make it a defun but a defalias.
8999 (eshell/su): Flatten args. Apply better args parsing. Use "cd".
9000 (eshell/sudo): Flatten args. Let-bind `default-directory'.
9001
9002 * eshell/esh-util.el (top): Require also Tramp when compiling.
9003 (eshell-directory-files-and-attributes): Check for FTP remote
9004 connection.
9005 (eshell-parse-ange-ls): Let-bind `ange-ftp-name-format',
9006 `ange-ftp-ftp-name-arg', `ange-ftp-ftp-name-res'.
9007 (eshell-file-attributes): Handle ".". Return `entry'.
9008
9009 * net/ange-ftp.el (ange-ftp-parse-filename): Use `save-match-data'.
9010 (ange-ftp-directory-files-and-attributes)
9011 (ange-ftp-real-directory-files-and-attributes): New defuns.
9012
9013 * net/tramp.el (tramp-maybe-open-connection): Open the remote
9014 shell with "exec" when possible. This prevents trailing prompts
9015 in `start-file-process'.
9016
9017 2009-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
9018
9019 Try and remove assumptions about point-min==1.
9020 * nxml/rng-valid.el (rng-validate-mode): Don't hardcode point-min==1.
9021 (rng-compute-mode-line-string): Show the validation percentage in
9022 terms of the narrowed text, not the widened text.
9023 (rng-do-some-validation): Don't catch internal errors when debugging.
9024 (rng-first-error): Simplify.
9025 (rng-after-change-function): Remove work around. AFAIK the bug has
9026 been fixed a while ago.
9027
9028 * image-mode.el (image-minor-mode): Exit more gracefully when the image
9029 cannot be displayed (e.g. when doing C-x C-f some-new-file.svg RET).
9030
9031 * man.el (Man-completion-table): Make it easier to enter "<sec> <name>".
9032
9033 * eshell/em-prompt.el (eshell-prompt-function): Abbreviate pwd, since
9034 `cd' doesn't always do it for us (bug#5067).
9035
9036 * pcomplete.el (pcomplete-entries): Revert change installed mistakenly
9037 on 2009-10-25 as part of some other change (bug#5067).
9038
9039 2009-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
9040
9041 * emacs-lisp/bytecomp.el (byte-compile-warning-types): New type
9042 `suspicious'.
9043 (byte-compile-warnings): Use byte-compile-warning-types.
9044 (byte-compile-save-excursion): Warn about use of set-buffer right
9045 after save-excursion.
9046
9047 * progmodes/gud.el (gud-basic-call): Don't only save the buffer but
9048 the excursion as well.
9049
9050 2009-11-27 Michael Albinus <michael.albinus@gmx.de>
9051
9052 * eshell/em-unix.el (eshell/su, eshell/sudo): New defuns,
9053 providing a Tramp related implementation of "su" and "sudo".
9054 (eshell-unix-initialize): Add "su" and "sudo".
9055
9056 2009-11-27 Daiki Ueno <ueno@unixuser.org>
9057
9058 * net/socks.el (socks-send-command): Convert binary request to
9059 unibyte before sending. This fixes mishandling of some port
9060 numbers such as 129.
9061
9062 2009-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
9063
9064 * help.el (describe-bindings-internal): Remove `interactive'.
9065
9066 * man.el (Man-completion-table): Trim a terminating "(".
9067 Remove the space between name page a section.
9068 Add the command's description on the `help-echo' property.
9069 Remove `process-connection-type' binding since it's unused by
9070 call-process.
9071 Provide completion for the "<section> <name>" format as well.
9072 (Man-default-man-entry): Remove spurious var shadowing the argument.
9073
9074 2009-11-26 Kevin Ryde <user42@zip.com.au>
9075
9076 * log-view.el: Add "Keywords: tools", since its other keywords
9077 aren't in finder-known-keywords, and following vc.el.
9078
9079 * sha1.el (sha1-string-external): default-directory "/" in case
9080 otherwise non-existent. process-connection-type pipe for touch of
9081 efficiency recommended by elisp manual. (An aside in Bug#3911.)
9082
9083 2009-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
9084
9085 Misc coding convention cleanups.
9086 * htmlfontify.el (hfy-init-kludge-hook): Rename from
9087 hfy-init-kludge-hooks.
9088 (hfy-etags-cmd, hfy-flatten-style, hfy-invisible-name, hfy-face-at)
9089 (hfy-fontify-buffer, hfy-prepare-index-i, hfy-subtract-maps)
9090 (hfy-save-kill-buffers, htmlfontify-copy-and-link-dir): Use dolist
9091 and push.
9092 (hfy-slant, hfy-weight): Use tables rather than code.
9093 (hfy-box-to-border-assoc, hfy-box-to-style, hfy-decor)
9094 (hfy-face-to-style-i, hfy-fontify-buffer): Use `case'.
9095 (hfy-face-attr-for-class): Initialize `face-spec' directly.
9096 (hfy-face-to-css): Remove `nconc' with single arg.
9097 (hfy-p-to-face-lennart): Use `or'.
9098 (hfy-face-at): Hoist common code. Remove spurious quotes in `case'.
9099 (hfy-overlay-props-at, hfy-mark-tag-hrefs): Eta-reduce.
9100 (hfy-compile-stylesheet, hfy-merge-adjacent-spans)
9101 (hfy-compile-face-map, hfy-parse-tags-buffer): Use push.
9102 (hfy-force-fontification): Use run-hooks.
9103
9104 2009-11-26 Vivek Dasmohapatra <vivek@etla.org>
9105
9106 Various minor fixes.
9107 * htmlfontify.el (hfy-default-header): Add toggle_invis since
9108 Javascript belongs in the header, not the body.
9109 (hfy-javascript): Remove.
9110 (hfy-fontify-buffer): Don't insert it any more.
9111 (hfy-face-at): Handle (face0 face1 face2) style face properties.
9112 Fix bug in invis handling when there were no invis props in a chunk.
9113
9114 2009-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
9115
9116 * vc-bzr.el (vc-bzr-annotate-command): Make operation asynchronous.
9117
9118 2009-11-26 Dan Nicolaescu <dann@ics.uci.edu>
9119
9120 * finder.el (finder-mode-map): Add a menu.
9121
9122 2009-11-26 Michael McNamara <mac@mail.brushroad.com>
9123
9124 * progmodes/verilog-mode.el (verilog-at-struct-p): Support "signed" and
9125 "unsigned" structs.
9126
9127 (verilog-leap-to-head, verilog-backward-token): Handle "disable
9128 fork" statement better.
9129
9130 2009-11-26 Wilson Snyder <wsnyder@wsnyder.org>
9131
9132 * progmodes/verilog-mode.el (verilog-auto-insert-lisp)
9133 (verilog-delete-auto, verilog-delete-empty-auto-pair)
9134 (verilog-library-filenames): Fix AUTOINSERTLISP to support insert-file.
9135 Reported by Clay Douglass.
9136
9137 (verilog-auto-inst, verilog-auto-star-safe)
9138 (verilog-delete-auto-star-implicit, verilog-read-sub-decls):
9139 Fix removing "// Interfaces" when saving .* expansions. Reported by
9140 Pierre-David Pfister.
9141
9142 2009-11-26 Glenn Morris <rgm@gnu.org>
9143
9144 * eshell/em-dirs.el (eshell/cd): Don't throw to a tag outside
9145 the scope.
9146
9147 2009-11-25 Johan Bockgård <bojohan@gnu.org>
9148
9149 * vc-annotate.el (vc-annotate-revision-previous-to-line):
9150 Really use previous revision.
9151
9152 2009-11-25 Kevin Ryde <user42@zip.com.au>
9153
9154 * man.el (Man-completion-table): default-directory "/" in case
9155 doesn't otherwise exist. process-environment COLUMNS=999 so as
9156 not to truncate long names. process-connection-type pipe to avoid
9157 any chance of hitting the pseudo-tty TIOCGWINSZ.
9158 (man): completion-ignore-case t for friendliness and since man
9159 itself is case-insensitive on the command line.
9160 Further to Bug#3717.
9161
9162 * arc-mode.el: Add "Keywords: files", so the details in its
9163 commentary can be reached from finder-by-keyword.
9164 * textmodes/dns-mode.el: Add "Keywords: comm". It's only an
9165 editing mode, but it's comms related and sgml-mode.el has "comm"
9166 on that basis too.
9167 * textmodes/bibtex-style.el: Add "Keywords: tex".
9168 * international/isearch-x.el, international/ja-dic-cnv.el:
9169 * international/ja-dic-utl.el, international/kkc.el:
9170 Add "Keywords: i18n", so they can be reached from finder-by-keyword.
9171
9172 2009-11-25 Juri Linkov <juri@jurta.org>
9173
9174 * man.el (Man-completion-table): Modify regexp to include
9175 section names to completion strings. (Bug#3717)
9176
9177 2009-11-25 Juri Linkov <juri@jurta.org>
9178
9179 Search recursively in gzipped files. (Bug#4982)
9180
9181 * progmodes/grep.el (grep-highlight-matches): Add new options
9182 `always' and `auto'. Doc fix.
9183 (grep-process-setup): Check `grep-highlight-matches' for
9184 `auto-detect' to determine the need to compute grep defaults.
9185 Move Windows/DOS specific --colors settings handling
9186 to `grep-compute-defaults'. Check `grep-highlight-matches'
9187 to get the value of "--color=".
9188 (grep-compute-defaults): Compute `grep-highlight-matches' when it
9189 has the value `auto-detect'. Move Windows/DOS specific settings
9190 from `grep-process-setup'.
9191 (zrgrep): New command with alias `rzgrep'.
9192
9193 2009-11-25 Juri Linkov <juri@jurta.org>
9194
9195 * doc-view.el (doc-view-mode): Set buffer-local `view-read-only'
9196 to nil instead of switching off view-mode. (Bug#4896)
9197
9198 2009-11-25 Juri Linkov <juri@jurta.org>
9199
9200 Mouse-wheel scrolling for DocView Continuous mode. (Bug#4896)
9201
9202 * mwheel.el (mwheel-scroll-up-function)
9203 (mwheel-scroll-down-function): New defvars.
9204 (mwheel-scroll): Funcall `mwheel-scroll-up-function' instead of
9205 `scroll-up', and `mwheel-scroll-down-function' instead of
9206 `scroll-down'.
9207
9208 * doc-view.el (doc-view-scroll-up-or-next-page)
9209 (doc-view-scroll-down-or-previous-page): Add optional ARG.
9210 Use this ARG in the call to image-scroll-up/image-scroll-down.
9211 Change `interactive' spec to "P". Goto next/previous page only
9212 when `doc-view-continuous-mode' is non-nil or ARG is nil (for the
9213 SPC/DEL case). Doc fix.
9214 (doc-view-next-line-or-next-page)
9215 (doc-view-previous-line-or-previous-page): Rename arg to ARG
9216 for consistency.
9217 (doc-view-mode): Set buffer-local `mwheel-scroll-up-function' to
9218 `doc-view-scroll-up-or-next-page', and buffer-local
9219 `mwheel-scroll-down-function' to
9220 `doc-view-scroll-down-or-previous-page'.
9221
9222 2009-11-25 Juri Linkov <juri@jurta.org>
9223
9224 Provide additional default values (directories at other Dired
9225 windows) via M-n in the minibuffer of some Dired commands.
9226
9227 * dired-aux.el (dired-diff, dired-compare-directories)
9228 (dired-do-create-files): Use `dired-dwim-target-defaults' to set
9229 `minibuffer-default' in `minibuffer-with-setup-hook'.
9230 (dired-dwim-target-directory): Find a window that displays Dired
9231 buffer instead of failing when the next window is not Dired.
9232 Use `get-window-with-predicate' to find for the next Dired window.
9233 (dired-dwim-target-defaults): New function.
9234
9235 * ediff-util.el (ediff-read-file-name):
9236 Use `dired-dwim-target-defaults' to set `minibuffer-default'
9237 in `minibuffer-with-setup-hook'.
9238
9239 2009-11-25 Juri Linkov <juri@jurta.org>
9240
9241 Provide additional default values (file name at point or at the
9242 current Dired line) via M-n for file reading minibuffers. (Bug#5010)
9243
9244 * minibuffer.el (read-file-name-defaults): New function.
9245 (read-file-name): Reset `minibuffer-default' to nil when
9246 it duplicates initial input `insdef'.
9247 Bind `minibuffer-default-add-function' to lambda that
9248 calls `read-file-name-defaults' in `minibuffer-selected-window'.
9249 (minibuffer-insert-file-name-at-point): New command.
9250
9251 * files.el (file-name-at-point-functions): New defcustom.
9252 (find-file-default): Remove defvar.
9253 (find-file-read-args): Don't use `find-file-default'.
9254 Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
9255 to `read-file-name'.
9256 (find-file-literally): Use `read-file-name' with
9257 `confirm-nonexistent-file-or-buffer'.
9258
9259 * ffap.el (ffap-guess-file-name-at-point): New autoloaded function.
9260
9261 * dired.el (dired-read-dir-and-switches):
9262 Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
9263 to `read-file-name'.
9264 (dired-file-name-at-point): New function.
9265 (dired-mode): Add hook `dired-file-name-at-point' to
9266 `file-name-at-point-functions'.
9267
9268 2009-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
9269
9270 Really make the *Completions* window soft-dedicated (bug#5030).
9271 * window.el (window--display-buffer-2): Add `dedicated' argument.
9272 (display-buffer): Pass it when needed so the dedicated flag is set
9273 after calling set-window-buffer, which would otherwise reset it.
9274
9275 2009-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
9276
9277 * progmodes/meta-mode.el (meta-complete-symbol):
9278 * progmodes/etags.el (complete-tag):
9279 * mail/mailabbrev.el (mail-abbrev-complete-alias):
9280 Use completion-in-region.
9281
9282 * dabbrev.el (dabbrev--minibuffer-origin): Use minibuffer-selected-window.
9283 (dabbrev-completion): Use completion-in-region.
9284 (dabbrev--abbrev-at-point): Simplify regexp.
9285
9286 * abbrev.el (abbrev--before-point): Use word-motion functions
9287 if :regexp is not specified (bug#5031).
9288
9289 * subr.el (string-prefix-p): New function.
9290
9291 * man.el (Man-completion-cache): New var.
9292 (Man-completion-table): Use it.
9293
9294 * vc.el (vc-print-log-internal): Make `limit' optional for better
9295 compatibility (e.g. with vc-annotate.el).
9296
9297 2009-11-24 Kevin Ryde <user42@zip.com.au>
9298
9299 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp):
9300 Build value with regexp-opt instead of explicit joining loop. (Bug#4927)
9301
9302 * emacs-lisp/elint.el (elint-add-required-env): Better error message
9303 when .el source file not found or other error.
9304
9305 2009-11-24 Markus Triska <markus.triska@gmx.at>
9306
9307 * linum.el (linum-update-window): Ignore intangible (bug#4996).
9308
9309 2009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
9310
9311 Handle the [back] button properly (bug#4979).
9312 * descr-text.el (describe-text-properties): Add a `buffer' argument.
9313 Use help-setup-xref, help-buffer, and with-help-window.
9314 (describe-char): Add `buffer' argument.
9315 Pass proper command to help-setup-xref. Don't meddle with
9316 help-xref-stack-item directly.
9317 (describe-text-category): Use with-help-window and help-buffer.
9318
9319 * emacs-lisp/shadow.el (list-load-path-shadows): Setup a major mode
9320 for the displayed buffer (bug#4887).
9321
9322 * man.el (Man-completion-table): New function.
9323 (man): Use it.
9324
9325 2009-11-24 David Reitter <david.reitter@gmail.com>
9326
9327 * vc-git.el (vc-git-registered): Use checkout directory (where
9328 .git is) rather than the file's directory and a relative path spec
9329 to work around a bug in git.
9330
9331 2009-11-24 Michael Albinus <michael.albinus@gmx.de>
9332
9333 Improve handling of processes on remote hosts.
9334
9335 * eshell/esh-util.el (eshell-path-env): New defvar.
9336 (eshell-parse-colon-path): New defun.
9337 (eshell-file-attributes): Use `eshell-parse-colon-path'.
9338
9339 * eshell/esh-ext.el (eshell-search-path):
9340 Use `eshell-parse-colon-path'.
9341 (eshell-remote-command): Remove argument HANDLER.
9342 (eshell-external-command): Check for FTP remote connection.
9343
9344 * eshell/esh-proc.el (eshell-gather-process-output):
9345 Use `file-truename', in order to start also symlinked files.
9346 Apply `start-file-process' instead of `start-process'.
9347 Shorten `command' to the local file name part.
9348
9349 * eshell/em-cmpl.el (eshell-complete-commands-list):
9350 Use `eshell-parse-colon-path'.
9351
9352 * eshell/em-unix.el (eshell/du): Check for FTP remote connection.
9353
9354 * net/tramp.el (tramp-eshell-directory-change): New defun. Add it
9355 to `eshell-directory-change-hook'.
9356
9357 2009-11-24 Tassilo Horn <tassilo@member.fsf.org>
9358
9359 * doc-view.el (doc-view-mode): Switch off view-mode explicitly,
9360 because it could be enabled automatically if view-read-only is non-nil.
9361
9362 2009-11-24 Michael Kifer <kifer@cs.stonybrook.edu>
9363
9364 * ediff-vers.el (ediff-rcs-get-output-buffer): Revert the change
9365 made on 2009-11-22.
9366
9367 2009-11-24 Glenn Morris <rgm@gnu.org>
9368
9369 * bookmark.el (bookmark-bmenu-hide-filenames): Remove assignment to
9370 deleted variable bookmark-bmenu-bookmark-column.
9371
9372 2009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
9373
9374 * bookmark.el (bookmark-bmenu-search): Clear echo area when exiting.
9375
9376 2009-11-23 Ken Brown <kbrown@cornell.edu> (tiny change)
9377
9378 * net/browse-url.el (browse-url-filename-alist): On Windows, add
9379 two slashes to the "file:" prefix.
9380 (browse-url-file-url): De-munge Cygwin filenames before passing
9381 them to Windows browser.
9382 (browse-url-default-windows-browser): Use call-process.
9383
9384 2009-11-23 Juri Linkov <juri@jurta.org>
9385
9386 Implement DocView Continuous mode. (Bug#4896)
9387 * doc-view.el (doc-view-continuous-mode): New defcustom.
9388 (doc-view-mode-map): Bind C-n/<down> to
9389 `doc-view-next-line-or-next-page', C-p/<up> to
9390 `doc-view-previous-line-or-previous-page'.
9391 (doc-view-next-line-or-next-page)
9392 (doc-view-previous-line-or-previous-page): New commands.
9393
9394 2009-11-23 Juri Linkov <juri@jurta.org>
9395
9396 Implement Isearch in comint input history. (Bug#3746)
9397 * comint.el (comint-mode): Add `comint-history-isearch-setup' to
9398 `isearch-mode-hook'.
9399 (comint-history-isearch): New defcustom.
9400 (comint-history-isearch-backward)
9401 (comint-history-isearch-backward-regexp): New commands.
9402 (comint-history-isearch-message-overlay): New buffer-local variable.
9403 (comint-history-isearch-setup, comint-history-isearch-end)
9404 (comint-goto-input, comint-history-isearch-search)
9405 (comint-history-isearch-message, comint-history-isearch-wrap)
9406 (comint-history-isearch-push-state)
9407 (comint-history-isearch-pop-state): New functions.
9408
9409 2009-11-23 Michael Albinus <michael.albinus@gmx.de>
9410
9411 * net/tramp.el (tramp-shell-prompt-pattern): Use \r for carriage
9412 return.
9413 (tramp-handle-make-symbolic-link)
9414 (tramp-handle-dired-compress-file, tramp-handle-expand-file-name):
9415 Quote file names.
9416 (tramp-send-command-and-check): New argument DONT-SUPPRESS-ERR.
9417 (tramp-handle-process-file): Use it.
9418
9419 2009-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
9420
9421 * window.el (move-to-window-line-last-op): Remove.
9422 (move-to-window-line-top-bottom): Reuse recenter-last-op instead.
9423
9424 2009-11-23 Deniz Dogan <deniz.a.m.dogan@gmail.com> (tiny change)
9425
9426 Make M-r mirror the new cycling behavior of C-l.
9427 * window.el (move-to-window-line-last-op): New var.
9428 (move-to-window-line-top-bottom): New command.
9429 (global-map): Bind M-r move-to-window-line-top-bottom.
9430
9431 2009-11-23 Sven Joachim <svenjoac@gmx.de>
9432
9433 * dired-x.el (dired-guess-shell-alist-default):
9434 Support xz format. (Bug#4953)
9435
9436 2009-11-22 Michael Kifer <kifer@cs.stonybrook.edu>
9437
9438 * emulation/viper-cmd.el: Use viper-last-command-char instead of
9439 last-command-char/last-command-event.
9440 (viper-prefix-arg-value): Do correct conversion of event-char for
9441 XEmacs.
9442
9443 * emulation/viper-util.el, emulation/viper.el:
9444 Use viper-last-command-char instead of
9445 last-command-char/last-command-event.
9446
9447 * ediff-init.el, ediff-mult.el, ediff-util.el:
9448 Replace last-command-char and last-command-event
9449 with (ediff-last-command-char) everywhere.
9450
9451 * ediff-vers.el (ediff-rcs-get-output-buffer): Make sure the buffer is
9452 created in fundamental mode.
9453
9454 * ediff.el (ediff-version): Revert the change of interactive-p to
9455 called-interactively-p.
9456
9457 2009-11-22 Tassilo Horn <tassilo@member.fsf.org>
9458
9459 * progmodes/subword.el (subword-mode-map): Fix subword-mode-map
9460 generation from word-movement command names.
9461
9462 2009-11-21 Jan Djärv <jan.h.d@swipnet.se>
9463
9464 * cus-start.el (all): Add native condition for font-use-system-font.
9465
9466 2009-11-21 Nathaniel Flath <flat0103@gmail.com>
9467
9468 * progmodes/cc-menus.el (cc-imenu-java-generic-expression):
9469 Correct the patch from 2009-11-18. (Bug#3910)
9470
9471 2009-11-21 Tassilo Horn <tassilo@member.fsf.org>
9472
9473 * progmodes/subword.el: Rename from lisp/subword.el.
9474
9475 * subword.el: Rename to progmodes/subword.el.
9476
9477 * Makefile.in (ELCFILES): Adapt to subword.el move.
9478
9479 2009-11-21 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9480 Stefan Monnier <monnier@iro.umontreal.ca>
9481
9482 * bookmark.el (bookmark-bmenu-bookmark-column): Remove var.
9483 (bookmark-bmenu-list): Save name on `bookmark-name-prop' text-prop.
9484 (bookmark-bmenu-show-filenames): Use push.
9485 (bookmark-bmenu-hide-filenames): Use local var instead of
9486 bookmark-bmenu-bookmark-column. Use pop. Don't save window-excursion.
9487 (bookmark-bmenu-bookmark): Use the new `bookmark-name-prop' text-prop.
9488 (bookmark-bmenu-execute-deletions): Don't bother adding/removing the
9489 filenames now that the bookmark names are always available.
9490
9491 2009-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
9492
9493 * bookmark.el (bookmark-search-prompt, bookmark-search-timer): Remove.
9494 (bookmark-search-pattern): Move and leave unbound.
9495 (bookmark-bmenu-mode-map): Change binding.
9496 (bookmark-read-search-input): Simplify.
9497 Don't use text-char-description. Don't error on non-char events.
9498 (bookmark-filtered-alist-by-regexp-only): Remove by folding into the
9499 only caller (i.e. bookmark-bmenu-filter-alist-by-regexp).
9500 (bookmark-bmenu-search): Don't check we're in a bookmark-list buffer.
9501 Use a local var for the timer.
9502 (bookmark-bmenu-cancel-search): Remove by folding into the only caller
9503 (i.e. bookmark-bmenu-search).
9504
9505 2009-11-21 Glenn Morris <rgm@gnu.org>
9506
9507 * mail/rmailmm.el (rmail-mime): Decode in fundamental-mode. (Bug#4993)
9508
9509 2009-11-20 Ken Brown <kbrown@cornell.edu> (tiny change)
9510
9511 * net/browse-url.el (browse-url-default-windows-browser):
9512 Use cygstart for cygwin.
9513
9514 2009-11-20 Karl Fogel <karl.fogel@red-bean.com>
9515
9516 * bookmark.el: Formatting and doc fixes only:
9517 (bookmark-search-delay): Shorten doc string to fit in 80 columns.
9518 (bookmark-bmenu-search): Wrap to fit within 80 columns.
9519 Minor grammar and punctuation fixes in doc string.
9520 (bookmark-read-search-input): Adjust to fit within 80 columns.
9521
9522 2009-11-20 Tassilo Horn <tassilo@member.fsf.org>
9523
9524 * progmodes/cc-cmds.el (c-forward-into-nomenclature)
9525 (c-backward-into-nomenclature): Adapt to subword renaming.
9526
9527 * subword.el (subword-forward, subword-backward, subword-mark)
9528 (subword-kill, subword-backward-kill, subword-transpose)
9529 (subword-downcase, subword-upcase, subword-capitalize)
9530 (subword-forward-internal, subword-backward-internal):
9531 Rename from forward-subword, backward-subword, mark-subword,
9532 kill-subword, backward-kill-subword, transpose-subwords,
9533 downcase-subword, upcase-subword, capitalize-subword,
9534 forward-subword-internal, backward-subword-internal.
9535
9536 2009-11-20 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9537
9538 * bookmark.el (bookmark-search-delay, bookmark-search-prompt):
9539 New options.
9540 (bookmark-search-pattern, bookmark-search-timer, bookmark-quit-flag):
9541 New vars.
9542 (bookmark-read-search-input, bookmark-filtered-alist-by-regexp-only)
9543 (bookmark-bmenu-filter-alist-by-regexp)
9544 (bookmark-bmenu-goto-bookmark, bookmark-bmenu-cancel-search): New funs.
9545 (bookmark-bmenu-search): New command.
9546 (bookmark-bmenu-mode-map): Bind it.
9547
9548 2009-11-20 Tassilo Horn <tassilo@member.fsf.org>
9549
9550 * progmodes/cc-cmds.el: declare-functioned forward-subword and
9551 backward-subword to quit the byte-compiler.
9552
9553 * makefile.w32-in: Don't refer cc-subword.elc but subword.elc.
9554
9555 * Makefile.in: Don't refer cc-subword.elc but subword.elc.
9556
9557 * progmodes/cc-cmds.el (c-update-modeline)
9558 (c-forward-into-nomenclature, c-backward-into-nomenclature):
9559 Refer to subword.el functions instead of cc-subword.el.
9560
9561 * progmodes/cc-mode.el (subword-mode, c-mode-base-map): Refer to
9562 subword.el functions instead of cc-subword.el.
9563
9564 * progmodes/cc-subword.el: Rename to subword.el.
9565 * subword.el: Rename from progmodes/cc-subword.el.
9566 (subword-mode-map): Rename from c-subword-mode-map.
9567 (subword-mode): Rename from c-subword-mode.
9568 (global-subword-mode): New global minor mode.
9569 (forward-subword): Rename from c-forward-subword.
9570 (backward-subword): Rename from c-backward-subword.
9571 (mark-subword): Rename from c-mark-subword.
9572 (kill-subword): Rename from c-kill-subword.
9573 (backward-kill-subword): Rename from c-backward-kill-subword.
9574 (transpose-subwords): Rename from c-tranpose-subword.
9575 (downcase-subword): Rename from c-downcase-subword.
9576 (capitalize-subword): Rename from c-capitalize-subword.
9577 (forward-subword-internal): Rename from c-forward-subword-internal.
9578 (backward-subword-internal): Rename from c-backward-subword-internal.
9579
9580 2009-11-20 Dan Nicolaescu <dann@ics.uci.edu>
9581
9582 * vc.el (vc-deduce-fileset): Allow non-state changing operations
9583 from a dired buffer.
9584 (vc-dired-deduce-fileset): New function.
9585 (vc-root-diff, vc-print-root-log): Use it.
9586
9587 * vc-annotate.el (vc-annotate-show-log-revision-at-line): Pass a
9588 nil LIMIT argument to vc-print-log-internal.
9589
9590 2009-11-20 Glenn Morris <rgm@gnu.org>
9591
9592 * Makefile.in (ELCFILES): Regenerate.
9593
9594 2009-11-20 Jay Belanger <jay.p.belanger@gmail.com>
9595
9596 * calc/calc.el (calc-set-mode-line):
9597 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
9598 (math-format-number): Rename `math-format-complement-signed' to
9599 `math-format-twos-complement'.
9600
9601 * calc/calc-bin.el (math-format-twos-complement): Rename from
9602 math-format-complement-signed.
9603 (calc-radix): Rename `calc-complement-signed-mode' to
9604 `calc-twos-complement-mode'.
9605 (calc-octal-radix, calc-hex-radix): Add an argument for
9606 two's complement.
9607
9608 * calc/calc-embed.el (calc-embedded-mode-vars):
9609 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
9610
9611 * calc/calc-ext.el (calc-init-extensions):
9612 Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
9613 (math-format-number-fancy): Let `calc-twos-complement-mode' be nil.
9614
9615 * calc/calc-units.el (math-build-units-table-buffer):
9616 Let `calc-twos-complement-mode' be nil.
9617
9618 * calc/calc-menu.el (calc-modes-menu): Clean up two's complement
9619 entries.
9620
9621 * calc/calc-vec.el (calcFunc-vunpack):
9622 * calc/calc-aent.el (calc-do-calc-eval):
9623 * calc/calc-forms.el (math-format-date):
9624 * calc/calc-graph.el (calc-graph-plot):
9625 * calc/calc-math.el (math-use-emacs-fn):
9626 * calc/calccomp.el (math-compose-expr):
9627 Let `calc-twos-complement-mode' be nil.
9628
9629 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
9630
9631 * abbrev.el (abbrev-with-wrapper-hook): (re)move...
9632 * simple.el (with-wrapper-hook): ...to here. Add argument `args'.
9633 * minibuffer.el (completion-in-region-functions): New hook.
9634 (completion-in-region): New function.
9635 * emacs-lisp/lisp.el (lisp-complete-symbol):
9636 * pcomplete.el (pcomplete-std-complete): Use it.
9637
9638 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
9639
9640 * textmodes/tex-mode.el (latex-complete-bibtex-cache)
9641 (latex-complete-alist): New vars.
9642 (latex-string-prefix-p, latex-complete-bibtex-keys)
9643 (latex-complete-envnames, latex-complete-refkeys)
9644 (latex-complete-data): New functions.
9645 (latex-complete, latex-indent-or-complete): New commands.
9646
9647 * window.el (display-buffer-mark-dedicated): New var.
9648 (display-buffer): Obey it.
9649 * minibuffer.el (minibuffer-completion-help): Use it.
9650
9651 * progmodes/sym-comp.el (symbol-complete): Use completion-in-region.
9652
9653 * filecache.el (file-cache-add-file): Use push and cons.
9654 (file-cache-delete-file-regexp): Use push.
9655 (file-cache-complete): Use completion-in-region.
9656
9657 * simple.el (with-wrapper-hook): Fix thinko.
9658
9659 * hfy-cmap.el (hfy-rgb-file): Use locate-file.
9660 (htmlfontify-load-rgb-file): Remove unnused var `ff'.
9661 Use with-current-buffer and string-to-number.
9662 (hfy-fallback-colour-values): Use assoc-string.
9663 * htmlfontify.el (hfy-face-to-css): Remove unused var `style'.
9664 (hfy-face-at): Remove unused var `found-face'.
9665 (hfy-compile-stylesheet): Remove unused var `css'.
9666 (hfy-fontify-buffer): Remove unused vars `in-style', `invis-button',
9667 and `orig-buffer'.
9668 (hfy-buffer, hfy-copy-and-fontify-file, hfy-parse-tags-buffer):
9669 Use with-current-buffer.
9670 (hfy-text-p): Use expand-file-name and fewer setq.
9671
9672 2009-11-19 Vivek Dasmohapatra <vivek@etla.org>
9673
9674 * htmlfontify.el, hfy-cmap.el: New files.
9675
9676 2009-11-19 Juri Linkov <juri@jurta.org>
9677
9678 * minibuffer.el (completions-format): New defcustom.
9679 (completion--insert-strings): Implement vertical format.
9680
9681 * simple.el (switch-to-completions): Move point to the first
9682 completion when point was at the beginning of the buffer.
9683
9684 2009-11-19 Juri Linkov <juri@jurta.org>
9685
9686 * find-dired.el (find-name-arg): Remove autoload. (Bug#4387)
9687
9688 * progmodes/grep.el (rgrep): Require `find-dired' for `find-name-arg'.
9689
9690 2009-11-19 Chong Yidong <cyd@stupidchicken.com>
9691
9692 * mail/sendmail.el (mail-yank-prefix): Change default to "> ".
9693 (mail-signature): Change default to t.
9694 (mail-from-style): Deprecate `system-default' value.
9695 (mail-insert-from-field): For default value of mail-from-style,
9696 default to `angles' unless `angles' needs quoting and `parens'
9697 does not.
9698 (mail-citation-prefix-regexp): Use citation regexp from
9699 message-mode.
9700
9701 2009-11-19 Michael Albinus <michael.albinus@gmx.de>
9702
9703 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
9704 Set variables for computing the prompt for reading password.
9705
9706 2009-11-19 Glenn Morris <rgm@gnu.org>
9707
9708 * dired-aux.el (dired-compress-file-suffixes): Add ".xz". (Bug#4953)
9709
9710 * textmodes/flyspell.el (sgml-lexical-context): Declare.
9711
9712 * net/newst-treeview.el (newsticker-treeview-treewindow-width)
9713 (newsticker-treeview-listwindow-height): Fix custom type.
9714
9715 2009-11-19 Kenichi Handa <handa@m17n.org>
9716
9717 * descr-text.el (describe-char-padded-string): Compose with TAB
9718 only if there's a font for CH.
9719 (describe-char): Fix the condition for detecting a trivial composition.
9720
9721 2009-11-18 Nathaniel Flath <flat0103@gmail.com>
9722
9723 * progmodes/cc-menus.el (cc-imenu-java-generic-expression): A new,
9724 more accurate version of the regexp. (Bug#3910)
9725
9726 2009-11-18 Bernhard Herzog <bernhard.herzog@intevation.de> (tiny change)
9727
9728 * vc-hg.el (vc-hg-diff): Fix last patch: do not change directory.
9729
9730 2009-11-18 Juanma Barranquero <lekktu@gmail.com>
9731
9732 * font-setting.el (font-use-system-font): Declare for byte-compiler.
9733 (font-setting-change-default-font): Fix typo in docstring.
9734
9735 2009-11-18 Alan Mackenzie <acm@muc.de>
9736
9737 * progmodes/cc-defs.el (c-version): Bump to 5.31.8.
9738
9739 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
9740
9741 * font-setting.el (font-use-system-font): Move ...
9742
9743 * cus-start.el (all): ... to here.
9744
9745 2009-11-17 Michael Albinus <michael.albinus@gmx.de>
9746
9747 * net/tramp.el (tramp-advice-file-expand-wildcards): Simplify.
9748 Don't set `ad-return-value' if `ad-do-it' doesn't.
9749
9750 * net/tramp-gvfs.el (tramp-gvfs-handle-write-region): Set file
9751 modification time.
9752
9753 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
9754
9755 * menu-bar.el: Put "Use system font" in Option-menu.
9756 (menu-bar-options-save): Add font-use-system-font.
9757
9758 * loadup.el: If feature system-font-setting or font-render-setting is
9759 there, load font-setting.
9760
9761 * Makefile.in (ELCFILES): Add font-settings.el.
9762 * font-setting.el: New file.
9763
9764 2009-11-17 Glenn Morris <rgm@gnu.org>
9765
9766 * vc-svn.el (vc-svn-print-log): Fix typo in previous.
9767
9768 * net/newst-treeview.el (newsticker--treeview-list-update-faces):
9769 Preserve point in the list buffer. (Bug#4939)
9770 Use point-at-eol.
9771 (newsticker--treeview-list-update-highlight)
9772 (newsticker--treeview-tree-update-highlight): Use point-at-bol/eol.
9773
9774 2009-11-16 Jay Belanger <jay.p.belanger@gmail.com>
9775
9776 * calc/calc-bin.el (math-symclip, calcFunc-symclip, calc-symclip):
9777 Remove.
9778
9779 * calc/calc-ext.el (calc-init-extensions): Remove references to
9780 symclip.
9781
9782 * calc/calc-menu.el (calc-arithmetic-menu): Remove `calc-symclip'.
9783
9784 * calc/calc-map.el (calc-get-operator, calc-b-oper-keys):
9785 * calc/calc-help.el (calc-b-prefix-help): Remove references to
9786 `calc-symclip'.
9787
9788 2009-11-16 Kevin Ryde <user42@zip.com.au>
9789
9790 * textmodes/flyspell.el (sgml-mode-flyspell-verify):
9791 Use `sgml-lexical-context' instead of own parse for tag (Bug#4511).
9792
9793 * emacs-lisp/lisp-mnt.el (lm-keywords): Allow multi-line keywords.
9794 (lm-keywords-list): Allow comma-only separator like "foo,bar".
9795 Ignore trailing spaces by omit-nulls to split-string (fixing
9796 regression from Emacs 21 due to the incompatible split-string
9797 change). (Bug #4928.)
9798
9799 2009-11-16 Dan Nicolaescu <dann@ics.uci.edu>
9800
9801 * vc.el (vc-log-show-limit): Default to 2000.
9802 (vc-print-log-internal): Insert buttons to request more entries
9803 when limiting the output.
9804
9805 * vc-sccs.el (vc-sccs-print-log):
9806 * vc-rcs.el (vc-rcs-print-log):
9807 * vc-cvs.el (vc-cvs-print-log):
9808 * vc-git.el (vc-git-print-log): Return 'limit-unsupported when
9809 LIMIT is non-nil.
9810
9811 2009-11-16 Michael Albinus <michael.albinus@gmx.de>
9812
9813 * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error): Raise only an
9814 error when `tramp-gvfs-dbus-event-vector' is set.
9815 (tramp-gvfs-maybe-open-connection): Loop over `read-event'.
9816
9817 2009-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
9818
9819 * vc-rcs.el (vc-rcs-consult-headers): Add missing save-excursion.
9820
9821 2009-11-16 Michael Albinus <michael.albinus@gmx.de>
9822
9823 * net/dbus.el (dbus-unregister-service): New defun.
9824 (dbus-register-property): Register the handlers of
9825 "org.freedesktop.DBus.Properties" for SERVICE.
9826 (dbus-property-handler): Fix docstring.
9827
9828 2009-11-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9829
9830 * emacs-lisp/bytecomp.el (byte-compile-output-file-form):
9831 Quote doc string reference in defvaralias as it is not in special form.
9832 (byte-compile-output-docform): Doc fix.
9833
9834 2009-11-16 Jay Belanger <jay.p.belanger@gmail.com>
9835
9836 * calc/calc.el (math-2-word-size, math-half-2-word-size)
9837 (calc-complement-signed-mode): New variables.
9838 (calc-set-mode-line): Add indicator for twos-complements.
9839 (math-format-number): Format twos-complement notation.
9840
9841 * calc/calc-bin.el (calc-word-size): Reset the variables
9842 `math-2-word-size' and `math-half-2-word-size'.
9843 (math-format-complement-signed, math-symclip, calcFunc-symclip)
9844 (calc-symclip): New functions.
9845
9846 * calc/calc-aent.el (math-read-token): Read complement signed numbers.
9847
9848 * calc/calc-embed.el (calc-embedded-mode-vars):
9849 Add `calc-complement-signed-mode' to the list of modes.
9850
9851 * calc/calc-map.el (calc-get-operator): Add `calc-symclip'.
9852 (calc-b-oper-keys): Add `calc-symclip' to list.
9853
9854 * calc/calc-ext.el (math-read-number-fancy): Read complement
9855 signed numbers.
9856 (calc-init-extensions): Add binding for `calc-symclip'.
9857 Add autoload for `calcFunc-symclip' and `calc-symclip'.
9858
9859 * calc/calc-menu.el (calc-arithmetic-menu): Add item for
9860 `calc-symclip'.
9861 (calc-modes-menu): Add item for twos complement mode.
9862
9863 * calc/calc-help.el (calc-b-prefix-help): Add help for `calc-symclip'.
9864
9865 2009-11-15 Chong Yidong <cyd@stupidchicken.com>
9866
9867 * register.el (jump-to-register, insert-register): Handle Semantic
9868 tags. From commented-out advice in semantic/senator.el.
9869
9870 2009-11-15 Dan Nicolaescu <dann@ics.uci.edu>
9871
9872 * vc.el (vc-log-show-limit): New variable.
9873 (vc-print-log, vc-print-root-log): Add new argument LIMIT. Set it
9874 when using a prefix argument.
9875 (vc-print-log-internal): Add new argument LIMIT.
9876
9877 * vc-svn.el (vc-svn-print-log):
9878 * vc-mtn.el (vc-mtn-print-log):
9879 * vc-hg.el (vc-hg-print-log):
9880 * vc-bzr.el (vc-bzr-print-log): Add new optional argument LIMIT,
9881 pass it to the log command when set. Make the BUFFER argument
9882 non-optional.
9883
9884 * vc-sccs.el (vc-sccs-print-log):
9885 * vc-rcs.el (vc-rcs-print-log):
9886 * vc-git.el (vc-git-print-log):
9887 * vc-cvs.el (vc-cvs-print-log): Add new optional argument LIMIT,
9888 ignore it. Make the BUFFER argument non-optional
9889
9890 * bindings.el (mode-line-buffer-identification): Do not purecopy.
9891
9892 2009-11-15 Chong Yidong <cyd@stupidchicken.com>
9893
9894 * dired.el (dired-mode-map): Move encryption items to "Operate"
9895 menu (Bug#4703).
9896
9897 * strokes.el (strokes-update-window-configuration): Make strokes
9898 buffer current before erasing (Bug#4906).
9899
9900 2009-11-15 Juri Linkov <juri@jurta.org>
9901
9902 * simple.el (set-mark-default-inactive): Add :type, :group
9903 and :version. (Bug#4876)
9904
9905 2009-11-15 Michael Albinus <michael.albinus@gmx.de>
9906
9907 * arc-mode.el (archive-maybe-copy): Move creation of directory ...
9908 (archive-unique-fname): ... here. (Bug#4929)
9909
9910 2009-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
9911
9912 * help-mode.el (help-make-xrefs): Undo the last revert, and replace it
9913 with a real fix.
9914
9915 * novice.el (disabled-command-function): Add useful args.
9916 Setup the help buffer so that [back] works.
9917 Remove redundant call to help-mode.
9918 (disabled-command-function): Use `case'.
9919 (en/disable-command): New function extracted from enable-command.
9920 (enable-command, disable-command): Use it.
9921
9922 2009-11-14 Glenn Morris <rgm@gnu.org>
9923
9924 * menu-bar.el (menu-bar-tools-menu): Read and send mail entries are not
9925 constants. (Bug#4913)
9926
9927 * emacs-lisp/elint.el (elint-standard-variables): Doc fix.
9928
9929 2009-11-14 Shigeru Fukaya <shigeru.fukaya@gmail.com>
9930
9931 * emacs-lisp/elint.el (elint-standard-variables): Add some variables
9932 defined in C that have no doc-strings. (Bug#1063)
9933
9934 2009-11-14 Francis Wright <F.J.Wright@qmul.ac.uk>
9935
9936 * cus-edit.el (data, files):
9937 * ps-print.el (postscript): Doc fixes for custom groups. (Bug#3327)
9938
9939 2009-11-14 Chong Yidong <cyd@stupidchicken.com>
9940
9941 * simple.el (shell-command): Doc fix (Bug#4891).
9942
9943 * help-mode.el (help-make-xrefs): Revert 2009-11-13 change.
9944
9945 2009-11-14 Glenn Morris <rgm@gnu.org>
9946
9947 * emulation/viper.el (viper-set-hooks): Remove duplicate advice
9948 statements for vc-diff, emerge-quit, and rmail-cease-edit.
9949 If they are already loaded, eval-after-load will do the right thing.
9950
9951 * speedbar.el (top-level): Remove unnecessary load of ange-ftp when
9952 compiling.
9953
9954 * emacs-lisp/bytecomp.el (byte-compile-single-version): Remove, unused.
9955
9956 * simple.el (x-selection-owner-p): Declare.
9957 (read-mail-command): Use custom radio type rather than choice.
9958 (completion-no-auto-exit): Doc fix.
9959
9960 * custom.el (defgroup):
9961 * epg-config.el (epg): Doc fixes.
9962
9963 2009-11-14 Dan Nicolaescu <dann@ics.uci.edu>
9964
9965 * bindings.el (mode-line-buffer-identification): Purecopy only the string.
9966 * international/ccl.el (define-ccl-program): Do not purecopy the
9967 docstring, defconst does it anyway.
9968
9969 2009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
9970
9971 * add-log.el (add-change-log-entry): Avoid displaying the changelog
9972 a second time.
9973
9974 * x-dnd.el (x-dnd-maybe-call-test-function):
9975 * window.el (split-window-vertically):
9976 * whitespace.el (whitespace-help-on):
9977 * vc-rcs.el (vc-rcs-consult-headers):
9978 * userlock.el (ask-user-about-lock-help)
9979 (ask-user-about-supersession-help):
9980 * type-break.el (type-break-force-mode-line-update):
9981 * time-stamp.el (time-stamp-conv-warn):
9982 * terminal.el (te-set-output-log, te-more-break, te-filter)
9983 (te-sentinel, terminal-emulator):
9984 * term.el (make-term, term-exec, term-sentinel, term-read-input-ring)
9985 (term-write-input-ring, term-check-source, term-start-output-log):
9986 (term-display-buffer-line, term-dynamic-list-completions):
9987 (term-ansi-make-term, serial-term):
9988 * subr.el (selective-display):
9989 * strokes.el (strokes-xpm-to-compressed-string, strokes-decode-buffer)
9990 (strokes-encode-buffer, strokes-xpm-for-compressed-string):
9991 * speedbar.el (speedbar-buffers-tail-notes, speedbar-buffers-item-info)
9992 (speedbar-reconfigure-keymaps, speedbar-add-localized-speedbar-support)
9993 (speedbar-remove-localized-speedbar-support)
9994 (speedbar-set-mode-line-format, speedbar-create-tag-hierarchy)
9995 (speedbar-update-special-contents, speedbar-buffer-buttons-engine)
9996 (speedbar-buffers-line-directory):
9997 * simple.el (shell-command-on-region, append-to-buffer)
9998 (prepend-to-buffer):
9999 * shadowfile.el (shadow-save-todo-file):
10000 * scroll-bar.el (scroll-bar-set-window-start, scroll-bar-drag-1)
10001 (scroll-bar-maybe-set-window-start):
10002 * sb-image.el (speedbar-image-dump):
10003 * saveplace.el (save-place-alist-to-file, save-places-to-alist)
10004 (load-save-place-alist-from-file):
10005 * ps-samp.el (ps-print-message-from-summary):
10006 * ps-print.el (ps-flush-output, ps-insert-file, ps-get-boundingbox)
10007 (ps-background-image, ps-begin-job, ps-do-despool):
10008 * ps-bdf.el (bdf-find-file, bdf-read-font-info):
10009 * printing.el (pr-interface, pr-ps-file-print, pr-find-buffer-visiting)
10010 (pr-ps-message-from-summary, pr-lpr-message-from-summary):
10011 (pr-call-process, pr-file-list, pr-interface-save):
10012 * novice.el (disabled-command-function)
10013 (enable-command, disable-command):
10014 * mouse.el (mouse-buffer-menu-alist):
10015 * mouse-copy.el (mouse-kill-preserving-secondary):
10016 * macros.el (kbd-macro-query):
10017 * ledit.el (ledit-go-to-lisp, ledit-go-to-liszt):
10018 * informat.el (batch-info-validate):
10019 * ido.el (ido-copy-current-word, ido-initiate-auto-merge):
10020 * hippie-exp.el (try-expand-dabbrev-visible):
10021 * help-mode.el (help-make-xrefs):
10022 * help-fns.el (describe-variable):
10023 * generic-x.el (bat-generic-mode-run-as-comint):
10024 * finder.el (finder-mouse-select):
10025 * find-dired.el (find-dired-sentinel):
10026 * filesets.el (filesets-file-close):
10027 * files.el (list-directory):
10028 * faces.el (list-faces-display, describe-face):
10029 * facemenu.el (list-colors-display):
10030 * ezimage.el (ezimage-image-association-dump, ezimage-image-dump):
10031 * epg.el (epg--process-filter, epg-cancel):
10032 * epa.el (epa--marked-keys, epa--select-keys, epa-display-info)
10033 (epa--read-signature-type):
10034 * emerge.el (emerge-copy-as-kill-A, emerge-copy-as-kill-B)
10035 (emerge-file-names):
10036 * ehelp.el (electric-helpify):
10037 * ediff.el (ediff-regions-wordwise, ediff-regions-linewise):
10038 * ediff-vers.el (rcs-ediff-view-revision):
10039 * ediff-util.el (ediff-setup):
10040 * ediff-mult.el (ediff-append-custom-diff):
10041 * ediff-diff.el (ediff-exec-process, ediff-process-sentinel)
10042 (ediff-wordify):
10043 * echistory.el (Electric-command-history-redo-expression):
10044 * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
10045 * disp-table.el (describe-display-table):
10046 * dired.el (dired-find-buffer-nocreate):
10047 * dired-aux.el (dired-rename-subdir, dired-dwim-target-directory):
10048 * dabbrev.el (dabbrev--same-major-mode-p):
10049 * chistory.el (list-command-history):
10050 * apropos.el (apropos-documentation):
10051 * allout.el (allout-obtain-passphrase):
10052 (allout-copy-exposed-to-buffer):
10053 (allout-verify-passphrase): Use with-current-buffer.
10054
10055 2009-11-13 Glenn Morris <rgm@gnu.org>
10056
10057 * Makefile.in (ELCFILES): Regenerate.
10058
10059 2009-11-13 Michael Albinus <michael.albinus@gmx.de>
10060
10061 * net/dbus.el (dbus-registered-objects-table): Rename from
10062 `dbus-registered-functions-table', because it contains also properties.
10063 (dbus-unregister-object): Unregister also properties.
10064 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
10065 Use a timeout of 500 msec, in order to not block.
10066 (dbus-register-property, dbus-property-handler): New defuns.
10067
10068 2009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
10069
10070 * simple.el (minibuffer-default-add-completions): Drop deprecated
10071 4th arg.
10072
10073 2009-11-13 Tomas Abrahamsson <tab@lysator.liu.se>
10074
10075 * textmodes/artist.el (artist-mouse-choose-operation):
10076 Call `tmm-prompt' instead of `x-popup-menu' if we cannot popup
10077 menus. Bug noticed by Eli Zaretskii <eliz@gnu.org>.
10078 (artist-compute-up-event-key): New function.
10079 (artist-mouse-choose-operation, artist-down-mouse-1): Call it.
10080
10081 2009-11-13 Kenichi Handa <handa@m17n.org>
10082
10083 * language/japan-util.el: Make sure that the value of jisx0208
10084 property is jisx0208 character.
10085
10086 2009-11-13 Dan Nicolaescu <dann@ics.uci.edu>
10087
10088 * international/mule.el (auto-coding-regexp-alist): Only purecopy
10089 car or each item, not the whole list.
10090
10091 2009-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
10092
10093 * minibuffer.el (minibuffer-completion-help):
10094 Use minibuffer-hide-completions.
10095
10096 2009-11-12 Per Starbäck <per@starback.se> (tiny change)
10097
10098 * dired.el (dired-save-positions, dired-restore-positions): New funs.
10099 (dired-revert): Use them (bug#4880).
10100
10101 2009-11-12 Dan Nicolaescu <dann@ics.uci.edu>
10102
10103 * tooltip.el (tooltip-frame-parameters): Undo previous change.
10104
10105 2009-11-12 Juri Linkov <juri@jurta.org>
10106
10107 * ffap.el (ffap-alternate-file-other-window, ffap-literally):
10108 New functions.
10109 (find-file-literally-at-point): Alias of `ffap-literally'.
10110
10111 2009-11-12 Dan Nicolaescu <dann@ics.uci.edu>
10112
10113 * textmodes/ispell.el (ispell-skip-region-alist):
10114 * textmodes/css-mode.el (auto-mode-alist):
10115 * progmodes/compile.el (auto-mode-alist):
10116 * international/mule.el (ctext-non-standard-encodings-alist)
10117 (ctext-non-standard-encodings-regexp):
10118 * simple.el (shell-command-switch, text-read-only):
10119 * replace.el (occur-mode-map):
10120 * paths.el (rmail-file-name):
10121 * jka-cmpr-hook.el (jka-compr-build-file-regexp):
10122 * find-file.el (ff-special-constructs):
10123 * files.el (file-name-handler-alist):
10124 * composite.el: Purecopy strings.
10125
10126 * emacs-lisp/cl-macs.el (define-compiler-macro): Purecopy the file name.
10127
10128 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
10129
10130 * widget.el (define-widget): Purecopy the docstring.
10131 * international/mule-cmds.el (charset): Do not purecopy the
10132 docstring here, define-widget does it.
10133
10134 * textmodes/texinfo.el (texinfo-open-quote, texinfo-close-quote):
10135 * textmodes/bibtex-style.el (auto-mode-alist):
10136 * progmodes/inf-lisp.el (inferior-lisp-prompt):
10137 * progmodes/compile.el (compile-command):
10138 * language/korea-util.el (default-korean-keyboard):
10139 * international/mule-conf.el (file-coding-system-alist):
10140 * emacs-lisp/eldoc.el (eldoc-minor-mode-string):
10141 * tooltip.el (tooltip-frame-parameters):
10142 * newcomment.el (comment-end, comment-padding):
10143 * dired.el (dired-trivial-filenames):
10144 * comint.el (comint-file-name-prefix): Purecopy initial values.
10145
10146 2009-11-11 Michael Albinus <michael.albinus@gmx.de>
10147
10148 * net/tramp.el (tramp-advice-minibuffer-electric-separator)
10149 (tramp-advice-minibuffer-electric-tilde): Unload advices via
10150 `tramp-unload'.
10151 (tramp-advice-make-auto-save-file-name)
10152 (tramp-advice-file-expand-wildcards): Apply also `ad-activate'
10153 after removing the advice.
10154
10155 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
10156
10157 * progmodes/grep.el (grep-regexp-alist):
10158 * international/mule-cmds.el (iso-2022-control-alist):
10159 * emacs-lisp/timer.el (timer-duration-words):
10160 * subr.el (version-separator, version-regexp-alist):
10161 * minibuffer.el (completion-styles-alist):
10162 * faces.el (face-attribute-name-alist, list-faces-sample-text):
10163 Change defvars to defconsts.
10164
10165 * Makefile.in (ELCFILES): Add international/mule-conf.elc.
10166 * loadup.el ("international/mule-conf"): Load the byte compiled version.
10167 * international/mule-conf.el: Allow to be byte compiled.
10168
10169 * international/mule.el (define-charset): Purecopy props.
10170 (load-with-code-conversion): Purecopy doc string and file name.
10171 (put-charset-property): Purecopy strings.
10172 (auto-coding-alist, auto-coding-regexp-alist): Purecopy initial value.
10173
10174 * international/mule-cmds.el (register-input-method): Purecopy arguments.
10175 (define-char-code-property): Correctly purecopy the table.
10176
10177 * international/ccl.el (define-ccl-program): Purecopy the docstring.
10178
10179 * emacs-lisp/easy-mmode.el (define-minor-mode): Purecopy :lighter.
10180
10181 * subr.el (add-hook): Purecopy strings.
10182 (eval-after-load): Purecopy load-history-regexp and the form.
10183
10184 * custom.el (custom-declare-group): Purecopy load-file-name.
10185
10186 * subr.el (menu-bar-separator): New defconst.
10187 * net/eudc.el (eudc-tools-menu):
10188 * international/mule-cmds.el (set-coding-system-map)
10189 (mule-menu-keymap):
10190 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
10191 * vc-hooks.el (vc-menu-map):
10192 * replace.el (occur-mode-map):
10193 * menu-bar.el (menu-bar-file-menu, menu-bar-search-menu)
10194 (menu-bar-edit-menu, menu-bar-goto-menu)
10195 (menu-bar-custom-menu, menu-bar-showhide-menu)
10196 (menu-bar-options-menu, menu-bar-tools-menu)
10197 (menu-bar-encryption-decryption-menu, menu-bar-describe-menu)
10198 (menu-bar-search-documentation-menu, menu-bar-manuals-menu)
10199 (menu-bar-help-menu):
10200 * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu):
10201 * buff-menu.el (Buffer-menu-mode-map): Use menu-bar-separator.
10202
10203 * term/x-win.el (x-gtk-stock-map):
10204 * progmodes/vera-mode.el (auto-mode-alist):
10205 * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
10206 (inferior-lisp-program, inferior-lisp-load-command):
10207 * progmodes/hideshow.el (hs-special-modes-alist):
10208 * progmodes/gud.el (same-window-regexps):
10209 * progmodes/grep.el (grep-program, find-program, xargs-program):
10210 * net/telnet.el (same-window-regexps):
10211 * net/rlogin.el (same-window-regexps):
10212 * language/ethiopic.el (font-ccl-encoder-alist):
10213 * vc-sccs.el (vc-sccs-master-templates):
10214 * vc-rcs.el (vc-rcs-master-templates):
10215 * subr.el (cl-assertion-failed):
10216 * simple.el (next-error-overlay-arrow-position):
10217 * lpr.el (lpr-command):
10218 * locate.el (locate-ls-subdir-switches):
10219 * info.el (same-window-regexps, info)
10220 (Info-goto-emacs-command-node, Info-goto-emacs-key-command-node):
10221 * image-mode.el (image-mode, auto-mode-alist):
10222 * hippie-exp.el (hippie-expand-ignore-buffers):
10223 * format.el (format-alist):
10224 * find-dired.el (find-ls-subdir-switches, find-grep-options)
10225 (find-name-arg):
10226 * facemenu.el (facemenu-keybindings):
10227 * dired.el (dired-listing-switches, dired-chown-program):
10228 * diff.el (diff-switches, diff-command):
10229 * cus-edit.el (same-window-regexps):
10230 * bindings.el (mode-line-mule-info)
10231 (mode-line-buffer-identification): Purecopy strings.
10232
10233 2009-11-11 Juri Linkov <juri@jurta.org>
10234
10235 * simple.el (dired-get-filename) <declare-function>:
10236 Tell the byte-compiler about dired-get-filename.
10237 (shell-command): In Dired mode, get filename from the current line
10238 as the default value.
10239
10240 2009-11-10 Glenn Morris <rgm@gnu.org>
10241
10242 * dired.el, hi-lock.el, calendar/cal-menu.el, calendar/calendar.el:
10243 * calendar/holidays.el, progmodes/cperl-mode.el:
10244 Update x-popup-menu declarations.
10245
10246 * emacs-lisp/shadow.el (find-emacs-lisp-shadows)
10247 (list-load-path-shadows): Use dolist.
10248 (list-load-path-shadows): Use with-current-buffer.
10249
10250 2009-11-10 Juri Linkov <juri@jurta.org>
10251
10252 * minibuffer.el (read-file-name): Support a list of default values
10253 in `default-filename'. Use the first file name where only one
10254 element is required. Doc fix.
10255
10256 2009-11-09 Michael Albinus <michael.albinus@gmx.de>
10257
10258 * net/dbus.el (dbus-unregister-object): Release service, if no
10259 other method is registered for it.
10260
10261 2009-11-08 Markus Rost <rost@math.uni-bielefeld.de>
10262
10263 * bookmark.el (bookmark-completing-read): Sort bookmark names if
10264 bookmark-sort-flag is non-nil (Bug#4653).
10265
10266 2009-11-08 Chong Yidong <cyd@stupidchicken.com>
10267
10268 * emulation/cua-base.el: Add CUA property to some CC mode commands
10269 (Bug#4100).
10270
10271 2009-11-08 Kevin Ryde <user42@zip.com.au>
10272
10273 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp): Match noun
10274 at end of sentence (Bug#4818).
10275
10276 2009-11-08 Jared Finder <jfinder@crypticstudios.com>
10277
10278 * progmodes/compile.el (compilation-error-regexp-alist-alist):
10279 Handle "see declaration of" MSFT statements (Bug#4100).
10280
10281 2009-11-08 Michael Albinus <michael.albinus@gmx.de>
10282
10283 * net/tramp.el (tramp-advice-make-auto-save-file-name)
10284 (tramp-advice-file-expand-wildcards): Unload via
10285 `ad-remove-advice'.
10286
10287 * net/trampver.el: Update release number.
10288
10289 2009-11-08 Kevin Ryde <user42@zip.com.au>
10290
10291 * net/tramp.el (tramp-advice-file-expand-wildcards): Don't rely on
10292 `ad-do-it'.
10293
10294 2009-11-08 Andr <m00naticus@gmail.com> (tiny change)
10295
10296 * net/tramp.el (tramp-handle-write-region): Copy but rename temp file,
10297 in order to keep context in SELinux.
10298
10299 2009-11-08 Chong Yidong <cyd@stupidchicken.com>
10300
10301 * dired-aux.el (dired-query): Place cursor in echo area and allow
10302 C-g.
10303
10304 * dired.el (dired-mode-map): Disable dired-maybe-insert-subdir
10305 menu item if not on a directory (Bug#4701).
10306
10307 2009-11-07 Michael Albinus <michael.albinus@gmx.de>
10308
10309 Sync with Tramp 2.1.17.
10310
10311 * net/tramp.el (tramp-handle-copy-directory): Don't use
10312 `file-remote-p' (due to compatibility).
10313
10314 * net/tramp-compat.el (tramp-compat-copy-directory)
10315 (tramp-compat-delete-directory): New defuns.
10316
10317 * net/tramp-fish.el (tramp-fish-handle-delete-directory):
10318 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory): Use
10319 `tramp-compat-delete-directory'.
10320
10321 * net/tramp-smb.el (tramp-smb-handle-copy-directory)
10322 (tramp-smb-handle-delete-directory): Use
10323 `tramp-compat-copy-directory' and `tramp-compat-delete-directory'.
10324
10325 * net/trampver.el: Update release number.
10326
10327 2009-11-07 Chong Yidong <cyd@stupidchicken.com>
10328
10329 * tar-mode.el (tar-copy): Call write-region on the right buffer
10330 (Bug#4857).
10331
10332 * mail/rmailsum.el (rmail-summary-rmail-update): Call linum-update
10333 by hand, if necessary (Bug#4878).
10334
10335 2009-11-06 Chong Yidong <cyd@stupidchicken.com>
10336
10337 * buff-menu.el (Buffer-menu-buffer+size): Use display property to
10338 align size column (Bug#4839).
10339
10340 * emacs-lisp/autoload.el (autoload-rubric): Always issue a provide
10341 statement.
10342
10343 2009-11-05 Dan Nicolaescu <dann@ics.uci.edu>
10344
10345 * progmodes/ld-script.el (auto-mode-alist):
10346 * vc-hooks.el (vc-directory-exclusion-list): Purecopy strings.
10347
10348 * cus-face.el (custom-declare-face): Purecopy face spec.
10349
10350 2009-11-06 Kenichi Handa <handa@m17n.org>
10351
10352 * international/uni-bidi.el: Re-generated.
10353 * international/uni-category.el: Re-generated.
10354 * international/uni-combining.el: Re-generated.
10355 * international/uni-mirrored.el: Re-generated.
10356
10357 2009-11-05 Dan Nicolaescu <dann@ics.uci.edu>
10358
10359 * textmodes/tex-mode.el (tex-alt-dvi-print-command)
10360 (tex-dvi-print-command, tex-bibtex-command, tex-start-commands)
10361 (tex-start-options, slitex-run-command, latex-run-command)
10362 (tex-run-command, tex-directory):
10363 * textmodes/ispell.el (ispell-html-skip-alists)
10364 (ispell-tex-skip-alists, ispell-tex-skip-alists):
10365 * textmodes/fill.el (adaptive-fill-first-line-regexp):
10366 (adaptive-fill-regexp):
10367 * textmodes/dns-mode.el (auto-mode-alist):
10368 * progmodes/python.el (interpreter-mode-alist):
10369 * progmodes/etags.el (tags-compression-info-list):
10370 * progmodes/etags.el (tags-file-name):
10371 * net/browse-url.el (browse-url-galeon-program)
10372 (browse-url-firefox-program):
10373 * mail/sendmail.el (mail-signature-file)
10374 (mail-citation-prefix-regexp):
10375 * international/mule-conf.el (eight-bit):
10376 * international/latexenc.el (latex-inputenc-coding-alist):
10377 * international/fontset.el (x-pixel-size-width-font-regexp):
10378 * emacs-lisp/warnings.el (warning-type-format):
10379 * emacs-lisp/trace.el (trace-buffer):
10380 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-map)
10381 (emacs-lisp-mode-map):
10382 * calendar/holidays.el (holiday-solar-holidays)
10383 (holiday-bahai-holidays, holiday-islamic-holidays)
10384 (holiday-christian-holidays, holiday-hebrew-holidays)
10385 (hebrew-holidays-4, hebrew-holidays-3, hebrew-holidays-2)
10386 (hebrew-holidays-1, holiday-oriental-holidays)
10387 (holiday-general-holidays):
10388 * x-dnd.el (x-dnd-known-types):
10389 * tool-bar.el (tool-bar):
10390 * startup.el (site-run-file):
10391 * shell.el (shell-dumb-shell-regexp):
10392 * rfn-eshadow.el (file-name-shadow-tty-properties)
10393 (file-name-shadow-properties):
10394 * paths.el (remote-shell-program, news-directory):
10395 * mouse.el ([C-down-mouse-3]):
10396 * menu-bar.el (menu-bar-tools-menu):
10397 * jka-cmpr-hook.el (jka-compr-load-suffixes)
10398 (jka-compr-mode-alist-additions, jka-compr-compression-info-list)
10399 (jka-compr-compression-info-list):
10400 * isearch.el (search-whitespace-regexp):
10401 * image-file.el (image-file-name-extensions):
10402 * find-dired.el (find-ls-option):
10403 * files.el (directory-listing-before-filename-regexp)
10404 (directory-free-space-args, insert-directory-program)
10405 (list-directory-brief-switches, magic-fallback-mode-alist)
10406 (magic-fallback-mode-alist, auto-mode-interpreter-regexp)
10407 (automount-dir-prefix):
10408 * faces.el (face-x-resources, x-font-regexp, x-font-regexp-head)
10409 (x-font-regexp-slant, x-font-regexp-weight, face-x-resources)
10410 (face-font-registry-alternatives, face-font-registry-alternatives)
10411 (face-font-family-alternatives):
10412 * facemenu.el (facemenu-add-new-face, facemenu-background-menu)
10413 (facemenu-foreground-menu, facemenu-face-menu):
10414 * epa-hook.el (epa-file-name-regexp):
10415 * dnd.el (dnd-protocol-alist):
10416 * textmodes/rst.el (auto-mode-alist):
10417 * button.el (default-button): Purecopy strings.
10418
10419 2009-11-06 Glenn Morris <rgm@gnu.org>
10420
10421 * Makefile.in (ELCFILES): Update.
10422
10423 2009-11-05 Stefan Monnier <monnier@iro.umontreal.ca>
10424
10425 * emacs-lisp/lucid.el: Move to obsolete/lucid.el.
10426 * emacs-lisp/levents.el: Move to obsolete/levents.el.
10427
10428 * nxml/xsd-regexp.el (xsdre-gen-categories):
10429 * nxml/xmltok.el (xmltok-parse-entity):
10430 * nxml/rng-parse.el (rng-parse-validate-file):
10431 * nxml/rng-maint.el (rng-format-manual)
10432 (rng-manual-output-force-new-line):
10433 * nxml/rng-loc.el (rng-save-schema-location-1):
10434 * nxml/rng-cmpct.el (rng-c-parse-file):
10435 * nxml/nxml-maint.el (nxml-insert-target-repertoire-glyph-set):
10436 * nxml/nxml-parse.el (nxml-parse-file): Use with-current-buffer.
10437
10438 2009-11-05 Wilson Snyder <wsnyder@wsnyder.org>
10439
10440 * progmodes/verilog-mode.el (verilog-getopt-file, verilog-set-define):
10441 Remove extra save-excursions and make-variable-buffer-local's.
10442 Suggested by Stefan Monnier.
10443
10444 (verilog-getopt-file, verilog-module-inside-filename-p)
10445 (verilog-set-define): Merge GNU 1.35 and repair changes from
10446 switching to using with-current-buffer.
10447
10448 (verilog-read-always-signals-recurse): Fix "a == 2'b00 ? b : c"
10449 being treated as a number and confusing AUTORESET.
10450 Reported by Dan Dever.
10451
10452 (verilog-auto-ignore-concat, verilog-read-sub-decls-expr):
10453 Add verilog-auto-ignore-concat to fix backward compatibility with
10454 older verilog-modes. Reported by Dan Katz.
10455
10456 (verilog-read-auto-template): Fix AUTO_TEMPLATEs with regexps
10457 containing closing anchors "...$".
10458
10459 (verilog-read-decls): Fix AUTOREG not detecting "assign {a,b}".
10460 Reported by Wade Smith.
10461
10462 (verilog-batch-execute-func): Comment on function usage.
10463
10464 2009-11-05 Michael McNamara <mac@mail.brushroad.com>
10465
10466 * progmodes/verilog-mode.el (verilog-label-re): Fix regular expression
10467 for labels.
10468
10469 (verilog-label-re, verilog-calc-1): Support proper indent of named
10470 asserts.
10471
10472 (verilog-backward-token, verilog-basic-complete-re)
10473 (verilog-beg-of-statement, verilog-indent-re): Support proper
10474 indent of the assert statement at the beginning of a block of text.
10475
10476 (verilog-beg-block-re, verilog-ovm-begin-re): Support the
10477 `ovm_object_param_utils_begin and `ovm_component_param_utils_begin
10478 tokens as begins.
10479
10480 2009-11-05 Glenn Morris <rgm@gnu.org>
10481
10482 * emacs-lisp/bytecomp.el (byte-compile-insert-header): Drop test for
10483 Emacs 19. (Bug#1531)
10484 (byte-compile-fix-header): Update for the above change.
10485 Drop test for epoch::version.
10486
10487 * emacs-lisp/autoload.el (autoload-rubric): Add optional feature arg.
10488 * cus-dep.el (custom-make-dependencies):
10489 * finder.el (finder-compile-keywords):
10490 Use autoload-rubric's feature argument.
10491
10492 * calendar/diary-lib.el (top-level): Make load behave more like require.
10493
10494 * vc-git.el (vc-git-stash-map): Move definition before use.
10495
10496 2009-11-04 Dan Nicolaescu <dann@ics.uci.edu>
10497
10498 * custom.el (custom-declare-group): Purecopy standard-value.
10499 (custom-declare-group): Purecopy custom-prefix.
10500
10501 * international/mule.el (load-with-code-conversion):
10502 Call do-after-load-evaluation unconditionally.
10503
10504 * emacs-lisp/bytecomp.el (byte-compile-output-file-form): Handle defvaralias.
10505
10506 2009-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
10507
10508 * descr-text.el: Require help-mode rather than help-fns (bug#4861).
10509
10510 2009-11-04 Glenn Morris <rgm@gnu.org>
10511
10512 * emacs-lisp/bytecomp.el (byte-compile-version-cond): Remove macro.
10513 (byte-compile-compatibility): Remove option.
10514 (byte-compile-close-variables, byte-compile-fix-header)
10515 (byte-compile-insert-header, byte-compile-output-docform)
10516 (byte-compile-file-form-defmumble, byte-compile-byte-code-maker)
10517 (byte-compile-lambda, byte-compile-form, byte-defop-compiler19)
10518 (byte-compile-list, byte-compile-concat, byte-compile-function-form)
10519 (byte-compile-insert, byte-compile-defun):
10520 Remove support for byte-compile-compatibility and Emacs 18. (Bug#4571)
10521 (byte-defop-compiler19): Remove.
10522 Without byte-compile-compatibility, the 'emacs19-opcode property is not
10523 used by anything. Replace all calls with byte-defop-compiler.
10524
10525 2009-11-04 Juri Linkov <juri@jurta.org>
10526
10527 * menu-bar.el (menu-bar-make-mm-toggle): Quote each element of `props'.
10528 (menu-bar-options-menu): Don't quote the `prop' arg of
10529 `menu-bar-make-mm-toggle'.
10530
10531 2009-11-04 Juanma Barranquero <lekktu@gmail.com>
10532
10533 * calendar/calendar.el (cal-loaddefs):
10534 * calendar/diary-lib.el (diary-loaddefs):
10535 * calendar/holidays.el (hol-loaddefs):
10536 * eshell/esh-module.el (esh-groups): Load rather than require.
10537
10538 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
10539
10540 * calendar/todo-mode.el (todo-add-category): Don't hardcode
10541 point-min==1.
10542 (todo-top-priorities): Only display-buffer when called interactively.
10543 (todo-item-start): Don't save excursion point.
10544 (todo-item-end): Be slightly more careful. Add `include-sep' arg.
10545 (todo-insert-item-here, todo-file-item, todo-remove-item):
10546 Adjust uses of todo-item-start and todo-item-end.
10547
10548 * emacs-lisp/autoload.el (generated-autoload-feature): Remove.
10549 (autoload-rubric): Don't use any more.
10550
10551 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Use dolist,
10552 and only put a prop if it is non-nil.
10553
10554 2009-11-03 Juri Linkov <juri@jurta.org>
10555
10556 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle)
10557 (menu-bar-options-menu): Fix list quoting (Bug#4429).
10558
10559 * buff-menu.el (Buffer-menu-mode-map): Add hyphen between "Buffer"
10560 and "Menu" to make top-level menu item visually one unit (like
10561 it's done for "Lisp-Interaction", "Emacs-Lisp" and other
10562 multi-word menu items). Fix :help string for quit-window.
10563
10564 2009-11-03 Glenn Morris <rgm@gnu.org>
10565
10566 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar)
10567 (byte-compile-file-form-define-abbrev-table)
10568 (byte-compile-file-form-custom-declare-variable)
10569 (byte-compile-variable-ref, byte-compile-defvar):
10570 Whether or not a warning is enabled should only affect whether we issue
10571 the warning, not whether or not we collect the relevant data.
10572 Eg warnings can be turned on and off throughout the course of a file.
10573
10574 * eshell/esh-mode.el (ansi-color-apply-on-region): Autoload it...
10575 (eshell-handle-ansi-color): ... Rather than requiring ansi-color.
10576
10577 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
10578
10579 * term/ns-win.el (ns-scroll-bar-move, ns-face-at-pos):
10580 * play/mpuz.el (mpuz-create-buffer):
10581 * play/landmark.el (lm-prompt-for-move, lm-print-wts, lm-print-smell)
10582 (lm-print-y,s,noise, lm-print-w0, lm-init):
10583 * play/gomoku.el (gomoku-prompt-for-move):
10584 * play/fortune.el (fortune-in-buffer):
10585 * play/dissociate.el (dissociated-press):
10586 * play/decipher.el (decipher-adjacency-list, decipher-display-regexp)
10587 (decipher-analyze-buffer, decipher-stats-buffer, decipher-stats-buffer):
10588 * mail/supercite.el (sc-eref-show):
10589 * mail/smtpmail.el (smtpmail-send-it):
10590 * mail/rmailsum.el (rmail-summary-next-labeled-message)
10591 (rmail-summary-previous-labeled-message, rmail-summary-wipe)
10592 (rmail-summary-undelete-many, rmail-summary-rmail-update)
10593 (rmail-summary-goto-msg, rmail-summary-expunge)
10594 (rmail-summary-get-new-mail, rmail-summary-search-backward)
10595 (rmail-summary-add-label, rmail-summary-output-menu)
10596 (rmail-summary-output-body):
10597 * mail/rfc822.el (rfc822-addresses):
10598 * mail/reporter.el (reporter-dump-variable, reporter-dump-state):
10599 * mail/mailpost.el (post-mail-send-it):
10600 * mail/hashcash.el (hashcash-generate-payment):
10601 * mail/feedmail.el (feedmail-run-the-queue)
10602 (feedmail-queue-send-edit-prompt-help-first)
10603 (feedmail-send-it-immediately, feedmail-give-it-to-buffer-eater)
10604 (feedmail-deduce-address-list):
10605 * eshell/esh-ext.el (eshell-remote-command):
10606 * eshell/em-unix.el (eshell-occur-mode-mouse-goto):
10607 * emulation/viper-util.el (viper-glob-unix-files, viper-save-setting)
10608 (viper-wildcard-to-regexp, viper-glob-mswindows-files)
10609 (viper-save-string-in-file, viper-valid-marker):
10610 * emulation/viper-keym.el (viper-toggle-key):
10611 * emulation/viper-ex.el (ex-expand-filsyms, viper-get-ex-file)
10612 (ex-edit, ex-global, ex-mark, ex-next-related-buffer, ex-quit)
10613 (ex-get-inline-cmd-args, ex-tag, ex-command, ex-compile):
10614 * emulation/viper-cmd.el (viper-exec-form-in-vi)
10615 (viper-exec-form-in-emacs, viper-brac-function):
10616 * emulation/viper.el (viper-delocalize-var):
10617 * emulation/vip.el (vip-mode, vip-get-ex-token, vip-ex, vip-get-ex-pat)
10618 (vip-get-ex-command, vip-get-ex-opt-gc, vip-get-ex-buffer)
10619 (vip-get-ex-count, vip-get-ex-file, ex-edit, ex-global, ex-mark)
10620 (ex-map, ex-unmap, ex-quit, ex-read, ex-tag, ex-command):
10621 * emulation/vi.el (vi-switch-mode, vi-ex-cmd):
10622 * emulation/edt.el (edt-electric-helpify):
10623 * emulation/cua-rect.el (cua--rectangle-aux-replace):
10624 * emulation/cua-gmrk.el (cua--insert-at-global-mark)
10625 (cua--delete-at-global-mark, cua--copy-rectangle-to-global-mark)
10626 (cua-indent-to-global-mark-column):
10627 * calendar/diary-lib.el (calendar-mark-1):
10628 * calendar/cal-hebrew.el (calendar-hebrew-mark-date-pattern):
10629 Use with-current-buffer.
10630 * emulation/viper.el (viper-delocalize-var): Use dolist.
10631
10632 2009-11-03 Chong Yidong <cyd@stupidchicken.com>
10633
10634 * comint.el (comint-replace-by-expanded-history-before-point):
10635 Replace !! with the previous input string literally (Bug#1795).
10636
10637 2009-11-02 Jay Belanger <jay.p.belanger@gmail.com>
10638
10639 * calc/calc-forms.el (calc-date-notation): Allow a "blank string"
10640 to be made up of whitespace.
10641
10642 2009-11-02 Chong Yidong <cyd@stupidchicken.com>
10643
10644 * minibuffer.el (read-file-name): Don't use file dialogs for
10645 remote directories (Bug#99).
10646
10647 2009-11-01 Chong Yidong <cyd@stupidchicken.com>
10648
10649 * progmodes/sh-script.el (sh-font-lock-paren): Fix last change.
10650
10651 2009-11-01 Andreas Schwab <schwab@linux-m68k.org>
10652
10653 * view.el (view-mode-exit): If OLD-BUF is dead bury the buffer
10654 instead of deleting the window or frame.
10655
10656 2009-10-31 Chong Yidong <cyd@stupidchicken.com>
10657
10658 * textmodes/sgml-mode.el (sgml-mode-facemenu-add-face-function):
10659 Support face colors.
10660
10661 * textmodes/tex-mode.el (tex-facemenu-add-face-function):
10662 New function. Support face colors (Bug#1168).
10663 (tex-common-initialization): Use it.
10664
10665 * facemenu.el (facemenu-enable-faces-p): Enable facemenu if the
10666 mode allows it (Bug#1168).
10667
10668 2009-10-31 Juri Linkov <juri@jurta.org>
10669
10670 * facemenu.el (list-colors-display): Don't mark buffer as
10671 modified (Bug#3948).
10672
10673 2009-10-31 Chong Yidong <cyd@stupidchicken.com>
10674
10675 * international/mule-diag.el (list-character-sets-1): Minor
10676 message fix (Bug#3526).
10677
10678 * progmodes/etags.el (etags-list-tags, etags-tags-apropos): Fix
10679 face property (Bug#4834).
10680 (etags-list-tags, etags-tags-apropos-additional)
10681 (etags-tags-apropos, tags-select-tags-table): Add follow-link
10682 property.
10683
10684 * menu-bar.el (menu-bar-tools-menu): Add Semantic and EDE menu
10685 items.
10686
10687 2009-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
10688
10689 * textmodes/two-column.el (2C-split):
10690 * textmodes/texnfo-upd.el (texinfo-multi-file-included-list):
10691 * textmodes/tex-mode.el (tex-set-buffer-directory):
10692 * textmodes/spell.el (spell-region, spell-string):
10693 * textmodes/reftex.el (reftex-erase-buffer):
10694 (reftex-get-file-buffer-force, reftex-kill-temporary-buffers):
10695 * textmodes/reftex-toc.el (reftex-toc-promote-action):
10696 * textmodes/reftex-sel.el (reftex-get-offset, reftex-insert-docstruct)
10697 (reftex-select-item):
10698 * textmodes/reftex-ref.el (reftex-label-info-update)
10699 (reftex-offer-label-menu):
10700 * textmodes/reftex-index.el (reftex-index-change-entry)
10701 (reftex-index-phrases-info):
10702 * textmodes/reftex-global.el (reftex-create-tags-file)
10703 (reftex-save-all-document-buffers, reftex-ensure-write-access):
10704 * textmodes/reftex-dcr.el (reftex-echo-ref, reftex-echo-cite)
10705 (reftex-view-crossref-from-bibtex):
10706 * textmodes/reftex-cite.el (reftex-bibtex-selection-callback)
10707 (reftex-extract-bib-entries-from-thebibliography)
10708 (reftex-all-used-citation-keys, reftex-create-bibtex-file):
10709 * textmodes/refbib.el (r2b-capitalize-title):
10710 (r2b-convert-buffer, r2b-help):
10711 * textmodes/page-ext.el (pages-directory)
10712 (pages-directory-goto-with-mouse):
10713 * textmodes/bibtex.el (bibtex-validate-globally):
10714 * textmodes/bib-mode.el (bib-capitalize-title):
10715 * textmodes/artist.el (artist-clear-buffer, artist-system):
10716 * progmodes/xscheme.el (global-set-scheme-interaction-buffer):
10717 (local-set-scheme-interaction-buffer, xscheme-process-filter)
10718 (verify-xscheme-buffer, xscheme-enter-interaction-mode)
10719 (xscheme-enter-debugger-mode, xscheme-debugger-mode-p)
10720 (xscheme-send-control-g-interrupt, xscheme-start-process)
10721 (xscheme-process-sentinel, xscheme-cd):
10722 * progmodes/verilog-mode.el (verilog-read-always-signals)
10723 (verilog-set-define, verilog-getopt-file)
10724 (verilog-module-inside-filename-p):
10725 * progmodes/sh-script.el:
10726 * progmodes/python.el (python-pdbtrack-get-source-buffer)
10727 (python-pdbtrack-grub-for-buffer, python-execute-file):
10728 * progmodes/octave-inf.el (inferior-octave):
10729 * progmodes/idlwave.el (idlwave-scan-user-lib-files)
10730 (idlwave-shell-compile-helper-routines, idlwave-set-local)
10731 (idlwave-display-completion-list-xemacs, idlwave-list-abbrevs)
10732 (idlwave-display-completion-list-emacs, idlwave-list-load-path-shadows)
10733 (idlwave-completion-fontify-classes, idlwave-display-calling-sequence):
10734 * progmodes/idlw-shell.el (idlwave-shell-examine-display-clear)
10735 (idlwave-shell-filter, idlwave-shell-examine-highlight)
10736 (idlwave-shell-sentinel, idlwave-shell-filter-directory)
10737 (idlwave-shell-display-line, idlwave-shell-set-bp-in-module)
10738 (idlwave-shell-examine-display, idlwave-shell-run-region)
10739 (idlwave-shell-filter-bp, idlwave-shell-save-and-action)
10740 (idlwave-shell-sources-filter, idlwave-shell-goto-next-error):
10741 * progmodes/idlw-help.el (idlwave-help-get-special-help)
10742 (idlwave-help-get-help-buffer):
10743 * progmodes/gud.el (gud-basic-call, gud-find-class)
10744 (gud-tooltip-activate-mouse-motions-if-enabled):
10745 * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
10746 * progmodes/ebrowse.el (ebrowse-member-table, ebrowse-save-tree-as)
10747 (ebrowse-view-exit-fn, ebrowse-tags-list-members-in-file)
10748 (ebrowse-tags-next-file):
10749 * progmodes/ebnf2ps.el (ebnf-generate-eps, ebnf-generate-eps)
10750 (ebnf-eps-production-list, ebnf-begin-file, ebnf-log)
10751 (ebnf-eps-finish-and-write):
10752 * progmodes/cpp.el (cpp-edit-save):
10753 * progmodes/cperl-mode.el (cperl-pod-to-manpage):
10754 * progmodes/cc-defs.el (c-emacs-features):
10755 * progmodes/antlr-mode.el (antlr-invalidate-context-cache)
10756 (antlr-directory-dependencies):
10757 * progmodes/ada-xref.el (ada-gnat-parse-gpr, ada-get-ali-file-name)
10758 (ada-run-application, ada-find-in-src-path, ada-goto-parent)
10759 (ada-find-any-references, ada-make-filename-from-adaname)
10760 (ada-make-body-gnatstub):
10761 * obsolete/rnews.el (news-list-news-groups):
10762 * obsolete/resume.el (resume-suspend-hook, resume-write-buffer-to-file):
10763 * obsolete/iso-acc.el (iso-acc-minibuf-setup):
10764 * net/rcirc.el (rcirc-debug):
10765 * net/newst-treeview.el (newsticker--treeview-list-add-item)
10766 (newsticker--treeview-list-clear, newsticker-treeview-browse-url)
10767 (newsticker--treeview-list-update-faces, newsticker-treeview-save)
10768 (newsticker--treeview-item-show-text, newsticker--treeview-item-show)
10769 (newsticker--treeview-tree-update-tag, newsticker--treeview-buffer-init)
10770 (newsticker-treeview-show-item, newsticker--treeview-unfold-node)
10771 (newsticker--treeview-list-clear-highlight)
10772 (newsticker--treeview-list-update-highlight)
10773 (newsticker--treeview-list-highlight-start)
10774 (newsticker--treeview-tree-update-highlight)
10775 (newsticker--treeview-get-selected-item)
10776 (newsticker-treeview-mark-list-items-old)
10777 (newsticker--treeview-set-current-node):
10778 * net/newst-plainview.el (newsticker--buffer-set-uptodate):
10779 * net/newst-backend.el (newsticker--get-news-by-funcall)
10780 (newsticker--get-news-by-wget, newsticker--image-get)
10781 (newsticker--image-sentinel):
10782 * net/mairix.el (mairix-rmail-fetch-field, mairix-gnus-fetch-field):
10783 * net/eudcb-ph.el (eudc-ph-do-request, eudc-ph-open-session):
10784 (eudc-ph-close-session):
10785 * net/eudc.el (eudc-save-options):
10786 * language/thai-word.el (thai-update-word-table):
10787 * language/japan-util.el (japanese-string-conversion):
10788 * international/titdic-cnv.el (tsang-quick-converter)
10789 (ziranma-converter, ctlau-converter):
10790 * international/mule-cmds.el (describe-language-environment):
10791 * international/ja-dic-cnv.el (skkdic-convert-okuri-ari)
10792 (skkdic-convert-postfix, skkdic-convert-prefix):
10793 (skkdic-convert-okuri-nasi, skkdic-convert):
10794 * emacs-lisp/re-builder.el (reb-update-overlays):
10795 * emacs-lisp/pp.el (pp-to-string, pp-display-expression):
10796 * emacs-lisp/gulp.el (gulp-send-requests):
10797 * emacs-lisp/find-gc.el (trace-call-tree):
10798 * emacs-lisp/eieio-opt.el (eieio-browse, eieio-describe-class)
10799 (eieio-describe-generic):
10800 * emacs-lisp/eieio-base.el (eieio-persistent-read):
10801 * emacs-lisp/edebug.el (edebug-outside-excursion):
10802 * emacs-lisp/debug.el (debugger-make-xrefs):
10803 * emacs-lisp/cust-print.el (custom-prin1-to-string):
10804 * emacs-lisp/chart.el (chart-new-buffer):
10805 * emacs-lisp/authors.el (authors-scan-el, authors-scan-change-log):
10806 Use with-current-buffer.
10807 * textmodes/artist.el (artist-system): Don't call
10808 copy-sequence on a fresh string.
10809 * progmodes/idlw-shell.el (easymenu setup): Use dolist.
10810
10811 2009-10-31 Stephen Berman <stephen.berman@gmx.net>
10812
10813 * calendar/todo-mode.el (todo-edit-item): Signal an error if there
10814 is no item to edit. (Bug#4820)
10815 (todo-top-priorities): Restore point and restore narrowing in Todo
10816 buffer. (Bug#4820)
10817
10818 2009-10-31 Glenn Morris <rgm@gnu.org>
10819
10820 * net/ange-ftp.el (top-level): Don't require dired when compiling.
10821 (comint-last-output-start, comint-last-input-start)
10822 (comint-last-input-end): Don't defvar when compiling.
10823 (ange-ftp-process-file): Use bound-and-true-p.
10824
10825 * pcmpl-rpm.el (top-level): Move provide statement to end.
10826 (pcmpl-rpm): Remove unused custom group.
10827
10828 * pcmpl-gnu.el (tar-parse-info, tar-header-name): Declare for compiler.
10829
10830 * mail/emacsbug.el (report-emacs-bug): Request `emacs -Q' recipes.
10831
10832 * emacs-lisp/bytecomp.el (byte-compile-warning-types)
10833 (byte-compile-warnings): Add `constants' as an option.
10834 (byte-compile-callargs-warn, byte-compile-arglist-warn)
10835 (display-call-tree): Update for byte-compile-fdefinition possibly
10836 returning `(macro lambda ...)'. (Bug#4778)
10837 (byte-compile-variable-ref, byte-compile-setq-default):
10838 Respect `constants' member of byte-compile-warnings.
10839
10840 2009-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
10841
10842 * vc-bzr.el (vc-bzr-revision-keywords): New var.
10843 (vc-bzr-revision-completion-table): Use it to fix completion of "s:"
10844 to "submit:".
10845
10846 2009-10-30 Dan Nicolaescu <dann@ics.uci.edu>
10847
10848 * textmodes/ispell.el (ispell-skip-region-alist):
10849 * international/mule-conf.el (eight-bit):
10850 * international/fontset.el (font-encoding-alist):
10851 * startup.el (pure-space-overflow-message):
10852 * simple.el (overwrite-mode-textual, overwrite-mode-binary):
10853 * paths.el (gnus-nntp-service, rmail-spool-directory)
10854 (term-file-prefix):
10855 * files.el (save-some-buffers-action-alist):
10856 * cmuscheme.el (same-window-buffer-names):
10857 * ielm.el (same-window-buffer-names):
10858 * shell.el (same-window-buffer-names):
10859 * mail/sendmail.el (same-window-buffer-names):
10860 * progmodes/inf-lisp.el (same-window-buffer-names):
10861 * bindings.el (mode-line-client)
10862 (mode-line-column-line-number-mode-map):
10863 * language/tibetan.el (tibetan-precomposition-rule-regexp)
10864 (tibetan-precomposed-regexp): Purecopy string arguments.
10865
10866 2009-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
10867
10868 * calc/calc.el (calc, calc-refresh, calc-trail-buffer, calc-record)
10869 (calcDigit-nondigit):
10870 * calc/calc-yank.el (calc-copy-to-buffer):
10871 * calc/calc-units.el (calc-invalidate-units-table):
10872 * calc/calc-trail.el (calc-trail-yank):
10873 * calc/calc-store.el (calc-insert-variables):
10874 * calc/calc-rewr.el (math-rewrite, math-rewrite-phase):
10875 * calc/calc-prog.el (calc-read-parse-table):
10876 * calc/calc-keypd.el (calc-do-keypad, calc-keypad-right-click):
10877 * calc/calc-help.el (calc-describe-bindings, calc-describe-key):
10878 * calc/calc-graph.el (calc-graph-delete, calc-graph-add-curve)
10879 (calc-graph-juggle, calc-graph-count-curves, calc-graph-plot)
10880 (calc-graph-plot, calc-graph-format-data, calc-graph-set-styles)
10881 (calc-graph-name, calc-graph-find-command, calc-graph-view)
10882 (calc-graph-view, calc-gnuplot-command, calc-graph-init):
10883 * calc/calc-ext.el (calc-realign):
10884 * calc/calc-embed.el (calc-do-embedded, calc-do-embedded)
10885 (calc-embedded-finish-edit, calc-embedded-make-info)
10886 (calc-embedded-finish-command, calc-embedded-stack-change):
10887 * calc/calc-aent.el (calcAlg-enter): Use with-current-buffer.
10888
10889 * pcomplete.el (pcomplete-comint-setup): If there's a choice, replace
10890 shell-dynamic-complete-filename in preference to
10891 comint-dynamic-complete-filename.
10892
10893 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
10894 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
10895 Don't consider whether the display supports colors.
10896 (bookmark-import-new-list): Use dolist.
10897 (bookmark-bmenu-mode-map): Move initialization into declaration.
10898 (bookmark-bmenu-list): Use dolist, simplify.
10899 (bookmark-show-all-annotations): Use save-selected-window and dolist.
10900 (menu-bar-final-items): Use push.
10901
10902 2009-10-28 Bernhard Herzog <bernhard.herzog@intevation.de> (tiny change)
10903
10904 * vc-hg.el (vc-hg-state, vc-hg-working-revision): Use process-file so
10905 it works on remote files.
10906 (vc-hg-diff): Don't pass any `--cwd' argument.
10907
10908 2009-10-27 Kevin Ryde <user42@zip.com.au>
10909
10910 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
10911 Use help-xref-info-regexp and help-xref-url-regexp to identify links.
10912 (Further to Bug#3921).
10913
10914 2009-10-27 Michael Albinus <michael.albinus@gmx.de>
10915
10916 * net/tramp-imap.el (top): Add `X-Size' to `imap-hash-headers'.
10917 (tramp-imap-do-copy-or-rename-file): Don't use the inode, when
10918 calling `tramp-imap-put-file'. Add file size to the call.
10919 (tramp-imap-get-file-entries): Compute also user name, file size,
10920 and date.
10921 (tramp-imap-handle-insert-directory): Insert uid and gid.
10922 (tramp-imap-handle-file-attributes): Transform uid and gid
10923 according to `id-format'.
10924 (tramp-imap-put-file): New optional parameter SIZE. Encode file
10925 size in header X-Size.
10926
10927 2009-10-26 Juanma Barranquero <lekktu@gmail.com>
10928
10929 * simple.el (transpose-subr): Give clearer error when the mark
10930 is not set. (Bug#4807)
10931
10932 2009-10-26 Michael Albinus <michael.albinus@gmx.de>
10933
10934 * net/tramp.el (tramp-perl-file-truename): New defconst.
10935 Perl code contributed by yary <not.com@gmail.com> (tiny change).
10936 (tramp-handle-file-truename, tramp-get-remote-perl): Use it.
10937 Check also for "perl-file-spec" and "perl-cwd-realpath" properties.
10938 (tramp-handle-write-region): In case of APPEND, reuse the tmpfile name.
10939
10940 * net/tramp-imap.el (tramp-imap-file-name-handler-alist):
10941 Ignore `dired-call-process'.
10942 (tramp-imap-make-iht): Use `user' and `ssl' with `imap-hash-make'.
10943
10944 2009-10-26 Julian Scheid <julians37@gmail.com>
10945
10946 * net/tramp.el (tramp-perl-file-name-all-completions): New defconst.
10947 (tramp-get-remote-readlink): New defun.
10948 (tramp-handle-file-truename): Use it.
10949 (tramp-handle-file-exists-p): Check file-attributes cache, assume
10950 file exists if cache value present.
10951 (tramp-check-cached-permissions): New defun.
10952 (tramp-handle-file-readable-p): Use it.
10953 (tramp-handle-file-writable-p): Likewise.
10954 (tramp-handle-file-executable-p): Likewise.
10955 (tramp-handle-file-name-all-completions): Try using Perl to get
10956 partial completions. When perl not available, combine `cd' and
10957 `ls' into single remote operation and use shell expansion to get
10958 partial remote directory contents. Set `file-exists-p' cache for
10959 directory and any files returned by ls. Change cache handling to
10960 support partial directory contents. Use error message emitted by
10961 remote `cd' or Perl code for local tramp-error.
10962 (tramp-do-copy-or-rename-file-directly): Avoid separate
10963 tramp-send-command-and-check call.
10964 (tramp-handle-process-file): Merge three remote ops into one.
10965 Do not flush all caches when `process-file-side-effects' is set.
10966 (tramp-handle-write-region): Avoid tramp-set-file-uid-gid if
10967 file-attributes shows uid/gid to be set already.
10968
10969 2009-10-26 Dan Nicolaescu <dann@ics.uci.edu>
10970
10971 * textmodes/tex-mode.el (tex-dvi-view-command)
10972 (tex-show-queue-command, tex-open-quote):
10973 * progmodes/ruby-mode.el (auto-mode-alist)
10974 (interpreter-mode-alist): Purecopy strings.
10975
10976 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Purecopy item names.
10977
10978 * emacs-lisp/derived.el (define-derived-mode): Purecopy the doc
10979 string for the hook, keymap and abbrev table.
10980
10981 * emacs-lisp/byte-run.el (make-obsolete): Purecopy the current name.
10982
10983 * x-dnd.el (x-dnd-xdnd-to-action):
10984 * startup.el (fancy-startup-text, fancy-about-text): Change to
10985 defconst from defvar.
10986
10987 * ps-print.el (ps-page-dimensions-database): Purecopy initial value.
10988
10989 * mouse.el (mouse-buffer-menu-mode-groups, x-fixed-font-alist):
10990 Purecopy initialization strings.
10991
10992 * mail/sendmail.el (mail-header-separator)
10993 (mail-personal-alias-file):
10994 * mail/rmail.el (rmail-default-dont-reply-to-names)
10995 (rmail-ignored-headers, rmail-retry-ignored-headers)
10996 (rmail-highlighted-headers, rmail-secondary-file-directory)
10997 (rmail-secondary-file-regexp):
10998 * files.el (null-device, file-name-invalid-regexp)
10999 (locate-dominating-stop-dir-regexp)
11000 (inhibit-first-line-modes-regexps): Purecopy initialization strings.
11001 (interpreter-mode-alist): Use mapcar instead of mapc.
11002
11003 * buff-menu.el (Buffer-menu-mode-map): Purecopy name.
11004
11005 * bindings.el (mode-line-major-mode-keymap): Purecopy name.
11006 (completion-ignored-extensions):
11007 (debug-ignored-errors): Purecopy strings.
11008
11009 2009-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
11010
11011 * pcomplete.el (pcomplete-std-complete): Obey pcomplete-use-paring.
11012 (pcomplete, pcomplete-parse-buffer-arguments, pcomplete-opt)
11013 (pcomplete--here): Use push.
11014
11015 * subr.el (all-completions): Declare the 4th arg obsolete.
11016
11017 2009-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
11018
11019 * pcomplete.el (pcomplete-unquote-argument-function): New var.
11020 (pcomplete-unquote-argument): New function.
11021 (pcomplete--common-suffix): Always pay attention to case.
11022 (pcomplete--table-subvert): Quote and unquote the text.
11023 (pcomplete--common-quoted-suffix): New function.
11024 (pcomplete-std-complete): Use it and pcomplete-begin.
11025
11026 * bookmark.el (bookmark-bmenu-list): Don't use switch-to-buffer if
11027 we're inside a dedicated or minibuffer window.
11028
11029 2009-10-24 Karl Fogel <kfogel@red-bean.com>
11030
11031 * bookmark.el: Update documentation, especially documentation
11032 of `bookmark-alist' and of the bookmark file format.
11033 Patch by Drew Adams, with minor tweaks from me. (Bug#4195)
11034
11035 2009-10-24 Chong Yidong <cyd@stupidchicken.com>
11036
11037 * mail/emacsbug.el (report-emacs-bug): Clarify that the
11038 keybindings apply to the mail buffer (Bug#4003). Shrink help
11039 window to buffer.
11040
11041 * whitespace.el (whitespace-mode, whitespace-newline-mode)
11042 (global-whitespace-mode, global-whitespace-newline-mode)
11043 (whitespace-toggle-options, global-whitespace-toggle-options):
11044 Doc fix (Bug#3660).
11045
11046 * nxml/nxml-mode.el (nxml-balanced-close-start-tag): Use the value
11047 of xmltok-start before the end tag was inserted (Bug#2840).
11048
11049 * progmodes/sh-script.el (sh-font-lock-paren): Handle case
11050 patterns that are preceded by an open-paren (Bug#1320).
11051
11052 2009-10-24 Sven Joachim <svenjoac@gmx.de>
11053
11054 * files.el (delete-directory): Delete symlinks to directories with
11055 delete-file (Bug#4739).
11056
11057 2009-10-24 Dan Nicolaescu <dann@ics.uci.edu>
11058
11059 * vc.el (vc-backend-for-registration): Rename from
11060 vc-get-backend-for-registration. Update callers.
11061
11062 * international/mule-cmds.el (set-language-info-alist):
11063 Purecopy lang-env.
11064 (leim-list-header, leim-list-entry-regexp): Change defvars to defconst.
11065 (charset): Purecopy the name.
11066 (define-char-code-property): Purecopy string arguments.
11067
11068 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
11069 Purecopy string arguments.
11070
11071 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
11072 * ediff-hook.el (menu-bar-ediff-menu):
11073 * buff-menu.el (Buffer-menu-mode-map): Purecopy names and tooltips.
11074 * bookmark.el (menu-bar-bookmark-map): Add :help and purecopy the name.
11075
11076 2009-10-24 Glenn Morris <rgm@gnu.org>
11077
11078 * comint.el (comint-dynamic-list-completions):
11079 * term.el (term-dynamic-list-completions): Use choose-completion rather
11080 than obsolete alias mouse-choose-completion.
11081
11082 * filecache.el (file-cache-completions-keymap): Bind mouse-2 to
11083 file-cache-choose-completion.
11084 (file-cache-choose-completion): Handle an optional event argument.
11085 (file-cache-mouse-choose-completion): Make it an obsolete alias.
11086
11087 * progmodes/octave-mod.el (octave-complete-symbol):
11088 Use choose-completion if mouse-choose-completion is ever removed.
11089
11090 * textmodes/sgml-mode.el (sgml-looking-back-at): Move definition before
11091 use.
11092
11093 * emacs-lisp/checkdoc.el (generate-autoload-cookie): Define for
11094 compiler.
11095
11096 * vc-hooks.el (vc-responsible-backend): Fix declaration.
11097
11098 2009-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
11099
11100 * minibuffer.el (completion--embedded-envvar-table): Fix last change.
11101 Ignore `pred' now that we receive one.
11102 Handle test-completion specially.
11103
11104 2009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
11105
11106 * vc.el (vc-responsible-backend): Throw an error if not backend is
11107 found. Remove the REGISTER argument. Move the code dealing with
11108 REGISTER ...
11109 (vc-get-backend-for-registration): ... here. New function.
11110 (vc-deduce-fileset): Call vc-get-backend-for-registration instead
11111 of vc-responsible-backend, pass the file name instead of the
11112 directory name.
11113
11114 2009-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
11115
11116 * pcomplete.el (pcomplete-common-suffix, pcomplete-table-subvert):
11117 New funs.
11118 (pcomplete-std-complete): Use them. Obey pcomplete-termination-string.
11119 (pcomplete-comint-setup): Don't modify a global var via
11120 accidental side-effects.
11121 (pcomplete-shell-setup): Adjust call accordingly.
11122 (pcomplete-parse-comint-arguments): Use push.
11123
11124 2009-10-23 Chong Yidong <cyd@stupidchicken.com>
11125
11126 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
11127 Allow uncapitalized info node names (Bug#3921).
11128
11129 * mail/emacsbug.el (report-emacs-bug): Tweak the sentence pointing
11130 to the DEBUG file (Bug#3781).
11131
11132 2009-10-23 Jari Aalto <jari.aalto@cante.net>
11133
11134 * textmodes/ispell.el (ispell-dictionary-base-alist): Add finnish
11135 dictionary entry (Bug#4579).
11136
11137 2009-10-23 Michael Albinus <michael.albinus@gmx.de>
11138
11139 * net/tramp.el (top): Remove `tramp-rfn-eshadow-update-overlay'
11140 from `rfn-eshadow-update-overlay-hook' when unloading.
11141 (tramp-methods): Add `tramp-copy-keep-tmpfile' for "rsync" and
11142 "rsyncc". Adjust doc string.
11143 (tramp-temp-buffer-file-name): New buffer-local defvar.
11144 (tramp-handle-insert-file-contents, tramp-handle-write-region):
11145 Keep temporary file when indicated by method ("rsync" and
11146 "rsyncc").
11147 (tramp-handle-write-region): Handle APPEND.
11148 (tramp-delete-temp-file-function): New defun. Added to
11149 `kill-buffer-hook'.
11150
11151 2009-10-23 Juanma Barranquero <lekktu@gmail.com>
11152
11153 * menu-bar.el (cua-enable-cua-keys): Declare for the byte-compiler.
11154
11155 2009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
11156
11157 * term/tty-colors.el (msdos-color-values): Remove declaration, unused.
11158 (color-name-rgb-alist, tty-standard-colors)
11159 (tty-color-mode-alist): Change to defconst.
11160
11161 * simple.el (mark-inactive): Purecopy message.
11162
11163 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle): Fix macro.
11164 (global-map, yank-menu):
11165 * textmodes/ispell.el (ispell-menu-map):
11166 * net/eudc.el (eudc-tools-menu):
11167 * international/mule-cmds.el (describe-language-environment-map)
11168 (setup-language-environment-map, set-coding-system-map)
11169 (mule-menu-keymap):
11170 * vc-hooks.el (vc-menu-entry, vc-menu-map):
11171 * replace.el (occur-mode-map):
11172 * pcvs-defs.el (cvs-global-menu): Purecopy names and tooltips.
11173
11174 2009-10-23 Jay Belanger <jay.p.belanger@gmail.com>
11175
11176 * calc/calc.el (math-read-number, math-read-number-simple): Use
11177 `save-match-data'.
11178
11179 2009-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
11180
11181 * simple.el (normal-erase-is-backspace-mode): Use input-decode-map
11182 rather than fiddling with global-map bindings, since it should only
11183 affect per-terminal settings.
11184 See http://bugs.gentoo.org/show_bug.cgi?id=289709.
11185
11186 * minibuffer.el (completion-table-with-terminator): Allow to specify
11187 the terminator-regexp.
11188
11189 * simple.el (switch-to-completions): Look for *Completions* in other
11190 frames as well.
11191
11192 * pcomplete.el: Allow the use of completion-tables.
11193 (pcomplete-std-complete): New command.
11194 (pcomplete-dirs-or-entries): Use a single call to pcomplete-entries.
11195 (pcomplete--here): Use a function for `form' rather than an expression,
11196 so it can be byte-compiled.
11197 (pcomplete-here, pcomplete-here*): Adjust accordingly.
11198 Add edebug declaration.
11199 (pcomplete-show-completions): Remove unused var `curbuf'.
11200 (pcomplete-do-complete, pcomplete-stub):
11201 Don't assume `completions' is a list of strings any more.
11202
11203 2009-10-22 Juanma Barranquero <lekktu@gmail.com>
11204
11205 * find-dired.el (find-name-arg): Fix typo in docstring.
11206
11207 2009-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
11208
11209 * pcmpl-linux.el (pcomplete/kill): Don't abuse pcomplete-entries.
11210 (pcmpl-linux-fs-types): Same, and update to new modules layout.
11211
11212 * pcmpl-gnu.el (pcmpl-gnu-makefile-names): Use a single call to
11213 pcomplete-entries.
11214
11215 * comint.el (comint-read-input-ring, comint-write-input-ring)
11216 (comint-substitute-in-file-name)
11217 (comint-dynamic-complete-as-filename)
11218 (comint-dynamic-simple-complete)
11219 (comint-dynamic-list-filename-completions)
11220 (comint-dynamic-list-completions)
11221 (comint-redirect-results-list-from-process): Minor simplifications.
11222
11223 2009-10-21 Kevin Ryde <user42@zip.com.au>
11224
11225 * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
11226 When inserting ";;; Code" put it before any ";;;###autoload" cookie on
11227 the first form. And insert a blank line after ";;; Code" since
11228 that's usual style. (Bug#4612)
11229
11230 * net/dns.el: Add "Keywords: comm", as per net/net-utils.el.
11231
11232 2009-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
11233
11234 * minibuffer.el (completion-table-with-terminator): Properly implement
11235 boundaries, in case `terminator' appears in the suffix.
11236 (completion--embedded-envvar-table): Don't return boundaries if
11237 there's no valid completion. Simplify.
11238 (completion-file-name-table): New completion table extracted from
11239 completion--file-name-table.
11240 (completion--file-name-table): Use it.
11241 (read-file-name-predicate): Declare obsolete.
11242 (read-file-name): Use the pred arg i.s.o read-file-name-predicate.
11243 * vc-bzr.el (vc-bzr-revision-completion-table): Use the new
11244 completion-file-name-table, and use the `pred' argument.
11245 * files.el (locate-file-completion-table): Use the `pred' arg rather
11246 than read-file-name-predicate.
11247 (abbreviate-file-name): Use \` rather than ^ for BOS.
11248
11249 2009-10-21 Dan Nicolaescu <dann@ics.uci.edu>
11250
11251 * vc.el (vc-deduce-fileset): Undo previous change, do not tell
11252 vc-responsible-backend to register, it causes problems.
11253
11254 2009-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
11255
11256 * help-fns.el: Don't require help-mode (to avoid bootstrap issues).
11257
11258 2009-10-21 Michael Albinus <michael.albinus@gmx.de>
11259
11260 * net/tramp-smb.el (tramp-smb-get-stat-capability): New defun.
11261 (tramp-smb-handle-file-attributes): Use it.
11262 (tramp-smb-do-file-attributes-with-stat): Don't raise an error.
11263 (tramp-smb-handle-insert-directory): Use `mapc' rather than
11264 `mapcar'. Use `tramp-smb-get-stat-capability'.
11265 Add `dired-filename' text properties.
11266 (tramp-smb-get-cifs-capabilities): Apply `save-match-data'.
11267 (tramp-smb-maybe-open-connection): Simplify check for smbclient
11268 version.
11269
11270 2009-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
11271
11272 * subr.el (read-key-delay): Reduce to 0.01.
11273 (read-key): Use read-key-sequence-vector to avoid turning M-t into 244
11274 (bug#4751).
11275
11276 2009-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
11277
11278 * bindings.el (function-key-map): Map C-@ to C-SPC if C-@ is unbound.
11279
11280 * info.el (Info-complete-menu-item): Handle `boundaries' explicitly.
11281 (Info-menu): Remove unused vars `last' and `completions'.
11282 (Info-index-nodes): Remove unused var `node'.
11283
11284 * info.el (Info-complete-menu-item): Use complete-with-action.
11285
11286 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
11287
11288 Make vc-annotate work through copies and renames.
11289 * vc-annotate.el (vc-annotate-extract-revision-at-line):
11290 Return the file name too.
11291 (vc-annotate-revision-at-line)
11292 (vc-annotate-find-revision-at-line)
11293 (vc-annotate-revision-previous-to-line)
11294 (vc-annotate-show-log-revision-at-line): Update to get the file
11295 name from vc-annotate-extract-revision-at-line.
11296 (vc-annotate-show-diff-revision-at-line-internal): Change the
11297 argument to mean whether to show a file diff or not. Get the file
11298 name from vc-annotate-extract-revision-at-line.
11299 (vc-annotate-show-diff-revision-at-line):
11300 Update vc-annotate-show-diff-revision-at-line call.
11301 (vc-annotate-warp-revision): Add an optional file argument.
11302
11303 * vc-git.el (vc-git-annotate-command): Pass -C -C to the blame command.
11304 (vc-git-annotate-extract-revision-at-line): Also return the file
11305 name if found.
11306
11307 * vc-hg.el (vc-hg-annotate-command): Pass --follow to the annotate
11308 command. Remove unused code.
11309 (vc-hg-annotate-re): Update to match --follow output.
11310 (vc-hg-annotate-extract-revision-at-line): Also return the file
11311 name if found.
11312
11313 * vc.el: Update annotate-extract-revision-at-line documentation.
11314
11315 2009-10-18 Kevin Ryde <user42@zip.com.au>
11316
11317 * ibuffer.el (ibuffer-confirm-operation-on): Correction to error
11318 re-throw, `err' is a pair not a list so can't use apply (Bug#4740).
11319
11320 * net/browse-url.el (browse-url): Identify alist with "consp and
11321 not functionp" and let all other things go down the `apply' leg,
11322 as suggested by Stefan. (Further to bug#4531.)
11323
11324 2009-10-18 Chong Yidong <cyd@stupidchicken.com>
11325
11326 * minibuffer.el (read-file-name): Check for repeat before putting
11327 a default argument in file-name-history (Bug#4657).
11328
11329 * emacs-lisp/lisp-mode.el (preceding-sexp): Recognize hash table
11330 read syntax (Bug#4737).
11331
11332 * textmodes/sgml-mode.el (sgml-delete-tag): Use sgml-looking-back-at.
11333
11334 2009-10-18 Aaron S. Hawley <aaron.s.hawley@gmail.com>
11335
11336 * textmodes/sgml-mode.el (sgml-tag-help): Prompt user for tag.
11337 (html-tag-alist, html-tag-help): Add descriptions for undocumented
11338 entries and make note of obsolete tags.
11339
11340 2009-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
11341
11342 * net/ange-ftp.el (ange-ftp-file-size): Use unwind-protect.
11343
11344 2009-10-18 Glenn Morris <rgm@gnu.org>
11345
11346 * Makefile.in (compile-last): Ensure GREP_OPTIONS is null before calling
11347 grep, so that binary files (eg international/uni-bidi.el) can match.
11348 Remove test for "UnicodeData" files, since it is hopefully unnecessary
11349 now, and in any case the file header format has changed.
11350
11351 2009-10-17 Glenn Morris <rgm@gnu.org>
11352
11353 * textmodes/flyspell.el (flyspell-large-region, flyspell-word)
11354 (flyspell-get-word, flyspell-large-region)
11355 (flyspell-auto-correct-previous-word): Doc/error message fixes.
11356
11357 2009-10-17 Chong Yidong <cyd@stupidchicken.com>
11358
11359 * Makefile.in (ELCFILES): Add ede/shell.
11360
11361 2009-10-17 Dan Nicolaescu <dann@ics.uci.edu>
11362
11363 * term/common-win.el (x-colors): Purecopy it.
11364
11365 2009-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
11366
11367 * tar-mode.el (tar-data-swapped-p): Make the assertion a bit more
11368 permissive for when the buffer is empty.
11369 (tar-header-block-tokenize): Decode the username and groupname.
11370 (tar-chown-entry, tar-chgrp-entry): Encode the names (bug#4730).
11371
11372 2009-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
11373
11374 * international/mule-cmds.el (select-safe-coding-system): If the file
11375 has a coding cookie, use it regardless of any other setting (bug#4712).
11376
11377 2009-10-17 Glenn Morris <rgm@gnu.org>
11378
11379 * foldout.el (foldout-mouse-swallow-events):
11380 * gs.el (gs-load-image): Replace obsolete forms of sit-for, sleep-for.
11381
11382 * dired.el (dired-ls-F-marks-symlinks, dired-keep-marker-rename)
11383 (dired-keep-marker-copy, dired-keep-marker-hardlink)
11384 (dired-keep-marker-symlink, dired-dwim-target)
11385 (dired-copy-preserve-time): Do not autoload these defcustoms.
11386
11387 * mail/rmail.el (rmail-write-region-annotate): Prevent viewing different
11388 messages from messing up the file coding. (Bug#4623)
11389
11390 2009-10-17 Jari Aalto <jari.aalto@cante.net>
11391
11392 * textmodes/ispell.el (ispell-get-decoded-string): Give an error
11393 if no match is found for the current dictionary. (Bug#4578)
11394
11395 * textmodes/flyspell.el (flyspell-get-word): Make `following' argument
11396 optional, since that is how it is documented, and this is often called
11397 with a nil argument. (Bug#4577)
11398 (flyspell-external-point-words, flyspell-auto-correct-word)
11399 (flyspell-correct-word-before-point, flyspell-word-search-forward)
11400 (flyspell-word-search-backward): Remove nil argument in calls to
11401 flyspell-get-word, since it is not needed now.
11402
11403 2009-10-17 Ulrich Mueller <ulm@gentoo.org>
11404
11405 * play/doctor.el (doctor-adverbp): Exclude some nouns. (Bug#4565)
11406
11407 2009-10-16 Glenn Morris <rgm@gnu.org>
11408
11409 * net/rcirc.el (rcirc-authenticate): Simplify previous change.
11410
11411 2009-10-16 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
11412
11413 * net/ange-ftp.el (ange-ftp-send-cmd): Handle `size' like `mdtm'.
11414 (ange-ftp-file-size): New function.
11415 (ange-ftp-file-attributes): Use it.
11416
11417 2009-10-16 Michael Albinus <michael.albinus@gmx.de>
11418
11419 * net/tramp-smb.el (tramp-smb-version): New defvar.
11420 (tramp-smb-maybe-open-connection): Use it, in order to avoid
11421 repeated checks.
11422
11423 2009-10-16 Glenn Morris <rgm@gnu.org>
11424
11425 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Doc fix.
11426 Maybe copy some custom properties from old to new name. (Bug#4706)
11427
11428 2009-10-16 Juanma Barranquero <lekktu@gmail.com>
11429
11430 * subr.el (error, sit-for, start-process-shell-command)
11431 (start-file-process-shell-command): Set the calling convention
11432 after the function definition.
11433
11434 2009-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
11435
11436 * subr.el (error, sit-for, start-process-shell-command)
11437 (start-file-process-shell-command): Use the new
11438 set-advertised-calling-convention feature.
11439
11440 2009-10-16 Taichi Kawabata <kawabata.taichi@gmail.com>
11441
11442 * international/ucs-normalize.el (ucs-normalize-version):
11443 Change to 1.2.
11444 (check-range): Adjust for Unicode 5.2.
11445
11446 2009-10-15 Juri Linkov <juri@jurta.org>
11447
11448 * menu-bar.el (menu-bar-file-menu): Convert `separator-exit'
11449 to the `menu-item' format.
11450
11451 2009-10-15 Michael Albinus <michael.albinus@gmx.de>
11452
11453 * net/tramp.el (tramp-replace-environment-variables): Do not fail
11454 if the environment variable does not exist.
11455
11456 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
11457 (tramp-smb-get-share, tramp-smb-get-localname): Use only VEC as
11458 parameter.
11459 (tramp-smb-handle-add-name-to-file)
11460 (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
11461 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
11462 (tramp-smb-handle-file-attributes)
11463 (tramp-smb-do-file-attributes-with-stat)
11464 (tramp-smb-handle-file-local-copy)
11465 (tramp-smb-handle-insert-directory)
11466 (tramp-smb-handle-make-directory)
11467 (tramp-smb-handle-make-directory-internal)
11468 (tramp-smb-handle-make-symbolic-link)
11469 (tramp-smb-handle-rename-file, tramp-smb-handle-set-file-modes)
11470 (tramp-smb-handle-write-region, tramp-smb-get-file-entries)
11471 (tramp-smb-maybe-open-connection): Apply the changed parameters.
11472 (tramp-smb-read-file-entry): Read Disk names in compressed format.
11473 Handle long file names.
11474 (tramp-smb-get-cifs-capabilities): Check, whether the connection
11475 process is running.
11476 (tramp-smb-maybe-open-connection): Trace "smbclient -V" command.
11477 Read share names with "-g" option.
11478
11479 2009-10-15 Ryan Yeske <rcyeske@gmail.com>
11480
11481 * net/rcirc.el (rcirc-view-log-file): New command.
11482 (rcirc-track-minor-mode-map): Remove C-c ` binding.
11483 (rcirc-authenticate, rcirc-authinfo): Allow nickserv-nick to be
11484 specified.
11485
11486 2009-10-15 Glenn Morris <rgm@gnu.org>
11487
11488 * w32-fns.el (w32-batch-update-autoloads): Take autoload-make-program
11489 from the second command-line argument.
11490 * makefile.w32-in (autoloads, $(lisp)/calendar/cal-loaddefs.el)
11491 ($(lisp)/calendar/diary-loaddefs.el, $(lisp)/calendar/hol-loaddefs.el)
11492 ($(lisp)/mh-e/mh-loaddefs.el): Pass $(MAKE) as second argument to
11493 w32-batch-update-autoloads.
11494 * emacs-lisp/autoload.el (autoload-make-program): New variable.
11495 (batch-update-autoloads): Handle autoload-excludes on windows-nt.
11496
11497 * mail/rmailedit.el (rmail-cease-edit): Give an error if the end of
11498 the headers cannot be located. Simplify, subtracting superflous
11499 save-excursions.
11500
11501 2009-10-15 Stefan Monnier <monnier@iro.umontreal.ca>
11502
11503 Replace completion-base-size by completion-base-position to fix bugs
11504 such as (bug#4699).
11505 * simple.el (completion-base-position): New var.
11506 (completion-base-size): Mark as obsolete.
11507 (choose-completion): Make it work for mouse events as well.
11508 Pass the new base-position to choose-completion-string.
11509 (choose-completion-guess-base-position): New function, extracted from
11510 choose-completion-delete-max-match.
11511 (choose-completion-delete-max-match): Use it. Make obsolete.
11512 (choose-completion-string): Use the new base-position info.
11513 (completion-root-regexp): Delete.
11514 (completion-setup-function): Preserve completion-base-position.
11515 Eliminate obsolete base-size manipulation.
11516 * minibuffer.el (display-completion-list): Don't mess with base-size.
11517 (minibuffer-completion-help): Set completion-base-position instead.
11518 * mouse.el (mouse-choose-completion): Redefine as a mere alias to
11519 choose-completion.
11520 * textmodes/bibtex.el (bibtex-complete):
11521 * emacs-lisp/crm.el (crm--choose-completion-string):
11522 Adjust to new calling convention.
11523 * complete.el (partial-completion-mode): Use minibufferp to avoid
11524 bumping into incompatible change to choose-completion-string-functions.
11525 * ido.el (ido-choose-completion-string): Make its calling convention
11526 more permissive.
11527 * comint.el (comint-dynamic-list-input-ring-select): Remove obsolete
11528 base-size manipulation.
11529 (comint-dynamic-list-input-ring): Use dotimes and push.
11530 * iswitchb.el (iswitchb-completion-help): Remove dead-code call to
11531 fundamental-mode. Use `or'.
11532
11533 2009-10-14 Juri Linkov <juri@jurta.org>
11534
11535 * misearch.el (multi-isearch-next-buffer-from-list)
11536 (multi-isearch-next-file-buffer-from-list): Doc fix. (Bug#4723)
11537
11538 2009-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
11539
11540 * Makefile.in (compile-onefile): Load `bytecomp' rather than
11541 `bytecomp.el'.
11542
11543 * minibuffer.el (completion-pcm--merge-completions): Make sure the
11544 string we return is all made up of text from the completions rather
11545 than part from the completions and part from the input (bug#4219).
11546
11547 * ido.el (ido-everywhere): Use define-minor-mode.
11548
11549 * buff-menu.el (list-buffers, ctl-x-map):
11550 Mark the entry points with ;;;###autoload cookies.
11551
11552 2009-10-14 Dan Nicolaescu <dann@ics.uci.edu>
11553
11554 * vc-git.el (vc-git-dir-extra-headers): Set the branch name
11555 correctly in the detached head case.
11556 (vc-git-print-log): Remove unused binding.
11557
11558 * vc.el (vc-responsible-backend): When a directory is passed for
11559 for registration create a VC repository if no backend is
11560 responsible for the directory argument.
11561 (vc-deduce-fileset): Tell vc-responsible-backend to register.
11562
11563 * vc.el: Move comments about RCS and SCCS ...
11564 * vc-rcs.el:
11565 * vc-sccs.el: ... here, respectively.
11566
11567 2009-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
11568
11569 * minibuffer.el (completion--file-name-table): Return nil if there's
11570 no file completion, even if substitute-in-file-name changed
11571 the string (bug#4708).
11572
11573 2009-10-13 Juri Linkov <juri@jurta.org>
11574
11575 * files-x.el (read-file-local-variable-value): Don't filter out
11576 minor modes from mode name completion (bug#4664).
11577
11578 2009-10-13 Juanma Barranquero <lekktu@gmail.com>
11579
11580 * international/mule-cmds.el (ucs-names): Remove exclusion of
11581 "Enclosed Ideographic Supplement" range (U+1F200..U+1F2FF).
11582
11583 2009-10-13 Kenichi Handa <handa@m17n.org>
11584
11585 * international/uni-name.el: Regenerated.
11586
11587 2009-10-13 Juanma Barranquero <lekktu@gmail.com>
11588
11589 * bs.el (bs-mode): Fix last change. (`revert-buffer-function'
11590 should be automatically buffer-local, but isn't.)
11591
11592 2009-10-12 Sam Steingold <sds@gnu.org>
11593
11594 * progmodes/compile.el (compilation-next-error-function): Fix the
11595 timestamps if the buffer has been visited before.
11596 (compilation-mode-font-lock-keywords): Do not prepend "^ *" to
11597 non-anchored patterns, like the perl one (bug#3928).
11598
11599 2009-10-12 Glenn Morris <rgm@gnu.org>
11600
11601 * net/tramp-smb.el (tramp-smb-do-file-attributes-with-stat):
11602 Let-bind `size'.
11603
11604 2009-10-12 Juanma Barranquero <lekktu@gmail.com>
11605
11606 * proced.el (proced-unload-function): New function.
11607
11608 * bs.el (bs-mode): Set `revert-buffer-function' to `bs-refresh'.
11609 (bs-refresh): Add IGNORED arg for `revert-buffer' compatibility.
11610 Doc fix.
11611
11612 * menu-bar.el (menu-bar-file-menu): Fix format of `separator-exit' item.
11613
11614 2009-10-11 Juri Linkov <juri@jurta.org>
11615
11616 * files-x.el (read-file-local-variable-value):
11617 Provide default value only for bound variables (bug#4664).
11618
11619 2009-10-11 Michael Albinus <michael.albinus@gmx.de>
11620
11621 * net/tramp.el (tramp-local-host-p): Function shall return nil for
11622 connection methods like smb.
11623
11624 * net/tramp-cache.el (tramp-flush-connection-property): The hash
11625 can be empty.
11626
11627 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
11628 (tramp-smb-file-name-handler-alist): Add handlers for
11629 `add-name-to-file', `make-symbolic-link'.
11630 (tramp-smb-handle-add-name-to-file)
11631 (tramp-smb-do-file-attributes-with-stat)
11632 (tramp-smb-handle-make-symbolic-link)
11633 (tramp-smb-get-cifs-capabilities): New defuns.
11634 (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
11635 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
11636 (tramp-smb-handle-file-local-copy)
11637 (tramp-smb-handle-make-directory-internal)
11638 (tramp-smb-handle-rename-file, tramp-smb-handle-write-region):
11639 The file name syntax depends on cifs capabilities.
11640 (tramp-smb-handle-file-attributes):
11641 Call `tramp-smb-do-file-attributes-with-stat' if possible.
11642 (tramp-smb-handle-insert-directory): Use posix attributes if possible.
11643 (tramp-smb-handle-set-file-modes): It is applicable for posix only.
11644
11645 2009-10-11 Chong Yidong <cyd@stupidchicken.com>
11646
11647 * emacs-lisp/eieio.el: Avoid requiring cl at runtime.
11648 (eieio-defclass): Apply deftype handler and setf-method properties
11649 directly.
11650 (eieio-add-new-slot): Avoid union function from cl library.
11651 (eieio--typep): New function.
11652 (eieio-perform-slot-validation): Use it.
11653
11654 2009-10-10 Karl Fogel <kfogel@red-bean.com>
11655
11656 * bookmark.el (bookmark-yank-word, bookmark-insert-current-bookmark):
11657 Update documentation to refer to the variables documented in r1.135.
11658 (Bug#4188)
11659
11660 2009-10-10 Karl Fogel <kfogel@red-bean.com>
11661
11662 * bookmark.el (Info-suffix-list): Remove this unused variable.
11663 (bookmark-current-point): Remove this obsolete variable.
11664 (bookmark-set, bookmark-rename, bookmark-send-edited-annotation):
11665 Adjust for removal of bookmark-current-point.
11666
11667 (bookmarks-already-loaded, bookmark-current-buffer)
11668 (bookmark-yank-point): Document. (Bug#4188)
11669
11670 2009-10-10 Glenn Morris <rgm@gnu.org>
11671
11672 * frame.el (frame-height): Doc fix.
11673
11674 * calendar/calendar.el (calendar-split-width-threshold): New option.
11675 (calendar-basic-setup): Use calendar-split-width-threshold.
11676
11677 2009-10-09 Juanma Barranquero <lekktu@gmail.com>
11678
11679 * international/mule-cmds.el (ucs-names): Exclude new "Enclosed
11680 Ideographic Supplement" range (U+1F200..U+1F2FF).
11681
11682 2009-10-09 Karl Fogel <kfogel@red-bean.com>
11683
11684 * bookmark.el (bookmark-bmenu-rename): Don't call bookmark-bmenu-list,
11685 since the list will have been rebuilt anyway. (Bug#4349)
11686
11687 2009-10-09 Karl Fogel <kfogel@red-bean.com>
11688
11689 * bookmark.el (bookmark-delete): Don't let batch arg prevent saving.
11690 (bookmark-bmenu-execute-deletions): Don't save here, as
11691 bookmark-delete will now do so if necessary.
11692 Suggested by Thierry Volpiatto <thierry.volpiatto {_AT_} gmail.com>.
11693 (Bug#4348)
11694
11695 2009-10-09 Glenn Morris <rgm@gnu.org>
11696
11697 * mail/emacsbug.el (report-emacs-bug): Also print `features'.
11698
11699 2009-10-09 Karl Fogel <kfogel@red-bean.com>
11700
11701 * bookmark.el (bookmark-jump): Add new `display-func' parameter.
11702 (bookmark-jump-other-window): Just invoke bookmark-jump with new
11703 argument now, so the two function's behaviors will match. (Bug#3645)
11704
11705 2009-10-08 Michael Albinus <michael.albinus@gmx.de>
11706
11707 * net/tramp.el (tramp-file-name-real-user, tramp-file-name-domain)
11708 (tramp-file-name-real-host, tramp-file-name-port):
11709 Apply `save-match-data'.
11710
11711 * net/tramp-smb.el (tramp-smb-handle-copy-directory): Handle the
11712 case both directories are remote.
11713 (tramp-smb-handle-expand-file-name): Implement "~" expansion.
11714 (tramp-smb-maybe-open-connection): Flush the cache only if necessary.
11715
11716 2009-10-07 Juanma Barranquero <lekktu@gmail.com>
11717
11718 * makefile.w32-in (WINS_UPDATES): Fix typo in previous change.
11719
11720 2009-10-07 Glenn Morris <rgm@gnu.org>
11721
11722 * emacs-lisp/autoload.el (batch-update-autoloads): Remove useless use
11723 of concat.
11724
11725 2009-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
11726
11727 * files-x.el (read-file-local-variable): Include some
11728 non-user-variables in the completion table (bug#4664).
11729
11730 2009-10-07 Michael Albinus <michael.albinus@gmx.de>
11731
11732 * net/tramp-cache.el (tramp-flush-connection-property): Add trace
11733 message.
11734
11735 * net/tramp-smb.el (tramp-smb-errors): Add error messages.
11736 (tramp-smb-file-name-handler-alist): Add handler for
11737 `copy-directory', `expand-file-name', `set-file-modes'.
11738 (tramp-smb-handle-copy-directory)
11739 (tramp-smb-handle-expand-file-name)
11740 (tramp-smb-handle-set-file-modes): New defuns.
11741 (tramp-smb-handle-copy-file): Handle KEEP-DATE.
11742 (tramp-smb-handle-file-attributes): Simplify check for retrieving
11743 entry.
11744 (tramp-smb-handle-insert-directory): Don't flush the cache.
11745 (tramp-smb-maybe-open-connection): Check for samba client and
11746 server versions.
11747
11748 2009-10-07 Eli Zaretskii <eliz@gnu.org>
11749
11750 * emacs-lisp/autoload.el (batch-update-autoloads): Fix last change
11751 to not error out of search for "^lisp=" fails.
11752
11753 2009-10-07 Juanma Barranquero <lekktu@gmail.com>
11754
11755 * makefile.w32-in (WINS_UPDATES): New macro.
11756 (custom-deps, finder-data, autoloads): Use it.
11757
11758 2009-10-07 Glenn Morris <rgm@gnu.org>
11759
11760 * Makefile.in (autoloads): Revert previous change.
11761 * emacs-lisp/autoload.el (batch-update-autoloads): Rather than having
11762 the list of preloaded files passed on the command-line, get
11763 it from src/Makefile.
11764
11765 * calendar/calendar.el (calendar-basic-setup): In the wide frame case,
11766 show the original buffer rather than a random one.
11767
11768 2009-10-07 Markus Rost <rost@math.uni-bielefeld.de>
11769
11770 * help.el (describe-no-warranty): Place point in a slightly better
11771 position in the GPLv3 text.
11772
11773 2009-10-06 Sam Steingold <sds@gnu.org>
11774
11775 * net/tramp-compat.el (tramp-compat-process-running-p): Check that
11776 the comm attribute is present before calling regexp-quote.
11777
11778 2009-10-06 Juanma Barranquero <lekktu@gmail.com>
11779
11780 * play/animate.el (animate-string): For good effect, make sure
11781 `indent-tabs-mode' and `show-trailing-whitespace' are nil.
11782
11783 * play/animate.el (animate-sequence, animate-birthday-present):
11784 * misc.el (butterfly): Don't set `indent-tabs-mode'.
11785
11786 2009-10-06 Glenn Morris <rgm@gnu.org>
11787
11788 * emacs-lisp/byte-run.el (define-obsolete-face-alias): Doc fix.
11789
11790 * emacs-lisp/autoload.el (autoload-excludes): New variable.
11791 (autoload-generate-file-autoloads): Skip files in autoload-excludes.
11792 (batch-update-autoloads): Process a string value of autoload-excludes,
11793 set during the build process.
11794 * Makefile.in (autoloads): Skip preloaded files. (Bug#4446)
11795
11796 * net/tramp.el (tramp-handle-start-file-process): Move tramp-error call
11797 inside with-parsed... macro so that `v' is defined.
11798
11799 * progmodes/f90.el (f90-end-of-block, f90-beginning-of-block):
11800 * progmodes/fortran.el (fortran-end-of-block)
11801 (fortran-beginning-of-block):
11802 Also push mark in the macro case.
11803
11804 * emerge.el (emerge-show-file-name):
11805 * calc/calc.el (calc-quit):
11806 * calc/calc-misc.el (calc-big-or-small):
11807 * calc/calc-graph.el (calc-graph-view):
11808 * calc/calc-ext.el (calc-reset):
11809 * calendar/calendar.el (calendar-basic-setup):
11810 Use window-full-height-p.
11811
11812 * mail/rmailedit.el (rmail-cease-edit): If there is a Content-Type
11813 header we don't understand, don't insert another. (Bug#4624)
11814 If changing mime charset, insert the new one in the right place.
11815
11816 2009-10-06 Matthew Junker <matthew.junker@sbcglobal.net> (tiny change)
11817
11818 * calendar/cal-tex.el (cal-tex-cursor-month-landscape)
11819 (cal-tex-cursor-month): Correctly increment the end date for diary and
11820 holiday listing. (Bug#4626)
11821
11822 2009-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
11823
11824 * help-fns.el (describe-function-1): Don't burp if the function is not
11825 a symbol.
11826
11827 2009-10-05 Juanma Barranquero <lekktu@gmail.com>
11828
11829 * emacs-lisp/chart.el (chart-face-pixmap-list, chart-new-buffer, chart)
11830 (chart-axis-range, chart-axis-names, chart-sequece, chart-bar)
11831 (chart-draw, chart-axis-draw, chart-sort, chart-sort-matchlist)
11832 (chart-draw-line, chart-bar-quickie): Fix typos in docstrings.
11833
11834 * emacs-lisp/eieio.el (generic-p, eieiomt-next, eieio-generic-form)
11835 (eieio-default-superclass): Reflow docstrings.
11836 (this, class-option-assoc, defclass, eieio-class-un-autoload)
11837 (eieio-unbind-method-implementations, defmethod)
11838 (eieio-validate-slot-value, eieio-validate-class-slot-value)
11839 (oref-default, eieio-oref-default, eieio-oset, eieio-oset-default)
11840 (with-slots, eieio-add-new-slot, object-assoc, object-remove-from-list)
11841 (eieio-slot-originating-class-p, eieio-slot-name-index)
11842 (eieio-pre-method-execution-hooks, eieio-initarg-to-attribute)
11843 (constructor, initialize-instance, no-next-method, object-print)
11844 (object-write, eieio-override-prin1, eieio-edebug-prin1-to-string):
11845 Fix typos in docstrings.
11846 (eieio-defclass, eieio-perform-slot-validation-for-default, defgeneric)
11847 (child-of-class-p, object-slots, slot-boundp, slot-exists-p)
11848 (next-method-p): Doc fixes.
11849 (eieio-add-new-slot, call-next-method, eieiomt-add, change-class):
11850 Fix typos in error messages.
11851 (eieio-defmethod): Fix typo in description of generic method.
11852
11853 * emacs-lisp/eieio-base.el (eieio-instance-inheritor, slot-unbound)
11854 (eieio-persistent-save-interactive, slot-missing):
11855 Fix typos in docstrings.
11856 (eieio-instance-inheritor-slot-boundp): Doc fix.
11857
11858 * emacs-lisp/eieio-comp.el (byte-compile-file-form-defmethod)
11859 (byte-compile-defmethod-param-convert): Fix typos in docstrings.
11860
11861 * emacs-lisp/eieio-custom.el (eieio-done-customizing)
11862 (eieio-custom-object-apply-reset):
11863 Fix typos in docstrings and error messages.
11864
11865 * emacs-lisp/eieio-datadebug.el (data-debug-show):
11866 Fix typo in docstring.
11867
11868 * emacs-lisp/eieio-opt.el (top): Fix typo in error message.
11869 (eieio-browse-tree): Doc fix.
11870 (eieio-all-generic-functions, eieio-class-speedbar): Reflow docstrings.
11871 (eieio-help-mode-augmentation-maybee, eieio-class-speedbar-make-map):
11872 Fix typos in docstrings.
11873
11874 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-file-button): Doc fix.
11875 (eieio-speedbar-key-map, eieio-speedbar-create-engine)
11876 (eieio-speedbar-buttons, eieio-speedbar, eieio-speedbar-object-children)
11877 (eieio-speedbar-make-tag-line, eieio-speedbar-object-expand):
11878 Reflow docstrings.
11879
11880 2009-10-05 Dan Nicolaescu <dann@ics.uci.edu>
11881
11882 * vc-hg.el (log-view-vc-backend): Declare for compiler.
11883 (vc-hg-outgoing-mode, vc-hg-incoming-mode):
11884 Set log-view-vc-backend so that diff can work.
11885
11886 * log-view.el (log-view-diff): Use vc-diff-internal instead of
11887 vc-version-diff.
11888 (vc-diff-internal): Autoload this instead of vc-version-diff.
11889
11890 2009-10-05 Eli Zaretskii <eliz@gnu.org>
11891
11892 * simple.el (eval-expression): Doc fix.
11893
11894 * progmodes/cwarn.el (cwarn-mode): Doc fix.
11895
11896 2009-10-05 Michael Albinus <michael.albinus@gmx.de>
11897
11898 * files.el (directory-files-no-dot-files-regexp): New defconst.
11899 (delete-directory): Use it.
11900 (copy-directory): Use it. Remove parameter PRESERVE-UID-GID.
11901
11902 * net/tramp.el (tramp-verbose): Fix docstring.
11903 (tramp-methods): Add recursive option to `tramp-copy-args'.
11904 Add `tramp-copy-recursive'. Valid for "rcp", "scp", "scp1", "scp2",
11905 "scp1_old", "scp2_old", "rsync", "rsyncc".
11906 (tramp-default-method): Check also for `auth-source-user-or-password'.
11907 (tramp-file-name-handler-alist, tramp-file-name-for-operation):
11908 Add handler for `copy-directory'.
11909 (tramp-handle-copy-directory): New defun.
11910 (tramp-do-copy-or-rename-file-out-of-band): Handle directory case.
11911 (tramp-handle-start-file-process): Raise an error when PROGRAM is nil.
11912 Optimize sent command.
11913
11914 2009-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
11915
11916 * calendar/diary-lib.el (diary-show-all-entries): Re-fit the calendar
11917 window if necessary.
11918
11919 * calendar/calendar.el (calendar-basic-setup): Don't call
11920 switch-to-buffer in a dedicated window.
11921
11922 2009-10-05 Karl Fogel <kfogel@red-bean.com>
11923
11924 * bookmark.el (bookmark-handle-bookmark): If bookmark has no file,
11925 don't do anything related to relocating, just return nil.
11926 (bookmark-error-no-filename): New error.
11927 (bookmark-default-handler): Signal `bookmark-error-no-filename' if
11928 bookmark has no file. Don't even attempt to handle things that
11929 are not files; the whole point of custom handlers is to keep that
11930 knowledge elsewhere anyway. Tighten some comments.
11931 (bookmark-file-or-variation-thereof): Remove now-unused function.
11932 (bookmark-location): Doc string fix.
11933 (Bug#4250)
11934
11935 2009-10-04 Karl Fogel <kfogel@red-bean.com>
11936
11937 * bookmark.el (bookmark-handle-bookmark): When relocating a bookmark,
11938 don't use a file dialog, because they usually don't know how to read
11939 a directory target from the user. (Bug#4230)
11940 Also, make sure the prompt can display directories as well as files.
11941
11942 2009-10-04 Karl Fogel <kfogel@red-bean.com>
11943
11944 * bookmark.el (bookmark-set, bookmark-buffer-name):
11945 Improve doc strings. (Bug#1193)
11946
11947 2009-10-04 Karl Fogel <kfogel@red-bean.com>
11948
11949 * bookmark.el (bookmark-get-bookmark, bookmark-get-bookmark-record)
11950 (bookmark-set-name, bookmark-prop-get, bookmark-prop-set)
11951 (bookmark-get-annotation, bookmark-set-annotation)
11952 (bookmark-get-filename, bookmark-set-filename, bookmark-get-position)
11953 (bookmark-set-position, bookmark-get-front-context-string)
11954 (bookmark-set-front-context-string, bookmark-get-rear-context-string)
11955 (bookmark-set-rear-context-string, bookmark-location, bookmark-jump)
11956 (bookmark-jump-other-window, bookmark-handle-bookmark)
11957 (bookmark-relocate, bookmark-insert-location, bookmark-rename)
11958 (bookmark-insert, bookmark-delete, bookmark-time-to-save-p)
11959 (bookmark-edit-annotation-mode, bookmark-edit-annotation):
11960 Improve doc strings to say whether bookmark can be a string or
11961 a record or both, and make other consistency and clarity fixes.
11962 (bookmark-get-handler, bookmark--jump-via, bookmark-write-file)
11963 (bookmark-default-annotation-text, bookmark-yank-word)
11964 (bookmark-maybe-load-default-file, bookmark-maybe-sort-alist)
11965 (bookmark-import-new-list, bookmark-maybe-rename)
11966 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
11967 (bookmark-bmenu-bookmark): Give these doc strings.
11968 (bookmark-bmenu-check-position): Give this a doc string, but also
11969 add a FIXME comment about how the function may be pointless.
11970 (bookmark-default-handler): Rework doc string and change a
11971 parameter name, to clarify that this takes a bookmark record
11972 not a bookmark name.
11973 (bookmark-set): Change a parameter name to indicate its meaning,
11974 and improve the doc string a bit.
11975 (Bug#4188)
11976
11977 2009-10-04 Karl Fogel <kfogel@red-bean.com>
11978
11979 * bookmark.el (bookmark-alist): Document the new `handler' element
11980 in the param alist.
11981 (bookmark-make-record-function): Adjust documentation for above.
11982 (Bug#4193)
11983
11984 2009-10-04 Karl Fogel <kfogel@red-bean.com>
11985
11986 * info.el (Info-bookmark-make-record): Document this function.
11987 (Info-bookmark-jump): Document with a doc string, not just a comment.
11988 (Bug#4203)
11989
11990 2009-10-04 Michael Albinus <michael.albinus@gmx.de>
11991
11992 * files.el (copy-directory): New defun.
11993
11994 * dired-aux.el (dired-copy-file-recursive): Use it.
11995
11996 2009-10-04 Juanma Barranquero <lekktu@gmail.com>
11997
11998 * files-x.el (modify-dir-local-variable)
11999 (copy-dir-locals-to-file-locals-prop-line): Fix typos in
12000 docstrings.
12001
12002 * recentf.el (recentf-unload-function): New function.
12003
12004 2009-10-04 Glenn Morris <rgm@gnu.org>
12005
12006 * window.el (window-full-height-p): Add doc string.
12007
12008 2009-10-04 Martin Rudalics <rudalics@gmx.at>
12009
12010 * window.el (window-full-height-p): New function. (Bug#4543)
12011
12012 2009-10-03 Dan Nicolaescu <dann@ics.uci.edu>
12013
12014 * vc.el: Remove commented out code.
12015 (vc-derived-from-dir-mode): Remove, unused.
12016 (vc-version-diff, vc-diff): Consistently pass t to vc-deduce-fileset.
12017
12018 2009-10-03 Michael Albinus <michael.albinus@gmx.de>
12019
12020 * net/tramp-ftp.el (tramp-ftp-file-name-handler):
12021 Disable `file-name-handler-alist' when loading 'ange-ftp. Otherwise,
12022 there could be recursive loading when `default-directory' is a
12023 remote file name. (Bug#4614)
12024
12025 2009-10-03 Glenn Morris <rgm@gnu.org>
12026
12027 * calendar/calendar.el (calendar-basic-setup): Handle the case where
12028 the frame is wide.
12029 (calendar-generate-window): Test for shrinkability rather than width.
12030
12031 * mail/rmail.el (rmail-generate-viewer-buffer): Be more careful about
12032 reusing existing buffers, in case we happen to visit two files with the
12033 same basename. (Bug#4593)
12034
12035 2009-10-02 Eli Zaretskii <eliz@gnu.org>
12036
12037 * makefile.w32-in (update-subdirs-CMD): Add cedet to $(WINS_SUBDIR).
12038 (WINS_CEDET_SUBDIRS): List of subdirectories of cedet.
12039 (bootstrap-clean-CMD, bootstrap-clean-SH): Remove *.elc files in
12040 subdirs of cedet as well.
12041 (AUTOGENEL): Add loaddefs.el files in cedet subdirectories.
12042
12043 2009-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
12044
12045 * emacs-lisp/eldoc.el (eldoc-get-fnsym-args-string):
12046 Obey advertised-signature-table.
12047
12048 * help-fns.el (help-function-arglist): Don't check
12049 advertised-signature-table.
12050 (describe-function-1): Do it here instead so it also applies to subrs.
12051
12052 2009-10-02 Michael Albinus <michael.albinus@gmx.de>
12053
12054 * simple.el (start-file-process): Say in the doc-string, that file
12055 handlers might not support pty association, if PROGRAM is nil.
12056
12057 * net/ange-ftp.el (ange-ftp-generate-passwd-key): Check, whether
12058 HOST and USER are strings. They are nil, when there are
12059 incomplete entries in ~/.netrc, for example.
12060 (ange-ftp-delete-directory): Implement RECURSIVE case. Change to
12061 root directory ("device busy" error otherwise).
12062
12063 * net/tramp-smb.el (tramp-smb-handle-make-directory-internal):
12064 Flush file properties of created directory.
12065
12066 2009-10-02 Eli Zaretskii <eliz@gnu.org>
12067
12068 * makefile.w32-in (WINS_BASIC): Remove cedet.
12069 (WINS_CEDET): Add cedet.
12070 (update-subdirs-SH): Use $(WINS_SUBDIR), not $(WINS).
12071
12072 2009-10-02 Kevin Ryde <user42@zip.com.au>
12073
12074 * net/browse-url.el (browse-url): Pass any symbol in
12075 browse-url-browser-function to `apply', since if you've mistakenly put
12076 an unbound symbol then the error is clearer. (Bug#4531)
12077
12078 2009-10-02 Juanma Barranquero <lekktu@gmail.com>
12079
12080 * allout.el (allout-init, allout-back-to-current-heading)
12081 (allout-beginning-of-current-entry, allout-ascend-to-depth)
12082 (allout-ascend, allout-up-current-level, allout-end-of-level)
12083 (allout-previous-visible-heading, allout-forward-current-level)
12084 (allout-backward-current-level, allout-show-children):
12085 * apropos.el (apropos-describe-plist):
12086 * bookmark.el (bookmark-maybe-historicize-string, bookmark-bmenu-list):
12087 * comint.el (comint-strip-ctrl-m, comint-goto-process-mark):
12088 * completion.el (add-completion, add-permanent-completion):
12089 * descr-text.el (describe-text-category, describe-char):
12090 * desktop.el (desktop-lazy-abort):
12091 * dired-x.el (dired-omit-expunge, dired-x-bind-find-file):
12092 * dired.el (dired-build-subdir-alist):
12093 * ediff.el (ediff-version):
12094 * elide-head.el (elide-head, elide-head-show):
12095 * emerge.el (emerge-version):
12096 * env.el (getenv):
12097 * face-remap.el (variable-pitch-mode):
12098 * faces.el (describe-face):
12099 * ffap.el (ffap-next-url, find-file-at-point, ffap-at-mouse)
12100 (dired-at-point):
12101 * files.el (find-file-existing, auto-save-mode):
12102 * font-lock.el (font-lock-fontify-buffer):
12103 * help-fns.el (describe-function, describe-variable)
12104 (describe-syntax, describe-categories):
12105 * help.el (view-lossage, describe-bindings, describe-key)
12106 (describe-mode):
12107 * hexl.el (hexl-current-address):
12108 * hi-lock.el (hi-lock-mode, hi-lock-find-patterns):
12109 * info.el (Info-goto-emacs-key-command-node):
12110 * log-edit.el (log-edit-insert-cvs-template)
12111 (log-edit-insert-cvs-rcstemplate):
12112 * menu-bar.el (menu-bar-mode):
12113 * mouse.el (mouse-appearance-menu):
12114 * newcomment.el (comment-indent-new-line):
12115 * pgg.el (pgg-save-coding-system, pgg-encrypt-region)
12116 (pgg-encrypt-symmetric-region, pgg-encrypt-symmetric)
12117 (pgg-encrypt, pgg-decrypt-region, pgg-decrypt)
12118 (pgg-sign-region, pgg-sign, pgg-verify-region, pgg-verify):
12119 * recentf.el (recentf-mode):
12120 * savehist.el (savehist-mode, savehist-save):
12121 * shadowfile.el (shadow-copy-files):
12122 * simple.el (kill-ring-save, next-line, previous-line)
12123 (normal-erase-is-backspace-mode):
12124 * strokes.el (strokes-update-window-configuration)
12125 (strokes-load-user-strokes, strokes-prompt-user-save-strokes)
12126 (strokes-xpm-for-stroke):
12127 * time.el (emacs-uptime, emacs-init-time):
12128 * tutorial.el (tutorial--describe-nonstandard-key)
12129 (tutorial--detailed-help):
12130 * type-break.el (type-break-mode)
12131 (type-break-mode-line-message-mode, type-break-query-mode)
12132 (type-break-guesstimate-keystroke-threshold):
12133 * vc.el (vc-version-diff, vc-diff, vc-root-diff):
12134 * version.el (emacs-version):
12135 * vt-control.el (vt-keypad-on, vt-keypad-off, vt-numlock):
12136 * winner.el (winner-mode):
12137 * calendar/timeclock.el (timeclock-in, timeclock-out)
12138 (timeclock-status-string, timeclock-change)
12139 (timeclock-workday-remaining-string)
12140 (timeclock-workday-elapsed-string)
12141 (timeclock-when-to-leave-string):
12142 * calendar/todo-mode.el (todo-add-category):
12143 * emacs-lisp/advice.el (ad-enable-regexp, ad-disable-regexp):
12144 * emacs-lisp/autoload.el (update-file-autoloads):
12145 * emacs-lisp/checkdoc.el (checkdoc-current-buffer)
12146 (checkdoc-start, checkdoc-continue, checkdoc-rogue-spaces)
12147 (checkdoc-message-text, checkdoc-defun):
12148 * emacs-lisp/debug.el (debugger-list-functions):
12149 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
12150 * emacs-lisp/eieio-opt.el (eieio-describe-class)
12151 (eieio-describe-generic):
12152 * emacs-lisp/lisp-mnt.el (lm-synopsis):
12153 * emacs-lisp/shadow.el (list-load-path-shadows):
12154 * emulation/cua-base.el (cua-mode):
12155 * emulation/edt.el (edt-set-scroll-margins):
12156 * emulation/tpu-edt.el (tpu-toggle-newline-and-indent)
12157 (tpu-toggle-regexp, tpu-toggle-search-direction)
12158 (tpu-toggle-rectangle, tpu-toggle-control-keys):
12159 * emulation/tpu-extras.el (tpu-set-scroll-margins):
12160 * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
12161 (viper-set-parsing-style-toggling-macro)
12162 (viper-set-emacs-state-searchstyle-macros):
12163 * emulation/viper.el (viper-set-hooks):
12164 * eshell/esh-mode.el (eshell-truncate-buffer):
12165 * international/mule-cmds.el (prefer-coding-system)
12166 (describe-input-method, describe-language-environment):
12167 * international/mule-diag.el (list-character-sets)
12168 (describe-character-set, describe-coding-system)
12169 (describe-fontset, list-fontsets, list-input-methods):
12170 * mail/sendmail.el (mail-signature):
12171 * net/ange-ftp.el (ange-ftp-copy-file):
12172 * net/browse-url.el (browse-url):
12173 * net/eudc.el (eudc-set-server, eudc-get-attribute-list):
12174 * net/quickurl.el (quickurl-add-url):
12175 * net/rcirc.el (names, topic):
12176 * net/xesam.el (xesam-mode):
12177 * play/5x5.el (5x5-new-game):
12178 * play/yow.el (apropos-zippy):
12179 * progmodes/ada-mode.el (ada-mode-version):
12180 * progmodes/f90.el (f90-beginning-of-subprogram, f90-end-of-subprogram)
12181 (f90-end-of-block)
12182 (f90-beginning-of-block):
12183 * progmodes/fortran.el (fortran-end-of-block)
12184 (fortran-beginning-of-block):
12185 * progmodes/js.el (js-syntactic-context, js-gc, js-eval):
12186 * progmodes/python.el (python-describe-symbol, python-shell):
12187 * term/ns-win.el (ns-print-buffer):
12188 * textmodes/bibtex.el (bibtex-end-of-entry, bibtex-url):
12189 * textmodes/flyspell.el (flyspell-mode-on):
12190 * textmodes/page-ext.el (set-page-delimiter, pages-directory)
12191 (pages-directory-for-addresses):
12192 * textmodes/table.el (table-recognize-cell)
12193 (table-query-dimension, table-generate-source)
12194 (table-insert-sequence, table--warn-incompatibility):
12195 * textmodes/tex-mode.el (tex-validate-buffer):
12196 * textmodes/texinfmt.el (texinfmt-version)
12197 (texinfo-format-buffer):
12198 Use `called-interactively-p' instead of `interactive-p'.
12199
12200 2009-10-02 Juanma Barranquero <lekktu@gmail.com>
12201
12202 * image-mode.el (image-toggle-display):
12203 * emacs-lisp/elp.el (elp-instrument-function):
12204 * emacs-lisp/advice.el (ad-make-advised-definition):
12205 * emacs-lisp/easy-mmode.el (define-minor-mode):
12206 * net/browse-url.el (browse-url-maybe-new-window):
12207 * progmodes/sh-script.el (sh-learn-buffer-indent):
12208 Pass new argument 'any to `called-interactively-p'.
12209
12210 2009-10-01 Juanma Barranquero <lekktu@gmail.com>
12211
12212 * international/uni-bidi.el:
12213 * international/uni-category.el:
12214 * international/uni-combining.el:
12215 * international/uni-comment.el:
12216 * international/uni-decimal.el:
12217 * international/uni-decomposition.el:
12218 * international/uni-digit.el:
12219 * international/uni-lowercase.el:
12220 * international/uni-mirrored.el:
12221 * international/uni-name.el:
12222 * international/uni-numeric.el:
12223 * international/uni-old-name.el:
12224 * international/uni-titlecase.el:
12225 * international/uni-uppercase.el:
12226 Regenerate from Unicode 5.2.0 data.
12227
12228 2009-10-01 Glenn Morris <rgm@gnu.org>
12229
12230 * Makefile.in (ELCFILES): Regenerate.
12231
12232 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
12233
12234 * subr.el (interactive-p): Mark obsolete.
12235 (called-interactively-p): Make the optional-ness of `kind' obsolete.
12236 * emacs-lisp/bytecomp.el (byte-compile-fdefinition): Make it obey
12237 advertised-signature-table for subroutines as well.
12238
12239 * emacs-lisp/byte-run.el (advertised-signature-table): New var.
12240 (set-advertised-calling-convention): New function.
12241 (make-obsolete, define-obsolete-function-alias)
12242 (make-obsolete-variable, define-obsolete-variable-alias):
12243 Make the optional-ness of `when' obsolete.
12244 (define-obsolete-face-alias): Make `when' non-optional.
12245 * help-fns.el (help-function-arglist):
12246 * emacs-lisp/bytecomp.el (byte-compile-fdefinition):
12247 Use advertised-signature-table.
12248
12249 2009-10-01 Michael Albinus <michael.albinus@gmx.de>
12250
12251 * files.el (delete-directory): New defun. The original function
12252 in fileio.c has been renamed to `delete-directory-internal'.
12253
12254 * dired.el (dired-delete-file): Call `delete-directory' with
12255 RECURSIVE parameter.
12256
12257 * net/ange-ftp.el (ange-ftp-delete-directory): Add optional
12258 parameter RECURSIVE. Implementation is missing.
12259
12260 * net/tramp.el (tramp-handle-make-directory): Flush upper
12261 directory's file properties.
12262 (tramp-handle-delete-directory): Handle optional parameter RECURSIVE.
12263 (tramp-handle-dired-recursive-delete-directory): Flush directory
12264 properties after the remove command only.
12265
12266 * net/tramp-fish.el (tramp-fish-handle-delete-directory):
12267 Handle optional parameter RECURSIVE.
12268
12269 * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory):
12270 Handle optional parameter RECURSIVE.
12271
12272 * net/tramp-smb.el (tramp-smb-errors): Add error message for
12273 connection timeout.
12274 (tramp-smb-handle-delete-directory): Handle optional parameter
12275 RECURSIVE.
12276
12277 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
12278
12279 * emacs-lisp/bytecomp.el (byte-compile-defmacro-declaration): New fun.
12280 (byte-compile-file-form-defmumble, byte-compile-defmacro): Use it.
12281 (byte-compile-defmacro): Use backquotes.
12282
12283 * files.el (cd-absolute): Don't abbreviate-file-name (bug#4599).
12284
12285 * vc-dispatcher.el (vc-resynch-window): Don't revert a buffer which
12286 has no associated file.
12287 (vc-resynch-buffer): Use vc-dir-buffers.
12288
12289 2009-10-01 Glenn Morris <rgm@gnu.org>
12290
12291 * emacs-lisp/chart.el (chart-zap-chars, chart-bar-quickie)
12292 (chart-file-count):
12293 * emacs-lisp/eieio-comp.el (byte-compile-defmethod-param-convert):
12294 * emacs-lisp/eieio-datadebug.el (data-debug-insert-object-button):
12295 * emacs-lisp/eieio-opt.el (eieio-describe-class):
12296 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-create):
12297 * emacs-lisp/eieio.el (defclass, eieio-defclass-autoload)
12298 (eieio-copy-parents-into-subclass, make-instance, class-children)
12299 (eieio-generic-form):
12300
12301 * vc-cvs.el (vc-cvs-parse-entry): Be more careful with the
12302 match-data. (Bug#4555).
12303
12304 * emacs-lisp/check-declare.el (check-declare-scan): Read the declaration
12305 rather than parsing it as a regexp. This relaxes the layout
12306 requirements and makes errors easier to detect.
12307 (check-declare-verify): Check file is regular.
12308 (check-declare-directory): Doc fix.
12309 * subr.el (declare-function): Doc fix.
12310
12311 * ibuffer.el (ibuffer-format-qualifier):
12312 * isearch.el (hi-lock-regexp-okay):
12313 * calc/calc.el (math-zerop):
12314 * mail/uce.el (rmail-msgbeg, rmail-msgend):
12315 * term/w32-win.el (setup-default-fontset, set-fontset-font):
12316 Remove unused declarations.
12317
12318 2009-09-30 Glenn Morris <rgm@gnu.org>
12319
12320 * emacs-lisp/authors.el (authors-ignored-files): Add "js2-mode.el".
12321
12322 * emacs-lisp/elint.el (elint-init-form): Report declarations where the
12323 filename is not a string.
12324
12325 2009-09-29 Chong Yidong <cyd@stupidchicken.com>
12326
12327 * files.el (safe-local-eval-forms): Fix typo.
12328
12329 2009-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
12330
12331 * vc-hooks.el (vc-dir-buffers): New var.
12332 (vc-state-refresh): New function.
12333 (vc-state): Use it.
12334 (vc-after-save): Always ask the backend to recompute the new state.
12335 Always call vc-dir if necessary, using vc-dir-buffers.
12336 * vc-dir.el (vc-dir-prepare-status-buffer, vc-dir-resynch-file):
12337 Use vc-dir-buffers.
12338 (vc-dir-mode): Use vc-dir-buffers rather than after-save-hook.
12339 (vc-dir-prepare-status-buffer, vc-dir-update)
12340 (vc-dir-resync-directory-files, vc-dir-resynch-file, vc-dir-mode):
12341 Don't call expand-file-name on default-directory.
12342
12343 2009-09-29 Juanma Barranquero <lekktu@gmail.com>
12344
12345 * speedbar.el (speedbar-item-delete):
12346 * calc/calc-prog.el (calc-kbd-if):
12347 * language/hanja-util.el (hanja-init-load): Fix typos in messages.
12348
12349 * epa.el (epa-key-list-mode-map):
12350 * hi-lock.el (hi-lock-menu): Fix typos in menus.
12351
12352 * progmodes/hideshow.el (hs-allow-nesting): Reflow docstring.
12353 (hs-show-hook): Fix typo in docstring.
12354
12355 2009-09-29 Glenn Morris <rgm@gnu.org>
12356
12357 * emacs-lisp/check-declare.el (check-declare-locate): Remove pointless
12358 file-name-nondirectory call preventing location of cedet files.
12359 (check-declare-verify): Use literal search rather than re-search.
12360 Add basic defmethod and defclass, and define-overloadable-function.
12361
12362 * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
12363 Use tramp-compat-file-attributes rather than nonexistent
12364 tramp-compat-handle-file-attributes.
12365
12366 * Makefile.in (lisptagsfiles4): New.
12367 (AUTOGENEL): Add cedet loaddefs files.
12368 (TAGS, TAGS-LISP): Use $lisptagsfiles4.
12369 (update-elclist, compile-always, backup-compiled-files)
12370 (bootstrap-clean): Add yet another directory level.
12371 (update-elclist): Use LC_COLLATE rather than COLLATE.
12372 (ELCFILES): Update, via `make update-elclist'.
12373
12374 2009-09-29 Juanma Barranquero <lekktu@gmail.com>
12375
12376 * makefile.w32-in (WINS_CEDET, WINS_BASIC, WINS_SUBDIR): New macros.
12377 (WINS_ALMOST): Set from WINS_BASIC and WINS_CEDET.
12378 (update-subdirs-CMD): Use WINS_SUBDIR, not WINS_ALMOST.
12379
12380 2009-09-28 Andreas Schwab <schwab@linux-m68k.org>
12381
12382 * Makefile.in (lisptagsfiles3): Define.
12383 (TAGS, TAGS-LISP): Use it.
12384 (update-elclist): Add third directory level to look for elc files.
12385 (compile-always): Likewise.
12386 (backup-compiled-files): Likewise.
12387 (bootstrap-clean): Likewise.
12388 (ELCFILES): Update.
12389
12390 2009-09-28 Chong Yidong <cyd@stupidchicken.com>
12391
12392 * Makefile.in (ELCFILES): Add CEDET files.
12393
12394 2009-09-28 Michael Albinus <michael.albinus@gmx.de>
12395
12396 * Makefile.in (ELCFILES): Add net/tramp-imap.elc.
12397
12398 * net/tramp.el (top): Require tramp-imap.
12399
12400 * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
12401 Use `tramp-compat-handle-file-attributes'.
12402
12403 2009-09-28 Teodor Zlatanov <tzz@lifelogs.com>
12404
12405 * net/tramp-imap.el: New package.
12406
12407 2009-09-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
12408
12409 * whitespace.el (whitespace-trailing-regexp)
12410 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
12411 Fix doc string.
12412
12413 2009-09-27 Chong Yidong <cyd@stupidchicken.com>
12414
12415 * menu-bar.el: Remove menu-bar-ediff-misc-menu from the Tools
12416 menu.
12417
12418 * ediff-hook.el: Move menu-bar-ediff-misc-menu into
12419 menu-bar-ediff-menu.
12420
12421 * emacs-lisp/lisp-mode.el: Add doc-string-elt property to
12422 define-overloadable-function.
12423
12424 * progmodes/autoconf.el: Provide autoconf as well, so that this
12425 file can be `require'd.
12426
12427 * emacs-lisp/cl-macs.el (deftype): Add to cl-loaddefs.
12428
12429 * emacs-lisp/autoload.el (generated-autoload-feature)
12430 (generated-autoload-load-name): New vars.
12431 (autoload-rubric, autoload-generate-file-autoloads): Use them.
12432 (make-autoload): Recognize define-overloadable-function and
12433 defclass forms (for EIEIO).
12434
12435 * Makefile.in (update-subdirs): Exclude cedet directory.
12436
12437 2009-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
12438
12439 * term/ns-win.el: Don't set the region face background. (Bug#4381)
12440
12441 * faces.el: Default light-background background for region face to
12442 ns_selection_color under NS.
12443
12444 2009-09-27 Teodor Zlatanov <tzz@lifelogs.com>
12445
12446 * net/imap-hash.el: New library, see NEWS.
12447
12448 * Makefile.in (ELCFILES): Add imap-hash.el.
12449
12450 2009-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
12451
12452 * help.el (help-for-help-internal): Don't purecopy the text (bug#4560).
12453 * isearch.el (isearch-help-for-help-internal): Purecopy the second arg.
12454 * help-macro.el (make-help-screen): Avoid using an ambiguous function
12455 definition where the docstring could be taken for the return value.
12456
12457 2009-09-26 Glenn Morris <rgm@gnu.org>
12458
12459 * mail/rmailmm.el (rmail-mime-show-images, rmail-mime-bulk-handler):
12460 Add option to only show images below a certain size.
12461 (rmail-mime-multipart-handler): Remove unnecessary save-match-data and
12462 save-excursion calls.
12463
12464 2009-09-26 Eli Zaretskii <eliz@gnu.org>
12465
12466 * makefile.w32-in (WINS_ALMOST): Add cedet (with its
12467 subdirectories) and eieio.
12468
12469 2009-09-26 Alan Mackenzie <acm@muc.de>
12470
12471 * progmodes/cc-engine.el (c-beginning-of-statement-1): Correct
12472 buggy bracketing. (Bug#4289)
12473
12474 * progmodes/cc-langs.el (c-nonlabel-token-key): Allow quoted
12475 character constants (as case labels). (Bug#4289)
12476
12477 2009-09-25 Juri Linkov <juri@jurta.org>
12478
12479 * files.el (safe-local-eval-forms): Allow time-stamp in
12480 before-save-hook (Bug#4554).
12481
12482 2009-09-25 Drew Adams <drew.adams@oracle.com>
12483
12484 * menu-bar.el (list-buffers-directory): Doc fix.
12485
12486 2009-09-25 Stefan Monnier <monnier@iro.umontreal.ca>
12487
12488 * log-edit.el (log-edit-changelog-entries): Avoid inf-loops.
12489 Try and avoid copying twice the same paragraph.
12490 (log-edit-changelog-paragraph, log-edit-changelog-subparagraph):
12491 Remove save-excursion.
12492 (log-edit-changelog-entry): Do it here instead.
12493
12494 2009-09-25 Juanma Barranquero <lekktu@gmail.com>
12495
12496 * bs.el (bs--get-file-name): Use `list-buffers-directory'
12497 when available, instead of hardcoding mode names. Doc fix.
12498
12499 * menu-bar.el (list-buffers-directory): Add docstring.
12500 Make automatically buffer-local.
12501
12502 * dired.el (dired-mode):
12503 * files.el (cd-absolute):
12504 * pcvs.el (cvs-temp-buffer):
12505 * pcvs-util.el (cvs-get-buffer-create):
12506 * shell.el (shell-mode):
12507 * vc-dir.el (vc-dir-mode):
12508 Don't make `list-buffers-directory' buffer local.
12509
12510 2009-09-25 Devon Sean McCullough <emacs-hacker@Jovi.Net>
12511
12512 * comint.el (comint-exec, comint-run, make-comint):
12513 Doc fixes (Bug#4542).
12514
12515 2009-09-25 Glenn Morris <rgm@gnu.org>
12516
12517 * mail/rmailmm.el (rmail-mime): New custom group.
12518 Move all defcustoms in this file into this group.
12519 (rmail-mime-media-type-handlers-alist): Revert previous change.
12520 (rmail-mime-show-images): New option.
12521 (rmail-mime-total-number-of-bulk-attachments): Remove variable and all
12522 references to it, since it wasn't actually used for anything.
12523 (rmail-mime-insert-image): New function.
12524 (rmail-mime-image): Use rmail-mime-insert-image.
12525 (rmail-mime-bulk-handler): Remove optional `image' argument, instead
12526 obey the value of `rmail-mime-show-images' option. Print the size of
12527 attachments.
12528
12529 2009-09-25 David Engster <deng@randomsample.de>
12530
12531 * progmodes/hideshow.el (hs-show-block): Run `hs-show-hook'. (Bug#4548)
12532
12533 2009-09-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
12534
12535 * whitespace.el: Does not highlight trailing spaces While point is
12536 at end of line. Does not highligt spaces at beginning of buffer
12537 while point is at beginning of buffer. Does not highlight spaces
12538 at end of buffer while point is at end of buffer. (Bug#4177)
12539 New version 12.0.
12540 (whitespace-display-mappings): Adjust initialization.
12541 (whitespace-point, whitespace-font-lock-refontify): New vars.
12542 (whitespace-color-on, whitespace-color-off): Adjust code.
12543 (whitespace-trailing-regexp, whitespace-empty-at-bob-regexp)
12544 (whitespace-empty-at-eob-regexp, whitespace-space-regexp)
12545 (whitespace-tab-regexp, whitespace-post-command-hook): New funs.
12546
12547 2009-09-24 Chong Yidong <cyd@stupidchicken.com>
12548
12549 * nxml/nxml-mode.el: Alias xml-mode to nxml-mode.
12550
12551 * textmodes/sgml-mode.el: Remove xml-mode alias.
12552
12553 * files.el (auto-mode-alist, conf-mode-maybe)
12554 (magic-fallback-mode-alist): Revert 2009-09-18 and 2009-09-21 changes.
12555
12556 2009-09-24 Alan Mackenzie <acm@muc.de>
12557
12558 * progmodes/cc-cmds.el (c-scan-conditionals): A new function like
12559 c-forward-conditionals, but it doesn't move point and doesn't set
12560 the mark.
12561 (c-up-conditional, c-up-conditional-with-else, c-down-conditional)
12562 (c-down-conditional-with-else, c-backward-conditional)
12563 (c-forward-conditional): Refactor to use c-scan-conditionals.
12564
12565 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
12566
12567 * help-fns.el (help-downcase-arguments): New option, defaulting to nil.
12568 (help-default-arg-highlight): Remove.
12569 (help-highlight-arg): New function.
12570 (help-do-arg-highlight): Use it.
12571 Suggested by Drew Adams <drew.adams@oracle.com>. (Bug#4510, bug#4520)
12572
12573 2009-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
12574
12575 * term.el (term-set-scroll-region, term-handle-ansi-escape):
12576 Undo last change, which didn't fix the problem and introduced others.
12577
12578 2009-09-24 Nick Roberts <nickrob@snap.net.nz>
12579
12580 * progmodes/gdb-mi.el: Don't require speedbar.
12581 (gdb-jsonify-buffer): Handle case where "=" is part of value string.
12582
12583 2009-09-24 Glenn Morris <rgm@gnu.org>
12584
12585 * calendar/diary-lib.el (diary-fancy-display): Always run the hook.
12586
12587 * term/ns-win.el (ns-reg-to-script): Define for compiler.
12588
12589 * mail/rmailmm.el (rmail-mime-multipart-handler): Accept the case where
12590 there is no newline after the final mime boundary. (Bug#4539)
12591 Move markers on insertion so that any buttons inserted don't end up in
12592 the next part of a multipart message.
12593 (rmail-mime-media-type-handlers-alist): Doc fix. Add image handler.
12594 (rmail-mime-bulk-handler): Optionally handle images.
12595 (rmail-mime-image): New button action.
12596 (rmail-mime-image-handler): New function.
12597 (rmail-mime-mode): New mode.
12598 (rmail-mime): Doc fix. Use rmail-mime-mode (for font-lock).
12599
12600 2009-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
12601
12602 * minibuffer.el (minibuffer-force-complete): Cycle the list, rather
12603 than just dropping elements from it (bug#4504).
12604
12605 * term.el (term-set-scroll-region): Don't move cursor any more.
12606 (term-handle-ansi-escape): Call term-goto here instead.
12607 Suggested by Ivan Kanis <apple@kanis.eu>.
12608
12609 * term.el: Require CL.
12610 (term-ansi-reset): New function.
12611 (term-mode, term-emulate-terminal, term-handle-colors-array): Use it.
12612 (term-handle-colors-array): Simplify.
12613
12614 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
12615
12616 * allout.el (allout-overlay-interior-modification-handler)
12617 (allout-obtain-passphrase):
12618 * epa-file.el (epa-file-write-region):
12619 * ps-print.el (ps-begin-job):
12620 * vc-hooks.el (vc-toggle-read-only):
12621 * vc-rcs.el (vc-rcs-rollback):
12622 * vc-sccs.el (vc-sccs-rollback):
12623 * vc.el (vc-deduce-fileset, vc-next-action, vc-register-with)
12624 (vc-version-diff, vc-revert, vc-rollback):
12625 * wdired.el (wdired-check-kill-buffer):
12626 * emacs-lisp/authors.el (authors):
12627 * net/socks.el (socks-open-connection):
12628 * net/zeroconf.el (zeroconf-service-add-hook):
12629 * obsolete/vc-mcvs.el (vc-mcvs-register):
12630 * progmodes/gdb-mi.el (def-gdb-thread-buffer-gud-command)
12631 (gdb-select-frame):
12632 * progmodes/grep.el (lgrep, rgrep):
12633 * progmodes/idlw-help.el (idlwave-help-check-locations)
12634 (idlwave-help-html-link, idlwave-help-assistant-open-link):
12635 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
12636 * textmodes/reftex-toc.el (reftex-toc-promote-prepare)
12637 (reftex-toc-rename-label): Fix typos in error messages.
12638
12639 * dired-aux.el (dired-do-shell-command): Reflow docstring.
12640 (dired-copy-how-to-fn): Doc fix.
12641 (dired-files-attributes, dired-read-shell-command):
12642 Fix typos in docstrings.
12643
12644 * dired-x.el (dired-enable-local-variables, dired-filename-at-point)
12645 (dired-x-find-file-other-window): Reflow docstrings.
12646 (dired-omit-marker-char, dired-read-shell-command)
12647 (dired-x-submit-report): Fix typos in docstrings.
12648
12649 * shell.el (shell-mode-hook):
12650 * view.el (View-scroll-line-forward):
12651 * progmodes/inf-lisp.el (inferior-lisp-mode-hook):
12652 Fix typos in docstrings.
12653
12654 * net/dig.el (dig-invoke): Fix typo in docstring.
12655 (query-dig): Reflow docstring.
12656
12657 * progmodes/idlwave.el (idlwave-create-user-catalog-file)
12658 (idlwave-quoted, idlwave-rinfo-max-source-lines): Doc fixes.
12659 (idlwave-abbrev-move, idlwave-auto-routine-info-updates)
12660 (idlwave-begin-block-reg, idlwave-begin-unit-reg)
12661 (idlwave-beginning-of-subprogram, idlwave-block-jump-out)
12662 (idlwave-block-match-regexp, idlwave-calculate-paren-indent)
12663 (idlwave-check-abbrev, idlwave-class-file-or-buffer)
12664 (idlwave-class-found-in, idlwave-complete, idlwave-complete-in-buffer)
12665 (idlwave-completion-map, idlwave-current-indent)
12666 (idlwave-custom-ampersand-surround, idlwave-customize)
12667 (idlwave-default-font-lock-items, idlwave-default-insert-timestamp)
12668 (idlwave-define-abbrev, idlwave-determine-class-special)
12669 (idlwave-do-action, idlwave-doc-header, idlwave-doc-modification)
12670 (idlwave-end-block-reg, idlwave-end-of-statement)
12671 (idlwave-end-of-statement0, idlwave-end-of-subprogram)
12672 (idlwave-end-unit-reg, idlwave-entry-find-keyword)
12673 (idlwave-explicit-class-listed, idlwave-file-header)
12674 (idlwave-fill-paragraph, idlwave-find-class-definition)
12675 (idlwave-fix-keywords, idlwave-hang-indent-regexp, idlwave-hard-tab)
12676 (idlwave-idlwave_routine_info-compiled, idlwave-in-comment)
12677 (idlwave-in-quote, idlwave-indent-action-table)
12678 (idlwave-indent-expand-table, idlwave-indent-line)
12679 (idlwave-indent-subprogram, idlwave-indent-to-open-paren)
12680 (idlwave-is-comment-line, idlwave-is-comment-or-empty-line)
12681 (idlwave-is-continuation-line, idlwave-is-pointer-dereference)
12682 (idlwave-kill-autoloaded-buffers, idlwave-lib-p, idlwave-look-at)
12683 (idlwave-make-tags, idlwave-mode, idlwave-mode-abbrev-table)
12684 (idlwave-mouse-active-rinfo, idlwave-newline, idlwave-no-change-comment)
12685 (idlwave-outlawed-buffers, idlwave-popup-select)
12686 (idlwave-previous-statement, idlwave-rescan-catalog-directories)
12687 (idlwave-routine-entry-compare, idlwave-routine-info.pro)
12688 (idlwave-scan-all-buffers-for-routine-info, idlwave-scan-class-info)
12689 (idlwave-shell-automatic-start, idlwave-shell-explicit-file-name)
12690 (idlwave-show-begin, idlwave-split-line, idlwave-split-link-target)
12691 (idlwave-statement-type, idlwave-struct-skip)
12692 (idlwave-substitute-link-target, idlwave-toggle-comment-region)
12693 (idlwave-update-current-buffer-info, idlwave-use-library-catalogs)
12694 (idlwave-what-module-find-class): Fix typos in docstrings.
12695 (idlwave-all-method-classes, idlwave-calc-hanging-indent)
12696 (idlwave-calculate-cont-indent, idlwave-expand-equal)
12697 (idlwave-find-module, idlwave-find-structure-definition)
12698 (idlwave-init-rinfo-when-idle-after, idlwave-insert-source-location)
12699 (idlwave-list-load-path-shadows, idlwave-next-statement)
12700 (idlwave-routine-entry-compare-twins, idlwave-routine-info)
12701 (idlwave-routines, idlwave-sintern-rinfo-list, idlwave-statement-match)
12702 (idlwave-template): Reflow docstrings.
12703
12704 * progmodes/idlw-shell.el (idlwave-shell-syntax-error): Doc fix.
12705 (idlwave-shell-batch-command, idlwave-shell-bp-alist)
12706 (idlwave-shell-bp-get, idlwave-shell-bp-overlays)
12707 (idlwave-shell-bp-query, idlwave-shell-break-here, idlwave-shell-buffer)
12708 (idlwave-shell-display-line, idlwave-shell-display-wframe)
12709 (idlwave-shell-electric-debug-mode, idlwave-shell-examine-select)
12710 (idlwave-shell-file-name-chars, idlwave-shell-filter-bp)
12711 (idlwave-shell-goto-frame, idlwave-shell-halt-messages-re)
12712 (idlwave-shell-highlighting-and-faces, idlwave-shell-idl-wframe)
12713 (idlwave-shell-mode-hook, idlwave-shell-mode-line-info)
12714 (idlwave-shell-mode-map, idlwave-shell-module-source-filter)
12715 (idlwave-shell-mouse-help, idlwave-shell-mouse-print)
12716 (idlwave-shell-pc-frame, idlwave-shell-pending-commands)
12717 (idlwave-shell-print, idlwave-shell-quit, idlwave-shell-redisplay)
12718 (idlwave-shell-scan-for-state, idlwave-shell-send-command)
12719 (idlwave-shell-sentinel-hook, idlwave-shell-separate-examine-output)
12720 (idlwave-shell-shell-command, idlwave-shell-sources-alist)
12721 (idlwave-shell-sources-bp, idlwave-shell-sources-filter)
12722 (idlwave-shell-step, idlwave-shell-use-breakpoint-glyph)
12723 (idlwave-toolbar-add-everywhere, idlwave-toolbar-toggle):
12724 Fix typos in docstrings.
12725 (idlwave-shell-bp, idlwave-shell-clear-current-bp)
12726 (idlwave-shell-hide-output, idlwave-shell-mode)
12727 (idlwave-shell-run-region, idlwave-shell-set-bp-in-module):
12728 Reflow docstrings.
12729
12730 * textmodes/bibtex.el (bibtex-sort-entry-class): Fix group name.
12731
12732 2009-09-24 Ivan Kanis <apple@kanis.eu>
12733
12734 * term.el (term-bold-attribute): New var.
12735 (term-handle-colors-array): Use it.
12736
12737 2009-09-23 Nick Roberts <nickrob@snap.net.nz>
12738
12739 * progmodes/gdb-mi.el (gdb-version): New variable.
12740 (gdb-non-stop-handler): Set gdb-version.
12741 (gdb-gud-context-command, gdb-current-context-command, gdb-stopped):
12742 Condition "--thread" option on gdb-version.
12743 (gdb-invalidate-threads): Remove unused argument.
12744
12745 2009-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
12746
12747 * textmodes/flyspell.el (sgml-mode-flyspell-verify): Pass limit args
12748 to looking-back to avoid ridiculous slow down in large files (bug#4511).
12749
12750 2009-09-23 Glenn Morris <rgm@gnu.org>
12751
12752 * mail/rmail.el (rmail-reply): Don't try to add a References header when
12753 replying to mail without References or Message-Id. (Bug#4525)
12754
12755 2009-09-23 Adrian Robert <Adrian.B.Robert@gmail.com>
12756
12757 * term/ns-win.el (ns-reg-to-script): New variable.
12758
12759 2009-09-23 Daiki Ueno <ueno@unixuser.org>
12760
12761 * epg.el (epg-wait-for-status): Preserve existing 'error results.
12762
12763 2009-09-22 Sam Steingold <sds@gnu.org>
12764
12765 * vc-hg.el (vc-hg-print-log): Fix shortlog arg passing.
12766 (vc-hg-outgoing, vc-hg-incoming): Bump okstatus in `vc-hg-command'
12767 to 1 because hg returns status 1 when nothing is found.
12768 Bind `vc-short-log' for the sake of `vc-hg-log-view-mode'.
12769
12770 2009-09-22 Stefan Monnier <monnier@iro.umontreal.ca>
12771
12772 * textmodes/fill.el: Convert to utf-8 encoding.
12773 (fill-french-nobreak-p): Remove redundant » and « inherited from our
12774 pre-Unicode days.
12775
12776 * add-log.el (change-log-fill-forward-paragraph): New function.
12777 (change-log-mode): Use it so fill-region DTRT.
12778 Set fill-indent-according-to-mode here rather than in
12779 change-log-fill-paragraph.
12780 (change-log-fill-paragraph): Remove.
12781
12782 2009-09-22 Juanma Barranquero <lekktu@gmail.com>
12783
12784 * info.el (Info-try-follow-nearest-node): Use the URL extracted by
12785 `Info-get-token', instead of `browse-url-url-at-point'. (Bug#4508)
12786
12787 2009-09-22 Glenn Morris <rgm@gnu.org>
12788
12789 * calendar/calendar.el (calendar-mode-map): Make mouse-1 and 3 clicks on
12790 the scroll-bar scroll the calendar window rather than the buffer.
12791
12792 * calendar/cal-menu.el (cal-menu-scroll-menu): Add a sub-section with
12793 commands that move point (as opposed to scrolling).
12794
12795 * emulation/tpu-edt.el (tpu-copy-keyfile): Fix condition-case handler.
12796
12797 * emacs-lisp/elint.el (elint): New custom group.
12798 (elint-log-buffer): Make it a defcustom.
12799 (elint-scan-preloaded, elint-ignored-warnings)
12800 (elint-directory-skip-re): New options.
12801 (elint-builtin-variables): Doc fix.
12802 (elint-preloaded-env): New variable.
12803 (elint-unknown-builtin-args): Add an entry for encode-time.
12804 (elint-extra-errors): Make it a variable rather than a constant.
12805 (elint-preloaded-skip-re): New constant.
12806 (elint-directory): Skip files matching elint-directory-skip-re.
12807 (elint-features): New variable, local to linted buffers.
12808 (elint-update-env): Initialize elint-features. Possibly add
12809 elint-preloaded-env to the buffer's environment.
12810 (elint-get-top-forms): Bind elint-current-pos, for log messages.
12811 Skip quoted forms.
12812 (elint-init-form): New function, extracted from elint-init-env.
12813 Make non-list forms a warning rather than an error.
12814 Add the mode-map for define-derived-mode. Handle define-minor-mode,
12815 easy-menu-define, put that adds an error-condition, and provide.
12816 When requiring cl, also require cl-macs. Really require cl, to handle
12817 some cl macros. Store required libraries in the list elint-features,
12818 so as not to re-load them. Treat cc-require like require.
12819 (elint-init-env): Call elint-init-form to do the work.
12820 Handle eval-and-compile and such like.
12821 (elint-add-required-env): Do not clear messages.
12822 (elint-special-forms): Add handlers for function, defalias, if, when,
12823 unless, and, or.
12824 (elint-form): Add optional argument to ignore elint-special-forms,
12825 useful to prevent recursive calls from handlers. Doc fix.
12826 Respect elint-ignored-warnings.
12827 (elint-form): Respect elint-ignored-warnings.
12828 (elint-bound-variable, elint-bound-function): New variables.
12829 (elint-unbound-variable): Respect elint-bound-variable.
12830 (elint-get-args): Respect elint-bound-function.
12831 (elint-check-cond-form): Add some simple handling for (f)boundp and
12832 featurep tests.
12833 (elint-check-defalias-form): New handler.
12834 (elint-check-let-form): Make an empty let a warning rather than an
12835 error.
12836 (elint-check-setq-form): Make an empty setq a warning rather than an
12837 error. Respect elint-ignored-warnings.
12838 (elint-check-defvar-form): Accept null doc-strings.
12839 (elint-check-conditional-form): New handler. Does some simple-minded
12840 checking of featurep and (f)boundp tests.
12841 (elint-put-function-args): New function.
12842 (elint-initialize): Use elint-scan-doc-file rather than
12843 elint-find-builtin-variables. Use elint-put-function-args.
12844 Possibly scan preloaded-file-list.
12845 (elint-scan-doc-file): Rename from elint-find-builtin-variables and
12846 extend to handle functions as well.
12847
12848 2009-09-22 Lennart Borgman <lennart.borgman@gmail.com>
12849
12850 * linum.el (linum-delete-overlays, linum-update-window):
12851 Do not modify the right margin. (Bug#3971)
12852
12853 2009-09-21 Chong Yidong <cyd@stupidchicken.com>
12854
12855 * files.el (conf-mode-maybe, magic-fallback-mode-alist): Use
12856 nxml-mode instead of xml-mode.
12857
12858 2009-09-21 Kevin Ryde <user42@zip.com.au>
12859
12860 * net/dig.el: Add "Keywords: comm", as per net-utils.el. (Bug#4501)
12861
12862 2009-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
12863
12864 * net/dig.el (dig-mode): Use define-derived-mode.
12865
12866 2009-09-20 Dan Nicolaescu <dann@ics.uci.edu>
12867
12868 * vc-dispatcher.el (vc-do-command): Return the process object in
12869 the asynchronous case. Use when instead of if. Do not run
12870 vc-exec-after to display a message if not enabled. (Bug#4463)
12871
12872 * vc-git.el (vc-git-dir-extra-headers): Add keymap and mouse-face
12873 properties to the stash strings.
12874 (vc-git-stash-list): Return a list of strings.
12875 (vc-git-stash-get-at-point, vc-git-stash-delete-at-point)
12876 (vc-git-stash-show-at-point): New functions.
12877 (vc-git-stash-map): New keymap.
12878
12879 * register.el (ctl-x-r-map): Define the keys here instead of
12880 using autoload.
12881
12882 2009-09-20 Thierry Volpiatto <thierry.volpiatto@gmail.com> (tiny change)
12883
12884 * bookmark.el (bookmark-write-file): Avoid calling `pp' with large
12885 list, to workaround performance problem (bug#4485).
12886
12887 2009-09-20 Nick Roberts <nickrob@snap.net.nz>
12888
12889 * progmodes/gud.el (gud-sentinel): Revert indavertant change.
12890
12891 2009-09-20 Daiki Ueno <ueno@unixuser.org>
12892
12893 * epa-file.el (epa-file-cache-passphrase-for-symmetric-encryption):
12894 Document that this option is not recommended to use.
12895
12896 2009-09-19 Glenn Morris <rgm@gnu.org>
12897
12898 * calc/calc-graph.el (calc-graph-lookup): Avoid assignment to free
12899 variable `var'.
12900
12901 * calc/calc-alg.el (var):
12902 * calc/calcalg2.el (var): Define for compiler.
12903
12904 2009-09-19 Chong Yidong <cyd@stupidchicken.com>
12905
12906 * emacs-lisp/advice.el (ad-get-argument, ad-set-argument):
12907 Doc fix (Bug#3932).
12908
12909 * subr.el (baud-rate): Remove long-obsolete function (Bug#4372).
12910
12911 * time-stamp.el (time-stamp-month-dd-yyyy)
12912 (time-stamp-dd/mm/yyyy, time-stamp-mon-dd-yyyy)
12913 (time-stamp-dd-mon-yy, time-stamp-yy/mm/dd)
12914 (time-stamp-yyyy/mm/dd, time-stamp-yyyy-mm-dd)
12915 (time-stamp-yymmdd, time-stamp-hh:mm:ss, time-stamp-hhmm):
12916 Remove functions that have been obsolete since 1995 (Bug#4436).
12917
12918 * progmodes/sh-script.el (sh-learn-buffer-indent): Pop to the
12919 indent buffer only if called interactively (Bug#4452).
12920
12921 2009-09-19 Juanma Barranquero <lekktu@gmail.com>
12922 Eli Zaretskii <eliz@gnu.org>
12923
12924 This fixes bug#4197 (merged to bug#865, though not identical).
12925 * server.el (server-auth-dir): Add docstring note about FAT32.
12926 (server-ensure-safe-dir): Accept FAT32 directories as "safe",
12927 but warn against using them.
12928
12929 2009-09-19 Nick Roberts <nickrob@snap.net.nz>
12930
12931 * progmodes/gdb-mi.el (gdb-var-update-handler-1): Include case of
12932 older GDB where there is no has_more field.
12933
12934 2009-09-19 Glenn Morris <rgm@gnu.org>
12935
12936 * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
12937
12938 2009-09-18 Chong Yidong <cyd@stupidchicken.com>
12939
12940 * files.el (auto-mode-alist): Change default for XML files to nXML
12941 mode (Bug#4169).
12942
12943 2009-09-18 Juanma Barranquero <lekktu@gmail.com>
12944
12945 * server.el (server-ensure-safe-dir): Pass 'integer
12946 to `file-attributes', as suggested.
12947
12948 2009-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
12949
12950 * dired-aux.el (dired-query-alist): Remove spurious backslash.
12951 (dired-query): Use read-key.
12952
12953 2009-09-18 Adrian Robert <Adrian.B.Robert@gmail.com>
12954
12955 * cus-start.el (ns-use-qd-smoothing): Remove.
12956
12957 2009-09-18 Glenn Morris <rgm@gnu.org>
12958
12959 * allout.el (top-level): Remove unnecessary progn.
12960
12961 * progmodes/js.el (js-end-of-defun): Remove malformed and unneeded let.
12962
12963 * emacs-lisp/derived.el (define-derived-mode): Fix paren typo in
12964 definition of abbrev table.
12965
12966 * speedbar.el (speedbar-track-mouse):
12967 * net/eudc-bob.el (eudc-bob-pipe-object-to-external-program):
12968 * net/eudc.el (eudc-expand-inline):
12969 * net/newst-backend.el (newsticker--cache-read-feed):
12970 * nxml/nxml-outln.el (nxml-end-of-heading): Fix typos in
12971 condition-case handlers.
12972
12973 2009-09-18 Nick Roberts <nickrob@snap.net.nz>
12974
12975 * progmodes/gdb-mi.el (gdb-frame-address): New variable.
12976 (gdb-var-list): Add an element for has_more field.
12977 (gdb-non-stop-handler): Enable pretty printing for STL containers.
12978 (gdb-var-create-handler, gdb-var-list-children-handler-1)
12979 (gdb-var-update-handler-1): Parse output of dynamic variable
12980 objects (STL containers).
12981 (gdb-var-delete-1): Pass var1 as an explicit second argument.
12982 (gdb-get-field): Delete alias. Use bindat-get-field directly.
12983
12984 * progmodes/gud.el (gud-speedbar-item-info): Adjust for change to
12985 gdb-var-list.
12986 (gud-speedbar-buttons): Make node expandable if expression "has more"
12987 children.
12988
12989 2009-09-17 Juanma Barranquero <lekktu@gmail.com>
12990
12991 * startup.el (emacs-quick-startup): Remove variable and all uses.
12992 (command-line): Set `inhibit-x-resources' instead.
12993 (command-line-1): Use `inhibit-x-resources' instead.
12994
12995 2009-09-17 Chong Yidong <cyd@stupidchicken.com>
12996
12997 * subr.el: Fix last change to avoid using the `unless' macro,
12998 which breaks bootstrapping.
12999
13000 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
13001
13002 * subr.el (push, pop, dolist, dotimes, declare): Don't overwrite CL's
13003 extended definitions, in case we reload subr.el after having
13004 loaded CL.
13005 (eval-next-after-load): Mark as obsolete.
13006
13007 2009-09-17 Juri Linkov <juri@jurta.org>
13008
13009 * menu-bar.el (menu-bar-search-menu, menu-bar-edit-menu)
13010 (menu-bar-options-menu, menu-bar-showhide-fringe-menu)
13011 (menu-bar-showhide-menu, menu-bar-tools-menu)
13012 (menu-bar-describe-menu, menu-bar-help-menu)
13013 (minibuffer-local-completion-map, minibuffer-local-map):
13014 Fix list quoting.
13015
13016 2009-09-17 Glenn Morris <rgm@gnu.org>
13017
13018 * emacs-lisp/bytecomp.el (byte-compile-form): Always check the function
13019 arguments, whether or not it has a handler.
13020
13021 * ansi-color.el (ansi-color-get-face-1): Fix typo in handler.
13022
13023 * simple.el (hard-newline): Give it a doc-string.
13024
13025 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
13026 (lisp-mode-syntax-table): Give them doc-strings.
13027
13028 2009-09-17 Dan Nicolaescu <dann@ics.uci.edu>
13029
13030 * menu-bar.el (menu-bar-file-menu, menu-bar-file-menu)
13031 (menu-bar-i-search-menu, menu-bar-edit-menu, menu-bar-custom-menu)
13032 (menu-bar-options-menu, menu-bar-showhide-menu)
13033 (menu-bar-showhide-fringe-ind-menu, menu-bar-showhide-fringe-menu)
13034 (menu-bar-showhide-scroll-bar-menu, menu-bar-showhide-menu)
13035 (menu-bar-options-menu, menu-bar-line-wrapping-menu)
13036 (menu-bar-options-menu, menu-bar-tools-menu)
13037 (menu-bar-describe-menu, menu-bar-search-documentation-menu)
13038 (menu-bar-help-menu):
13039 (menu-bar-make-mm-toggle, menu-bar-make-toggle): Purecopy the
13040 string arguments.
13041
13042 * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu)
13043 (menu-bar-epatch-menu, menu-bar-ediff-misc-menu): Add purecopy
13044 calls for the menu names and :help.
13045
13046 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
13047
13048 * mouse.el (minor-mode-menu-from-indicator): Pay attention
13049 to :minor-mode-function (bug#4455).
13050
13051 2009-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
13052
13053 * startup.el (command-line): Initialize the window-system after
13054 processing the command-line.
13055
13056 * textmodes/page.el (what-page): Make sure we don't inf-loop if
13057 page-delimiter matches the empty string.
13058
13059 2009-09-16 Glenn Morris <rgm@gnu.org>
13060
13061 * emacs-lisp/bytecomp.el (byte-compile-not-obsolete-vars): Rename from
13062 byte-compile-not-obsolete-var. It's a list now.
13063 (byte-compile-not-obsolete-funcs): New variable.
13064 (byte-compile-warn-obsolete): Don't warn about functions if they are in
13065 byte-compile-not-obsolete-funcs.
13066 (byte-compile-variable-ref, byte-compile-defvar): Update for
13067 byte-compile-not-obsolete-vars name-change and list nature.
13068 (byte-compile-maybe-guarded): Suppress warnings about obsolete functions
13069 and variables behind (f)boundp tests.
13070 * net/tramp-compat.el (byte-compile-not-obsolete-vars): Set if bound.
13071
13072 2009-09-15 Dan Nicolaescu <dann@ics.uci.edu>
13073
13074 * vc-git.el (vc-git-log-view-mode): Undo inadvertent change.
13075
13076 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
13077
13078 * Makefile.in (compile-onefile): Use byte-compile-refresh-preloaded.
13079 * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded):
13080 Don't autoload.
13081
13082 2009-09-15 Stephen Eglen <stephen@gnu.org>
13083
13084 * iswitchb.el (iswitchb-read-buffer): When selecting a match from
13085 the virtual-buffers, use the name of the buffer specified by
13086 find-file-noselect, as the match may be a symlink. (This was a
13087 problem if the target and the symlink had different names.)
13088
13089 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
13090
13091 * custom.el (custom-initialize-default, custom-initialize-set): CSE.
13092
13093 * desktop.el (desktop-path): Check user-emacs-directory.
13094
13095 * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded): New function.
13096
13097 * loadup.el: Use after-load-functions to GC after loading each file.
13098 Remove the explicit GC calls that used to be sprinkled around.
13099
13100 * subr.el (after-load-functions): New hook.
13101 (do-after-load-evaluation): Run it. Use string-match-p to detect
13102 `obsolete' packages, rather than painfully extracting the relevant
13103 directory name.
13104
13105 2009-09-15 Glenn Morris <rgm@gnu.org>
13106
13107 * apropos.el (apropos-documentation-check-doc-file): Avoid assignment to
13108 free variable `doc'.
13109
13110 * dired.el (dired-mode-map): Add menu entry for async shell command.
13111
13112 * help-fns.el (find-lisp-object-file-name): When looking for autoloaded
13113 variables, also consider the .elc files, since the .el files are
13114 normally gzipped (subsequent code locates the .el.gz from the .elc).
13115
13116 * calc/calc-prog.el (arglist): Define for compiler.
13117
13118 * calendar/diary-lib.el (diary-display-function): Change the default to
13119 fancy display.
13120 (body): Define for compiler.
13121
13122 * emacs-lisp/bytecomp.el (byte-compile-keep-pending)
13123 (byte-compile-file-form, byte-compile-lambda)
13124 (byte-compile-top-level-body, byte-compile-form)
13125 (byte-compile-variable-ref, byte-compile-setq)
13126 (byte-compile-setq-default, byte-compile-body)
13127 (byte-compile-body-do-effect, byte-compile-and, byte-compile-or)
13128 (batch-byte-compile): Give some more local variables with common names
13129 a "bytecomp-" prefix to avoid masking warnings about free variables.
13130
13131 * startup.el (command-line-1): Give local variables with common names a
13132 distinguishing prefix, so as not to hide free variable warnings during
13133 bootstrap.
13134
13135 * mail/rmailmm.el (rmail-mime-save): If file exists, don't try to be
13136 clever and add a suffix to make a unique name, just let the user decide
13137 whether or not to overwrite it. If the input is a directory, write the
13138 default filename to that directory. (Bug#4388)
13139 (rmail-mime-bulk-handler): Ensure the save button's 'directory property
13140 is a filename-as-a-directory.
13141
13142 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
13143
13144 * textmodes/page.el (what-page): Don't move to beginning of line.
13145 See <87tyz5ajte.fsf@x2.delysid.org> in emacs-devel.
13146
13147 2009-09-15 Dan Nicolaescu <dann@ics.uci.edu>
13148
13149 * vc-git.el (vc-git-dir-extra-headers): Show the remote location.
13150
13151 2009-09-14 Dan Nicolaescu <dann@ics.uci.edu>
13152
13153 * bindings.el (mode-line-mode-menu): Add purecopy calls for :help.
13154 * help.el (help-for-help-internal): Add purecopy calls for text.
13155
13156 * vc.el (top): print-log method now takes an optional SHORTLOG
13157 argument. Add a new method: root.
13158 (vc-root-diff, vc-print-root-log): New functions.
13159 (vc-log-short-style): New variable.
13160 (vc-print-log-internal): Add support for showing short logs.
13161
13162 * vc-hooks.el (vc-prefix-map, vc-menu-map): Add bindings for
13163 vc-print-root-log and vc-print-root-diff.
13164
13165 * vc-bzr.el (vc-bzr-log-view-mode, vc-bzr-print-log):
13166 * vc-git.el (vc-git-print-log, vc-git-log-view-mode):
13167 * vc-hg.el (vc-hg-print-log, vc-hg-log-view-mode): Add support for
13168 short logs.
13169
13170 * vc-cvs.el (vc-cvs-print-log):
13171 * vc-mtn.el (vc-mtn-print-log):
13172 * vc-rcs.el (vc-rcs-print-log):
13173 * vc-sccs.el (vc-sccs-print-log):
13174 * vc-svn.el (vc-svn-print-log): Add an optional argument shortlog
13175 that is ignored for now.
13176
13177 * vc-mtn.el (vc-mtn-annotate-command):
13178 * vc-svn.el (vc-svn-annotate-command): Run asynchronously.
13179
13180 2009-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
13181
13182 * simple.el: Add mapping for backspace/delete/clear/tab/escape/return
13183 to function-key-map, and give them ascii-character property.
13184 * term/x-win.el (x-alternatives-map):
13185 * term/ns-win.el (ns-alternatives-map):
13186 * term/internal.el (msdos-key-remapping-map):
13187 * w32-fns.el (x-alternatives-map): Remove redundant mappings.
13188
13189 2009-09-14 Glenn Morris <rgm@gnu.org>
13190
13191 * emacs-lisp/elint.el (elint-add-required-env): Revert to not using
13192 temp-buffers (2009-09-12).
13193
13194 2009-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
13195
13196 * textmodes/ispell.el (ispell-command-loop): Improve last fix, using
13197 the new read-key function.
13198
13199 2009-09-13 Chong Yidong <cyd@stupidchicken.com>
13200
13201 * term/x-win.el (x-menu-bar-open): Only call accelerate-menu if it
13202 is defined (Bug#4405).
13203
13204 2009-09-13 Vincent Belaïche <vincent.belaiche@gmail.com>
13205
13206 * recentf.el (recentf-cleanup): Use a hash table to find
13207 duplicates (Bug#4407).
13208
13209 2009-09-13 Per Starbäck <per@starback.se> (tiny change)
13210
13211 * textmodes/ispell.el (ispell-command-loop): Convert keys such as
13212 kp-0 to ascii equivalents (Bug#4325).
13213
13214 2009-09-13 Chong Yidong <cyd@stupidchicken.com>
13215
13216 * progmodes/cperl-mode.el (cperl-init-faces): Revert last change.
13217
13218 * eshell/em-hist.el:
13219 * eshell/em-dirs.el (eshell-complete-user-reference):
13220 Declare pcomplete functions and variables to avoid compiler warnings.
13221
13222 2009-09-13 Leo <sdl.web@gmail.com> (tiny change)
13223
13224 * eshell/em-script.el (eshell-login-script, eshell-rc-script):
13225 * eshell/em-dirs.el (eshell-last-dir-ring-file-name):
13226 * eshell/em-alias.el (eshell-aliases-file):
13227 * eshell/em-hist.el (eshell-history-file-name):
13228 Use expand-file-name instead of concat to make file names (Bug#4308).
13229
13230 2009-09-13 Glenn Morris <rgm@gnu.org>
13231
13232 * ediff-merg.el (ediff-do-merge):
13233 * filesets.el (filesets-run-cmd):
13234 * emulation/ws-mode.el (ws-show-markers, ws-move-block, ws-delete-block)
13235 (ws-find-marker-0, ws-find-marker-1, ws-find-marker-2, ws-find-marker-3)
13236 (ws-find-marker-4, ws-find-marker-5, ws-find-marker-6, ws-find-marker-7)
13237 (ws-find-marker-8, ws-find-marker-9, ws-goto-block-begin)
13238 (ws-goto-block-end, ws-goto-last-cursorposition, ws-copy-block):
13239 Replace empty `let's with `progn'.
13240
13241 2009-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
13242
13243 * mail/sendmail.el (send-mail-function):
13244 * tooltip.el (tooltip-mode):
13245 * simple.el (transient-mark-mode):
13246 * rfn-eshadow.el (file-name-shadow-mode):
13247 * frame.el (blink-cursor-mode):
13248 * font-core.el (global-font-lock-mode):
13249 * files.el (temporary-file-directory)
13250 (small-temporary-file-directory, auto-save-file-name-transforms):
13251 * epa-hook.el (auto-encryption-mode):
13252 * composite.el (global-auto-composition-mode):
13253 Use custom-initialize-delay.
13254 * startup.el (command-line): Don't explicitly call
13255 custom-reevaluate-setting for all the above vars.
13256 * custom.el (custom-initialize-safe-set)
13257 (custom-initialize-safe-default): Delete.
13258
13259 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
13260
13261 * term/x-win.el (x-initialize-window-system):
13262 * term/w32-win.el (w32-initialize-window-system):
13263 * term/ns-win.el (ns-initialize-window-system): Don't call
13264 mouse-wheel-mode since it's enabled globally by default already.
13265
13266 * mwheel.el (mouse-wheel-mode): Make sure the new defvar doesn't
13267 actually define the variable, but only silences the byte-compiler.
13268 (mouse-wheel-change-button): Check whether mouse-wheel-mode is bound
13269 before looking it up.
13270 (mouse-wheel-scroll-amount): Also reset the bindings if this value
13271 is changed.
13272
13273 2009-09-12 Glenn Morris <rgm@gnu.org>
13274
13275 * emacs-lisp/elint.el (elint-file): Make max-lisp-eval-depth at least
13276 1000.
13277 (elint-add-required-env): Don't beep on error.
13278 (elint-forms): In case of error, return ENV unchanged.
13279 (elint-init-env): Skip non-list forms.
13280 (elint-log): Handle unknown file positions.
13281
13282 2009-09-12 Daiki Ueno <ueno@unixuser.org>
13283
13284 * epg.el (epg-make-context): Add autoload cookie.
13285 (epg-list-keys, epg-cancel, epg-start-decrypt, epg-decrypt-file)
13286 (epg-decrypt-string, epg-start-verify, epg-verify-file)
13287 (epg-verify-string, epg-start-sign, epg-sign-file)
13288 (epg-sign-string, epg-start-encrypt, epg-encrypt-file)
13289 (epg-encrypt-string, epg-start-export-keys)
13290 (epg-export-keys-to-file, epg-export-keys-to-string)
13291 (epg-start-import-keys, epg-import-keys-from-file)
13292 (epg-import-keys-from-string, epg-start-receive-keys)
13293 (epg-receive-keys, epg-import-keys-from-server)
13294 (epg-start-delete-keys, epg-delete-keys, epg-start-sign-keys)
13295 (epg-sign-keys, epg-start-generate-key)
13296 (epg-generate-key-from-file, epg-generate-key-from-string):
13297 Remove autoload cookie.
13298
13299 2009-09-12 Eli Zaretskii <eliz@gnu.org>
13300
13301 * dos-fns.el (dos-reevaluate-defcustoms): Comment out the
13302 reevaluation of trash-directory.
13303
13304 * mwheel.el: Fix last change.
13305 (mouse-wheel-mode): New defvar.
13306 (mouse-wheel-mode): Remove autoload cookie.
13307
13308 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
13309
13310 * mwheel.el (mwheel-installed-bindings): New var.
13311 (mouse-wheel-mode): Use it, so as to make sure we really remove all
13312 the bindings we set last time. Use custom-initialize-delay.
13313 * loadup.el: Load mwheel after term/*-win.el.
13314 * startup.el (command-line): Don't reevaluate mouse-wheel-down-event
13315 and mouse-wheel-up-event now that their first evaluation is done
13316 sufficiently late to be correct.
13317
13318 * startup.el (tutorial-directory): Make it a defcustom.
13319 Use custom-initialize-delay rather than eval-at-startup to set it.
13320 * image.el (image-load-path): Make it a defcustom.
13321 Use custom-initialize-delay rather than eval-at-startup to set it.
13322 * subr.el (eval-at-startup): Remove.
13323 * font-lock.el (lisp-font-lock-keywords-2): Remove eval-at-startup.
13324
13325 * subr.el (do-after-load-evaluation): Warn the user after loading an
13326 obsolete package.
13327
13328 2009-09-12 Glenn Morris <rgm@gnu.org>
13329
13330 * proced.el (proced-mark-alt): Remove alias.
13331 (proced-mode-map): Remove proced-mark-alt.
13332
13333 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries to
13334 Elint file and directory. Remove initialization entry.
13335
13336 * emacs-lisp/elint.el (elint-file, elint-directory): New autoloaded
13337 commands.
13338 (elint-current-buffer): Set mode-line-process.
13339 (elint-init-env): Handle define-derived-mode.
13340 Fix declare-function with unspecified arglist. Guard against odd
13341 defalias statements (eg iso-insert's 8859-1-map).
13342 (elint-add-required-env): Use a temp buffer.
13343 (elint-form): Just print the function/macro name, not the whole form.
13344 Return env unchanged if we fail to parse a macro.
13345 (elint-forms): Guard against parse errors.
13346 (elint-output): New function, to handle batch mode.
13347 (elint-log-message): Add optional argument. Use elint-output.
13348 (elint-set-mode-line): New function.
13349
13350 2009-09-12 Andreas Politz <politza@fh-trier.de> (tiny change)
13351
13352 * emacs-lisp/elp.el (elp-not-profilable): Add more
13353 functions (Bug#4233).
13354
13355 2009-09-12 Chong Yidong <cyd@stupidchicken.com>
13356
13357 * emulation/pc-select.el (scroll-down-mark, scroll-down-nomark)
13358 (scroll-up-mark, scroll-up-nomark): Doc fix (Bug#4190).
13359
13360 2009-09-11 Nick Roberts <nickrob@snap.net.nz>
13361
13362 * progmodes/gdb-mi.el (gdb-var-list-children-regexp): Delete.
13363 (gdb-var-list-children): Use json parsing.
13364
13365 2009-09-11 Daniel Colascione <dan.colascione@gmail.com>
13366
13367 * progmodes/js.el (js--proper-indentation): Handle the case where
13368 char-before is null. Reported by Deniz Dogan.
13369
13370 2009-09-11 Juanma Barranquero <lekktu@gmail.com>
13371
13372 * emacs-lisp/cl-macs.el (help-add-fundoc-usage): Declare.
13373
13374 2009-09-11 Daiki Ueno <ueno@unixuser.org>
13375
13376 * epg.el (epg-cipher-algorithm-alist): Add CAMELLIA.
13377 (epg-digest-algorithm-alist): Add SHA224.
13378 (epg-context-set-passphrase-callback)
13379 (epg-context-set-progress-callback): Add description about
13380 callback function.
13381
13382 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
13383
13384 * custom.el (custom-delayed-init-variables): New var.
13385 (custom-initialize-delay): New function.
13386 * startup.el (command-line): "Re"evaluate all vars in
13387 custom-delayed-init-variables. Don't reevaluate abbrev-file-name
13388 explicitly any more.
13389 * abbrev.el (abbrev-file-name): Use custom-initialize-delay
13390 to avoid creating a ~/.emacs.d at build-time (bug#4347).
13391
13392 * proced.el (proced-mode-map): Prefer "m" for proced-mark (bug#4362).
13393
13394 2009-09-11 Nick Roberts <nickrob@snap.net.nz>
13395
13396 * progmodes/gdb-mi.el (gdb-var-update-regexp): Delete.
13397 (gdb-var-update-handler): Use json parsing.
13398
13399 2009-09-11 Juanma Barranquero <lekktu@gmail.com>
13400
13401 * vc-annotate.el (vc-annotate): Use the main file's coding-system to
13402 decode annotated text, regardless of language environment. (Bug#2741)
13403
13404 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
13405
13406 * Makefile.in (autoloads): Make rmail.el writable as well.
13407
13408 2009-09-11 Glenn Morris <rgm@gnu.org>
13409
13410 * dired-aux.el, dired-x.el: Put autoloads in dired.el rather than
13411 loaddefs.el.
13412 * dired.el: Regenerate with extracted autoloads.
13413 * Makefile.in (autoloads): Make dired.el writable.
13414
13415 * ibuf-ext.el: Put autoloads in ibuffer.el rather than loaddefs.el.
13416 * ibuffer.el: Regenerate with extracted autoloads.
13417 * Makefile.in (autoloads): Make ibuffer.el writable.
13418
13419 * paths.el (prune-directory-list, gnus-nntp-service, rmail-file-name):
13420 * version.el (emacs-copyright, emacs-major-version)
13421 (emacs-minor-version): Reformat doc-strings for make-docfile.
13422
13423 * apropos.el (apropos-documentation-check-doc-file): Exclude unbound
13424 functions and variables, since they must be stuff specific to some other
13425 platform.
13426 (apropos-print): Make mouse-click message less specific about button.
13427
13428 * emacs-lisp/cl-macs.el (define-compiler-macro): Add a property
13429 that records where a macro was defined.
13430 * help-fns.el (describe-function-1): Mention if a function has a
13431 compiler-macro.
13432 * help-mode.el (help-function-cmacro): New button.
13433
13434 * locate.el (top-level): Always require dired.
13435 (locate-mode-map): Initialize inside the defvar.
13436
13437 * net/ange-ftp.el (dired-compress-file): Declare.
13438 (ange-ftp-dired-compress-file): Add doc string.
13439
13440 * term/ns-win.el (x-display-name, x-setup-function-keys):
13441 Unify doc-strings with X versions.
13442
13443 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
13444
13445 * emulation/crisp.el (crisp-mode-map): Move initialization
13446 into declaration.
13447 (crisp-mode): Use define-minor-mode.
13448
13449 * progmodes/xscheme.el (xscheme-evaluation-commands):
13450 Put a :advertised-binding property rather than using
13451 advertised-xscheme-send-previous-expression.
13452 (advertised-xscheme-send-previous-expression): Declare obsolete.
13453 * emulation/crisp.el (crisp-mode-map): Use `undo' rather than
13454 `advertised-undo'.
13455 (crisp-mode): Add corresponding bindings to
13456 undo's :advertised-binding instead.
13457 * dired.el (dired-mode-map): Put a :advertised-binding property rather
13458 than using dired-advertised-find-file.
13459 (dired-advertised-find-file):
13460 * simple.el (advertised-undo):
13461 * wid-edit.el (advertised-widget-backward): Declare obsolete.
13462 (widget-keymap): Put a :advertised-binding property rather
13463 than using advertised-widget-backward.
13464 * bindings.el (ctl-x-map): Put a :advertised-binding property rather
13465 than using advertised-undo.
13466 * tutorial.el (tutorial--default-keys): Adjust accordingly.
13467
13468 2009-09-10 Simon South <ssouth@slowcomputing.org>
13469
13470 * progmodes/delphi.el (delphi-tab): Indent region when Transient
13471 Mark mode is enabled and region is active; otherwise indent or
13472 insert TAB as usual.
13473 (delphi-mode): Update description of TAB-key binding.
13474
13475 2009-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
13476
13477 * subr.el (define-key-rebound-commands): Mark obsolete.
13478 * startup.el (precompute-menubar-bindings): Remove.
13479 (normal-top-level): Remove obsolete code that tried to precompute
13480 menubar bindings.
13481 * loadup.el (define-key-rebound-commands): Don't bother fiddling with
13482 define-key-rebound-commands and precompute-menubar-bindings.
13483
13484 2009-09-10 Teodor Zlatanov <tzz@lifelogs.com>
13485
13486 * net/imap.el (imap-interactive-login): Better messages.
13487 (imap-open): Fix bug with renamed buffer on reconnect.
13488 (imap-authenticate): Add buffer-local imap-last-authenticator variable
13489 for easier debugging and cleaner code. On successful (guessed based on
13490 server capabilities) secondary authentication, set imap-state
13491 correctly.
13492 (imap-last-authenticator): Define imap-last-authenticator as a variable
13493 to avoid warnings.
13494
13495 2009-09-10 Glenn Morris <rgm@gnu.org>
13496
13497 * pcvs.el (cvs-mode-find-file): Use forward-line rather than goto-line.
13498
13499 * emacs-lisp/bytecomp.el (byte-compile-function-environment): Doc fix.
13500 (byte-compile-file-form-autoload): Don't warn about unknown functions
13501 where the autoload statement comes after the use.
13502 (with-no-warnings): Give it a byte-hunk-handler like than of progn, so
13503 that any handlers inside the body (eg require) are in turn respected.
13504
13505 * emacs-lisp/byte-opt.el (degrees-to-radians): Mark as free from side
13506 effects.
13507
13508 * emacs-lisp/derived.el (define-derived-mode): Give the mode's map,
13509 and syntax and abbrev tables basic docs, if they don't have any.
13510
13511 * emacs-lisp/easy-mmode.el (easy-mmode-defmap): Add doc-string.
13512
13513 * international/mule-cmds.el (top-level): Require cl when compiling.
13514 (view-hello-file): Use default-value rather than
13515 default-enable-multibyte-characters.
13516
13517 * progmodes/fortran.el: Move all safe and risky properties into the
13518 defcustoms.
13519
13520 * mail/rmailedit.el, mail/rmailkwd.el, mail/rmailmm.el:
13521 * mail/rmailmsc.el, mail/rmailsort.el, mail/rmailsum.el:
13522 * mail/undigest.el:
13523 Put autoloads in rmail.el rather than loaddefs.el.
13524 * mail/rmail.el: Regenerate with extracted autoloads.
13525
13526 * mail/rmailsum.el (rmail-user-mail-address-regexp): Move to rmail.el.
13527 * mail/rmail.el (rmail-user-mail-address-regexp): Move from rmailsum.el.
13528
13529 2009-09-10 Nick Roberts <nickrob@snap.net.nz>
13530
13531 Reported in thread for Bug#4375.
13532 * progmodes/gud.el (gud-tooltip-print-command): Use MI command
13533 "-data-evaluate-expression" instead of print.
13534 * progmodes/gdb-mi.el (gdb-tooltip-print-1): Ditto.
13535 (gdb-tooltip-print): Parse output from above MI command.
13536 (gdb): Revert 2009-08-11 change. User should detach inferior
13537 manually.
13538
13539 Remove the word "separate" from IO functions as inferior
13540 output is now never displayed in the GUD buffer.
13541
13542 2009-09-10 Juanma Barranquero <lekktu@gmail.com>
13543
13544 * startup.el (command-line-normalize-file-name): On Windows and
13545 MS-DOS, also convert C:\/ and C:\\ (two backslashes) into C:/.
13546
13547 2009-09-10 Juri Linkov <juri@jurta.org>
13548
13549 * isearch.el (isearch-text-char-description): Propertize escape
13550 character sequences with the `escape-glyph' face. (Bug#4344)
13551
13552 * simple.el (shell-command): Set asynchronous process filter to
13553 `comint-output-filter'. (Bug#4343)
13554
13555 * progmodes/grep.el (grep-template): Add "<X>" to docstring.
13556 (grep-files-aliases): Add "all". Move "el" and "ch" to the top of
13557 the list. Move "asm" to the bottom.
13558 (grep-find-ignored-directories): Add `choice' with nil value
13559 to empty the list easily.
13560 (grep-find-ignored-files): New option.
13561 (grep-files-history): Set to nil by default instead of '("ch" "el").
13562 (grep-compute-defaults): Add "<X>" to `grep-template'.
13563 (grep-read-files): Bind new local variables `default-alias' and
13564 `default-extension'. Use a list of default values for the file prompt.
13565 (lgrep): Add `--exclude=' command line options composed from
13566 `grep-find-ignored-files'.
13567 (rgrep): Add `-name' command line options composed from
13568 `grep-find-ignored-files'. (Bug#4301)
13569
13570 2009-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
13571
13572 * diff-mode.el (diff-hunk-kill): Fix the search of the next hunk
13573 (bug#4368).
13574
13575 2009-09-09 Katsumi Yamaoka <yamaoka@jpl.org>
13576
13577 * calendar/time-date.el (autoload):
13578 Expand define-obsolete-function-alias into defalias and make-obsolete
13579 for old Emacsen that Gnus supports.
13580 (with-no-warnings): Define it for old Emacsen.
13581 (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
13582 is available.
13583 (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
13584 float-time is available; suppress compile warning for time-to-seconds.
13585
13586 2009-09-09 Teodor Zlatanov <tzz@lifelogs.com>
13587
13588 * net/imap.el (imap-message-map): Docstring fix.
13589
13590 2009-09-09 Glenn Morris <rgm@gnu.org>
13591
13592 * ffap.el (ffap-file-at-point): Handle absolute (non-remote) files with
13593 line numbers too. (Bug#4374)
13594
13595 2009-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
13596
13597 * smerge-mode.el (smerge-remove-props, smerge-refine):
13598 Use with-silent-modifications (bug#4342).
13599
13600 * subr.el (with-silent-modifications): New macro.
13601
13602 2009-09-07 Juanma Barranquero <lekktu@gmail.com>
13603
13604 * files.el (top-level): Require `cl' when compiling.
13605
13606 2009-09-07 Glenn Morris <rgm@gnu.org>
13607
13608 * files.el (auto-mode-alist): Use delphi-mode for .dpr files.
13609
13610 * proced.el (proced-mode-map): Bind "d" to proced-mark-alt.
13611 (proced-mark-alt): New alias, to control the advertised key. (Bug#4362)
13612
13613 2009-09-06 Nick Roberts <nickrob@snap.net.nz>
13614
13615 * vc-git.el (vc-git-annotate-command): Use separator to parse
13616 arguments correctly.
13617
13618 2009-09-06 Eli Zaretskii <eliz@gnu.org>
13619
13620 * proced.el (proced-mode): Doc fix.
13621
13622 2009-09-06 Julian Scheid <julians37@gmail.com> (tiny change)
13623
13624 * net/tramp.el (tramp-perl-file-attributes): Print "nil" when
13625 lstat fails.
13626 (tramp-do-file-attributes-with-ls): Check for file existence at
13627 remote end.
13628 (tramp-do-file-attributes-with-stat): Likewise.
13629 (tramp-convert-file-attributes): Return nil when attr is nil.
13630
13631 2009-09-05 Glenn Morris <rgm@gnu.org>
13632
13633 * calendar/diary-lib.el (diary-entry): Add help-echo and follow-link
13634 properties to this button.
13635 (diary-fancy-display): Don't extend the button to the final newline.
13636 (diary-fancy-display-mode): Continue to define "q" as a local key.
13637
13638 * calendar/cal-china.el (holiday-chinese): Make it slightly more
13639 efficient.
13640
13641 * font-lock.el (lisp-font-lock-keywords-2): Add letf.
13642
13643 * emacs-lisp/bytecomp.el (emacs-lisp-file-regexp): Doc fix.
13644 (byte-compile-dest-file-function): New option.
13645 (byte-compile-dest-file): Doc fix.
13646 Obey byte-compile-dest-file-function.
13647 (byte-compile-cl-file-p): New function.
13648 (byte-compile-eval): Only suppress noruntime warnings about cl functions
13649 if the cl-functions warning is enabled. Use byte-compile-cl-file-p.
13650 (byte-compile-eval): Check for non-nil byte-compile-cl-functions rather
13651 than for file being previously loaded.
13652 (byte-compile-find-cl-functions): Use byte-compile-cl-file-p.
13653 (byte-compile-file-form-require): Handle the case where requiring a file
13654 indirectly causes CL to be loaded.
13655
13656 2009-09-05 Karl Fogel <kfogel@red-bean.com>
13657
13658 * files.el (find-alternate-file): Run `kill-buffer-hook' manually
13659 before killing the old buffer, since by the time `kill-buffer' is
13660 run so many buffer variables have been set to nil that it may not
13661 behave as expected. (Bug#4061)
13662
13663 2009-09-05 Karl Fogel <kfogel@red-bean.com>
13664
13665 * files.el (find-alternate-file): If the old buffer is modified
13666 and visiting a file, behave similarly to `kill-buffer' when
13667 killing it, thus reverting to the pre-1.878 behavior; see
13668 http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00101.html
13669 for discussion. Also, consult `buffer-file-name' as a variable
13670 not as a function, for consistency with the rest of the code.
13671
13672 2009-09-04 Michael Albinus <michael.albinus@gmx.de>
13673
13674 * net/tramp.el (tramp-handle-insert-directory): Handle "--dired"
13675 also when adding a new directory.
13676
13677 * net/tramp-compat.el (tramp-compat-line-beginning-position): New
13678 defun.
13679
13680 2009-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
13681
13682 * files.el (locate-file-completion-table): Make it provide boundary
13683 information, so partial-completion works better.
13684
13685 2009-09-04 Leo <sdl.web@gmail.com> (tiny change)
13686
13687 * mail/footnote.el (Footnote-text-under-cursor):
13688 Check footnote-text-marker-alist before using it (bug#4324).
13689
13690 2009-09-04 Glenn Morris <rgm@gnu.org>
13691
13692 * play/5x5.el, play/decipher.el, play/gametree.el, play/handwrite.el:
13693 * play/hanoi.el, play/landmark.el, play/mpuz.el, play/pong.el:
13694 * play/solitaire.el, play/tetris.el:
13695 Remove leading * from defcustom and defface docs.
13696
13697 * calendar/diary-lib.el (diary-fancy-display): Only switch modes if
13698 necessary.
13699 (diary-fancy-overriding-map): New variable.
13700 (diary-fancy-display-mode): Set minor-mode-overriding-map-alist.
13701 Use view-mode.
13702
13703 * vc-rcs.el (vc-rcs-annotate-command): Use forward-line rather than
13704 goto-line.
13705
13706 2009-09-03 Glenn Morris <rgm@gnu.org>
13707
13708 * arc-mode.el (archive-mode):
13709 * dos-fns.el (set-default-process-coding-system):
13710 * man.el (Man-getpage-in-background):
13711 * menu-bar.el (menu-bar-describe-menu):
13712 * server.el (server-process-filter):
13713 * startup.el (command-line):
13714 * tar-mode.el (tar-header-block-tokenize, tar-extract):
13715 * w32-fns.el (set-default-process-coding-system):
13716 * x-dnd.el (x-dnd-handle-file-name):
13717 * international/mule-cmds.el (mule-menu-keymap)
13718 (set-default-coding-systems, language-info-alist, set-language-info)
13719 (set-language-environment, standard-display-european-internal)
13720 (set-locale-environment):
13721 * international/mule-diag.el (mule-diag):
13722 * mail/emacsbug.el (report-emacs-bug):
13723 * mail/rmail.el (rmail-mode):
13724 * mail/sendmail.el (mail-setup):
13725 Use default-value rather than default-enable-multibyte-characters.
13726
13727 * progmodes/f90.el: Move all safe properties into the defcustoms.
13728 (f90-get-correct-indent, f90-indent-region, f90-abbrev-start): Use memq.
13729
13730 * calendar/appt.el (appt-check):
13731 * calendar/diary-lib.el (diary-set-header, diary-live-p)
13732 (diary-check-diary-file, diary-list-entries)
13733 (diary-include-other-diary-files, diary-simple-display)
13734 (diary-fancy-display, diary-print-entries)
13735 (diary-mark-included-diary-files, diary-make-entry):
13736 Don't call substitute-in-file-name on diary-file.
13737
13738 2009-09-03 Eduard Wiebe <usenet@pusto.de>
13739 Stefan Monnier <monnier@iro.umontreal.ca>
13740
13741 * mail/footnote.el (footnote-prefix): Make it a defcustom.
13742 (footnote-mode-map): Move initialization into the declaration.
13743 (footnote-minor-mode-map): Define it rather than changing global-map.
13744 (footnote-mode): Use define-minor-mode.
13745
13746 2009-09-02 Michael Albinus <michael.albinus@gmx.de>
13747
13748 * net/tramp.el (tramp-handle-file-attributes-with-ls)
13749 (tramp-do-file-attributes-with-perl)
13750 (tramp-do-file-attributes-with-stat): Rename from
13751 `tramp-handle-file-attributes-with-*'.
13752 (tramp-handle-file-attributes): Use them.
13753 (tramp-do-directory-files-and-attributes-with-perl)
13754 (tramp-do-directory-files-and-attributes-with-stat): Rename from
13755 `tramp-handle-directory-files-and-attributes-with-*'.
13756 (tramp-handle-directory-files-and-attributes): Use them.
13757 (tramp-method-out-of-band-p): Additional parameter SIZE.
13758 (tramp-do-copy-or-rename-file, tramp-handle-file-local-copy)
13759 (tramp-handle-write-region): Use it.
13760 (tramp-handle-insert-directory): Use "?\ " for compatibility reasons.
13761 (tramp-handle-vc-registered): Check, whether the first run did
13762 return files to be tested.
13763 (tramp-advice-make-auto-save-file-name): Do not call directly
13764 `tramp-handle-make-auto-save-file-name', because this would bypass
13765 the locking mechanism.
13766
13767 * net/tramp-compat.el (top): Autoload used functions from tramp.el.
13768 (file-remote-p, process-file, start-file-process, set-file-times)
13769 (tramp-compat-file-attributes): Compatibility functions shall not
13770 call directly `tramp-handle-*', because this would bypass the
13771 locking mechanism.
13772 (tramp-compat-number-sequence): New defun.
13773
13774 2009-09-02 Glenn Morris <rgm@gnu.org>
13775
13776 * calendar/time-date.el (time-to-seconds): In Emacs, make it an obsolete
13777 alias for float-time.
13778 (time-to-number-of-days): In Emacs, use float-time.
13779 * net/newst-backend.el (time-add): Suppress warnings from compat
13780 function.
13781 * time.el (emacs-uptime, emacs-init-time):
13782 * net/rcirc.el (rcirc-keepalive, rcirc-handler-ctcp-KEEPALIVE):
13783 Use float-time rather than time-to-seconds.
13784
13785 * minibuffer.el (completion-initials-expand): Fix typo.
13786
13787 * faces.el (modeline, modeline-inactive, modeline-highlight)
13788 (modeline-buffer-id):
13789 * info.el (info-menu-5): Mark these face aliases as obsolete.
13790
13791 2009-09-01 Nick Roberts <nickrob@snap.net.nz>
13792
13793 * progmodes/gdb-mi.el (gdb-current-context-command): Move the
13794 space ...
13795 (gdb-gud-context-call): ... to here for pre GDB 7.0 when there is
13796 no "--thread" option.
13797 (gdb-stopped): Don't print "Switched to thread" message when it is
13798 unchanged.
13799
13800 2009-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
13801
13802 * minibuffer.el (completion-try-completion)
13803 (completion-all-completions): Remove ill-defined (and
13804 mistakenly installed and luckily never used nor documented)
13805 `completion-styles' property.
13806 (completion-initials-expand, completion-initials-all-completions)
13807 (completion-initials-try-completion): New functions.
13808 (completion-styles-alist): Add doc to each entry.
13809 Add new `initials' entry.
13810
13811 2009-09-01 Nick Roberts <nickrob@snap.net.nz>
13812
13813 * progmodes/gdb-mi.el (gdb-var-create-handler): Remove redundant
13814 MI command -var-evaluate-expression.
13815 (gdb-var-list-children-regexp): Update from regexp-1 in gdb-ui.el
13816 and tweak for case of string child.
13817 (gdb-var-list-children-handler): Update from handler-1 in gdb-ui.el.
13818
13819 2009-09-01 Glenn Morris <rgm@gnu.org>
13820
13821 * add-log.el (change-log-date-face, change-log-name-face)
13822 (change-log-email-face, change-log-file-face, change-log-list-face)
13823 (change-log-conditionals-face, change-log-function-face)
13824 (change-log-acknowledgement-face):
13825 * cus-edit.el (custom-invalid-face, custom-rogue-face)
13826 (custom-modified-face, custom-set-face, custom-changed-face)
13827 (custom-saved-face, custom-button-face, custom-button-pressed-face)
13828 (custom-documentation-face, custom-state-face, custom-comment-face)
13829 (custom-comment-tag-face, custom-variable-tag-face)
13830 (custom-variable-button-face, custom-face-tag-face)
13831 (custom-group-tag-face-1, custom-group-tag-face):
13832 * diff-mode.el (diff-header-face, diff-file-header-face)
13833 (diff-index-face, diff-hunk-header-face, diff-removed-face)
13834 (diff-added-face, diff-changed-face, diff-function-face)
13835 (diff-context-face, diff-nonexistent-face):
13836 * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
13837 * hilit-chg.el (highlight-changes-face, highlight-changes-delete-face):
13838 * info.el (Info-title-1-face, Info-title-2-face, Info-title-3-face)
13839 (Info-title-4-face):
13840 * isearch.el (isearch-lazy-highlight-face):
13841 * log-view.el (log-view-file-face, log-view-message-face):
13842 * paren.el (show-paren-match-face, show-paren-mismatch-face):
13843 * pcvs-info.el (cvs-header-face, cvs-filename-face, cvs-unknown-face)
13844 (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
13845 (cvs-msg-face):
13846 * smerge-mode.el (smerge-mine-face, smerge-other-face)
13847 (smerge-base-face, smerge-markers-face):
13848 * wid-edit.el (widget-documentation-face, widget-button-face)
13849 (widget-field-face, widget-single-line-field-face)
13850 (widget-inactive-face, widget-button-pressed-face):
13851 * woman.el (woman-italic-face, woman-bold-face, woman-unknown-face)
13852 (woman-addition-face):
13853 * eshell/em-ls.el (eshell-ls-directory-face, eshell-ls-symlink-face)
13854 (eshell-ls-executable-face, eshell-ls-readonly-face)
13855 (eshell-ls-unreadable-face, eshell-ls-special-face)
13856 (eshell-ls-missing-face, eshell-ls-archive-face)
13857 (eshell-ls-backup-face, eshell-ls-product-face)
13858 (eshell-ls-clutter-face):
13859 * eshell/em-prompt.el (eshell-prompt-face):
13860 * eshell/esh-test.el (eshell-test-ok-face, eshell-test-failed-face):
13861 * obsolete/old-whitespace.el (whitespace-highlight-face):
13862 * progmodes/antlr-mode.el (antlr-font-lock-default-face)
13863 (antlr-font-lock-keyword-face, antlr-font-lock-syntax-face)
13864 (antlr-font-lock-ruledef-face, antlr-font-lock-tokendef-face)
13865 (antlr-font-lock-ruleref-face, antlr-font-lock-tokenref-face)
13866 (antlr-font-lock-literal-face):
13867 * progmodes/ebrowse.el (ebrowse-tree-mark-face)
13868 (ebrowse-root-class-face, ebrowse-file-name-face)
13869 (ebrowse-default-face, ebrowse-member-attribute-face)
13870 (ebrowse-member-class-face, ebrowse-progress-face):
13871 * progmodes/make-mode.el (makefile-space-face):
13872 * progmodes/sh-script.el (sh-heredoc-face):
13873 * textmodes/flyspell.el (flyspell-incorrect-face)
13874 (flyspell-duplicate-face):
13875 * textmodes/tex-mode.el (tex-math-face, tex-verbatim-face):
13876 * textmodes/texinfo.el (texinfo-heading-face):
13877 Mark face aliases with "-face" suffix as obsolete.
13878
13879 * mail/feedmail.el (file-name-buffer-file-type-alist): Define for
13880 compiler.
13881
13882 * net/eudc-bob.el (eudc-bob-generic-menu, eudc-bob-image-menu)
13883 (eudc-bob-sound-menu): Use defvar rather than defconst, since
13884 easy-menu-define wants to modify these.
13885
13886 * net/net-utils.el (nslookup): Use make-comint rather than comint-run.
13887
13888 * net/browse-url.el (browse-url-file-url):
13889 * term/internal.el (dos-codepage-setup):
13890 Use default-value rather than default-enable-multibyte-characters.
13891
13892 * progmodes/etags.el (etags-goto-tag-location):
13893 * progmodes/flymake.el (flymake-highlight-line)
13894 (flymake-goto-file-and-line, flymake-goto-line):
13895 * progmodes/gdb-mi.el (gdb-mouse-until, gdb-mouse-jump)
13896 (gdb-goto-breakpoint):
13897 * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
13898 * progmodes/python.el (python-find-function)
13899 (python-pdbtrack-track-stack-file):
13900 * progmodes/verilog-mode.el (verilog-surelint-off):
13901 * term/ns-win.el (ns-open-file-select-line):
13902 * textmodes/bibtex.el (bibtex-validate, bibtex-validate-globally):
13903 Use forward-line rather than goto-line.
13904
13905 * textmodes/reftex-cite.el (reftex-offer-bib-menu):
13906 * textmodes/reftex-index.el (reftex-display-index):
13907 * textmodes/reftex-ref.el (reftex-offer-label-menu):
13908 * textmodes/reftex-toc.el (reftex-toc):
13909 Remove unnecessary bindings of default-major-mode (all are followed by
13910 major-mode check and possible mode switch).
13911
13912 2009-08-31 Nick Roberts <nickrob@snap.net.nz>
13913
13914 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
13915 Handle watchpoints (bug#4282).
13916 (def-gdb-thread-buffer-command): Enable thread to be selected by
13917 clicking without selecting threads buffer first.
13918 (gdb-current-context-command): Use selected frame so that "up",
13919 "down" etc work in the GUD buffer.
13920 (gdb-update): Find selected frame before rendering stack buffer.
13921 (gdb-frame-handler): Set gdb-frame-number for stack buffer.
13922
13923 2009-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
13924
13925 * progmodes/sym-comp.el (displayed-completions): Remove.
13926 (symbol-complete): Use minibuffer-complete.
13927
13928 2009-08-31 Glenn Morris <rgm@gnu.org>
13929
13930 * emacs-lisp/byte-run.el (define-obsolete-face-alias): New macro.
13931
13932 * apropos.el (apropos-symbols-internal):
13933 Handle (obsolete) face aliases.
13934
13935 * faces.el (describe-face): Adjust the output format to be more like
13936 describe-variable, and to mention (obsolete) face aliases.
13937 Adjust the whitespace so that help-setup-xref works.
13938
13939 * calendar/calendar.el (calendar-today-face, diary-face, holiday-face):
13940 * calendar/diary-lib.el (diary-button-face):
13941 Mark these face aliases as obsolete.
13942
13943 * calendar/calendar.el (calendar-today): Doc fix.
13944
13945 2009-08-31 Nick Roberts <nickrob@snap.net.nz>
13946
13947 * progmodes/gdb-mi.el (gdb-control-all-threads)
13948 (gdb-control-current-thread): Force tool bar update.
13949 (gdb-non-stop-handler): New function.
13950 (gdb-init-1): Use it to test if non-stop mode is supported.
13951 Remove unused gdbmi buffer type.
13952
13953 2009-08-30 Kevin Rodgers <kevin.d.rodgers@gmail.com>
13954
13955 * progmodes/grep.el (grep-read-files): Strip trailing <N> from
13956 buffer names not visiting a file (e.g. cloned buffers). (Bug#4210)
13957
13958 2009-08-30 Nick Roberts <nickrob@snap.net.nz>
13959
13960 * comint.el (comint-exec-1): Check command is non-null first.
13961 Part of gdb-mi.el change (2009-08-28).
13962
13963 2009-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
13964
13965 * emacs-lisp/lisp.el (lisp-complete-symbol): Use minibuffer-complete.
13966
13967 2009-08-30 Juanma Barranquero <lekktu@gmail.com>
13968
13969 * subr.el (do-after-load-evaluation): Fix last change: use `mapc'
13970 instead of `dolist' to avoid a recursive require when bootstrapping.
13971
13972 2009-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
13973
13974 * emacs-lisp/lisp.el (field-complete): Use minibuffer-complete.
13975
13976 * net/ldap.el (ldap-search-internal): Use with-current-buffer and push.
13977
13978 * net/imap.el (imap-send-command): Simplify.
13979 (imap-wait-for-tag): point-max -> buffer-size.
13980
13981 * net/ange-ftp.el (internal-ange-ftp-mode): Use define-derived-mode.
13982
13983 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't use symbol-value
13984 with constant argument.
13985
13986 * emacs-lisp/debug.el (debugger-setup-buffer): Make it multibyte.
13987
13988 * emacs-lisp/cl.el (cl-macro-environment): Don't define it here.
13989
13990 * emacs-lisp/checkdoc.el (checkdoc-force-history-flag):
13991 Change default, since most of our files don't have a history.
13992 (checkdoc-display-status-buffer): Don't use a hidden buffer to show to
13993 the user.
13994
13995 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
13996 Add comint-run.
13997
13998 * calc/calc.el: Improve commenting convention.
13999 (calc-digit-map, toplevel): Simplify.
14000
14001 * comint.el (comint-insert-input): Be careful to only set point if we
14002 don't delegate to some other command.
14003
14004 * proced.el (proced-signal-list): Make it an alist.
14005 (proced-grammar-alist): Capitalize names.
14006 (proced-send-signal): Use a non-hidden buffer (since it's displayed).
14007 Disable undo manually and make it read-only.
14008 Use completion-annotate-function.
14009
14010 * minibuffer.el (minibuffer-message): If the current buffer is not
14011 a minibuffer, insert the message in the echo area rather than at the
14012 end of the buffer.
14013 (completion-annotate-function): New variable.
14014 (minibuffer-completion-help): Use it.
14015 (completion--embedded-envvar-table): Environment vars are
14016 always case-sensitive.
14017
14018 2009-08-30 Glenn Morris <rgm@gnu.org>
14019
14020 * progmodes/fortran.el (fortran-start-prog-re): New constant, extracted
14021 from fortran-current-defun.
14022 (fortran-beginning-of-subprogram): Be more precise about finding the
14023 start, to avoid an infinite loop in end-of-defun. (Bug#4259)
14024 (fortran-end-of-subprogram): Simplify.
14025 (fortran-current-defun): Use fortran-start-prog-re.
14026
14027 2009-08-29 Juanma Barranquero <lekktu@gmail.com>
14028
14029 * subr.el (do-after-load-evaluation): Simplify.
14030
14031 2009-08-29 Dan Nicolaescu <dann@ics.uci.edu>
14032
14033 * vc.el (vc-print-log-internal): Move RCS/CVS specific code ...
14034
14035 * vc-rcs.el (vc-rcs-print-log-cleanup): ... here. New function.
14036 (vc-rcs-print-log): Use it.
14037
14038 * vc-cvs.el (vc-cvs-print-log): Use vc-rcs-print-log-cleanup.
14039
14040 2009-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
14041
14042 * paths.el (abbrev-file-name): Move to abbrev.el.
14043 * abbrev.el (abbrev-file-name): Move from paths.el.
14044 Obey user-emacs-directory.
14045 * calc/calc.el (calc-settings-file): Don't autoload and instead obey
14046 user-emacs-directory.
14047 * dos-fns.el (dos-reevaluate-defcustoms): Don't reevaluate
14048 abbrev-file-name and calc-settings-file any more.
14049 * startup.el (command-line): Recompute abbrev-file-name and
14050 abbreviated-home-dir.
14051 (normal-no-mouse-startup-screen): Improve the generic code and get rid
14052 of the special code for when C-h bindings haven't been changed.
14053 (display-startup-echo-area-message): Use with-current-buffer.
14054 (command-line-1): Use a list of strings, rather than a list of lists
14055 of strings for longopts.
14056
14057 * files.el (get-free-disk-space): Use / for default-directory.
14058
14059 * textmodes/ispell.el (ispell-accept-output, ispell-command-loop):
14060 Use with-current-buffer.
14061
14062 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p):
14063 Recognize immutable variables like most-positive-fixnum.
14064 (byte-compile-setq-default): Check and warn if trying to assign
14065 to an immutable variable, or a non-variable.
14066
14067 * progmodes/cc-vars.el (c-comment-continuation-stars):
14068 * progmodes/cc-engine.el (c-looking-at-bos):
14069 * progmodes/cc-cmds.el (c-toggle-auto-state)
14070 (c-forward-into-nomenclature, c-backward-into-nomenclature)
14071 (c-comment-line-break-function): Add version of obsolescence.
14072
14073 2009-08-28 Juri Linkov <juri@jurta.org>
14074
14075 * files.el (magic-fallback-mode-alist): Add ZIP magic number
14076 associated with `archive-mode'.
14077
14078 * image.el (image-type-header-regexps): Use only JPEG magic number
14079 to determine JPEG images, and don't use `image-jpeg-p' because
14080 Emacs can display non-JFIF non-Exif JPEG images.
14081
14082 2009-08-28 Juanma Barranquero <lekktu@gmail.com>
14083
14084 * arc-mode.el (archive-mode):
14085 * emacs-lisp/re-builder.el (re-builder-unload-function):
14086 Protect against the default value of `major-mode' being nil.
14087
14088 2009-08-28 Juanma Barranquero <lekktu@gmail.com>
14089
14090 * international/ucs-normalize.el (ucs-normalize-sort, quick-check-list):
14091 Fix typos in docstrings.
14092
14093 * progmodes/js.el (js--macro-decl-re): Doc fix.
14094 (js--plain-method-re, js--split-name): Refloc docstring.
14095 (js--class-styles, js--make-merged-item, js--splice-into-items):
14096 Fix typos in docstrings; reflow docstrings.
14097 (js--maybe-join, js--function-prologue-beginning, js--flush-caches)
14098 (js--variable-decl-matcher, js--inside-pitem-p)
14099 (js--parse-state-at-point, js--get-all-known-symbols)
14100 (js--symbol-history, js-find-symbol, js--js-references)
14101 (js--moz-interactor, js--js-encode-value, js--read-tab):
14102 Fix typos in docstrings.
14103
14104 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
14105
14106 * textmodes/reftex.el (reftex-get-file-buffer-force):
14107 * progmodes/verilog-mode.el (verilog-batch-execute-func):
14108 * emulation/viper.el (viper-go-away, viper-set-hooks):
14109 * emacs-lisp/re-builder.el (re-builder-unload-function):
14110 * emacs-lisp/bytecomp.el (byte-compile-file):
14111 * ses.el (ses-unload-function):
14112 * hexl.el (hexl-find-file):
14113 * files.el (normal-mode):
14114 * ehelp.el (with-electric-help):
14115 * autoinsert.el (auto-insert-alist):
14116 * arc-mode.el (archive-mode):
14117 Use (default-value 'major-mode) instead of default-major-mode.
14118
14119 * textmodes/ispell.el (ispell-check-version, ispell-send-string):
14120 * international/mule.el (load-with-code-conversion):
14121 * emacs-lisp/debug.el (debug):
14122 * ediff-vers.el (ediff-rcs-get-output-buffer):
14123 * dired.el (dired-internal-noselect): Don't let-bind
14124 default-major-mode around code that doesn't use it.
14125 E.g. buffer creation via get-buffer-create doesn't use it.
14126
14127 2009-08-28 Michael Albinus <michael.albinus@gmx.de>
14128
14129 * net/tramp.el (all): Replace "'(lambda" by "(lambda".
14130 (tramp-handle-file-local-copy): Unset `file-name-handler-alist'
14131 when writing the temp file. Otherwise, epa-file gets confused.
14132 (tramp-register-file-name-handlers): Make it a defun. Move also
14133 `epa-file-handler' to the front of `file-name-handler-alist'.
14134
14135 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
14136
14137 * net/tramp.el (tramp-shell-prompt-pattern): Allow a prompt to
14138 start right after a ^M.
14139 (tramp-root-regexp, tramp-completion-file-name-regexp-unified)
14140 (tramp-completion-file-name-regexp-separate)
14141 (tramp-completion-file-name-regexp-url): Use \\` and \\'.
14142 (tramp-handle-file-attributes, tramp-set-file-uid-gid):
14143 Don't modify last-coding-system-used by accident.
14144 (tramp-completion-file-name-handler): Apply the checks here,
14145 instead during registration.
14146 (tramp-register-file-name-handlers): Renamed from
14147 `tramp-register-file-name-handler'. Register both
14148 `tramp-file-name-handler' and `tramp-completion-file-name-handler'.
14149 (tramp-register-completion-file-name-handler): Remove. (Bug#4260)
14150
14151 2009-08-28 Nick Roberts <nickrob@snap.net.nz>
14152
14153 * progmodes/gdb-mi.el (gdb-use-separate-io-buffer):
14154 Remove variable ...
14155 (gdb-init-1, gdb-display-separate-io-buffer)
14156 (gdb-frame-separate-io-buffer, gdb-setup-windows): ... and
14157 references to it.
14158 (gdb-inferior-io-mode): Use make-comint-in-buffer.
14159 (gdb-inferior-filter): Use comint-output-filter to stop
14160 echoing and remove ^M characters.
14161
14162 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
14163
14164 * emulation/viper-init.el (viper-restore-cursor-type):
14165 * emulation/cua-base.el (cua--update-indications):
14166 Replace default-cursor-type with (default-value 'cursor-type).
14167
14168 * mail/sendmail.el (mail-recover-1):
14169 * international/mule-diag.el (describe-current-coding-system-briefly)
14170 (describe-current-coding-system):
14171 * international/mule-cmds.el (select-safe-coding-system)
14172 (select-message-coding-system)
14173 (set-language-environment-coding-systems, set-locale-environment):
14174 * hexl.el (hexl-insert-multibyte-char):
14175 * dos-w32.el (find-buffer-file-type-coding-system):
14176 * simple.el (what-cursor-position):
14177 Replace uses of default-buffer-file-coding-system
14178 with (default-value 'buffer-file-coding-system).
14179
14180 * emacs-lisp/edebug.el (edebug-display, edebug-outside-excursion):
14181 Replace uses of default-cursor-in-non-selected-windows
14182 with (default-value 'cursor-in-non-selected-windows).
14183 Use with-current-buffer.
14184
14185 * mail/feedmail.el: Use CL macros.
14186 (feedmail-run-the-queue, feedmail-send-it-immediately):
14187 * dos-w32.el (find-buffer-file-type): Replace uses of
14188 default-buffer-file-type with (default-value 'buffer-file-type).
14189
14190 2009-08-28 Glenn Morris <rgm@gnu.org>
14191
14192 * calendar/diary-lib.el (diary-list-entries, diary-goto-entry)
14193 (diary-show-all-entries, diary-mark-entries, diary-make-entry):
14194 Use default-value of major-mode rather than default-major-mode.
14195
14196 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
14197
14198 * Makefile.in (update-elcfiles): Report left over elc files.
14199
14200 * mail/mailalias.el (build-mail-aliases): Use with-temp-buffer,
14201 expand-file-name and with-current-buffer.
14202 (mail-get-names, mail-directory): Use with-current-buffer.
14203
14204 * vc.el (vc-read-revision): New function.
14205 (vc-version-diff, vc-merge): Use it.
14206
14207 2009-08-27 Sam Steingold <sds@gnu.org>
14208
14209 * simple.el (kill-do-not-save-duplicates): New user option.
14210 (kill-new): When it is non-nil, and the new string is the same as
14211 the latest kill, set replace to t to avoid duplicates in kill-ring.
14212
14213 2009-08-27 Julian Scheid <julians37@gmail.com> (tiny change)
14214
14215 * net/tramp.el (tramp-handle-process-file): Do not flush all
14216 caches when `process-file-side-effects' is set.
14217 (tramp-handle-vc-registered): Use `tramp-get-file-exists-command'
14218 instead of `tramp-find-file-exists-command'.
14219 Unset `process-file-side-effects'.
14220
14221 2009-08-27 Michael Albinus <michael.albinus@gmx.de>
14222
14223 * net/tramp.el (tramp-methods): New method "rsyncc".
14224 (top): Add completion function for "rsyncc".
14225 (tramp-message-show-message): New defvar.
14226 (tramp-message, tramp-error): Use it.
14227 (tramp-do-copy-or-rename-file-directly): Extend check for direct
14228 remote copying.
14229 (tramp-do-copy-or-rename-file-out-of-band): Handle new
14230 `tramp-methods' entry `copy-env' of "rsyncc".
14231 (tramp-vc-registered-read-file-names): New defconst.
14232 (tramp-vc-registered-file-names): New defvar.
14233 (tramp-handle-vc-registered): Implement optimization strategy.
14234 (tramp-run-real-handler): Add `tramp-vc-file-name-handler'.
14235 (tramp-vc-file-name-handler): New defun.
14236 (tramp-get-ls-command, tramp-get-test-command)
14237 (tramp-get-file-exists-command, tramp-get-remote-ln)
14238 (tramp-get-remote-perl, tramp-get-remote-stat)
14239 (tramp-get-remote-id): Remove superfluous `with-current-buffer'.
14240
14241 * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
14242 (tramp-cache-inhibit-cache): Extend doc string. It allows also
14243 timestamps.
14244 (tramp-get-file-property): Check for timestamps in
14245 `tramp-cache-inhibit-cache'.
14246 (tramp-set-file-property): Write timestamp.
14247
14248 2009-08-27 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
14249
14250 * language/japan-util.el (japanese-symbol-table): Add entries for
14251 cp932-2-byte.
14252
14253 * international/characters.el: Add category `j' to cp932-2-byte.
14254
14255 2009-08-27 Kenichi Handa <handa@m17n.org>
14256
14257 * international/fontset.el (build-default-fontset-data): New macro.
14258 (setup-default-fontset): Use build-default-fontset-data for CJK,
14259 tibetan, ethiopic, and ipa.
14260
14261 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
14262
14263 * cus-start.el (default-major-mode): Customize `major-mode' instead.
14264 (enable-multibyte-characters): Not customizable any more.
14265
14266 * subr.el (default-mode-line-format, default-header-line-format)
14267 (default-line-spacing, default-abbrev-mode, default-ctl-arrow)
14268 (default-direction-reversed, default-truncate-lines)
14269 (default-left-margin, default-tab-width, default-case-fold-search)
14270 (default-left-margin-width, default-right-margin-width)
14271 (default-left-fringe-width, default-right-fringe-width)
14272 (default-fringes-outside-margins, default-scroll-bar-width)
14273 (default-vertical-scroll-bar, default-indicate-empty-lines)
14274 (default-indicate-buffer-boundaries, default-fringe-indicator-alist)
14275 (default-fringe-cursor-alist, default-scroll-up-aggressively)
14276 (default-scroll-down-aggressively, default-fill-column)
14277 (default-cursor-type, default-buffer-file-type)
14278 (default-cursor-in-non-selected-windows)
14279 (default-buffer-file-coding-system, default-major-mode)
14280 (default-enable-multibyte-characters): Mark as obsolete.
14281
14282 2009-08-27 Dan Nicolaescu <dann@ics.uci.edu>
14283
14284 * vc-dir.el (vc-dir-update): Remove debug helper.
14285
14286 * vc-cvs.el (vc-cvs-update-changelog): Fix typo.
14287
14288 2009-08-26 Sam Steingold <sds@gnu.org>
14289
14290 * simple.el (save-interprogram-paste-before-kill): New user option.
14291 (kill-new): When `save-interprogram-paste-before-kill' is non-nil,
14292 save the interprogram-paste into kill-ring before overriding it
14293 with the Emacs kill.
14294
14295 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
14296
14297 * vc.el (vc-trunk-p): Rename to vc-rcs-trunk-p and move to vc-rcs.el.
14298 (vc-minor-part): Rename to vc-rcs-minor-part and move to vc-rcs.el.
14299 (vc-default-previous-revision): Rename to vc-rcs-previous-revision
14300 and move to vc-rcs.el.
14301 (vc-default-next-revision): Rename to vc-rcs-next-revision and
14302 move to vc-rcs.el.
14303 (vc-cvs-update-changelog): Move to vc-cvs.el, use vc-call-backend.
14304 (vc-rcs-update-changelog): Remove.
14305 (vc-update-changelog-rcs2log): Rename to vc-rcs-update-changelog
14306 and move to vc-rcs.el.
14307
14308 * vc-rcs.el (vc-rcs-latest-on-branch-p, vc-rcs-checkin)
14309 (vc-rcs-checkout, vc-rcs-rollback): Adjust for the vc-rcs-trunk-p
14310 renaming.
14311 (vc-rcs-trunk-p, vc-rcs-minor-part, vc-rcs-previous-revision)
14312 (vc-rcs-next-revision, vc-rcs-update-changelog): Move here from
14313 vc.el, renamed to be RCS specific.
14314
14315 * vc-cvs.el (vc-cvs-previous-revision, vc-cvs-next-revision):
14316 New functions.
14317 (vc-cvs-update-changelog): Move here from vc.el.
14318
14319 * vc-sccs.el (vc-sccs-previous-revision, vc-sccs-next-revision):
14320 New functions.
14321
14322 2009-08-26 Stefan Monnier <monnier@iro.umontreal.ca>
14323
14324 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix up last change.
14325
14326 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
14327
14328 * vc-git.el (vc-git-register): Use "git add" for directories.
14329 (vc-git-stash, vc-git-stash-show): New functions.
14330 (vc-git-extra-menu-map): Bind them.
14331
14332 * vc-dir.el (vc-dir-node-directory, vc-dir-update): Get the parent
14333 directory correctly in case the item is a directory itself.
14334
14335 * vc.el: Document the desired behavior for reverted files in the
14336 `added' state.
14337 (vc-default-prettify-state-info): Remove function, unused.
14338
14339 * vc-bzr.el (vc-bzr-prettify-state-info): Remove function, unused.
14340
14341 2009-08-26 Glenn Morris <rgm@gnu.org>
14342
14343 * bindings.el (standard-mode-line-format): Reposition dashes in
14344 which-func entry. (Bug#4217)
14345
14346 * files.el (enable-local-variables, enable-local-eval)
14347 (safe-local-variable-values, safe-local-eval-forms): Mark as risky in
14348 the defcustoms.
14349 (auto-mode-alist, ignored-local-variables)
14350 (save-some-buffers-action-alist): Move risky declarations to the
14351 definitions.
14352 (dabbrev-case-fold-search, dabbrev-case-replace, display-time-string)
14353 (font-lock-defaults, format-alist, imenu--index-alist)
14354 (imenu-generic-expression, input-method-alist, minor-mode-alist)
14355 (mode-line-buffer-identification, mode-line-client, mode-line-modes)
14356 (mode-line-modified, mode-line-mule-info, mode-line-position)
14357 (mode-line-process, mode-line-remote, outline-level)
14358 (parse-time-rules, rmail-output-file-alist)
14359 (special-display-buffer-names, vc-mode):
14360 Move risky declarations to the relevant files.
14361 * bindings.el (mode-line-client, mode-line-mule-info, mode-line-remote)
14362 (mode-line-modified, mode-line-process, mode-line-position)
14363 (mode-line-modes, mode-line-buffer-identification, minor-mode-alist)
14364 * font-core.el (font-lock-defaults):
14365 * format.el (format-alist):
14366 * vc-hooks.el (vc-mode):
14367 * window.el (special-display-buffer-names):
14368 * international/mule-cmds.el (input-method-alist):
14369 Define riskiness here (dumped file) rather than in files.el.
14370 * dabbrev.el (dabbrev-case-fold-search, dabbrev-case-replace):
14371 * imenu.el (imenu-generic-expression, imenu--index-alist):
14372 * outline.el (outline-level):
14373 * time.el (display-time-string):
14374 * calendar/parse-time.el (parse-time-rules):
14375 * mail/rmailout.el (rmail-output-file-alist):
14376 Autoload riskiness here, rather than placing in files.el.
14377
14378 2009-08-26 Andreas Schwab <schwab@linux-m68k.org>
14379
14380 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Signal overflow.
14381
14382 2009-08-25 Michael Albinus <michael.albinus@gmx.de>
14383
14384 * simple.el (process-file-side-effects): New defvar.
14385
14386 * dired-aux.el (dired-show-file-type):
14387 * vc.el (vc-diff-internal):
14388 * vc-arch.el (vc-arch-diff):
14389 * vc-bzr.el (vc-bzr-sha1, vc-bzr-revision-completion-table):
14390 * vc-cvs.el (vc-cvs-state, vc-cvs-diff, vc-cvs-revision-table):
14391 * vc-git.el (vc-git-registered, vc-git-working-revision)
14392 (vc-git-find-revision, vc-git-diff, vc-git-revision-table)
14393 (vc-git--empty-db-p):
14394 * vc-hooks.el (vc-user-login-name):
14395 * vc-svn.el (vc-svn-registered, vc-svn-state)
14396 (vc-svn-dir-extra-headers, vc-svn-find-revision):
14397 * progmodes/grep.el (grep-probe): Let-bind
14398 `process-file-side-effects' with nil.
14399
14400 * net/dbus.el (dbus-ping): Add optional parameter TIMEOUT.
14401
14402 * net/tramp-gvfs.el (top): Use timeout of 100 msec pinging GVFS
14403 daemon. Replace ping by checking for running service for bluez
14404 and zeroconf. (Bug#4239)
14405
14406 2009-08-25 Kevin Ryde <user42@zip.com.au>
14407
14408 * net/dig.el (dig): Add autoload cookie.
14409
14410 2009-08-25 Glenn Morris <rgm@gnu.org>
14411
14412 * emacs-lisp/bytecomp.el (byte-compile-eval): Fix test for cl in
14413 load-history for absolute file-names.
14414 (byte-compile-file-form-require): Warn about use of the cl package.
14415
14416 * format.el (format-alist): Doc fix.
14417
14418 * play/bubbles.el (top-level): Don't require cl at run-time.
14419
14420 * progmodes/verilog-mode.el (top-level): Don't require lucid (and hence
14421 run-time cl).
14422
14423 2009-08-24 Dmitry Dzhus <dima@sphinx.net.ru>
14424
14425 * progmodes/gdb-mi.el (gdb-mapcar*): Replacement for `mapcar*'
14426 from cl package.
14427 (gdb-table-add-row, gdb-table-string): Use `gdb-mapcar*'.
14428
14429 2009-08-24 Jay Belanger <jay.p.belanger@gmail.com>
14430
14431 * calc/calc-alg.el (math-trig-rewrite)
14432 (math-hyperbolic-trig-rewrite): New functions.
14433 (calc-simplify): Simplify trig functions when asked.
14434
14435 2009-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
14436
14437 * diff-mode.el (diff-find-source-location): Avoid goto-line.
14438
14439 2009-08-24 Kenichi Handa <handa@m17n.org>
14440
14441 * language/ind-util.el (mapthread): Delete it.
14442 (combinatorial): New function.
14443 (indian--puthash-cv): Use combinatorial instead of mapthread.
14444
14445 2009-08-22 Kevin Ryde <user42@zip.com.au>
14446
14447 * emacs-lisp/checkdoc.el (checkdoc-force-history-flag)
14448 (checkdoc-arguments-in-order-flag): Add safe-local-variable booleanp.
14449 (checkdoc-symbol-words): Add safe-local-variable for list of strings.
14450 Clarify docstring that the value is strings not symbols.
14451 (checkdoc-list-of-strings-p): New function.
14452
14453 2009-08-22 Glenn Morris <rgm@gnu.org>
14454
14455 * files.el (auto-mode-alist):
14456 * hippie-exp.el (he-concat-directory-file-name):
14457 * lpr.el (lpr-windows-system, printer-name):
14458 * ls-lisp.el (ls-lisp-emulation, ls-lisp-use-insert-directory-program):
14459 * ps-print.el (ps-windows-system):
14460 * startup.el (command-line):
14461 * emulation/viper-ex.el (viper-glob-function):
14462 * international/mule-cmds.el (set-language-environment-coding-systems):
14463 * net/ange-ftp.el (ange-ftp-write-region):
14464 * obsolete/fast-lock.el (fast-lock-cache-name):
14465 Remove code for defunct system-types emx, macos, mswindows, next-mach,
14466 unisoft-unix, vax-vms, win32, w32.
14467
14468 * calendar/diary-lib.el (diary-mark-entries-1): Only mark all days of a
14469 given name if the pattern is not more specific.
14470
14471 * calendar/lunar.el (lunar-phase-names): New option.
14472 (lunar-phase): Doc fix.
14473 (lunar-cycles-per-year): New constant.
14474 (lunar-index): New function.
14475 (lunar-phase-list, diary-lunar-phases): Use lunar-index.
14476 (lunar-phase-name): Use lunar-phase-names.
14477 (calendar-lunar-phases): Use format.
14478 (lunar-new-moon-on-or-after): Use lunar-cycles-per-year.
14479
14480 * progmodes/cperl-mode.el (cperl-imenu-name-and-position):
14481 Copy imenu-example--name-and-position function here for own use.
14482 (cperl-xsub-scan): Use cperl-imenu-name-and-position.
14483
14484 * bs.el (bs--redisplay):
14485 * cus-edit.el (custom-redraw):
14486 * ibuffer.el (ibuffer-bury-buffer):
14487 * server.el (server-goto-line-column):
14488 * startup.el (command-line-1):
14489 * strokes.el (strokes-xpm-for-stroke):
14490 * term.el (term-display-buffer-line):
14491 * view.el (View-goto-line):
14492 * calc/calc.el (calc-do, calc-trail-buffer):
14493 * play/gamegrid.el (gamegrid-add-score-insecure):
14494 * progmodes/ada-mode.el (ada-compile-goto-error):
14495 * progmodes/ada-xref.el (ada-xref-find-in-modified-ali):
14496 (ebrowse-select-1st-to-9nth):
14497 * progmodes/cperl-mode.el (cperl-time-fontification):
14498 * progmodes/ebrowse.el (ebrowse-toggle-file-name-display)
14499 * progmodes/gud.el (gud-display-line):
14500 (idlwave-shell-display-line):
14501 * progmodes/idlw-shell.el (idlwave-shell-goto-frame)
14502 * progmodes/make-mode.el (makefile-browser-toggle):
14503 (vhdl-speedbar-port-copy, vhdl-compose-components-package):
14504 * progmodes/vhdl-mode.el (vhdl-speedbar-find-file)
14505 * textmodes/picture.el (picture-draw-rectangle):
14506 * textmodes/reftex-index.el (reftex-index-goto-letter):
14507 (reftex-select-jump-to-previous):
14508 * textmodes/reftex-sel.el (reftex-find-start-point)
14509 * textmodes/reftex-toc.el (reftex-toc, reftex-toc-restore-region):
14510 (rst-straighten-deco-spacing, rst-section-tree, rst-toc):
14511 * textmodes/rst.el (rst-promote-region, rst-straighten-decorations)
14512 * textmodes/tex-mode.el (tex-compilation-parse-errors):
14513 * textmodes/two-column.el (2C-associated-buffer):
14514 Use forward-line rather than goto-line.
14515
14516 * emulation/vi.el (vi-goto-line): Don't warn about non-interactive
14517 goto-line.
14518
14519 * international/ucs-normalize.el (nfd, decomposition-translation-alist)
14520 (decomposition-char-recursively, alist-list-to-vector, quick-check-list)
14521 (quick-check-list-to-regexp): Declare.
14522
14523 * progmodes/make-mode.el (makefile-browser-insert-selection):
14524 Use goto-char rather than goto-line.
14525
14526 * progmodes/prolog.el (compilation-error-regexp-alist)
14527 (compilation-forget-errors): Declare.
14528
14529 2009-08-22 Juri Linkov <juri@jurta.org>
14530
14531 * progmodes/grep.el (lgrep, rgrep): At the beginning
14532 set `dir' to `default-directory' unless `dir' is a non-nil
14533 readable directory. (Bug#4052)
14534 (lgrep, rgrep): Change a weird way to report an error
14535 from using `read-string' to using `error'.
14536 Instead of using interactive arguments in the function body,
14537 add new argument `confirm'.
14538
14539 2009-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
14540
14541 * textmodes/remember.el (remember-buffer):
14542 * progmodes/cperl-mode.el (cperl-vc-header-alist):
14543 * calendar/icalendar.el (icalendar-convert-diary-to-ical)
14544 (icalendar-extract-ical-from-buffer):
14545 * net/newst-treeview.el (newsticker-groups-filename):
14546 * net/newst-backend.el (newsticker-cache-filename):
14547 * speedbar.el (speedbar-update-speed, speedbar-navigating-speed)
14548 (speedbar-ignored-path-expressions, speedbar-ignored-path-regexp)
14549 (speedbar-add-ignored-path-regexp, speedbar-line-path)
14550 (speedbar-buffers-line-path, speedbar-path-line)
14551 (speedbar-buffers-line-path):
14552 * epg.el (epg-passphrase-callback-function, epg-start-sign-keys)
14553 (epg-sign-keys):
14554 * epa.el (epa-display-verify-result):
14555 * progmodes/pascal.el (pascal-outline): Add version of obsolescence.
14556
14557 2009-08-21 Glenn Morris <rgm@gnu.org>
14558
14559 * progmodes/js.el (inferior-moz-process): Fix declaration.
14560
14561 * imenu.el (imenu-example--name-and-position): Fix obsolescence message.
14562
14563 * obsolete/rnewspost.el (news-mail-reply):
14564 Use goto-char rather than goto-line.
14565
14566 * term/ns-win.el (ns-open-file-select-line):
14567 Use line-beginning-position rather than goto-line.
14568
14569 * apropos.el (apropos-command):
14570 * ehelp.el (electric-helpify):
14571 * printing.el (pr-show-setup):
14572 * strokes.el (strokes-help):
14573 * tutorial.el (tutorial--describe-nonstandard-key)
14574 (tutorial--detailed-help):
14575 * woman.el (woman-mini-help, woman-display-extended-fonts):
14576 * calc/calc-help.el (calc-describe-key):
14577 * emulation/edt.el (edt-electric-helpify):
14578 * international/mule-diag.el (mule-diag):
14579 * play/yow.el (apropos-zippy):
14580 * progmodes/python.el (python-describe-symbol):
14581 * progmodes/vhdl-mode.el (vhdl-doc-variable, vhdl-doc-mode):
14582 * textmodes/table.el (*table--cell-describe-mode)
14583 (*table--cell-describe-bindings):
14584 Use help-print-return-message rather than the now obsolete alias.
14585
14586 * calendar/cal-move.el (calendar-cursor-to-nearest-date)
14587 (calendar-cursor-to-visible-date):
14588 * play/5x5.el (5x5-position-cursor):
14589 * play/decipher.el (decipher):
14590 * play/gomoku.el (gomoku-goto-xy):
14591 * play/landmark.el (lm-goto-xy):
14592 * play/mpuz.el (mpuz-paint-errors, mpuz-paint-statistics)
14593 (mpuz-paint-digit):
14594 Use forward-line, not goto-line.
14595
14596 * mail/rmail.el (rmail-obsolete): Delete custom group.
14597 (rmail-pop-password, rmail-pop-password-required): Make into aliases.
14598 (rmail-remote-password, rmail-remote-password-required):
14599 Remove unneeded :set-after and :set properties.
14600
14601 2009-08-21 Michael Albinus <michael.albinus@gmx.de>
14602
14603 * net/dbus.el (top): Initialize only when `dbusbind' is loaded.
14604
14605 2009-08-21 Dan Nicolaescu <dann@ics.uci.edu>
14606
14607 * loadup.el: Remove leftover macos code.
14608
14609 * vc-git.el (vc-git-annotate-command): Run asynchronously.
14610 Explicitly pass the date format to git blame so that user local
14611 so that the output format can be parsed.
14612
14613 2009-08-20 Michael Albinus <michael.albinus@gmx.de>
14614
14615 * net/dbus.el (top): Don't check for (getenv
14616 "DBUS_SESSION_BUS_ADDRESS"). It's done in dbusbind.c now.
14617
14618 2009-08-19 Magnus Henoch <magnus.henoch@gmail.com>
14619
14620 * log-edit.el (log-edit-strip-single-file-name): New var.
14621 (log-edit-insert-changelog): Use it. Bug#3571
14622
14623 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
14624
14625 * subr.el (read-passwd): Use read-key so keypad keys work as well.
14626 Bug#3287
14627
14628 * help.el (help-print-return-message): Rename from
14629 print-help-return-message.
14630
14631 * log-view.el (log-view-mode-map): Remove `q' binding, and unreliable
14632 cvs-mode-map parent hack.
14633 (log-view-mode): Derive from special-mode.
14634
14635 * linum.el (linum-mode): window-size-change-functions is redundant.
14636 Adapt to new window-configuration-change-hook behavior.
14637 (linum-after-size, linum-after-config): Remove.
14638
14639 * imenu.el (imenu-example--name-and-position)
14640 (imenu-example--lisp-extract-index-name)
14641 (imenu-example--create-lisp-index, imenu-example--create-c-index):
14642 Mark as obsolete.
14643
14644 * progmodes/prolog.el (inferior-prolog-error-regexp-alist): New var.
14645 (inferior-prolog-mode): Use it.
14646 (inferior-prolog-load-file): Reset list of errors.
14647
14648 2009-08-19 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
14649
14650 * language/tibetan.el ("Tibetan"): Fix sample-text entry.
14651
14652 * language/tai-viet.el ("TaiViet"): Fix sample-text entry.
14653
14654 2009-08-19 Michael Albinus <michael.albinus@gmx.de>
14655
14656 * net/dbus.el (top): Apply `dbus-init-bus' only if the session bus
14657 is running already.
14658
14659 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
14660
14661 * subr.el (listify-key-sequence-1): Use normal syntax since those
14662 integers are nowadays always represented by the same (positive) number
14663 on all platforms.
14664 (read-key-empty-map): New const.
14665 (read-key-delay): New var.
14666 (read-key): New function.
14667 (force-mode-line-update): Use with-current-buffer.
14668 (locate-user-emacs-file): Don't forget to abbreviate the file name.
14669 (start-process-shell-command, start-file-process-shell-command):
14670 Discourage the use of command-args.
14671
14672 2009-08-19 Glenn Morris <rgm@gnu.org>
14673
14674 * emacs-lisp/authors.el (authors-fixed-entries): Remove cvtmail.
14675
14676 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
14677
14678 * simple.el (choose-completion-string): Don't rely on
14679 minibuffer-completing-file-name and ad-hoc checks to decide whether
14680 to continue completion or not.
14681
14682 * minibuffer.el (minibuffer-hide-completions): New function.
14683 (completion--do-completion): Use it.
14684 (completions-annotations): New face.
14685 (completion--insert-strings): Use it.
14686 (completion-pcm--delim-wild-regex): Add docstring.
14687 (completion-pcm--string->pattern): Add support for 0-width delimiters
14688 in completion-pcm--delim-wild-regex.
14689
14690 2009-08-18 Stefan Monnier <monnier@iro.umontreal.ca>
14691
14692 * international/ucs-normalize.el (ucs-normalize-hfs-nfd-post-read-conversion):
14693 Remove unused var `buffer-modified-p'.
14694
14695 * minibuffer.el (completion--do-completion): Move point for the #b001
14696 case as well (bug#4176).
14697 (minibuffer-complete, minibuffer-complete-word): Don't move point.
14698
14699 2009-08-18 Michael Albinus <michael.albinus@gmx.de>
14700
14701 * net/dbus.el (dbus-init-bus): Declare. Apply it for the :system
14702 and :session buses.
14703
14704 2009-08-18 Kenichi Handa <handa@m17n.org>
14705
14706 * international/ucs-normalize.el (ucs-normalize-version):
14707 Change to 1.1.
14708 (ucs-normalize-hfs-nfd-pre-write-conversion): New function.
14709 (utf-8-hfs): Make it perform normalization on encoding too.
14710
14711 * textmodes/paragraphs.el: Change to utf-8. Adjust coding cookie.
14712 (sentence-end-without-space): Delete duplicated chars.
14713 (sentence-end-base): Likewise.
14714
14715 * textmodes/sgml-mode.el: Change to utf-8. Adjust coding cookie.
14716 (html-mode): Delete duplicated chars from sentence-end-base.
14717
14718 * textmodes/texinfo.el: Change to utf-8. Adjust coding cookie.
14719 (texinfo-mode): Delete duplicated chars from sentence-end-base.
14720
14721 2009-08-17 Chong Yidong <cyd@stupidchicken.com>
14722
14723 * files.el (hack-one-local-variable): If the mode function is for
14724 a minor mode, pass it an argument (Bug#4148).
14725
14726 2009-08-17 Michael Albinus <michael.albinus@gmx.de>
14727
14728 * net/tramp.el (tramp-register-completion-file-name-handler):
14729 Check also for (member 'partial-completion completion-styles).
14730
14731 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
14732
14733 * progmodes/cperl-mode.el (cperl-electric-paren): Don't expand
14734 abbrev (Bug#3943).
14735
14736 2009-08-16 Ilya Zakharevich <ilyaz@cpan.org>
14737
14738 * progmodes/cperl-mode.el: Merge upstream 6.2.
14739 (cperl-mode-syntax-table): Modify syntax entry for ["'`].
14740 (cperl-forward-re): Check cperl-brace-recursing.
14741 (cperl-highlight-charclass): New function.
14742 (cperl-find-pods-heres): Use it.
14743 (cperl-fill-paragraph): Synch to save-excursion placement used upstream.
14744 (cperl-beautify-regexp-piece): Fix column calculation.
14745 (cperl-make-regexp-x): Handle case where point is between "q" and "rs".
14746 (cperl-beautify-level): Don't process entire regexp.
14747 (cperl-build-manpage, cperl-perldoc): Bind Man-switches before
14748 calling man.
14749 (cperl-tips-faces, cperl-mode, cperl-electric-backspace): Doc fix.
14750 (cperl-init-faces): Build a list in the normal way.
14751
14752 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
14753
14754 * calendar/parse-time.el (parse-time-string-chars): Save match
14755 data.
14756
14757 2009-08-16 Stefan Monnier <monnier@iro.umontreal.ca>
14758
14759 * progmodes/sql.el (sql-product-alist): Add :name tag to entries.
14760 (sql-product): Use it.
14761 (sql-mode-menu): Auto-generate the menu based on sql-product-alist.
14762 (sql-set-product): Add completion.
14763 (sql-highlight-oracle-keywords, sql-highlight-postgres-keywords)
14764 (sql-highlight-linter-keywords, sql-highlight-ms-keywords)
14765 (sql-highlight-ansi-keywords, sql-highlight-sybase-keywords)
14766 (sql-highlight-informix-keywords, sql-highlight-interbase-keywords)
14767 (sql-highlight-ingres-keywords, sql-highlight-solid-keywords)
14768 (sql-highlight-mysql-keywords, sql-highlight-sqlite-keywords)
14769 (sql-highlight-db2-keywords): Remove.
14770 (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
14771 (sql-highlight-product): Use derived-mode-p.
14772 (sql-set-sqli-buffer): Use with-current-buffer.
14773 (sql-connect-informix, sql-connect-ingres, sql-connect-oracle):
14774 Simplify.
14775
14776 * emacs-lisp/lisp-mode.el (lisp-indent-region): Remove unused function.
14777
14778 * term.el: Fix commenting convention, turn comments into docstrings.
14779
14780 2009-08-16 E. Jay Berkenbilt <ejb@ql.org> (tiny change)
14781
14782 * whitespace.el (whitespace-style): Doc fix (Bug#3661).
14783
14784 2009-08-16 Jan Seeger <jan.seeger@thenybble.de> (tiny change)
14785
14786 * calendar/parse-time.el (parse-time-string-chars): Compute using
14787 character classes, to handle non-ascii characters (Bug#3190).
14788
14789 2009-08-16 Chong Yidong <cyd@stupidchicken.com>
14790
14791 * progmodes/sh-script.el (sh-maybe-here-document): Avoid inserting
14792 another heredoc if the user adds another < (Bug#3226).
14793
14794 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
14795 Don't initialize based on window-system (Bug#4124).
14796
14797 * facemenu.el (facemenu-read-color): Use a completion function
14798 that accepts any defined color, such as RGB triplets (Bug#3677).
14799
14800 * files.el (get-free-disk-space): Change fallback default
14801 directory to /. Expand DIR argument before switching to fallback.
14802 Suggested by Kevin Ryde (Bug#2631, Bug#3911).
14803
14804 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
14805
14806 * files.el (load-library): Doc fix.
14807
14808 2009-08-15 Michael Kifer <kifer@cs.stonybrook.edu>
14809
14810 * emulation/viper-cmd.el (viper-insert-isearch-string): New function.
14811 (viper-if-string): Redefine C-s in the minibuffer to insert the last
14812 incremental search string.
14813
14814 * ediff-init.el (ediff-coding-system): Use escape-quoted in case of
14815 XEmacs.
14816
14817 * ediff-merg.el (ediff-merge-region-is-non-clash-to-skip)
14818 (ediff-merge-region-is-non-clash)
14819 (ediff-skip-merge-region-if-changed-from-default-p): Use defun.
14820 Also check if the job is really a merge job.
14821
14822 * ediff.el (ediff-current-file): New function.
14823
14824 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
14825
14826 * progmodes/js.el: Edit docstrings throughout to follow Emacs
14827 conventions.
14828 (js-insert-and-indent): Delete function.
14829 (js-mode-map): Don't bind keys to js-insert-and-indent.
14830 (js-beginning-of-defun): Rename from js--beginning-of-defun.
14831 (js-end-of-defun): Rename from js--end-of-defun.
14832 (js-auto-indent-flag): Delete variable.
14833
14834 2009-08-14 Chong Yidong <cyd@stupidchicken.com>
14835
14836 * progmodes/js.el: Remove proclaim statement.
14837 Defvar which-func-imenu-joiner-function to silence compiler.
14838
14839 * files.el (auto-mode-alist): Use js-mode for .js files.
14840
14841 * progmodes/js2-mode.el: Remove file.
14842
14843 * Makefile.in (ELCFILES): Add js.el, and remove js2-mode.el.
14844
14845 * speedbar.el (speedbar-supported-extension-expressions): Add .js.
14846
14847 * progmodes/hideshow.el (hs-special-modes-alist): Add js-mode entry.
14848
14849 2009-08-14 Daniel Colascione <dan.colascione@gmail.com>
14850 Karl Landstrom <karl.landstrom@brgeight.se>
14851
14852 * progmodes/js.el: New file.
14853
14854 2009-08-14 Mark A. Hershberger <mah@everybody.org>
14855
14856 * timezone.el (timezone-parse-date): Add ability to understand ISO
14857 basic format (minimal separators) dates in addition to the
14858 already-supported extended format dates.
14859
14860 2009-08-14 Eli Zaretskii <eliz@gnu.org>
14861
14862 * international/ucs-normalize.el: Add a `coding' file variable.
14863
14864 * Makefile.in (ELCFILES): Add international/ucs-normalize.elc.
14865
14866 2009-08-14 Sam Steingold <sds@gnu.org>
14867
14868 * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
14869
14870 2009-08-13 Chong Yidong <cyd@stupidchicken.com>
14871
14872 * faces.el (help-argument-name): Define it here instead of
14873 help-fns.el, because in daemon mode help-fns.el may be loaded when
14874 faces are still uninitialized (Bug#1078).
14875
14876 * help-fns.el (help-argument-name): Move defface to faces.el.
14877
14878 2009-08-13 Nick Roberts <nickrob@snap.net.nz>
14879
14880 * progmodes/gdb-mi.el (gdb-inferior-io-mode): Use start-process to
14881 create buffer with a pty but no process so that GDB can make the
14882 inferior the controlling process.
14883
14884 2009-08-13 Taichi Kawabata <kawabata.taichi@gmail.com>
14885
14886 * international/ucs-normalize.el: New file.
14887
14888 2009-08-13 Richard Stallman <rms@gnu.org>
14889
14890 * mail/rmail.el (rmail-get-attr-names):
14891 Accept an attribute header that is too short.
14892
14893 * mail/rmail.el (rmail-forget-messages):
14894 Ignore nil elt in rmail-message-vector. Use dotimes.
14895
14896 * progmodes/compile.el (compilation-goto-locus):
14897 Use next-error-move-function.
14898
14899 * simple.el (next-error-move-function): New variable.
14900
14901 2009-08-12 Juri Linkov <juri@jurta.org>
14902
14903 * progmodes/grep.el (lgrep): Ensure that `default-directory' is
14904 always non-nil. (Bug#4052)
14905
14906 * replace.el (read-regexp): Return empty string when
14907 `default-value' is nil.
14908 (keep-lines-read-args): Don't use empty string as the
14909 default value for `read-regexp'. (Bug#2495)
14910
14911 2009-08-12 Juri Linkov <juri@jurta.org>
14912
14913 * international/mule-cmds.el (ucs-insert): Change arguments
14914 from `arg' to `character', `count', `inherit' to be the same
14915 as in `insert-char'. Doc fix. (Bug#4039)
14916
14917 * international/mule-conf.el (utf-16be-with-signature): Doc fix.
14918
14919 2009-08-12 Juri Linkov <juri@jurta.org>
14920
14921 * files-x.el: New file.
14922
14923 * files.el: Move code that deals with adding/deleting
14924 file/directory-local variables to files-x.el.
14925
14926 * Makefile.in (ELCFILES): Add files-x.elc.
14927
14928 2009-08-11 Dmitry Dzhus <dima@sphinx.net.ru>
14929
14930 * progmodes/gdb-mi.el (gdb-line-posns): New helper which helps not
14931 to use `goto-line'.
14932 (gdb-place-breakpoints, gdb-get-location): Rewritten without
14933 `goto-line'.
14934 (gdb-invalidate-disassembly): Do not refresh upon receiving
14935 'update signal. Instead, update all disassembly buffers only after
14936 threads list.
14937 (gdb): Send -target-detach when buffer is killed (Bug#3794).
14938 (gdb-starting): Moved -data-list-register-names...
14939 (gdb-stopped): ...here so it's sent when first thread stops.
14940 (gdb-registers-handler-custom): Do nothing if register names are
14941 unknown yet.
14942
14943 * progmodes/gud.el (gud-stop-subjob): Rewritten without macros
14944 from `gdb-mi.el' to avoid extra tangling.
14945
14946 * progmodes/gdb-mi.el (gdb-gud-context-call): Reverting previous
14947 change which breaks `gud-def' definitions used in `gdb'.
14948 (gdb-update-gud-running): No extra fuss for updating frame number.
14949
14950 2009-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
14951
14952 * international/mule-cmds.el (mule-keymap, mule-menu-keymap)
14953 (describe-language-environment-map, setup-language-environment-map)
14954 (set-coding-system-map): Move initialization into declaration.
14955 (set-language-info-alist): Last arg to define-key-after can be skipped.
14956
14957 * international/quail.el (quail-completion-1): Simplify.
14958 (quail-define-rules): Use slightly more compact code.
14959 (quail-insert-decode-map): Propertize keys, compact columns.
14960
14961 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
14962 Add goto-line.
14963
14964 2009-08-10 Miles Bader <miles@gnu.org>
14965
14966 * progmodes/js2-mode.el (js2-warning, js2-error, js2-jsdoc-tag)
14967 (js2-jsdoc-type, js2-jsdoc-value, js2-function-param)
14968 (js2-instance-member, js2-private-member, js2-private-function-call)
14969 (js2-jsdoc-html-tag-name, js2-jsdoc-html-tag-delimiter)
14970 (js2-magic-paren, js2-external-variable):
14971 Remove "-face" suffix from face names.
14972 (js2-jsdoc-highlight-helper, js2-highlight-jsdoc)
14973 (js2-highlight-undeclared-vars, js2-peek-token)
14974 (js2-parse-function-params, js2-mode-show-errors)
14975 (js2-mode-show-warnings, js2-make-magic-delimiter)
14976 (js2-mode-highlight-magic-parens): Update to use new face names.
14977
14978 2009-08-09 Michael Albinus <michael.albinus@gmx.de>
14979
14980 * net/tramp.el (tramp-get-ls-command-with-dired): New defun.
14981 (tramp-handle-insert-directory): Handle "--dired". (Bug#4075)
14982
14983 2009-08-09 Chong Yidong <cyd@stupidchicken.com>
14984
14985 * subr.el: Provide hashtable-print-readable.
14986
14987 * progmodes/hideshow.el (hs-special-modes-alist): Don't use
14988 hs-c-like-adjust-block-beginning.
14989 (hs-hide-block-at-point): Stop hiding at the beginning of
14990 hs-block-end-regexp (Bug#700).
14991
14992 2009-08-09 Dmitry Dzhus <dima@sphinx.net.ru>
14993
14994 * progmodes/gdb-mi.el (gdb-gud-context-call): Does not need to be
14995 a macro.
14996 (gdb-registers-handler-custom): Do not fail when register names
14997 are unavailable.
14998
14999 2009-08-08 Dmitry Dzhus <dima@sphinx.net.ru>
15000
15001 * progmodes/gdb-mi.el (gdb-control-all-threads)
15002 (gdb-control-current-thread): Interactive setters for
15003 `gdb-gud-control-all-threads' to use in menu.
15004 (gdb-show-run-p): Show «Go» when process is not active.
15005 (gud-tool-bar-map): Add non-stop/A,T indicator. Uses
15006 gud/thread.xpm and gud/all.xpm.
15007
15008 2009-08-08 Yoni Rabkin <yoni@rabkins.net>
15009
15010 * net/net-utils.el (net-utils-font-lock-keywords): New var.
15011 (nslookup-font-lock-keywords): Make it a variable.
15012 (net-utils-mode): New mode for viewing diagnostic network output.
15013 (net-utils-remove-ctrl-m-filter): Set inhibit-read-only.
15014 (net-utils-run-simple): New function.
15015 (ifconfig, iwconfig, netstat, arp, route): Use it.
15016
15017 2009-08-08 Dmitry Dzhus <dima@sphinx.net.ru>
15018
15019 * progmodes/gdb-mi.el (gdb-read-memory-custom)
15020 (gdb-memory-set-address, def-gdb-set-positive-number)
15021 (def-gdb-memory-format, def-gdb-memory-unit): Update memory buffer
15022 after changing settings.
15023 (gdb-invalidate-disassembly): Update when first shown.
15024 (gdb-edit-locals-value): Fixed.
15025 (gdb-registers-handler-custom): Print registers in right order and
15026 allow changing register values (only for current thread yet).
15027 (gdb-breakpoints-mode-map): Don't assume threads buffer is present.
15028 (gdb-threads-mode-map): Don't assume breakpoints buffer is present.
15029 (gdb-disassembly-handler-custom, gdb-stack-list-frames-custom)
15030 (gdb-locals-handler-custom, gdb-registers-handler-custom): Thread
15031 info in mode name.
15032 (gdb-registers-mode-map): TAB to switch to locals.
15033
15034 2009-08-08 Eli Zaretskii <eliz@gnu.org>
15035
15036 * mail/rmail.el (rmail-add-mbox-headers)
15037 (rmail-set-message-counters-counter): Search for
15038 rmail-unix-mail-delimiter instead of just "From ". (Bug#4076)
15039
15040 2009-08-08 Glenn Morris <rgm@gnu.org>
15041
15042 * Makefile.in (ELCFILES): Update.
15043
15044 2009-08-07 Eli Zaretskii <eliz@gnu.org>
15045
15046 * mail/sendmail.el (mail-yank-original): Set
15047 buffer-file-coding-system from the one used by the message whose
15048 text is yanked.
15049
15050 * calc/calc-graph.el (calc-graph-plot): Set calc-graph-last-device
15051 to "windows" when "pgnuplot" is used.
15052 (calc-graph-command, calc-gnuplot-command, calc-graph-init): Don't
15053 call accept-process-output if "pgnuplot" is used.
15054 (calc-graph-init): Don't send -display and -geometry to
15055 "pgnuplot". If "pgnuplot" is used, glean gnuplot version by
15056 running "pgnuplot -V" with shell-command-to-string.
15057
15058 * calc/calc.el (calc-gnuplot-name) [windows-nt]: Use "pgnuplot" as
15059 the default.
15060
15061 2009-08-07 Eli Zaretskii <eliz@gnu.org>
15062
15063 * Makefile.in (ELCFILES): org/org-export-latex.elc renamed to
15064 org/org-latex.elc.
15065
15066 2009-08-07 Dan Nicolaescu <dann@ics.uci.edu>
15067
15068 * vc-dispatcher.el (vc-resynch-window): Update comment.
15069
15070 * term.el (term-handle-ansi-escape): Add comments with the
15071 terminfo capabilities implemented.
15072
15073 2009-08-06 Dmitry Dzhus <dima@sphinx.net.ru>
15074
15075 * progmodes/gdb-mi.el (gdb-var-create-regexp): Removed.
15076 (gdb-var-create-handler): Rewritten using JSON parser.
15077 (gdb-propertize-header): Moved earlier.
15078 (gdb-set-header): Removed to avoid duplication.
15079 (gdb-thread-list-handler-custom, gdb-invalidate-disassembly):
15080 Refresh disassembly buffers only after threads list have been
15081 update.
15082 (gdb-threads-header, gdb-registers-header): Per-buffer header line
15083 variables.
15084
15085 2009-08-04 Juri Linkov <juri@jurta.org>
15086
15087 * files.el: Commands to add/delete file/directory-local variables.
15088 (read-file-local-variable, read-file-local-variable-value)
15089 (read-file-local-variable-mode, modify-file-local-variable)
15090 (modify-file-local-variable-prop-line)
15091 (modify-dir-local-variable): New functions.
15092 (add-file-local-variable, delete-file-local-variable)
15093 (add-file-local-variable-prop-line, delete-file-local-variable-prop-line)
15094 (add-dir-local-variable, delete-dir-local-variable)
15095 (copy-file-locals-to-dir-locals, copy-dir-locals-to-file-locals)
15096 (copy-dir-locals-to-file-locals-prop-line): New commands.
15097
15098 2009-08-04 Chong Yidong <cyd@stupidchicken.com>
15099
15100 * abbrev.el (insert-abbrev-table-description): Prettify output.
15101 Suggested by Karl Chen.
15102
15103 2009-08-04 Dmitry Dzhus <dima@sphinx.net.ru>
15104
15105 * progmodes/gdb-mi.el (gdb-frame-number): Initialize with nil.
15106 (gdb-overlay-arrow-position): Rename to `gdb-disassembly-position'.
15107 (gdb-overlay-arrow-position, gdb-thread-position)
15108 (gdb-disassembly-position): Declare variables.
15109 (gdb-wait-for-pending): Function now.
15110 (gdb-add-subscriber, gdb-delete-subscriber, gdb-get-subscribers)
15111 (gdb-emit-signal, gdb-buf-publisher): Declare before first use so
15112 compilation goes smoothly.
15113 (gdb, gdb-non-stop, gdb-buffers): New customization groups.
15114 (gdb-non-stop-setting): New customization setting which replaces
15115 `gdb-non-stop' so changing it doesn't break active GDB session.
15116 (gdb-stack-buffer-locations, gdb-stack-buffer-addresses)
15117 (gdb-thread-buffer-verbose-names, gdb-thread-buffer-arguments)
15118 (gdb-thread-buffer-locations, gdb-thread-buffer-addresses)
15119 (gdb-show-threads-by-default): New customization options.
15120 (gdb-buffer-type, gdb-buffer-shows-main-thread-p): New helper
15121 routines.
15122 (gdb-get-buffer-create): Send buffers update signal when they are
15123 created.
15124 (gdb-invalidate-locals, gdb-invalidate-registers)
15125 (gdb-invalidate-breakpoints)
15126 (gdb-invalidate-threads, gdb-invalidate-disassembly)
15127 (gdb-invalidate-memory): Accept update signal.
15128 (gdb-current-context-command): Use --frame option.
15129 (gdb-update-gud-running, gdb-running, gdb-setq-thread-number):
15130 Implement `gdb-frame-number' selection logic.
15131 (gdb-show-run-p, gdb-show-stop-p): Helper functions which decide
15132 whether to show GUD toolbar buttons.
15133 (gdb-thread-exited): Unselect current thread when it exits.
15134 (gdb-stopped): Typo fixed (now really runs `gdb-stopped-hooks').
15135 (gdb-mark-line): Routine which sets overlay arrow or inverses
15136 video on fringeless displays.
15137 (gdb-table, gdb-table-add-row, gdb-table-string): Structure used
15138 to build aligned columns of data in GDB buffers and set text
15139 properties line-by-line.
15140 (gdb-invalidate-breakpoints)
15141 (gdb-breakpoints-list-handler-custom)
15142 (gdb-thread-list-handler-custom, gdb-disassembly-handler-custom)
15143 (gdb-stack-list-frames-custom, gdb-locals-handler-custom)
15144 (gdb-registers-handler-custom): Align data columns.
15145 (gdb-locals-handler-custom): Now prints data like in variable
15146 declarations.
15147 (gdb-jump-to, gdb-file-button, gdb-insert-file-location-button):
15148 Removed confusing buttons.
15149 (gdb-invalidate-threads): Append --frame.
15150 (gdb-threads-mode-map, gdb-breakpoints-mode-map): TAB to switch
15151 between breakpoints/threads buffers.
15152 (gdb-set-window-buffer): Now can ignore dedicated windows.
15153 (gdb-propertize-header): Use `gdb-set-window-buffer'.
15154 (def-gdb-thread-buffer-simple-command): Numerous typos fixed.
15155 (def-gdb-thread-buffer-gud-command): Replaces
15156 `def-gdb-thread-buffer-gdb-command' and uses standard GUD commands
15157 for fine thread control.
15158 (gdb-preempt-existing-or-display-buffer): New function used to
15159 display bound buffers without breaking window layout.
15160 (gdb-frame-location): Replaces `gdb-insert-frame-location'.
15161 (gdb-select-frame): New version of `gdb-frames-select' which now
15162 sets `gdb-frame-number' so commands may use --frame option instead
15163 of inner debugger state.
15164 (gdb-frame-handler): Do not set `gdb-frame-number'.
15165 (gdb-threads-mode-map): Select threads with mouse.
15166
15167 * progmodes/gud.el (gdb-gud-context-call): Declare function to
15168 avoid compilation warning.
15169 (gud-menu-map, gud-minor-mode-map): Use `gdb-show-run-p` and
15170 `gdb-show-stop-p`.
15171
15172 * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create):
15173 Argument `key' renamed to `buffer-type'.
15174 (gdb-current-context-buffer-name): Do not add thread info to
15175 buffer name when no thread is selected.
15176 (gdbmi-record-list, gdb-shell): Try to handle GDB `shell'
15177 command (bug 3794).
15178 (gdb-thread-selected): Handle `=thread-selected' notification.
15179 (gdb-wait-for-pending): New macro to deal with congestion problems.
15180 (gdb-breakpoints-list-handler-custom): Don't fail on pending
15181 breakpoints.
15182 (gdb-invalidate-disassembly): Use 'fullname instead of 'file.
15183 This fixes problem similar to one described in bug 3947.
15184 (gud-menu-map): More menu items.
15185 (gdb-init-1): Reset `gdb-thread-number' to nil.
15186
15187 * progmodes/gud.el (gud-stop-subjob, gud-menu-map): Respect GDB
15188 non-stop settings.
15189
15190 * progmodes/gdb-mi.el (gdb-thread-number): Initialize with nil.
15191 (gdb-current-context-command): Do not append --thread if
15192 `gdb-thread-number' is nil.
15193 (gdb-running-threads-count, gdb-stopped-threads-count): New
15194 variables.
15195 (gdb-non-stop, gdb-gud-control-all-threads, gdb-switch-reasons)
15196 (gdb-stopped-hooks, gdb-switch-when-another-stopped): New
15197 customization options.
15198 (gdb-gud-context-command, gdb-gud-context-call): New wrappers for
15199 GUD commands.
15200 (gdb): `gud-def' definitions changed to use `gdb-gud-context-call'.
15201 (gdb-init-1): Activate non-stop mode if `gdb-non-stop' is enabled.
15202 (gdb-setq-thread-number, gdb-update-gud-running): New functions to
15203 set `gdb-thread-number' and update `gud-running' properly.
15204 (gdb-running): Update threads list when new threads appear.
15205 (gdb-stopped): Support non-stop operation and new thread switching
15206 logic.
15207 (gdb-jsonify-buffer, gdb-json-read-buffer, gdb-json-string)
15208 (gdb-json-partial-output): New set of JSON routines.
15209 (def-gdb-auto-update-trigger): New `signal-list' optional
15210 argument.
15211 (gdb-thread-list-handler-custom): Update `gud-running',
15212 `gdb-stopped-threads-count' and `gdb-running-threads-count'.
15213 (def-gdb-thread-buffer-gdb-command, gdb-interrupt-thread)
15214 (gdb-continue-thread, gdb-step-thread): New commands for fine
15215 thread execution control.
15216 (gud-menu-map): New menu items to switch non-stop options.
15217 (gdb-reset): Cleanup `gdb-thread-position' overlay arrow marker.
15218 (gdb-send): Mimic RET properly (bug 3794).
15219
15220 * progmodes/gdb-mi.el (gdb-rules-name-maker)
15221 (gdb-rules-buffer-mode, gdb-rules-update-trigger): Accessors for
15222 gdb-buffer-rules.
15223 (def-gdb-auto-update-handler): New nopreserve optional argument.
15224 (gdb-stack-list-frames-custom): Print stack from top to bottom.
15225
15226 * progmodes/gdb-mi.el (gdb-pc-address): Removed unused variable.
15227 (gdb-threads-list, gdb-breakpoints-list): New assoc lists.
15228 (gdb-parent-mode): New mode to derive other GDB modes from.
15229 (gdb-display-disassembly-for-thread)
15230 (gdb-frame-disassembly-for-thread): New commands for threads
15231 buffer.
15232
15233 * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create)
15234 (gdb-init-1, gdb-bind-function-to-buffer, gdb-add-subscriber)
15235 (gdb-get-subscribers, gdb-emit-signal, gdb-buf-publisher)
15236 (gdb-update): We now store all GDB buffers in a list so that they
15237 can be updated by traversing a list instead of calling invalidate
15238 triggers explicitly.
15239 (def-gdb-trigger-and-handler): New macro to define trigger-handler
15240 pair for GDB buffer.
15241 (gdb-stack-buffer-name): Add thread information.
15242 (gdb-add-pending, gdb-pending-p, gdb-delete-pending): Macros to
15243 handle pending triggers.
15244 (gdb-threads-mode-map, def-gdb-thread-buffer-command)
15245 (def-gdb-thread-buffer-simple-command)
15246 (gdb-display-stack-for-thread, gdb-display-locals-for-thread)
15247 (gdb-display-registers-for-thread, gdb-frame-stack-for-thread)
15248 (gdb-frame-locals-for-thread, gdb-frame-registers-for-thread):
15249 New commands which show buffers bound to thread.
15250 (gdb-stack-list-locals-regexp): Removed unused regexp.
15251
15252 * progmodes/gdb-mi.el (gdb-breakpoints-buffer-name)
15253 (gdb-locals-buffer-name, gdb-registers-buffer-name)
15254 (gdb-memory-buffer-name, gdb-stack-buffer-name): Do not switch
15255 to (gud-comint-buffer) in *-buffer-name functions
15256 because (gdb-get-target-string) already does that.
15257 (gdb-locals-handler-custom, gdb-registers-handler-custom)
15258 (gdb-changed-registers-handler): Rewritten without regexps.
15259
15260 * progmodes/gdb-mi.el: Basic thread selection support.
15261 (gdb-thread-number): New variable.
15262 (gdb-current-context-command): New macro which adds --thread
15263 option to command.
15264 (gdb-threads-mode-map): Select thread with SPC.
15265 (gdb-thread-list-handler-custom): Mark current thread with overlay
15266 arrow. Synchronize GDB thread and Emacs thread.
15267 (gdb-select-thread): New command which selects current thread.
15268 (gdb-invalidate-frames, gdb-invalidate-locals)
15269 (gdb-invalidate-registers): Use --thread option.
15270
15271 2009-08-04 Michael Albinus <michael.albinus@gmx.de>
15272
15273 * net/tramp.el (top): Make check for tramp-gvfs loading more
15274 robust. (Bug#3977)
15275 (tramp-handle-insert-file-contents): `unwind-protect' must be
15276 inside `with-parsed-tramp-file-name'.
15277
15278 * net/tramp-gvfs.el (top): Remove superfluous message when loading
15279 fails.
15280
15281 2009-08-03 Nick Roberts <nickrob@snap.net.nz>
15282
15283 * progmodes/gud.el (jdb): Set gud-jdb-classpath-string to current
15284 directory if CLASSPATH is not set.
15285
15286 2009-08-03 Michael Albinus <michael.albinus@gmx.de>
15287
15288 * net/tramp.el (tramp-rfn-eshadow-update-overlay-regexp):
15289 New defconst.
15290 (tramp-rfn-eshadow-update-overlay): Use it. (Bug#4004)
15291
15292 2009-08-02 Kevin Ryde <user42@zip.com.au>
15293
15294 * net/newst-backend.el (newsticker--raw-url-list-defaults):
15295 Update freshmeat link. Delete newsforge.com as it seems gone.
15296
15297 2009-08-02 Chong Yidong <cyd@stupidchicken.com>
15298
15299 * select.el (x-set-selection): Doc fix (Bug#4021).
15300
15301 * w32-fns.el (x-set-selection): Doc fix (Bug#4021).
15302
15303 * help-fns.el (describe-variable): Treat list return values from
15304 dir-locals-find-file properly (Bug#4005).
15305
15306 2009-08-02 Julian Scheid <julians37@googlemail.com> (tiny change)
15307
15308 * net/tramp.el (tramp-debug-message): Print also microseconds.
15309
15310 2009-08-02 Michael Albinus <michael.albinus@gmx.de>
15311
15312 * net/tramp.el (tramp-handle-insert-file-contents): Optimize, when BEG
15313 or END is non-nil.
15314 (tramp-handle-vc-registered): Use `tramp-cache-inhibit-cache'.
15315 (tramp-get-debug-buffer): Change `outline-regexp' according to new
15316 format.
15317
15318 * net/tramp-cache.el (tramp-cache-inhibit-cache): New defvar.
15319 (tramp-get-file-property): Use it.
15320
15321 * autorevert.el (auto-revert-handler): Allow
15322 `auto-revert-tail-mode' for remote files.
15323
15324 2009-08-02 Jason Rumney <jasonr@gnu.org>
15325
15326 * minibuffer.el (read-file-name): Treat confirm options to
15327 MUSTMATCH as nil when invoking x-file-dialog. (Bug#3969)
15328
15329 2009-08-02 Chong Yidong <cyd@stupidchicken.com>
15330
15331 * font-lock.el (font-lock-string-face, font-lock-builtin-face)
15332 (font-lock-variable-name-face, font-lock-constant-face): Darken
15333 the colors for light backgrounds.
15334
15335 2009-08-01 Eli Zaretskii <eliz@gnu.org>
15336
15337 * mail/rmailsum.el (rmail-header-summary): Ignore letter-case of
15338 month names. (Bug#3987)
15339
15340 2009-07-31 Chong Yidong <cyd@stupidchicken.com>
15341
15342 * simple.el (line-move-finish): Pass whole number to
15343 line-move-to-column.
15344 (line-move-visual): Perform hscroll to the recorded position.
15345
15346 2009-07-30 Jay Belanger <jay.p.belanger@gmail.com>
15347
15348 * calc/calc-mode.el (calc-matrix-brackets): Remove "P" from prompt.
15349
15350 2009-07-29 Alan Mackenzie <acm@muc.de>
15351
15352 * progmodes/cc-defs.el (c-version): Bump to 5.31.7.
15353
15354 2009-07-29 Dmitry Dzhus <dima@sphinx.net.ru>
15355
15356 * progmodes/gdb-mi.el (gdb-goto-breakpoint)
15357 (gdb-place-breakpoints): Use full path when setting breakpoints.
15358
15359 2009-07-29 Jay Belanger <jay.p.belanger@gmail.com>
15360
15361 * calc/calc.el (calc-mode-map): Add keybinding for
15362 `calc-transpose-lines'.
15363
15364 2009-07-29 Vincent Belaïche <vincent.belaiche@gmail.com>
15365
15366 * calc/calc-misc.el (calc-transpose-lines): New function.
15367
15368 2009-07-28 Michael Albinus <michael.albinus@gmx.de>
15369
15370 * net/tramp.el (tramp-do-copy-or-rename-file): Add messages.
15371 Simplify check for out-of-band methods.
15372 (tramp-do-copy-or-rename-file-out-of-band): Allow both files to be
15373 remote. Remove messages which are in `tramp-do-copy-or-rename-file'.
15374
15375 2009-07-28 Dan Nicolaescu <dann@ics.uci.edu>
15376
15377 * vc-git.el (vc-git-checkin): Fix typo.
15378
15379 2009-07-28 Steve Yegge <steve.yegge@gmail.com>
15380
15381 * progmodes/js2-mode.el: New file.
15382
15383 2009-07-28 Nick Roberts <nickrob@snap.net.nz>
15384
15385 * progmodes/gud.el (jdb): Add gud-pstar to dump object information.
15386 (gud-menu-map): Adjust tooltip accordingly.
15387
15388 2009-07-27 Dan Nicolaescu <dann@ics.uci.edu>
15389
15390 * vc-bzr.el (vc-bzr-print-log): Pass multiple arguments to bzr log.
15391 (vc-bzr-log-view-mode): Adjust log-view-file-re.
15392
15393 * add-log.el (change-log-mode-map): Add a menu.
15394
15395 2009-07-27 Michael Albinus <michael.albinus@gmx.de>
15396
15397 * net/dbus.el (dbus-call-method-non-blocking): Handle the case the
15398 function returns nil.
15399 (dbus-handle-event): Handle special return value :ignore.
15400 Reported by Jan Moringen <jan.moringen@uni-bielefeld.de>.
15401
15402 2009-07-26 Chong Yidong <cyd@stupidchicken.com>
15403
15404 * view.el (view-mode-enable): Don't define Helper-return-blurb if
15405 it's not needed.
15406
15407 2009-07-25 Eli Zaretskii <eliz@gnu.org>
15408
15409 Fix Bug#3888:
15410
15411 * w32-vars.el (x-select-enable-clipboard): Doc fix.
15412
15413 * term/pc-win.el (x-display-name, x-colors)
15414 (x-select-enable-clipboard, x-select-text): Doc fix.
15415
15416 * term/common-win.el (x-display-name, x-colors): Doc fix.
15417
15418 * term/ns-win.el (x-select-text, x-setup-function-keys, x-colors)
15419 (xw-defined-colors): Doc fix.
15420
15421 * w32-fns.el (x-select-text, x-setup-function-keys)
15422 (x-get-selection, x-set-selection): Doc fix.
15423
15424 * term/x-win.el (x-select-text, x-setup-function-keys)
15425 (x-select-enable-clipboard, xw-defined-colors): Doc fix.
15426
15427 * select.el (x-set-selection): Doc fix.
15428
15429 2009-07-25 Michael Albinus <michael.albinus@gmx.de>
15430
15431 * net/zeroconf.el (zeroconf-init): Check for "GetVersionString"
15432 instead of "IsNSSSupportAvailable". Avahi ought to work also when
15433 "IsNSSSupportAvailable" method is not available. Reported by
15434 Steve Youngs <steve@sxemacs.org>.
15435
15436 2009-07-24 Kenichi Handa <handa@m17n.org>
15437
15438 * international/characters.el: Fix setting of category ?C, ?|, ?K,
15439 and ?H. Fix setting of case for Latin Extended and Greek Extended.
15440 (build-unicode-category-table): Fix range checks.
15441
15442 2009-07-24 Dan Nicolaescu <dann@ics.uci.edu>
15443
15444 * vc-dispatcher.el (vc-resynch-buffers-in-directory): Make sure
15445 the buffer we try to sync is current when calling
15446 vc-resynch-buffer.
15447
15448 * vc-dir.el (vc-dir-resynch-file): Make sure vc-dir-update does
15449 not show up to date files.
15450
15451 2009-07-24 Glenn Morris <rgm@gnu.org>
15452
15453 * emacs-lisp/elint.el (elint-current-buffer, elint-defun):
15454 Add autoload cookies. If necessary, initialize.
15455 (elint-log): Handle non-file buffers.
15456 (elint-initialize): Add optional argument to reinitialize.
15457 (elint-find-builtin-variables): Save excursion.
15458
15459 2009-07-23 Dan Nicolaescu <dann@ics.uci.edu>
15460
15461 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
15462 for Lint.
15463
15464 2009-07-22 Dan Nicolaescu <dann@ics.uci.edu>
15465
15466 * vc.el (vc-print-log-internal): New function, split out from ...
15467 (vc-print-log): ... here.
15468 (vc-dir-move-to-goal-column): Declare.
15469
15470 * vc-git.el (vc-git-add-signoff): New variable.
15471 (vc-git-checkin): Use it.
15472 (vc-git-toggle-signoff): New function.
15473 (vc-git-extra-menu-map): Bind it to menu.
15474 (vc-git--run-command-string): Accept a nil FILE argument.
15475 (vc-git-stash-list): New function.
15476 (vc-git-dir-extra-headers): Use it.
15477
15478 2009-07-23 Glenn Morris <rgm@gnu.org>
15479
15480 * help-fns.el (describe-variable): Describe ignored and risky local
15481 variables in a similar way to that in which we describe safe ones.
15482
15483 * emacs-lisp/bytecomp.el (byte-compile-from-buffer)
15484 (byte-compile-output-file-form, byte-compile-output-docform)
15485 (byte-compile-file-form-defmumble, byte-compile-output-as-comment):
15486 Give some more local variables with common names a "bytecomp-" prefix,
15487 so as not to shadow things during compilation.
15488 * emacs-lisp/cl-macs.el (load-time-value)
15489 * emacs-lisp/cl.el (cl-compiling-file): Update for the name-change
15490 `outbuffer' to `bytecomp-outbuffer'.
15491
15492 * emacs-lisp/elint.el (elint-standard-variables): Remove most members,
15493 since the next two variables cover them automatically now.
15494 (elint-builtin-variables, elint-autoloaded-variables): New.
15495 (elint-unknown-builtin-args): Remove all members, since they can be
15496 parsed automatically now.
15497 (elint-extra-errors): New.
15498 (elint-env-add-env, elint-env-add-macro): Use cadr.
15499 (elint-current-buffer): Use or. Change final message.
15500 (elint-get-top-forms): Use line-end-position.
15501 (elint-init-env): Use cadr. Handle autoload, declare-function,
15502 and defalias.
15503 (elint-add-required-env): Doc fix. Use or. Standardize error.
15504 (regexp-assoc): Remove unused function.
15505 (elint-top-form): Set elint-current-pos, to record the start of the
15506 top-level form, for compilation-mode.
15507 (elint-form): Trap errors in macro expansion. Use dolist.
15508 (elint-unbound-variable): Use elint-builtin-variables and
15509 elint-autoloaded-variables.
15510 (elint-get-args): Use cadr, or.
15511 (elint-check-cond-form): Use dolist, cadr.
15512 (elint-check-condition-case-form): Doc fix. Use cadr.
15513 Use elint-extra-errors.
15514 (elint-log): New function.
15515 (elint-error, elint-warning): Use elint-log for a bytecomp-style format.
15516 Distinguish errors and warnings.
15517 (elint-log-message): Use with-current-buffer. Inhibit read-only.
15518 Use a bytecomp-style format.
15519 (elint-clear-log): Preserve default-directory. Inhibit read-only.
15520 (elint-get-log-buffer): Use compilation mode. Disable undo.
15521 Don't truncate lines.
15522 (elint-initialize): Set builtin and autoloaded variable lists.
15523 Only process elint-unknown-builtin-args if non-nil.
15524 (elint-find-builtin-variables, elint-find-autoloaded-variables):
15525 New functions.
15526 (elint-find-builtin-args): Doc fix. Handle "BODY...)".
15527
15528 2009-07-22 Kevin Ryde <user42@zip.com.au>
15529
15530 * net/newst-backend.el (newsticker--parse-atom-1.0)
15531 (newsticker--parse-rss-0.91, newsticker--parse-rss-0.92)
15532 (newsticker--parse-rss-1.0):
15533 * progmodes/idlwave.el (idlwave-mode):
15534 * progmodes/idlw-shell.el (idlwave-shell-mode):
15535 * progmodes/vera-mode.el (vera-mode):
15536 * progmodes/verilog-mode.el (verilog-auto-inst, verilog-auto):
15537 * progmodes/vhdl-mode.el (vhdl-mode):
15538 * textmodes/table.el (table-generate-source)
15539 (table--warn-incompatibility):
15540 Hyperlink urls in docstrings with URL `...'.
15541
15542 2009-07-22 Glenn Morris <rgm@gnu.org>
15543
15544 * emacs-lisp/advice.el, emacs-lisp/checkdoc.el:
15545 * emacs-lisp/debug.el, emacs-lisp/elp.el, emacs-lisp/gulp.el:
15546 * emacs-lisp/lisp.el, emacs-lisp/pp.el, emacs-lisp/trace.el:
15547 Remove leading * from defcustom docs.
15548
15549 * simple.el (blink-matching-paren-distance): Bump to 100k. (Bug#3889)
15550
15551 * emacs-lisp/shadow.el (shadows-compare-text-p): Remove leading * from
15552 defcustom doc.
15553 (list-load-path-shadows): Optionally, just return shadows as a string.
15554
15555 * mail/emacsbug.el (report-emacs-bug): Include any load-path shadows.
15556
15557 2009-07-21 Chong Yidong <cyd@stupidchicken.com>
15558
15559 * mail/rmailedit.el (rmail-edit-mode): Use
15560 auto-save-include-big-deletions.
15561
15562 * mail/rmail.el (rmail-variables): Use
15563 auto-save-include-big-deletions.
15564
15565 * files.el (auto-save-mode): Revert 2009-07-21 and 2009-07-16
15566 changes.
15567
15568 2009-07-21 Jay Belanger <jay.p.belanger@gmail.com>
15569
15570 * calc/calc.el (calc-undo-length): New variable.
15571 (calc-quit): Truncate rather than eliminate `calc-undo-list'.
15572
15573 2009-07-21 Richard Stallman <rms@gnu.org>
15574
15575 * files.el (auto-save-mode): Handle buffer-save-size = -2
15576 for toggling mode.
15577
15578 2009-07-21 Glenn Morris <rgm@gnu.org>
15579
15580 * textmodes/ispell.el (ispell-looking-back): Update declaration.
15581
15582 * calendar/todo-mode.el (calendar-current-date): Update declaration.
15583
15584 * ps-print.el (ps-jitify, ps-lazify): Remove aliases only used to
15585 silence compiler. Instead...
15586 (jit-lock-fontify-now, lazy-lock-fontify-region): ...Declare.
15587 (ps-print-ensure-fontified): Update for above function name changes.
15588
15589 * printing.el (pr-mh-get-msg-num, pr-mh-show)
15590 (pr-mh-start-of-uncleaned-message): Remove aliases only used to
15591 silence compiler. Instead...
15592 (mh-get-msg-num, mh-show, mh-start-of-uncleaned-message): ...Declare.
15593 (mh-show-buffer): Only define for compiler.
15594 (pr-mh-current-message): Update for above function name changes.
15595
15596 * files.el (abort-if-file-too-large): Explicitly pass `filename'
15597 as an argument.
15598 (find-file-noselect, insert-file-1): Update for above change.
15599
15600 * mail/rmail.el (rmail-retry-ignored-headers): Bump :version.
15601
15602 * mail/mailclient.el (mailclient-send-it): Fix message.
15603
15604 * emacs-lisp/edebug.el (cl-debug-env): Only define for compiler.
15605 (edebug-eval): Check cl-debug-env is bound.
15606 (print-level, print-circle): Don't redefine built-in variables.
15607
15608 * emacs-lisp/cust-print.el: Remove leading * from defcustom docs.
15609 (custom-print-vectors): Remove old comments from doc.
15610
15611 * emerge.el (menu-bar-emerge-menu): Remove unused variable.
15612 (emerge-version): Make the variable an obsolete alias for the
15613 emacs-version variable. Make the function obsolete.
15614 (emerge-fast-keymap, emerge-edit-keymap): Make a separate menu for
15615 Emerge options, rather than merging in into the main Options menu.
15616 (emerge-options-menu): Adjust menu text. Use buttons for skip prefers
15617 and auto advance modes. Disable edit/fast items when not relevant.
15618
15619 2009-07-20 Dan Nicolaescu <dann@ics.uci.edu>
15620
15621 * term/vt420.el (terminal-init-vt420): Fix typo.
15622
15623 2009-07-20 Sam Steingold <sds@gnu.org>
15624
15625 * progmodes/ada-mode.el (compile-auto-highlight): Remove the
15626 variable (removed from compile.el on 2004-03-11).
15627
15628 2009-07-20 Chong Yidong <cyd@stupidchicken.com>
15629
15630 * files.el (hack-local-variables-filter): Fix last change.
15631
15632 2009-07-19 Juri Linkov <juri@jurta.org>
15633
15634 * files.el (ignored-local-variables): Add `dir-local-variables-alist'.
15635 (dir-local-variables-alist): New buffer-local variable.
15636 (hack-local-variables-filter): If variable is not dir-local,
15637 i.e. `dir-name' is nil, then remove it from `dir-local-variables-alist',
15638 because file-local overrides dir-local.
15639 (c-postprocess-file-styles) <declare-function>:
15640 Remove obsolete declaration.
15641 (hack-dir-local-variables): Add dir-local variable/value pair to
15642 `dir-local-variables-alist' and remove duplicates. Doc fix.
15643
15644 * help-fns.el (describe-variable): Add information about
15645 file-local and dir-local variables.
15646
15647 2009-07-19 Chong Yidong <cyd@stupidchicken.com>
15648
15649 * files.el (hack-local-variables-filter): Rewrite.
15650
15651 2009-07-19 Glenn Morris <rgm@gnu.org>
15652
15653 * progmodes/verilog-mode.el (verilog-error-regexp-add-xemacs):
15654 Silence compiler by only defining on XEmacs.
15655
15656 * international/mule.el (auto-coding-regexp-alist): Only match
15657 BABYL... at the start of buffer, not of lines. (Bug#3790)
15658
15659 * calendar/cal-menu.el (cal-menu-set-date-title): Handle calls from
15660 non-calendar buffers (Bug#3862). Restore "not on a date" message.
15661 (cal-menu-context-mouse-menu): Doc fix.
15662
15663 * desktop.el (desktop-buffers-not-to-save): Set :version tag.
15664
15665 * simple.el (mail-user-agent): Doc fix. Set :version tag.
15666
15667 2009-07-18 Juri Linkov <juri@jurta.org>
15668
15669 * info.el: Virtual Info keyword finder.
15670 (add-to-list) <Info-virtual-files>: Add "\\`\\*Finder.*\\*\\'".
15671 (Info-finder-file): New variable.
15672 (Info-finder-find-file): New function.
15673 (finder-known-keywords, finder-package-info)
15674 (find-library-name, lm-commentary): Use defvar and
15675 declare-function to silence compiler warnings.
15676 (Info-finder-find-node): New function.
15677 (info-finder): New command.
15678
15679 * subr.el (process-kill-buffer-query-function): New function.
15680 (add-hook)<kill-buffer-query-functions>: Add hook
15681 `process-kill-buffer-query-function'.
15682
15683 2009-07-18 Alan Mackenzie <acm@muc.de>
15684
15685 * progmodes/cc-mode.el (c-before-hack-hook)
15686 (c-postprocess-file-styles): Give invocation of `c-set-style'
15687 DONT-OVERRIDE parameter of t. Already set style variables will
15688 thus not be overridden by style settings given by `c-file-syle'.
15689
15690 * files.el (hack-local-variables-filter): Remove entries with
15691 duplicate keys from `file-local-variables-alist'.
15692
15693 2009-07-18 Eli Zaretskii <eliz@gnu.org>
15694
15695 * simple.el (deactivate-mark, activate-mark, set-mark): Don't call
15696 x-set-selection if display-selections-p returns nil for the
15697 current frame.
15698
15699 2009-07-18 Chong Yidong <cyd@stupidchicken.com>
15700
15701 * simple.el (region-active-p, use-region-p): Doc fix (Bug#3873).
15702
15703 2009-07-18 Eli Zaretskii <eliz@gnu.org>
15704
15705 * desktop.el (desktop-buffers-not-to-save): Default value is nil.
15706 Accept nil in addition to a regexp.
15707 (desktop-files-not-to-save): Add "(ftp)$" to the default regexp.
15708 Accept nil in addition to a regexp.
15709 (desktop-save-buffer-p): Don't use desktop-buffers-not-to-save for
15710 buffers that have an associated file. Handle nil values of
15711 desktop-buffers-not-to-save and desktop-files-not-to-save.
15712 (Bug#3833)
15713
15714 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
15715 (x-disown-selection-internal): New functions.
15716
15717 2009-07-18 Nick Roberts <nickrob@snap.net.nz>
15718
15719 * progmodes/gdb-mi.el (speedbar-frame): Declare to avoid compiler
15720 warning.
15721 (gdb-breakpoints-header): Move forward to avoid compiler warning.
15722 (gdb-make-header-line-mouse-map): Remove duplicate definition.
15723
15724 2009-07-18 David De La Harpe Golden <david@harpegolden.net>
15725
15726 * simple.el (set-mark): Revert last change.
15727
15728 2009-07-17 Tassilo Horn <tassilo@member.fsf.org>
15729
15730 * doc-view.el (doc-view-initiate-display): Add yes-or-no-p if
15731 rendering of pngs is not possible instead of messaging a long
15732 description.
15733
15734 2009-07-17 David De La Harpe Golden <david@harpegolden.net>
15735
15736 * w32-fns.el (x-selection-owner-p): New function.
15737
15738 * mouse.el (mouse-drag-track): Call deactivate-mark earlier.
15739 (mouse-yank-at-click, mouse-yank-primary): If
15740 select-active-regions is non-nil, deactivate the mark before
15741 insertion.
15742
15743 * simple.el (deactivate-mark, set-mark): Only save selection if we
15744 own it.
15745
15746 2009-07-17 Kenichi Handa <handa@m17n.org>
15747
15748 * case-table.el (describe-buffer-case-table): Fix for the case
15749 that KEY is a cons.
15750
15751 2009-07-16 Dan Nicolaescu <dann@ics.uci.edu>
15752
15753 * vc-rcs.el (vc-rcs-find-file-hook):
15754 * vc-sccs.el (vc-sccs-find-file-hook): Fix cut and paste error.
15755
15756 2009-07-16 Michael Albinus <michael.albinus@gmx.de>
15757
15758 * net/tramp.el (tramp-wait-for-output): Handle the case when
15759 commands do not return a newline but a null byte before the shell
15760 prompt. (Bug#3858)
15761
15762 2009-07-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15763
15764 * term/ns-win.el (ns-set-alpha): Don't declare.
15765 (ns-set-background-alpha): Remove function.
15766
15767 2009-07-16 Kevin Ryde <user42@zip.com.au>
15768
15769 * emacs-lisp/copyright.el (copyright-update): Save match-data across
15770 y-or-n-p, for safety.
15771
15772 2009-07-16 Richard Stallman <rms@gnu.org>
15773
15774 * files.el (auto-save-mode): If buffer-saved-size is -2,
15775 don't clobber it.
15776
15777 * mail/rmail.el (rmail-variables): Set buffer-saved-size to -2.
15778 (rmail-retry-ignored-headers): Add more uninteresting fields.
15779
15780 2009-07-15 Jari Aalto <jari.aalto@cante.net>
15781
15782 * net/rcirc.el (rcirc): Use history variables.
15783 (rcirc-server-name-history, rcirc-nick-name-history)
15784 (rcirc-server-port-history): New variables.
15785
15786 2009-07-15 Kenichi Handa <handa@m17n.org>
15787
15788 * international/mule-cmds.el (set-language-environment-charset):
15789 If coding-system-charset-list returns `iso-2022' or `emacs-mule',
15790 ignore them.
15791
15792 * language/misc-lang.el ("IPA"): Change coding systems to utf-8.
15793 Delete unibyte-display.
15794
15795 2009-07-15 Chong Yidong <cyd@stupidchicken.com>
15796
15797 * simple.el (kill-visual-line): Obey kill-whole-line (Bug#3695).
15798
15799 2009-07-15 Chong Yidong <cyd@stupidchicken.com>
15800
15801 * simple.el (deactivate-mark): Optional argument FORCE.
15802 (set-mark): Use deactivate-mark.
15803
15804 * info.el (Info-search): No need to check transient-mark-mode
15805 before calling deactivate-mark.
15806
15807 * select.el (x-set-selection): Doc fix.
15808 (x-valid-simple-selection-p): Allow buffer values.
15809 (xselect--selection-bounds): Handle buffer values. Suggested by
15810 David De La Harpe Golden.
15811
15812 * mouse.el (mouse-set-region, mouse-drag-track): Call
15813 copy-region-as-kill before setting the mark, to let
15814 select-active-regions work.
15815
15816 2009-07-15 David De La Harpe Golden <david@harpegolden.net>
15817
15818 * simple.el (deactivate-mark): If select-active-regions is
15819 non-nil, copy the selection data into a string.
15820 (activate-mark): If select-active-regions is non-nil, set the
15821 selection to the current buffer.
15822 (set-mark): Update selection if select-active-regions is non-nil.
15823
15824 * select.el (x-valid-simple-selection-p): Allow buffer values.
15825
15826 2009-07-14 Stefan Monnier <monnier@iro.umontreal.ca>
15827
15828 * simple.el (mail-user-agent): Default to the upwardly-UI-compatible
15829 and more featureful message-mode.
15830
15831 2009-07-14 Chong Yidong <cyd@stupidchicken.com>
15832
15833 * select.el (x-set-selection): Doc fix.
15834 (x-valid-simple-selection-p): Disallow selection data consisting
15835 of a list or cons of integers, since that is not used.
15836 (xselect--selection-bounds, xselect--int-to-cons): New functions.
15837 (xselect-convert-to-string, xselect-convert-to-length)
15838 (xselect-convert-to-filename, xselect-convert-to-charpos)
15839 (xselect-convert-to-lineno, xselect-convert-to-colno): Use them.
15840
15841 2009-07-14 Dmitry Dzhus <dima@sphinx.net.ru>
15842
15843 * progmodes/gdb-mi.el (json-partial-output): Fix broken GDB/MI
15844 output in -break-info command (Emacs bug #3794).
15845
15846 2009-07-14 Glenn Morris <rgm@gnu.org>
15847
15848 * emacs-lisp/edebug.el (edebug-setup-hook, edebug-all-forms)
15849 (edebug-eval-macro-args, edebug-save-displayed-buffer-points)
15850 (edebug-print-length, edebug-print-level, edebug-print-circle)
15851 (edebug-sit-for-seconds, edebug-view-outside)
15852 (edebug-bounce-point, edebug-set-global-break-condition)
15853 (edebug-Go-nonstop-mode, edebug-trace-mode)
15854 (edebug-Trace-fast-mode, edebug-continue-mode)
15855 (edebug-Continue-fast-mode, edebug-forward-sexp, edebug-help)
15856 (edebug-visit-eval-list): Doc fixes.
15857
15858 * subr.el (def-edebug-spec): Doc fix.
15859
15860 2009-07-14 Kenichi Handa <handa@m17n.org>
15861
15862 * international/characters.el: Fix setting of category ?C.
15863
15864 2009-07-13 Jan Djärv <jan.h.d@swipnet.se>
15865
15866 * term/ns-win.el (x-select-font): defalias x-select-font to
15867 ns-popup-font-panel instead of generate-fontset-menu.
15868
15869 2009-07-12 Eli Zaretskii <eliz@gnu.org>
15870
15871 * desktop.el (desktop-buffers-not-to-save): Remove ".log". (Bug#3833)
15872
15873 2009-07-12 Peter Jolly <peter@jollys.org> (tiny change)
15874
15875 * arc-mode.el (archive-find-type): Allow for a PK00 string before
15876 the PK\003\004 header (Bug#3770).
15877
15878 2009-07-12 Guanpeng Xu <herberteuler@hotmail.com>
15879
15880 * pcomplete.el (pcomplete-comint-setup): Check for
15881 shell-dynamic-complete-filename too.
15882
15883 2009-07-11 Chong Yidong <cyd@stupidchicken.com>
15884
15885 * simple.el (temporary-goal-column): Change the value for
15886 line-move-visual to a cons cell.
15887 (line-move-visual): Record or set the window hscroll, if
15888 necessary (Bug#3494).
15889 (line-move-1): Handle cons value of temporary-goal-column.
15890
15891 2009-07-11 Kenichi Handa <handa@m17n.org>
15892
15893 * international/mule-diag.el (describe-character-set): Don't show
15894 width.
15895
15896 2009-07-10 Sam Steingold <sds@gnu.org>
15897
15898 * progmodes/compile.el (compilation-mode-font-lock-keywords):
15899 Omake sometimes indents the errors it prints, so allow all
15900 regexps to start with spaces.
15901
15902 2009-07-10 Eli Zaretskii <eliz@gnu.org>
15903
15904 * cus-edit.el (customize-changed-options-previous-release):
15905 Bump value to 22.1. (Bug#3804)
15906
15907 2009-07-08 Sam Steingold <sds@gnu.org>
15908
15909 * progmodes/grep.el (rgrep): Allow grep-find-ignored-directories
15910 to be a cons cell (test . ignored-directory) to selectively ignore
15911 some directories depending on the location of the search.
15912
15913 2009-07-08 Michael Albinus <michael.albinus@gmx.de>
15914
15915 * net/tramp.el (tramp-set-file-uid-gid): Handle the case the
15916 remote user is root, on the local host.
15917 (tramp-local-host-p): Either the local user or the remote user
15918 must be root. (Bug#3771)
15919
15920 2009-07-08 Nick Roberts <nickrob@snap.net.nz>
15921
15922 * progmodes/gdb-mi.el (gdb): Remove description of
15923 gdb-use-separate-io-buffer.
15924 (menu): Don't allow toggling of or enable
15925 gdb-use-separate-io-buffer from menubar.
15926
15927 2009-07-08 E. Jay Berkenbilt <ejb@ql.org> (tiny change)
15928
15929 * mail/unrmail.el (unrmail): Make sure the message ends with two
15930 newlines (Bug#3769).
15931
15932 2009-07-08 Glenn Morris <rgm@gnu.org>
15933
15934 * calendar/calendar.el (calendar-current-date): Rework previous change.
15935
15936 2009-07-08 Ed Reingold <reingold@emr.cs.iit.edu>
15937
15938 * calendar/calendar.el (calendar-current-date):
15939 Add an optional argument giving an offset from today.
15940
15941 2009-07-08 Glenn Morris <rgm@gnu.org>
15942
15943 * tutorial.el (tutorial--describe-nonstandard-key):
15944 Adjust the message for when a key has been unbound.
15945 (help-with-tutorial): Hide the arch-tag.
15946
15947 2009-07-08 Kenichi Handa <handa@m17n.org>
15948
15949 * international/fontset.el (setup-default-fontset): For each
15950 script, append (not set) font-specs.
15951
15952 * language/japanese.el (japanese-shift-jis-2004): Fix typo in the
15953 docstring.
15954
15955 2009-07-08 Nick Roberts <nickrob@snap.net.nz>
15956
15957 * progmodes/gdb-mi.el (gdb-init-1): Move sending
15958 -data-list-register-names to ...
15959 (gdb-starting): ... here because GDB 7.0 requires execution to
15960 have started when using this MI command.
15961 (gdb-set-header): New function to distinguish select and
15962 unselected tabs in gdb buffers.
15963 (gdb-propertize-header): New macro that uses gdb-set-header.
15964 (gdb-breakpoints-header, gdb-locals-header): Use it.
15965 (gdb-disassembly-mode-map): Add keybinding to kill buffer.
15966
15967 2009-07-07 Chong Yidong <cyd@stupidchicken.com>
15968
15969 * Makefile.in (ELCFILES): Remove fadr.elc.
15970
15971 2009-07-07 Dmitry Dzhus <dima@sphinx.net.ru>
15972
15973 * progmodes/gdb-mi.el (gdb-init-1): Disassembly buffer mode name
15974 may contain frame information, so `string-match' should be used.
15975 (gdb-update): Disassembly is invalidated through
15976 `gdb-get-selected-frame'.
15977 (gdb-pad-string): New function to pad string with spaces.
15978 (gdb-invalidate-disassembly): Invalidate only if the buffer
15979 exists.
15980 (gdb-disassembly-handler-custom): Column alignment.
15981 (gdb-disassembly-place-breakpoints): Clear old breakpoints before
15982 placing new ones.
15983 (gdb-toggle-breakpoint, gdb-delete-breakpoint): Now work from the
15984 end of line, too.
15985 (gdb-frame-handler): Match convention to for disassembly buffer
15986 mode name.
15987 (gdb-stack-list-frames-handler): Rewritten without regexps.
15988 (gdb-breakpoints-list-handler-custom): y/n instead of on/off; do
15989 not highlight breakpoints without line information.
15990 (gdb-input): Add trailing newline to command.
15991
15992 * progmodes/gdb-mi.el (gdb-init-1): Set mode name for disassembly
15993 buffer properly.
15994 (gdb-breakpoints-list-handler-custom): Replacement for
15995 `gdb-break-list-handler'. Using real parser instead of regexps
15996 now.
15997 (gdb-place-breakpoints): Replacement for `gdb-break-list-custom'.
15998 Use `gdb-breakpoints-list' instead of parsing breakpoints buffer
15999 to place breakpoints.
16000 (def-gdb-memory-unit): A new macro to define gdb-memory-unit-..
16001 functions.
16002 (gdb-disassembly-handler-custom): Show overlay arrow.
16003 (gdb-disassembly-place-breakpoints): Show breakpoints in
16004 disassembly buffer.
16005 (gdb-toggle-breakpoint, gdb-delete-breakpoint)
16006 (gdb-goto-breakpoint): Using `gdb-breakpoint' text properties
16007 instead of parsing breakpoints buffer. Fixed old menu references
16008 in `gud-menu-map'.
16009
16010 * fadr.el: Remove.
16011
16012 * progmodes/gdb-mi.el: Port memory buffer from gdb-ui.el.
16013 (gdb-memory-address): New variable which holds top address of
16014 memory page shown in memory buffer.
16015 (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit): New
16016 customization variables.
16017 New functions:
16018 (gdb-display-memory-buffer, gdb-frame-memory-buffer): Functions to
16019 display the memory buffer.
16020 (gdb-memory-set-address, gdb-memory-set-repeat-count): Set memory
16021 buffer display parameters.
16022 (def-gdb-memory-format, gdb-memory-format-binary)
16023 (gdb-memory-format-octal, gdb-memory-format-unsigned)
16024 (gdb-memory-format-signed, gdb-memory-format-hexadecimal):
16025 Functions for setting memory buffer format.
16026 (gdb-memory-unit-word, gdb-memory-unit-halfword)
16027 (gdb-memory-unit-giant, gdb-memory-unit-byte): Functions to set
16028 unit size used in memory buffer.
16029 (gdb-memory-show-next-page, gdb-memory-show-previous-page): Switch
16030 to next/previous page of memory buffer.
16031 Now using (bindat-get-field) instead of fadr functions.
16032
16033 2009-07-07 Sam Steingold <sds@gnu.org>
16034
16035 * vc-cvs.el (vc-cvs-merge-news): Fix message parsing for
16036 non-top-level files.
16037
16038 2009-07-07 Kenichi Handa <handa@m17n.org>
16039
16040 * international/mule-cmds.el (reset-language-environment): Put
16041 the highset priority to the charset iso-8859-1.
16042
16043 2009-07-06 Chong Yidong <cyd@stupidchicken.com>
16044
16045 * progmodes/hideshow.el (hs-hide-block-at-point): Don't move point
16046 to the end of the line when locating the block (Bug#700).
16047
16048 2009-07-06 Michael Albinus <michael.albinus@gmx.de>
16049
16050 * net/tramp.el (tramp-handle-write-region): Flush file properties
16051 in case of short track.
16052
16053 2009-07-06 Michael McNamara <mac@mail.brushroad.com>
16054
16055 * progmodes/verilog-mode.el (verilog-error-regexp-emacs-alist):
16056 Coded custom representation of verilog error regular expressions
16057 to work with Emacs-22's new format.
16058 (verilog-error-regexp-xemacs-alist): Coded custom representation
16059 of verilog error regular expressions to work with XEmacs format.
16060 (verilog-error-regexp-add-xemacs): Hook routine to install verilog
16061 error recognition into XEmacs.
16062 (verilog-error-regexp-add-emacs): Hook routine to install verilog
16063 error recognition into Emacs-22.
16064
16065 2009-07-06 Chong Yidong <cyd@stupidchicken.com>
16066
16067 * woman.el: Remove stand-alone closing parentheses.
16068 (woman-file-name, woman2-format-paragraphs)
16069 (woman-leave-blank-lines): Code cleanup.
16070 (woman-use-own-frame): Change default to nil.
16071 (woman-italic, woman-bold, woman-unknown, woman-addition): Change
16072 defaults to inherit from default faces.
16073 (woman2-process-escapes): Consume the newline after a stand-alone
16074 filler character (Bug#3651).
16075
16076 2009-07-06 Glenn Morris <rgm@gnu.org>
16077
16078 * ffap.el (ffap-version): Make it an obsolete alias for emacs-version.
16079 (top-level): Move provide to the end.
16080 (ffap): Remove defunct URL from custom group.
16081
16082 * subr.el (eval-after-load): Doc fix.
16083
16084 2009-07-06 Vincent Belaïche <vincent.belaiche@gmail.com>
16085
16086 * calc/calc-embed.el (calc-embedded-make-info): Don't force when
16087 `calc-embedded-word' is called twice.
16088
16089 2009-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
16090
16091 * files.el (find-alternate-file-other-window, find-alternate-file):
16092 Obey confirm-nonexistent-file-or-buffer.
16093
16094 2009-07-05 Michael Albinus <michael.albinus@gmx.de>
16095
16096 * dired-aux.el (dired-show-file-type): Handle remote files.
16097
16098 2009-07-05 Jari Aalto <jari.aalto@cante.net>
16099
16100 * desktop.el (desktop-globals-to-save):
16101 Add file-name-history (Bug#2750).
16102
16103 2009-07-05 Chong Yidong <cyd@stupidchicken.com>
16104
16105 * add-log.el (add-log-current-defun-header-regexp): Doc fix (Bug#2217).
16106
16107 2009-07-04 Johan Bockgård <bojohan@gnu.org>
16108
16109 * eshell/esh-arg.el (eshell-parse-argument-hook): Put `number'
16110 property on entire argument since this is what eshell-lisp-command
16111 expects.
16112
16113 2009-07-03 Michael Albinus <michael.albinus@gmx.de>
16114
16115 * net/tramp-gvfs.el (tramp-gvfs-methods)
16116 (tramp-gvfs-zeroconf-domain)
16117 (tramp-bluez-discover-devices-timeout): Add version flag.
16118 (tramp-gvfs-handler-mounted-unmounted)
16119 (tramp-gvfs-connection-mounted-p): Polish handling of
16120 incompatibilities between GVFS 0.2 and 1.0.
16121
16122 2009-07-03 Jan Djärv <jan.h.d@swipnet.se>
16123
16124 * cus-start.el (all): Add make-pointer-invisible.
16125
16126 2009-07-03 Jay Belanger <jay.p.belanger@gmail.com>
16127
16128 * calc/calc-math.el (math-use-emacs-fn): Make sure that the number is
16129 formatted correctly.
16130
16131 2009-07-02 Juri Linkov <juri@jurta.org>
16132
16133 * info.el: Virtual Info files and nodes.
16134 (Info-virtual-files, Info-virtual-nodes): New variables.
16135 (Info-current-node-virtual): New variable.
16136 (Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
16137 New functions.
16138 (Info-file-supports-index-cookies): Use Info-virtual-file-p
16139 to check for a virtual file instead of checking a fixed list
16140 of node names.
16141 (Info-find-file): Use Info-virtual-fun and Info-virtual-call
16142 instead of ad-hoc processing of "dir" and (apropos history toc).
16143 (Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
16144 instead of ad-hoc processing of "dir" and (apropos history toc).
16145 Reread a file when moving from a virtual node.
16146 (add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
16147 (Info-directory-toc-nodes, Info-directory-find-file)
16148 (Info-directory-find-node): New functions.
16149 (add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
16150 (Info-history): Move part of code to
16151 `Info-history-find-node'.
16152 (Info-history-toc-nodes, Info-history-find-file)
16153 (Info-history-find-node): New functions.
16154 (add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
16155 (Info-toc): Move part of code to `Info-toc-find-node'.
16156 (Info-toc-find-node): New function.
16157 (Info-toc-insert): Rename from `Info-insert-toc'. Don't insert
16158 the current Info file name to references because now the node
16159 "*TOC*" belongs to the same Info manual.
16160 (Info-toc-build): Rename from `Info-build-toc'.
16161 (Info-toc-nodes): Rename input argument `file' to `filename'.
16162 Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
16163 instead of ad-hoc processing of ("dir" apropos history toc).
16164 (Info-index-nodes): Use Info-virtual-file-p
16165 to check for a virtual file instead of checking a fixed list
16166 of node names.
16167 (Info-index-node): Add check for `Info-current-node-virtual'.
16168 Raise `save-match-data' higher up the tree to contain
16169 `search-forward' too (bug fix).
16170 (add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
16171 (Info-virtual-index-nodes): New variable.
16172 (Info-virtual-index-find-node, Info-virtual-index): New functions.
16173 (add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
16174 (Info-apropos-file, Info-apropos-nodes): New variables.
16175 (Info-apropos-toc-nodes, Info-apropos-find-file)
16176 (Info-apropos-find-node, Info-apropos-matches): New functions.
16177 (info-apropos): Move part of code to `Info-apropos-find-node' and
16178 `Info-apropos-matches'.
16179 (Info-mode-map): Bind "I" to `Info-virtual-index'.
16180 (Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
16181 for a virtual file instead of checking a fixed list of node names.
16182
16183 * simple.el (async-shell-command): New command.
16184
16185 * bindings.el (esc-map): Bind "&" to `async-shell-command'.
16186
16187 * net/tramp-gvfs.el (tramp-gvfs-connection-mounted-p): Use `elt'
16188 instead of `mount-info'.
16189
16190 2009-07-02 Michael Albinus <michael.albinus@gmx.de>
16191
16192 * net/tramp-gvfs.el (tramp-gvfs-handler-mounted-unmounted)
16193 (tramp-gvfs-connection-mounted-p): Handle changed mount-info interface.
16194
16195 2009-07-02 Kenichi Handa <handa@m17n.org>
16196
16197 * international/mule.el (set-keyboard-coding-system): Force *-unix
16198 coding-system to avoid eol conversion.
16199
16200 2009-07-01 Michael Albinus <michael.albinus@gmx.de>
16201
16202 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
16203 Add handler for `process-file', `shell-command' and
16204 `start-file-process'.
16205 (tramp-gvfs-handle-shell-command)
16206 (tramp-gvfs-handle-start-file-process)
16207 (tramp-gvfs-handle-process-file): New defuns.
16208 (tramp-synce-list-devices): Simplify check for existence of property.
16209
16210 2009-07-01 Jan Djärv <jan.h.d@swipnet.se>
16211
16212 * startup.el (command-line-x-option-alist): Add -mm and --maximized.
16213
16214 2009-07-01 Eduard Wiebe <usenet@pusto.de> (tiny change)
16215
16216 * language/korean.el (set-language-info-alist): Add korean-cp949,
16217 cp949 to spec.
16218
16219 2009-07-01 Kenichi Handa <handa@m17n.org>
16220
16221 * Makefile.in (ELCFILES): Delete encoded-kb.elc.
16222
16223 * international/encoded-kb.el: Deleted.
16224
16225 * international/mule.el (set-keyboard-coding-system): Perform the
16226 necessary setup here instead of calling encoded-kbd-setup-display.
16227
16228 2009-07-01 Glenn Morris <rgm@gnu.org>
16229
16230 * progmodes/f90.el (f90-break-delimiters, f90-no-break-re): Doc fixes.
16231
16232 2009-07-01 Evangelos Evangelou <vangelis@email.unc.edu> (tiny change)
16233
16234 * progmodes/f90.el (f90-no-break-re): Add "(/" and "/)". (Bug#3730)
16235
16236 2009-06-30 Michael Albinus <michael.albinus@gmx.de>
16237
16238 * net/tramp.el (tramp-do-copy-or-rename-file-directly):
16239 Handle also the 'rename case, when setting file modes. (Bug#3712)
16240 (tramp-default-file-modes): Remove execute permissions.
16241
16242 * net/tramp-gvfs.el (tramp-gvfs-methods): Add "synce" method.
16243 (top): Add a default for "synce" in `tramp-default-user-alist'.
16244 Add completion function for "synce" method.
16245 (tramp-hal-service, tramp-hal-path-manager)
16246 (tramp-hal-interface-manager, tramp-hal-interface-device):
16247 New defconst.
16248 (tramp-gvfs-connection-mounted-p): Handle empty user name for synce.
16249 (tramp-synce-list-devices, tramp-synce-parse-device-names):
16250 New defuns.
16251
16252 * net/trampver.el: Update release number.
16253
16254 2009-06-30 Kenichi Handa <handa@m17n.org>
16255
16256 * international/fontset.el (setup-default-fontset): Add CJK fonts
16257 for symbols and the other miscellaneous characters.
16258
16259 * language/korea-util.el (setup-korean-environment-internal):
16260 Make char-width-table suitable for Korean environments.
16261 (exit-korean-environment): Cancel above.
16262
16263 * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
16264 ("Chinese-CNS", "Chinese-EUC-TW", "Chinese-GBK"): Add a
16265 setup-function to make char-width-table suitable for respective
16266 environments, and an exit-function to cancel that.
16267
16268 * language/japan-util.el (setup-japanese-environment-internal):
16269 Call use-cjk-char-width-table with arg `ja_JP'.
16270
16271 * international/characters.el (cjk-char-width-table): Delete it.
16272 (cjk-char-width-table-list): New variable.
16273 (use-cjk-char-width-table): New arg local-name.
16274 (use-default-char-width-table): Fix for the case that Emacs is
16275 already using the default char-width-table.
16276
16277 2009-06-29 Michael Albinus <michael.albinus@gmx.de>
16278
16279 * net/tramp.el (tramp-do-copy-or-rename-file-directly): Set file
16280 modes mandatory. (Bug#3712)
16281
16282 2009-06-29 Alan Mackenzie <acm@muc.de>
16283
16284 * progmodes/cc-cmds.el (c-mask-paragraph): Remove a spurious
16285 correction between the visible width of TABs and their number of bytes.
16286
16287 2009-06-29 Chong Yidong <cyd@stupidchicken.com>
16288
16289 * server.el (server-buffer-done): Prevent kill-buffer from
16290 prompting by clearing the buffer modification flag (Bug#3696).
16291
16292 2009-06-28 Michael McNamara <mac@mail.brushroad.com>
16293
16294 * progmodes/verilog-mode.el (verilog-beg-of-statement)
16295 (verilog-endcomment-reason-re): Support unique case and priority case.
16296 (verilog-basic-complete-re): Support localparam lineup.
16297 (verilog-beg-of-statement-1): Fix for robustness, unique case.
16298 (verilog-set-auto-endcomments): Fix for unique case, always_comb
16299 commenting.
16300 (verilog-leap-to-case-head): Now support *nested* unique &
16301 priority case statements.
16302 (verilog-auto-lineup): Make just declarations the default (as it
16303 had been).
16304 (verilog-leap-to-case-head): Support priority/unique case statements.
16305 (verilog-auto-lineup): Rework to give users radio buttons to
16306 select the various styles of automatic lineup.
16307 (verilog-error-regexp-alist): Rework to support the XEmacs style
16308 of error regular expressions from compilers, lint tools &
16309 simulators. Note that GNU Emacs has made it impossible for a mode
16310 to load such things.
16311 (electric-verilog-terminate-line, verilog-indent-declaration)
16312 (verilog-auto-wiure): Rework for radio button selection of
16313 auto-lineup selection of specification of auto lineup.
16314 (verilog-beg-of-statement-1): Redesign to support proper operation
16315 in additional code, based on testing with auto-lineup.
16316 (verilog-calculate-indent, assignments & declarations)
16317 (verilog-backward-token): Enhance to support auto-lineup of
16318 assignments & declarations.
16319 (verilog-in-directive-p, verilog-at-struct-p): New function for
16320 easy test of whether we are.
16321 (verilog-pretty-declarations, verilog-pretty-expr): Massive rework
16322 to support safe execution at almost anyline.
16323 (verilog-calc-1): Properly support indenting deep inside generate
16324 blocks.
16325 (verilog-init-font): Remove definition & use of verilog-init-font,
16326 as it is redundant with font-lock-defaults.
16327 (verilog-mode): Alter the definition of verilog-font-lock-defaults
16328 to avoid circular calls if syntax-ppss is a function (as is the
16329 case now in 22.x GNU Emacs) as that function would sometimes call
16330 itself, leading to (nearly) infinite recursion.
16331 (verilog-ovm-begin-re, verilog-ovm-end-re)
16332 (verilog-ovm-statement-re, verilog-leap-to-head)
16333 (verilog-backward-token): Add support for OVM macros. Some are
16334 complete statements, and others open and close scopes like begin
16335 and end.
16336 (verilog-defun-level-not-generate-re, verilog-defun-level-re)
16337 (verilog-defun-level-generate-only-re): Really fix the defun-list
16338 compilation issue.
16339 (verilog-calc-1, verilog-beg-of-statement): Enhance support for
16340 coverpoint, constraint and cross statements.
16341 (verilog-defun-level-list, verilog-generate-defun-level-list)
16342 (verilog-all-defun-level-list): Redo these specifications - it is
16343 too hard to support eval-when compile aggregation of lists also
16344 built at when-compile time.
16345 (verilog-defun-level-list): Place defconsts of variables used in
16346 building regular expressions which are built in eval-when-compile
16347 bodies in the same eval-when-compile body to facilitate compile
16348 without load.
16349 (verilog-beg-block-re-ordered): Support indenting
16350 virtual/protected tasks and functions.
16351 (verilog-defun-level-list, verilog-in-generate-region-p)
16352 (verilog-backward-ws&directives, verilog-calc-1): Speed up
16353 indentation of some module items (generate items).
16354 (verilog-forward-sexp, verilog-leap-to-head): Support stepping
16355 across virtual/protected tasks and functions.
16356
16357 2009-06-28 Wilson Snyder <wsnyder@wsnyder.org>
16358
16359 * progmodes/verilog-mode.el (verilog-auto-arg, verilog-auto-arg-sort):
16360 Allow sorting AUTOARG lists. Suggested by Andrea Fedeli.
16361 (verilog-read-sub-decls-line): Fix AUTOWIRE signals getting lost
16362 in concatenations. Reported by Yishay Belkind.
16363 (verilog-auto-ascii-enum): Support one-hot state machines in
16364 AUTOASCIIENUM. Suggested by Lloyd Gomez.
16365 (verilog-auto-inst, verilog-auto-inst-port): Include interface
16366 modport in AUTOINST and add vl-modport for users. Reported by
16367 David Rogoff.
16368 (verilog-auto-inout-module, verilog-auto-inst)
16369 (verilog-decls-get-interfaces, verilog-insert-definition)
16370 (verilog-insert-one-definition, verilog-read-decls)
16371 (verilog-read-sub-decls, verilog-read-sub-decls-sig)
16372 (verilog-sig-modport, verilog-signals-combine-bus)
16373 (verilog-subdecls-get-interfaces): Fix expansion of SystemVerilog
16374 interfaces in AUTOINOUTMODULE, AUTOINOUTCOMP, and AUTOINST.
16375 Suggested by David Rogoff.
16376 (verilog-repair-open-comma): Fix non-insertion of comma when
16377 `DEFINE occurs in V2K argument list. Reported by Lane Brooks.
16378 (verilog-make-width-expression): Simplify [A-1:0] expression
16379 widths to just {A{1'b0}}.
16380 (verilog-mode): Cleanup checkdoc warnings.
16381 (verilog-auto-inout-module, verilog-signals-matching-dir-re):
16382 Add third optional regexp to AUTOINOUTMODULE to allow selecting only
16383 inputs/outputs or data type. Suggested by Vasu Kandadi.
16384 (next-error-last-buffer): Fix byte-compiler warning.
16385 (verilog-auto, verilog-auto-insert-lisp, verilog-auto-inst)
16386 (verilog-delete-auto): Add AUTOINSERTLISP to insert arbitrary lisp
16387 or shell command text during AUTO expansion. Suggested by Tad Truex.
16388 (verilog-read-sub-decls-expr, verilog-read-sub-decls-line)
16389 (verilog-read-sub-decls-sig, verilog-symbol-detick-text):
16390 Fix dotted nets {a.b,c.d} and excaped identifiers being mis-included
16391 in AUTOINOUT. Reported by Matthew Lovell.
16392 (verilog-read-always-signals-recurse): Fix AUTORESET "if (a<=b)"
16393 causing use of <= assignments. Reported by Alex Reed.
16394 (verilog-read-decls): Fix triand, trior, wand, wor to be
16395 recognized by AUTOWIRE. Reported by Spencer Isaacson.
16396 (verilog-extended-complete-re): Support import "DPI-C" functions.
16397 (verilog-read-always-signals-recurse): Fix AUTORESET of "x <=
16398 y[a+1:a+1]" to not include a in reset list. Reported by Dan Dever.
16399 (verilog-insert-date, verilog-insert-year)
16400 (verilog-sk-header-tmpl): Fix verilog-header inserting error on
16401 Windows systems. Reported by Michael Potts.
16402 (verilog-read-module-name): Fix AUTOINST when the child module
16403 declaration's name is a tick define. Reported by Elliot Mednick.
16404 (verilog-read-decls): Fix V2K parameter bit subscripts getting
16405 passed to next parameter's definition. Reported by Bruce T.
16406 (verilog-read-decls): Fix detecting "parameter int" when using
16407 AUTOINSTPARAM. Reported by Bruce T.
16408 (verilog-goto-defun): Fix goto not finding modules unless first
16409 perform a verilog-auto expansion. Suggested by Lawrence Butcher.
16410 (verilog-mode): Expand -f flag arguments on entry to mode so
16411 verilog-goto-defun will work. Reported by Lawrence Butcher.
16412 (verilog-getopt): Expand environment variables in -f file
16413 arguments. Suggested by Lawrence Butcher.
16414 (verilog-set-define): Fix "Symbol's value as variable is void"
16415 when reading enumerations.
16416 (verilog-auto-ascii-enum): Fix duplicate labels in AUTOASCIIENUM.
16417 Suggested by Stephen Peltan.
16418 (verilog-read-defines): Fix reading of enumerations in include
16419 files. Reported by Steve Peltan.
16420
16421 2009-06-28 David De La Harpe Golden <david@harpegolden.net>
16422
16423 * files.el (trash-directory): Fix defcustom type.
16424
16425 2009-06-28 Juri Linkov <juri@jurta.org>
16426
16427 * help-fns.el (describe-function-1): Correctly locate adviced
16428 functions in hyperlink (Bug#2438).
16429
16430 2009-06-28 Chong Yidong <cyd@stupidchicken.com>
16431
16432 * files.el (trash-directory): Change default to nil.
16433 (move-file-to-trash): If trash-directory is nil and
16434 system-move-file-to-trash is unbound, perform freedesktop-style
16435 trashing.
16436
16437 2009-06-28 David De La Harpe Golden <david@harpegolden.net>
16438
16439 * files.el (move-file-to-trash): Add freedesktop trash
16440 support (Bug#973).
16441
16442 2009-06-28 Glenn Morris <rgm@gnu.org>
16443
16444 * autorevert.el (global-auto-revert-non-file-buffers)
16445 (global-auto-revert-mode): Doc fixes.
16446
16447 2009-06-27 Johan Bockgård <bojohan@gnu.org>
16448
16449 * emacs-lisp/cl-specs.el (defstruct): Fix :conc-name spec.
16450
16451 2009-06-27 Chong Yidong <cyd@stupidchicken.com>
16452
16453 * faces.el (x-handle-named-frame-geometry): Ensure that we have
16454 opened an X connection before calling x-get-resource (Bug#3194).
16455
16456 * play/doctor.el: Remove reference to obsolete website.
16457 (make-doctor-variables): Correct grammar mistake (Bug#2633).
16458
16459 2009-06-26 Dan Nicolaescu <dann@ics.uci.edu>
16460
16461 Remove find-file-not-found-hook VC method. (Bug#2757)
16462 * vc-hooks.el (vc-file-not-found-hook)
16463 (vc-default-find-file-not-found-hook): Remove functions.
16464 (find-file-not-found-functions): Do not add vc-file-not-found-hook.
16465 * vc-rcs.el (vc-rcs-find-file-not-found-hook): Remove function.
16466 * vc.el:
16467 * vc-hg.el:
16468 * vc-git.el: Do not mention find-file-not-found-hook VC method.
16469
16470 2009-06-25 Agustín Martín <agustin.martin@hispalinux.es>
16471
16472 * textmodes/ispell.el: Add `ispell-looking-back' XEmacs
16473 compatibility function for `looking-back'.
16474
16475 * textmodes/flyspell.el (sgml-mode-flyspell-verify):
16476 Use `ispell-looking-back'.
16477
16478 2009-06-24 Michael Albinus <michael.albinus@gmx.de>
16479
16480 * net/tramp-gvfs.el (tramp-gvfs-handle-make-directory): Use `dir'
16481 rather than `filename'.
16482
16483 2009-06-23 Miles Bader <miles@gnu.org>
16484
16485 * face-remap.el (text-scale-set): New function.
16486
16487 2009-06-23 Glenn Morris <rgm@gnu.org>
16488
16489 * pcmpl-rpm.el (pcomplete/rpm): Doc fix.
16490
16491 * bindings.el (mode-line-modified): Fix case of "Buffer is modified".
16492
16493 * textmodes/ispell.el (ispell-local-dictionary): Doc fix.
16494
16495 * progmodes/gdb-mi.el (gud-remove, gud-break): Update declarations.
16496
16497 * calendar/cal-dst.el (calendar-time-zone-daylight-rules):
16498 Simplify Persian conditionals.
16499
16500 * calc/calc-graph.el (calc-graph-plot): Avoid assignment to free
16501 variable `filename'.
16502
16503 * comint.el (comint-insert-input): Doc fix.
16504
16505 * Makefile.in (ELCFILES): Fix typo in previous change.
16506
16507 2009-06-23 Miles Bader <miles@gnu.org>
16508
16509 * cus-start.el: Add entry for `recenter-redisplay'.
16510
16511 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
16512
16513 * vc-hooks.el (vc-stay-local-p, vc-state, vc-working-revision):
16514 Add an optional argument for the backend, use it instead of
16515 calling vc-backend.
16516 (vc-mode-line): Add an optional argument for the backend.
16517 Pass the backend to vc-state and vc-working-revision. Move code for
16518 special handling for vc-state being a buffer to ...
16519
16520 * vc-rcs.el (vc-rcs-find-file-hook):
16521 * vc-sccs.el (vc-sccs-find-file-hook): ... here. New functions.
16522
16523 * vc-svn.el (vc-svn-state, vc-svn-dir-status, vc-svn-checkout)
16524 (vc-svn-print-log, vc-svn-diff): Pass 'SVN to vc-state,
16525 vc-stay-local-p and vc-mode-line calls.
16526
16527 * vc-cvs.el (vc-cvs-state, vc-cvs-checkout, vc-cvs-print-log)
16528 (vc-cvs-diff, vc-cvs-annotate-command)
16529 (vc-cvs-make-version-backups-p, vc-cvs-stay-local-p)
16530 (vc-cvs-dir-status): Pass 'CVS to vc-state, vc-stay-local-p and
16531 vc-mode-line calls.
16532
16533 * vc.el (vc-deduce-fileset): Use vc-deduce-fileset instead of
16534 direct comparison.
16535 (vc-next-action, vc-transfer-file, vc-rename-file): Also pass the
16536 backend when calling vc-mode-line.
16537 (vc-register): Do not create a closure for calling the vc register
16538 function, call it directly.
16539
16540 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
16541
16542 * emacs-lisp/elp.el (elp-output-insert-symname): Add a link face
16543 to make it obvious item can be clicked.
16544
16545 * vc-mtn.el (vc-mtn-after-dir-status, vc-mtn-dir-status): New functions.
16546
16547 2009-06-23 Kenichi Handa <handa@m17n.org>
16548
16549 * language/korea-util.el (korean-key-bindings): Change the binding
16550 of F9 to hangul-to-hanja-conversion. Bind Hangul_Hanja to the
16551 same command.
16552
16553 2009-06-22 Michael Albinus <michael.albinus@gmx.de>
16554
16555 Sync with Tramp 2.1.16.
16556
16557 * Makefile.in (ELCFILES): Add net/tramp-gvfs.elc.
16558
16559 * net/tramp.el (top): Require tramp-gvfs. Catch `tramp-loading',
16560 when a loading of a package fails. Completion function for rsync
16561 is `tramp-completion-function-alist-ssh'.
16562 (all): Replace all calls of `split-string' and
16563 `tramp-split-string' by `tramp-compat-split-string'.
16564 (tramp-default-method): Use `tramp-compat-process-running-p'.
16565 (tramp-default-proxies-alist): Allow also Lisp forms.
16566 (tramp-remote-path): Add choice "Private Directories".
16567 (tramp-wrong-passwd-regexp): Remove "Tramp connection closed" option.
16568 (tramp-domain-regexp): Allow also "-", "_" and ".".
16569 (tramp-end-of-output): Remove newlines, and add "$" at the end.
16570 (tramp-file-name-handler-alist): Add handler for `dired-uncache'.
16571 (tramp-debug-message): Insert header line in debug buffer.
16572 (tramp-handle-directory-files-and-attributes-with-stat):
16573 Care about filenames with spaces, or starting with "-".
16574 (tramp-handle-dired-uncache): New defun.
16575 (tramp-handle-insert-directory): Don't flush the directory from
16576 cache, this is handled by `dired-uncache' now.
16577 (tramp-handle-insert-file-contents): Improve error handling.
16578 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
16579 Quote `tramp-end-of-output'.
16580 (tramp-action-password): Improve trace message.
16581 (tramp-check-for-regexp): Both echoes must be present, before removing.
16582 (tramp-open-connection-setup-interactive-shell): Trace coding system.
16583 (tramp-compute-multi-hops): Eval cons cells of
16584 `tramp-default-proxies-alist'.
16585 (tramp-maybe-open-connection): Use the same command pattern for
16586 first hop and further hops.
16587 (tramp-wait-for-output): Remove handling of newlines.
16588 (tramp-get-remote-path): Handle also `tramp-own-remote-path'.
16589 (tramp-split-string): Remove function. It is handled in
16590 tramp-compat now.
16591
16592 * net/tramp-cmds.el (tramp-bug):
16593 Recommend `tramp-cleanup-all-connections' in the bug mail.
16594
16595 * net/tramp-compat.el (tramp-compat-split-string)
16596 (tramp-compat-process-running-p): New defuns.
16597
16598 * net/tramp-fish.el (tramp-fish-file-name-handler-alist): Add handler
16599 for `dired-uncache'.
16600
16601 * net/tramp-gvfs.el: New package.
16602
16603 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
16604 Add handler for `dired-uncache'.
16605 (tramp-smb-handle-file-local-copy): Cleanup in case of error.
16606
16607 * net/trampver.el: Update release number. Make version check fit
16608 for SXEmacs 22.
16609
16610 2009-06-22 Jim Meyering <meyering@redhat.com>
16611
16612 Automatically handle .xz suffix (XZ-compressed files), too.
16613 * jka-cmpr-hook.el (jka-compr-compression-info-list): Add xz.
16614 XZ is the successor to LZMA: <http://tukaani.org/xz/>
16615
16616 2009-06-22 Dmitry Dzhus <dima@sphinx.net.ru>
16617 Nick Roberts <nickrob@snap.net.nz>
16618
16619 * progmodes/gdb-mi.el: Pull further modified changes from Dmitry's
16620 repository (http://sphinx.net.ru/hg/gdb-mi/).
16621
16622 2009-06-22 Glenn Morris <rgm@gnu.org>
16623
16624 * files.el (dir-locals-collect-mode-variables): Allow for any number of
16625 `mode' and `eval' entries. (Bug#3430)
16626
16627 * Makefile.in (ELCFILES): Add fadr.elc.
16628
16629 * calendar/appt.el (appt-make-list): Fix off-by-one error caused by
16630 differing behavior of \n and ^ in strings. (Bug#3385)
16631
16632 * emacs-lisp/cl-indent.el: Remove leading "*" from defcustom docs.
16633
16634 * emacs-lisp/lisp-mode.el (lisp-indent-offset): Fix safe-local-variable
16635 property.
16636 (lisp-indent-function): Make it a defcustom.
16637
16638 2009-06-21 Nick Roberts <nickrob@snap.net.nz>
16639
16640 * progmodes/gdb-ui.el: Replace with ...
16641 * progmodes/gdb-mi.el: ... this file.
16642 * progmodes/gud.el: Modify for gdb-mi.el.
16643
16644 2009-06-21 Dmitry Dzhus <dima@sphinx.net.ru>
16645
16646 * fadr.el: New file.
16647
16648 See ChangeLog.14 for earlier changes.
16649
16650 ;; Local Variables:
16651 ;; coding: utf-8
16652 ;; End:
16653
16654 Copyright (C) 2009, 2010 Free Software Foundation, Inc.
16655
16656 This file is part of GNU Emacs.
16657
16658 GNU Emacs is free software: you can redistribute it and/or modify
16659 it under the terms of the GNU General Public License as published by
16660 the Free Software Foundation, either version 3 of the License, or
16661 (at your option) any later version.
16662
16663 GNU Emacs is distributed in the hope that it will be useful,
16664 but WITHOUT ANY WARRANTY; without even the implied warranty of
16665 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16666 GNU General Public License for more details.
16667
16668 You should have received a copy of the GNU General Public License
16669 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
16670
16671 ;; arch-tag: d3e45e38-19e2-49b6-8dc2-7cb26adcc5a1